ETH Price: $3,388.45 (-1.55%)
Gas: 2 Gwei

Token

Amino (AMO)
 

Overview

Max Total Supply

49,550,000,000 AMO

Holders

6,620

Market

Price

$0.00 @ 0.000000 ETH (-2.61%)

Onchain Market Cap

$7,140,650.50

Circulating Supply Market Cap

$3,929,922.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,008,294.27206605736426996 AMO

Value
$145.31 ( ~0.0428838755944477 Eth) [0.0020%]
0x7246d6c1611dc6f8e465b055f11860723e2939a3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Amino Rewards is a cutting-edge, tokenized customer loyalty program designed to encourage and reward a healthier lifestyle. Amino members can gain access to a world of exclusive benefits, including the ability to earn $AMO rewards while improving their health.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AminoToken

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

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

pragma solidity 0.8.21;
pragma experimental ABIEncoderV2;

import "@openzeppelin/[email protected]/access/Ownable.sol";
import "@openzeppelin/[email protected]/utils/math/SafeMath.sol";
import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol";
import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol";
import "@uniswap/v3-periphery/contracts/interfaces/ISwapRouter.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";

interface IUniswapV3Router is ISwapRouter {
    function factory() external pure returns (address);
}

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    IUniswapV3Router public immutable uniswapV3Router;
    address public immutable uniswapUniversalRouter;
    address public uniswapV2Pair;
    address public uniswapV3Pair;
    address public constant ZERO_ADDRESS = address(0);
    address public constant DEAD_ADDRESS = address(0xdead);

    bool private _swapping;
    bool public swapEnabled;
    bool public taxesEnabled;
    bool private v3LPProtectionEnabled;
    bool public launched;

    address public marketingWallet;

    uint256 public launchBlock;
    uint256 public launchTime;

    uint256 public swapTokensAtAmount;

    uint256 public buyFees;

    uint256 public sellFees;

    uint256 private previousFee;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private automatedMarketMakerPairs;

    event Launch(uint256 blockNumber, uint256 timestamp);
    event PrepareForMigration(uint256 blockNumber, uint256 timestamp);
    event SetSwapEnabled(bool status);
    event SetTaxesEnabled(bool status);
    event SetSwapTokensAtAmount(uint256 oldValue, uint256 newValue);
    event SetBuyFees(uint256 oldValue, uint256 newValue);
    event SetSellFees(uint256 oldValue, uint256 newValue);
    event SetMarketingWallet(
        address indexed oldWallet,
        address indexed newWallet
    );
    event WithdrawStuckTokens(address token, uint256 amount);
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    modifier lockSwapping() {
        _swapping = true;
        _;
        _swapping = false;
    }

    constructor() ERC20("Amino", "AMO") {
        uint256 totalSupply = 50_000_000_000 ether;

        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        uniswapV3Router = IUniswapV3Router(
            0xE592427A0AEce92De3Edee1F18E0157C05861564
        );
        uniswapUniversalRouter = 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD;

        _approve(address(this), address(uniswapV2Router), type(uint256).max);

        swapTokensAtAmount = totalSupply.mul(5).div(10000);

        buyFees = 3;
        sellFees = 10;
        previousFee = sellFees;

        marketingWallet = owner();

        v3LPProtectionEnabled = true;

        _excludeFromFees(owner(), true);
        _excludeFromFees(address(this), true);
        _excludeFromFees(DEAD_ADDRESS, true);
        _excludeFromFees(marketingWallet, true);

        _mint(owner(), totalSupply);
    }

    receive() external payable {}

    function burn(uint256 amount) public {
        _burn(msg.sender, amount);
    }

    function launch() public onlyOwner {
        require(!launched, "ERC20: Already launched.");
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).getPair(
            address(this),
            uniswapV2Router.WETH()
        );
        if (uniswapV2Pair == ZERO_ADDRESS) {
            uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
                .createPair(address(this), uniswapV2Router.WETH());
        }
        uniswapV3Pair = IUniswapV3Factory(uniswapV3Router.factory()).createPool(
            address(this),
            uniswapV2Router.WETH(),
            10000
        );

        _approve(address(this), address(uniswapV2Pair), type(uint256).max);
        _approve(address(this), address(uniswapV3Pair), type(uint256).max);

        IERC20(uniswapV2Pair).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV3Pair), true);

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

        swapEnabled = true;
        taxesEnabled = true;
        launched = true;
        launchBlock = block.number;
        launchTime = block.timestamp;
        emit Launch(launchBlock, launchTime);
    }

    function prepareForMigration() public onlyOwner {
        swapEnabled = false;
        taxesEnabled = false;
        v3LPProtectionEnabled = false;
        buyFees = 0;
        sellFees = 0;
        previousFee = 0;
        swapTokensAtAmount = totalSupply();
        if (balanceOf(address(this)) > 0) {
            super._transfer(
                address(this),
                msg.sender,
                balanceOf(address(this))
            );
        }

        emit PrepareForMigration(block.number, block.timestamp);
    }

    function setSwapEnabled(bool value) public onlyOwner {
        swapEnabled = value;
        emit SetSwapEnabled(swapEnabled);
    }

    function setTaxesEnabled(bool value) public onlyOwner {
        taxesEnabled = value;
        emit SetTaxesEnabled(taxesEnabled);
    }

    function setSwapTokensAtAmount(uint256 _swapTokensAtAmount)
        public
        onlyOwner
    {
        require(
            _swapTokensAtAmount >= totalSupply().mul(1).div(100000),
            "ERC20: Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            _swapTokensAtAmount <= totalSupply().mul(5).div(1000),
            "ERC20: Swap amount cannot be higher than 0.5% total supply."
        );
        uint256 oldValue = swapTokensAtAmount;
        swapTokensAtAmount = _swapTokensAtAmount;
        emit SetSwapTokensAtAmount(oldValue, swapTokensAtAmount);
    }

    function setBuyFees(uint256 _buyFees) public onlyOwner {
        require(_buyFees <= 10, "ERC20: Must keep fees at 10% or less");
        uint256 oldValue = buyFees;
        buyFees = _buyFees;
        emit SetBuyFees(oldValue, buyFees);
    }

    function setSellFees(uint256 _sellFees) public onlyOwner {
        require(_sellFees <= 10, "ERC20: Must keep fees at 10% or less");
        uint256 oldValue = sellFees;
        sellFees = _sellFees;
        previousFee = sellFees;
        emit SetSellFees(oldValue, sellFees);
    }

    function setMarketingWallet(address _marketingWallet) public onlyOwner {
        require(_marketingWallet != ZERO_ADDRESS, "ERC20: Address 0");
        address oldWallet = marketingWallet;
        marketingWallet = _marketingWallet;
        _excludeFromFees(marketingWallet, true);
        emit SetMarketingWallet(oldWallet, marketingWallet);
    }

    function withdrawStuckTokens(address tkn) public onlyOwner {
        uint256 amount;
        if (tkn == ZERO_ADDRESS) {
            bool success;
            amount = address(this).balance;
            (success, ) = address(msg.sender).call{value: amount}("");
        } else {
            require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens");
            amount = IERC20(tkn).balanceOf(address(this));
            IERC20(tkn).transfer(msg.sender, amount);
        }
        emit WithdrawStuckTokens(tkn, amount);
    }

    function excludeFromFees(address[] calldata accounts, bool value)
        public
        onlyOwner
    {
        for (uint256 i = 0; i < accounts.length; i++) {
            _excludeFromFees(accounts[i], value);
        }
    }

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

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

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

        if (
            v3LPProtectionEnabled &&
            (from == uniswapV3Pair || to == uniswapV3Pair)
        ) {
            require(
                _isExcludedFromFees[from] || _isExcludedFromFees[to],
                "ERC20: Not authorized to add LP to Uniswap V3 Pool"
            );
        }

        if (
            from != owner() &&
            to != owner() &&
            to != ZERO_ADDRESS &&
            to != DEAD_ADDRESS &&
            !_swapping
        ) {
            if (!launched) {
                require(
                    _isExcludedFromFees[from] || _isExcludedFromFees[to],
                    "ERC20: Not launched."
                );
            }
        }

        if (swapEnabled) {
            uint256 contractTokenBalance = balanceOf(address(this));

            bool canSwap = contractTokenBalance >= swapTokensAtAmount;

            if (
                canSwap &&
                !_swapping &&
                !automatedMarketMakerPairs[from] &&
                !_isExcludedFromFees[from] &&
                !_isExcludedFromFees[to]
            ) {
                _swapBack(contractTokenBalance);
            }
        }

        if (taxesEnabled) {
            bool takeFee = !_swapping;

            if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
                takeFee = false;
            }

            uint256 fees = 0;
            uint256 totalFees = 0;

            if (takeFee) {
                if (automatedMarketMakerPairs[to] && sellFees > 0) {
                    if (block.number > launchBlock.add(2)) {
                        totalFees = sellFees;
                    } else {
                        totalFees = 40;
                    }
                    fees = amount.mul(totalFees).div(100);
                } else if (automatedMarketMakerPairs[from] && buyFees > 0) {
                    if (block.number > launchBlock.add(2)) {
                        totalFees = buyFees;
                    } else {
                        totalFees = 40;
                    }
                    fees = amount.mul(totalFees).div(100);
                }

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

                amount -= fees;
            }
        }

        super._transfer(from, to, amount);
        sellFees = previousFee;
    }

    function _swapTokensForETH(uint256 tokenAmount) internal virtual {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _swapBack(uint256 contractTokenBalance)
        internal
        virtual
        lockSwapping
    {
        bool success;

        if (contractTokenBalance == 0) {
            return;
        }

        if (contractTokenBalance > swapTokensAtAmount.mul(10)) {
            contractTokenBalance = swapTokensAtAmount.mul(10);
        }

        _swapTokensForETH(contractTokenBalance);

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

    function _excludeFromFees(address account, bool value) internal virtual {
        _isExcludedFromFees[account] = value;
        emit ExcludeFromFees(account, value);
    }

    function _setAutomatedMarketMakerPair(address account, bool value)
        internal
        virtual
    {
        automatedMarketMakerPairs[account] = value;
        emit SetAutomatedMarketMakerPair(account, value);
    }
}

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

import './IUniswapV2Router01.sol';

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

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

File 3 of 13 : 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 4 of 13 : ISwapRouter.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.7.5;
pragma abicoder v2;

import '@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol';

/// @title Router token swapping functionality
/// @notice Functions for swapping tokens via Uniswap V3
interface ISwapRouter is IUniswapV3SwapCallback {
    struct ExactInputSingleParams {
        address tokenIn;
        address tokenOut;
        uint24 fee;
        address recipient;
        uint256 deadline;
        uint256 amountIn;
        uint256 amountOutMinimum;
        uint160 sqrtPriceLimitX96;
    }

    /// @notice Swaps `amountIn` of one token for as much as possible of another token
    /// @param params The parameters necessary for the swap, encoded as `ExactInputSingleParams` in calldata
    /// @return amountOut The amount of the received token
    function exactInputSingle(ExactInputSingleParams calldata params) external payable returns (uint256 amountOut);

    struct ExactInputParams {
        bytes path;
        address recipient;
        uint256 deadline;
        uint256 amountIn;
        uint256 amountOutMinimum;
    }

    /// @notice Swaps `amountIn` of one token for as much as possible of another along the specified path
    /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactInputParams` in calldata
    /// @return amountOut The amount of the received token
    function exactInput(ExactInputParams calldata params) external payable returns (uint256 amountOut);

    struct ExactOutputSingleParams {
        address tokenIn;
        address tokenOut;
        uint24 fee;
        address recipient;
        uint256 deadline;
        uint256 amountOut;
        uint256 amountInMaximum;
        uint160 sqrtPriceLimitX96;
    }

    /// @notice Swaps as little as possible of one token for `amountOut` of another token
    /// @param params The parameters necessary for the swap, encoded as `ExactOutputSingleParams` in calldata
    /// @return amountIn The amount of the input token
    function exactOutputSingle(ExactOutputSingleParams calldata params) external payable returns (uint256 amountIn);

    struct ExactOutputParams {
        bytes path;
        address recipient;
        uint256 deadline;
        uint256 amountOut;
        uint256 amountInMaximum;
    }

    /// @notice Swaps as little as possible of one token for `amountOut` of another along the specified path (reversed)
    /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactOutputParams` in calldata
    /// @return amountIn The amount of the input token
    function exactOutput(ExactOutputParams calldata params) external payable returns (uint256 amountIn);
}

File 5 of 13 : IUniswapV3Factory.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title The interface for the Uniswap V3 Factory
/// @notice The Uniswap V3 Factory facilitates creation of Uniswap V3 pools and control over the protocol fees
interface IUniswapV3Factory {
    /// @notice Emitted when the owner of the factory is changed
    /// @param oldOwner The owner before the owner was changed
    /// @param newOwner The owner after the owner was changed
    event OwnerChanged(address indexed oldOwner, address indexed newOwner);

    /// @notice Emitted when a pool is created
    /// @param token0 The first token of the pool by address sort order
    /// @param token1 The second token of the pool by address sort order
    /// @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip
    /// @param tickSpacing The minimum number of ticks between initialized ticks
    /// @param pool The address of the created pool
    event PoolCreated(
        address indexed token0,
        address indexed token1,
        uint24 indexed fee,
        int24 tickSpacing,
        address pool
    );

    /// @notice Emitted when a new fee amount is enabled for pool creation via the factory
    /// @param fee The enabled fee, denominated in hundredths of a bip
    /// @param tickSpacing The minimum number of ticks between initialized ticks for pools created with the given fee
    event FeeAmountEnabled(uint24 indexed fee, int24 indexed tickSpacing);

    /// @notice Returns the current owner of the factory
    /// @dev Can be changed by the current owner via setOwner
    /// @return The address of the factory owner
    function owner() external view returns (address);

    /// @notice Returns the tick spacing for a given fee amount, if enabled, or 0 if not enabled
    /// @dev A fee amount can never be removed, so this value should be hard coded or cached in the calling context
    /// @param fee The enabled fee, denominated in hundredths of a bip. Returns 0 in case of unenabled fee
    /// @return The tick spacing
    function feeAmountTickSpacing(uint24 fee) external view returns (int24);

    /// @notice Returns the pool address for a given pair of tokens and a fee, or address 0 if it does not exist
    /// @dev tokenA and tokenB may be passed in either token0/token1 or token1/token0 order
    /// @param tokenA The contract address of either token0 or token1
    /// @param tokenB The contract address of the other token
    /// @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip
    /// @return pool The pool address
    function getPool(
        address tokenA,
        address tokenB,
        uint24 fee
    ) external view returns (address pool);

    /// @notice Creates a pool for the given two tokens and fee
    /// @param tokenA One of the two tokens in the desired pool
    /// @param tokenB The other of the two tokens in the desired pool
    /// @param fee The desired fee for the pool
    /// @dev tokenA and tokenB may be passed in either order: token0/token1 or token1/token0. tickSpacing is retrieved
    /// from the fee. The call will revert if the pool already exists, the fee is invalid, or the token arguments
    /// are invalid.
    /// @return pool The address of the newly created pool
    function createPool(
        address tokenA,
        address tokenB,
        uint24 fee
    ) external returns (address pool);

    /// @notice Updates the owner of the factory
    /// @dev Must be called by the current owner
    /// @param _owner The new owner of the factory
    function setOwner(address _owner) external;

    /// @notice Enables a fee amount with the given tickSpacing
    /// @dev Fee amounts may never be removed once enabled
    /// @param fee The fee amount to enable, denominated in hundredths of a bip (i.e. 1e-6)
    /// @param tickSpacing The spacing between ticks to be enforced for all pools created with the given fee amount
    function enableFeeAmount(uint24 fee, int24 tickSpacing) external;
}

File 6 of 13 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

File 7 of 13 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 9 of 13 : IUniswapV3SwapCallback.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Callback for IUniswapV3PoolActions#swap
/// @notice Any contract that calls IUniswapV3PoolActions#swap must implement this interface
interface IUniswapV3SwapCallback {
    /// @notice Called to `msg.sender` after executing a swap via IUniswapV3Pool#swap.
    /// @dev In the implementation you must pay the pool tokens owed for the swap.
    /// The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory.
    /// amount0Delta and amount1Delta can both be 0 if no tokens were swapped.
    /// @param amount0Delta The amount of token0 that was sent (negative) or must be received (positive) by the pool by
    /// the end of the swap. If positive, the callback must send that amount of token0 to the pool.
    /// @param amount1Delta The amount of token1 that was sent (negative) or must be received (positive) by the pool by
    /// the end of the swap. If positive, the callback must send that amount of token1 to the pool.
    /// @param data Any data passed through by the caller via the IUniswapV3PoolActions#swap call
    function uniswapV3SwapCallback(
        int256 amount0Delta,
        int256 amount1Delta,
        bytes calldata data
    ) external;
}

File 10 of 13 : 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 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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":false,"internalType":"uint256","name":"blockNumber","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"Launch","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":false,"internalType":"uint256","name":"blockNumber","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"PrepareForMigration","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"SetBuyFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"},{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"SetMarketingWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"SetSellFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetSwapEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"SetSwapTokensAtAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetTaxesEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawStuckTokens","type":"event"},{"inputs":[],"name":"DEAD_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ZERO_ADDRESS","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFees","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":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prepareForMigration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFees","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFees","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_swapTokensAtAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setTaxesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapUniversalRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV3Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV3Router","outputs":[{"internalType":"contract IUniswapV3Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e060405234801562000010575f80fd5b506040518060400160405280600581526020017f416d696e6f0000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f414d4f000000000000000000000000000000000000000000000000000000000081525081600390816200008e919062000aa1565b508060049081620000a0919062000aa1565b505050620000c3620000b76200033b60201b60201c565b6200034260201b60201c565b5f6ba18f07d736b90be5500000009050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505073e592427a0aece92de3edee1f18e0157c0586156473ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050733fc91a3afd70395cd496c647d5a6cc9d4b2b7fad73ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1681525050620001e0306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200040560201b60201c565b6200020c612710620001fd600584620005d060201b90919060201c565b620005e760201b90919060201c565b600b819055506003600c81905550600a600d81905550600d54600e819055506200023b620005fe60201b60201c565b60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600760176101000a81548160ff021916908315150217905550620002b7620002a9620005fe60201b60201c565b60016200062660201b60201c565b620002ca3060016200062660201b60201c565b620002df61dead60016200062660201b60201c565b6200031360085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200062660201b60201c565b6200033462000327620005fe60201b60201c565b82620006ce60201b60201c565b5062000ea3565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000476576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200046d9062000c09565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004de9062000c9d565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005c3919062000cce565b60405180910390a3505050565b5f8183620005df919062000d16565b905092915050565b5f8183620005f6919062000d8d565b905092915050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620006c2919062000de0565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200073f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007369062000e49565b60405180910390fd5b620007525f83836200083360201b60201c565b8060025f82825462000765919062000e69565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000814919062000cce565b60405180910390a36200082f5f83836200083860201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620008b957607f821691505b602082108103620008cf57620008ce62000874565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620009337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008f6565b6200093f8683620008f6565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000989620009836200097d8462000957565b62000960565b62000957565b9050919050565b5f819050919050565b620009a48362000969565b620009bc620009b38262000990565b84845462000902565b825550505050565b5f90565b620009d2620009c4565b620009df81848462000999565b505050565b5b8181101562000a0657620009fa5f82620009c8565b600181019050620009e5565b5050565b601f82111562000a555762000a1f81620008d5565b62000a2a84620008e7565b8101602085101562000a3a578190505b62000a5262000a4985620008e7565b830182620009e4565b50505b505050565b5f82821c905092915050565b5f62000a775f198460080262000a5a565b1980831691505092915050565b5f62000a91838362000a66565b9150826002028217905092915050565b62000aac826200083d565b67ffffffffffffffff81111562000ac85762000ac762000847565b5b62000ad48254620008a1565b62000ae182828562000a0a565b5f60209050601f83116001811462000b17575f841562000b02578287015190505b62000b0e858262000a84565b86555062000b7d565b601f19841662000b2786620008d5565b5f5b8281101562000b505784890151825560018201915060208501945060208101905062000b29565b8683101562000b70578489015162000b6c601f89168262000a66565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f62000bf160248362000b85565b915062000bfe8262000b95565b604082019050919050565b5f6020820190508181035f83015262000c228162000be3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f62000c8560228362000b85565b915062000c928262000c29565b604082019050919050565b5f6020820190508181035f83015262000cb68162000c77565b9050919050565b62000cc88162000957565b82525050565b5f60208201905062000ce35f83018462000cbd565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000d228262000957565b915062000d2f8362000957565b925082820262000d3f8162000957565b9150828204841483151762000d595762000d5862000ce9565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000d998262000957565b915062000da68362000957565b92508262000db95762000db862000d60565b5b828204905092915050565b5f8115159050919050565b62000dda8162000dc4565b82525050565b5f60208201905062000df55f83018462000dcf565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000e31601f8362000b85565b915062000e3e8262000dfb565b602082019050919050565b5f6020820190508181035f83015262000e628162000e23565b9050919050565b5f62000e758262000957565b915062000e828362000957565b925082820190508082111562000e9d5762000e9c62000ce9565b5b92915050565b60805160a05160c051614a8a62000f1b5f395f611a2f01525f8181610dd501526113da01525f81816109dd01528181610a8601528181610c0201528181610cab01528181610e7e01528181611080015281816111780152818161137f0152818161342b0152818161350a01526135310152614a8a5ff3fe608060405260043610610254575f3560e01c8063790ca41311610138578063afa4f3b2116100b5578063dd62ed3e11610079578063dd62ed3e14610879578063e01af92c146108b5578063e0f3ccf5146108dd578063e2f4560514610907578063e4748b9e14610931578063f2fde38b1461095b5761025b565b8063afa4f3b2146107ad578063bff51ef8146107d5578063cb963728146107ff578063d00efb2f14610827578063dcf7aef3146108515761025b565b806395d89b41116100fc57806395d89b41146106b9578063a457c2d7146106e3578063a5c414a61461071f578063a9059cbb14610749578063ad29ffde146107855761025b565b8063790ca413146105e95780638091f3bf14610613578063885229981461063d5780638da5cb5b1461066757806395927c25146106915761025b565b806349bd5a5e116101d15780635d098b38116101955780635d098b38146105055780636ddd17131461052d57806370a0823114610557578063715018a61461059357806373d01ead146105a957806375f0a874146105bf5761025b565b806349bd5a5e146104235780634e6fd6c41461044d5780634fbee19314610477578063538ba4f9146104b357806359512ab0146104dd5761025b565b806323b872dd1161021857806323b872dd1461032f5780632c76d7a61461036b578063313ce5671461039557806339509351146103bf57806342966c68146103fb5761025b565b806301339c211461025f57806306fdde0314610275578063095ea7b31461029f5780631694505e146102db57806318160ddd146103055761025b565b3661025b57005b5f80fd5b34801561026a575f80fd5b50610273610983565b005b348015610280575f80fd5b506102896112cb565b604051610296919061364b565b60405180910390f35b3480156102aa575f80fd5b506102c560048036038101906102c09190613700565b61135b565b6040516102d29190613758565b60405180910390f35b3480156102e6575f80fd5b506102ef61137d565b6040516102fc91906137cc565b60405180910390f35b348015610310575f80fd5b506103196113a1565b60405161032691906137f4565b60405180910390f35b34801561033a575f80fd5b506103556004803603810190610350919061380d565b6113aa565b6040516103629190613758565b60405180910390f35b348015610376575f80fd5b5061037f6113d8565b60405161038c919061387d565b60405180910390f35b3480156103a0575f80fd5b506103a96113fc565b6040516103b691906138b1565b60405180910390f35b3480156103ca575f80fd5b506103e560048036038101906103e09190613700565b611404565b6040516103f29190613758565b60405180910390f35b348015610406575f80fd5b50610421600480360381019061041c91906138ca565b61143a565b005b34801561042e575f80fd5b50610437611447565b6040516104449190613904565b60405180910390f35b348015610458575f80fd5b5061046161146c565b60405161046e9190613904565b60405180910390f35b348015610482575f80fd5b5061049d6004803603810190610498919061391d565b611472565b6040516104aa9190613758565b60405180910390f35b3480156104be575f80fd5b506104c76114c4565b6040516104d49190613904565b60405180910390f35b3480156104e8575f80fd5b5061050360048036038101906104fe9190613972565b6114c8565b005b348015610510575f80fd5b5061052b6004803603810190610526919061391d565b611533565b005b348015610538575f80fd5b506105416116b9565b60405161054e9190613758565b60405180910390f35b348015610562575f80fd5b5061057d6004803603810190610578919061391d565b6116cc565b60405161058a91906137f4565b60405180910390f35b34801561059e575f80fd5b506105a7611711565b005b3480156105b4575f80fd5b506105bd611724565b005b3480156105ca575f80fd5b506105d36117fc565b6040516105e09190613904565b60405180910390f35b3480156105f4575f80fd5b506105fd611821565b60405161060a91906137f4565b60405180910390f35b34801561061e575f80fd5b50610627611827565b6040516106349190613758565b60405180910390f35b348015610648575f80fd5b5061065161183a565b60405161065e9190613904565b60405180910390f35b348015610672575f80fd5b5061067b61185f565b6040516106889190613904565b60405180910390f35b34801561069c575f80fd5b506106b760048036038101906106b291906138ca565b611887565b005b3480156106c4575f80fd5b506106cd611928565b6040516106da919061364b565b60405180910390f35b3480156106ee575f80fd5b5061070960048036038101906107049190613700565b6119b8565b6040516107169190613758565b60405180910390f35b34801561072a575f80fd5b50610733611a2d565b6040516107409190613904565b60405180910390f35b348015610754575f80fd5b5061076f600480360381019061076a9190613700565b611a51565b60405161077c9190613758565b60405180910390f35b348015610790575f80fd5b506107ab60048036038101906107a691906139fe565b611a73565b005b3480156107b8575f80fd5b506107d360048036038101906107ce91906138ca565b611ad2565b005b3480156107e0575f80fd5b506107e9611c09565b6040516107f69190613758565b60405180910390f35b34801561080a575f80fd5b506108256004803603810190610820919061391d565b611c1c565b005b348015610832575f80fd5b5061083b611eb8565b60405161084891906137f4565b60405180910390f35b34801561085c575f80fd5b50610877600480360381019061087291906138ca565b611ebe565b005b348015610884575f80fd5b5061089f600480360381019061089a9190613a5b565b611f56565b6040516108ac91906137f4565b60405180910390f35b3480156108c0575f80fd5b506108db60048036038101906108d69190613972565b611fd8565b005b3480156108e8575f80fd5b506108f1612043565b6040516108fe91906137f4565b60405180910390f35b348015610912575f80fd5b5061091b612049565b60405161092891906137f4565b60405180910390f35b34801561093c575f80fd5b5061094561204f565b60405161095291906137f4565b60405180910390f35b348015610966575f80fd5b50610981600480360381019061097c919061391d565b612055565b005b61098b6120d7565b600760189054906101000a900460ff16156109db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d290613ae3565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a44573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a689190613b15565b73ffffffffffffffffffffffffffffffffffffffff1663e6a43905307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610aed573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b119190613b15565b6040518363ffffffff1660e01b8152600401610b2e929190613b40565b602060405180830381865afa158015610b49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b6d9190613b15565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610dd3577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c69573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c8d9190613b15565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d12573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d369190613b15565b6040518363ffffffff1660e01b8152600401610d53929190613b40565b6020604051808303815f875af1158015610d6f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d939190613b15565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e3c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e609190613b15565b73ffffffffffffffffffffffffffffffffffffffff1663a1671295307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ee5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f099190613b15565b6127106040518463ffffffff1660e01b8152600401610f2a93929190613bae565b6020604051808303815f875af1158015610f46573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f6a9190613b15565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610ff53060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff612155565b6110413060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff612155565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016110dd929190613be3565b6020604051808303815f875af11580156110f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061111d9190613c1e565b5061114a60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612318565b61117660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612318565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71947306111bd306116cc565b5f806111c761185f565b426040518863ffffffff1660e01b81526004016111e996959493929190613c82565b60606040518083038185885af1158015611205573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061122a9190613cf5565b5050506001600760156101000a81548160ff0219169083151502179055506001600760166101000a81548160ff0219169083151502179055506001600760186101000a81548160ff0219169083151502179055504360098190555042600a819055507fa4eda92a9703eeccb36fbed43c5cfce0e180464bf695e806d3bd0e439743fd56600954600a546040516112c1929190613d45565b60405180910390a1565b6060600380546112da90613d99565b80601f016020809104026020016040519081016040528092919081815260200182805461130690613d99565b80156113515780601f1061132857610100808354040283529160200191611351565b820191905f5260205f20905b81548152906001019060200180831161133457829003601f168201915b5050505050905090565b5f806113656123b6565b9050611372818585612155565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b5f806113b46123b6565b90506113c18582856123bd565b6113cc858585612448565b60019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f6012905090565b5f8061140e6123b6565b905061142f8185856114208589611f56565b61142a9190613df6565b612155565b600191505092915050565b6114443382612c9c565b50565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61dead81565b5f600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f81565b6114d06120d7565b80600760166101000a81548160ff0219169083151502179055507f06cf69227e5c2b5a71319bc3784f6a5355ea0ba2a69bc4c39d64413dfa5a012b600760169054906101000a900460ff166040516115289190613758565b60405180910390a150565b61153b6120d7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a090613e73565b60405180910390fd5b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061163a60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612e5f565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f83e9b0264f846c733d721fc222bd1b60d47f257c00f2c8ee812d03d29fa87a6460405160405180910390a35050565b600760159054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6117196120d7565b6117225f612f05565b565b61172c6120d7565b5f600760156101000a81548160ff0219169083151502179055505f600760166101000a81548160ff0219169083151502179055505f600760176101000a81548160ff0219169083151502179055505f600c819055505f600d819055505f600e819055506117976113a1565b600b819055505f6117a7306116cc565b11156117c1576117c030336117bb306116cc565b612fc8565b5b7f4aee4a7ed8634b54edfc1176ee662b04884b0b8d9fcb732530404873ef13f38743426040516117f2929190613d45565b60405180910390a1565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b600760189054906101000a900460ff1681565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61188f6120d7565b600a8111156118d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ca90613f01565b60405180910390fd5b5f600d54905081600d81905550600d54600e819055507f125b37650f21d088600cef1223439f6a8bd70800debfd486c503a8a2d19d4b0181600d5460405161191c929190613d45565b60405180910390a15050565b60606004805461193790613d99565b80601f016020809104026020016040519081016040528092919081815260200182805461196390613d99565b80156119ae5780601f10611985576101008083540402835291602001916119ae565b820191905f5260205f20905b81548152906001019060200180831161199157829003601f168201915b5050505050905090565b5f806119c26123b6565b90505f6119cf8286611f56565b905083811015611a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0b90613f8f565b60405180910390fd5b611a218286868403612155565b60019250505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f80611a5b6123b6565b9050611a68818585612448565b600191505092915050565b611a7b6120d7565b5f5b83839050811015611acc57611ab9848483818110611a9e57611a9d613fad565b5b9050602002016020810190611ab3919061391d565b83612e5f565b8080611ac490613fda565b915050611a7d565b50505050565b611ada6120d7565b611b0a620186a0611afc6001611aee6113a1565b61323490919063ffffffff16565b61324990919063ffffffff16565b811015611b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4390614091565b60405180910390fd5b611b7b6103e8611b6d6005611b5f6113a1565b61323490919063ffffffff16565b61324990919063ffffffff16565b811115611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb49061411f565b60405180910390fd5b5f600b54905081600b819055507f190dc7c30bc62ef30e35c5f5512ad715a1bd03230f2d89c965249246c8d8ecca81600b54604051611bfd929190613d45565b60405180910390a15050565b600760169054906101000a900460ff1681565b611c246120d7565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ccb575f4791503373ffffffffffffffffffffffffffffffffffffffff1682604051611c809061416a565b5f6040518083038185875af1925050503d805f8114611cba576040519150601f19603f3d011682016040523d82523d5f602084013e611cbf565b606091505b50508091505050611e7b565b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611d059190613904565b602060405180830381865afa158015611d20573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d44919061417e565b11611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b906141f3565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611dbd9190613904565b602060405180830381865afa158015611dd8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dfc919061417e565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611e39929190613be3565b6020604051808303815f875af1158015611e55573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e799190613c1e565b505b7f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b8282604051611eac929190613be3565b60405180910390a15050565b60095481565b611ec66120d7565b600a811115611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0190613f01565b60405180910390fd5b5f600c54905081600c819055507f5fcc0eea159d45a3b8d481be746c9beed251431a542a5fed4484be37ab783e8d81600c54604051611f4a929190613d45565b60405180910390a15050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611fe06120d7565b80600760156101000a81548160ff0219169083151502179055507f8bcc108c7d867d0a70433f71ecba3056c4dcc48eaabe4ca987f9fb1f836091d5600760159054906101000a900460ff166040516120389190613758565b60405180910390a150565b600d5481565b600b5481565b600c5481565b61205d6120d7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c290614281565b60405180910390fd5b6120d481612f05565b50565b6120df6123b6565b73ffffffffffffffffffffffffffffffffffffffff166120fd61185f565b73ffffffffffffffffffffffffffffffffffffffff1614612153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214a906142e9565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba90614377565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222890614405565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161230b91906137f4565b60405180910390a3505050565b8060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f33905090565b5f6123c88484611f56565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146124425781811015612434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242b9061446d565b60405180910390fd5b6124418484848403612155565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ad906144fb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251b90614589565b60405180910390fd5b5f810361253b5761253683835f612fc8565b612c97565b600760179054906101000a900460ff1680156125fa575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806125f9575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b156126da57600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061269a5750600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d090614617565b60405180910390fd5b5b6126e261185f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612750575061272061185f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561278857505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127c2575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127db5750600760149054906101000a900460ff16155b156128d057600760189054906101000a900460ff166128cf57600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061288f5750600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6128ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c59061467f565b60405180910390fd5b5b5b600760159054906101000a900460ff1615612a1f575f6128ef306116cc565b90505f600b5482101590508080156129145750600760149054906101000a900460ff16155b8015612967575060105f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156129ba5750600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612a0d5750600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612a1c57612a1b8261325e565b5b50505b600760169054906101000a900460ff1615612c82575f600760149054906101000a900460ff16159050600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612ae35750600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612aec575f90505b5f808215612c7e5760105f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612b4b57505f600d54115b15612ba957612b66600260095461336f90919063ffffffff16565b431115612b7757600d549050612b7c565b602890505b612ba26064612b94838761323490919063ffffffff16565b61324990919063ffffffff16565b9150612c5b565b60105f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612c0057505f600c54115b15612c5a57612c1b600260095461336f90919063ffffffff16565b431115612c2c57600c549050612c31565b602890505b612c576064612c49838761323490919063ffffffff16565b61324990919063ffffffff16565b91505b5b5f821115612c6f57612c6e863084612fc8565b5b8184612c7b919061469d565b93505b5050505b612c8d838383612fc8565b600e54600d819055505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0190614740565b60405180910390fd5b612d15825f83613384565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8f906147ce565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612e4791906137f4565b60405180910390a3612e5a835f84613389565b505050565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051612ef99190613758565b60405180910390a25050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302d906144fb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036130a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309b90614589565b60405180910390fd5b6130af838383613384565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613132576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131299061485c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161321b91906137f4565b60405180910390a361322e848484613389565b50505050565b5f8183613241919061487a565b905092915050565b5f818361325691906148e8565b905092915050565b6001600760146101000a81548160ff0219169083151502179055505f8082036132875750613352565b61329d600a600b5461323490919063ffffffff16565b8211156132bd576132ba600a600b5461323490919063ffffffff16565b91505b6132c68261338e565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161330b9061416a565b5f6040518083038185875af1925050503d805f8114613345576040519150601f19603f3d011682016040523d82523d5f602084013e61334a565b606091505b505080915050505b5f600760146101000a81548160ff02191690831515021790555050565b5f818361337c9190613df6565b905092915050565b505050565b505050565b5f600267ffffffffffffffff8111156133aa576133a9614918565b5b6040519080825280602002602001820160405280156133d85781602001602082028036833780820191505090505b50905030815f815181106133ef576133ee613fad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613492573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134b69190613b15565b816001815181106134ca576134c9613fad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061352f307f000000000000000000000000000000000000000000000000000000000000000084612155565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016135909594939291906149fc565b5f604051808303815f87803b1580156135a7575f80fd5b505af11580156135b9573d5f803e3d5ffd5b505050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156135f85780820151818401526020810190506135dd565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61361d826135c1565b61362781856135cb565b93506136378185602086016135db565b61364081613603565b840191505092915050565b5f6020820190508181035f8301526136638184613613565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61369c82613673565b9050919050565b6136ac81613692565b81146136b6575f80fd5b50565b5f813590506136c7816136a3565b92915050565b5f819050919050565b6136df816136cd565b81146136e9575f80fd5b50565b5f813590506136fa816136d6565b92915050565b5f80604083850312156137165761371561366b565b5b5f613723858286016136b9565b9250506020613734858286016136ec565b9150509250929050565b5f8115159050919050565b6137528161373e565b82525050565b5f60208201905061376b5f830184613749565b92915050565b5f819050919050565b5f61379461378f61378a84613673565b613771565b613673565b9050919050565b5f6137a58261377a565b9050919050565b5f6137b68261379b565b9050919050565b6137c6816137ac565b82525050565b5f6020820190506137df5f8301846137bd565b92915050565b6137ee816136cd565b82525050565b5f6020820190506138075f8301846137e5565b92915050565b5f805f606084860312156138245761382361366b565b5b5f613831868287016136b9565b9350506020613842868287016136b9565b9250506040613853868287016136ec565b9150509250925092565b5f6138678261379b565b9050919050565b6138778161385d565b82525050565b5f6020820190506138905f83018461386e565b92915050565b5f60ff82169050919050565b6138ab81613896565b82525050565b5f6020820190506138c45f8301846138a2565b92915050565b5f602082840312156138df576138de61366b565b5b5f6138ec848285016136ec565b91505092915050565b6138fe81613692565b82525050565b5f6020820190506139175f8301846138f5565b92915050565b5f602082840312156139325761393161366b565b5b5f61393f848285016136b9565b91505092915050565b6139518161373e565b811461395b575f80fd5b50565b5f8135905061396c81613948565b92915050565b5f602082840312156139875761398661366b565b5b5f6139948482850161395e565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126139be576139bd61399d565b5b8235905067ffffffffffffffff8111156139db576139da6139a1565b5b6020830191508360208202830111156139f7576139f66139a5565b5b9250929050565b5f805f60408486031215613a1557613a1461366b565b5b5f84013567ffffffffffffffff811115613a3257613a3161366f565b5b613a3e868287016139a9565b93509350506020613a518682870161395e565b9150509250925092565b5f8060408385031215613a7157613a7061366b565b5b5f613a7e858286016136b9565b9250506020613a8f858286016136b9565b9150509250929050565b7f45524332303a20416c7265616479206c61756e636865642e00000000000000005f82015250565b5f613acd6018836135cb565b9150613ad882613a99565b602082019050919050565b5f6020820190508181035f830152613afa81613ac1565b9050919050565b5f81519050613b0f816136a3565b92915050565b5f60208284031215613b2a57613b2961366b565b5b5f613b3784828501613b01565b91505092915050565b5f604082019050613b535f8301856138f5565b613b6060208301846138f5565b9392505050565b5f819050919050565b5f62ffffff82169050919050565b5f613b98613b93613b8e84613b67565b613771565b613b70565b9050919050565b613ba881613b7e565b82525050565b5f606082019050613bc15f8301866138f5565b613bce60208301856138f5565b613bdb6040830184613b9f565b949350505050565b5f604082019050613bf65f8301856138f5565b613c0360208301846137e5565b9392505050565b5f81519050613c1881613948565b92915050565b5f60208284031215613c3357613c3261366b565b5b5f613c4084828501613c0a565b91505092915050565b5f819050919050565b5f613c6c613c67613c6284613c49565b613771565b6136cd565b9050919050565b613c7c81613c52565b82525050565b5f60c082019050613c955f8301896138f5565b613ca260208301886137e5565b613caf6040830187613c73565b613cbc6060830186613c73565b613cc960808301856138f5565b613cd660a08301846137e5565b979650505050505050565b5f81519050613cef816136d6565b92915050565b5f805f60608486031215613d0c57613d0b61366b565b5b5f613d1986828701613ce1565b9350506020613d2a86828701613ce1565b9250506040613d3b86828701613ce1565b9150509250925092565b5f604082019050613d585f8301856137e5565b613d6560208301846137e5565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613db057607f821691505b602082108103613dc357613dc2613d6c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613e00826136cd565b9150613e0b836136cd565b9250828201905080821115613e2357613e22613dc9565b5b92915050565b7f45524332303a20416464726573732030000000000000000000000000000000005f82015250565b5f613e5d6010836135cb565b9150613e6882613e29565b602082019050919050565b5f6020820190508181035f830152613e8a81613e51565b9050919050565b7f45524332303a204d757374206b656570206665657320617420313025206f72205f8201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b5f613eeb6024836135cb565b9150613ef682613e91565b604082019050919050565b5f6020820190508181035f830152613f1881613edf565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613f796025836135cb565b9150613f8482613f1f565b604082019050919050565b5f6020820190508181035f830152613fa681613f6d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f613fe4826136cd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361401657614015613dc9565b5b600182019050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f775f8201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000602082015250565b5f61407b603c836135cb565b915061408682614021565b604082019050919050565b5f6020820190508181035f8301526140a88161406f565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206869675f8201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000602082015250565b5f614109603b836135cb565b9150614114826140af565b604082019050919050565b5f6020820190508181035f830152614136816140fd565b9050919050565b5f81905092915050565b50565b5f6141555f8361413d565b915061416082614147565b5f82019050919050565b5f6141748261414a565b9150819050919050565b5f602082840312156141935761419261366b565b5b5f6141a084828501613ce1565b91505092915050565b7f4e6f20746f6b656e7300000000000000000000000000000000000000000000005f82015250565b5f6141dd6009836135cb565b91506141e8826141a9565b602082019050919050565b5f6020820190508181035f83015261420a816141d1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61426b6026836135cb565b915061427682614211565b604082019050919050565b5f6020820190508181035f8301526142988161425f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6142d36020836135cb565b91506142de8261429f565b602082019050919050565b5f6020820190508181035f830152614300816142c7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6143616024836135cb565b915061436c82614307565b604082019050919050565b5f6020820190508181035f83015261438e81614355565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6143ef6022836135cb565b91506143fa82614395565b604082019050919050565b5f6020820190508181035f83015261441c816143e3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f614457601d836135cb565b915061446282614423565b602082019050919050565b5f6020820190508181035f8301526144848161444b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6144e56025836135cb565b91506144f08261448b565b604082019050919050565b5f6020820190508181035f830152614512816144d9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6145736023836135cb565b915061457e82614519565b604082019050919050565b5f6020820190508181035f8301526145a081614567565b9050919050565b7f45524332303a204e6f7420617574686f72697a656420746f20616464204c50205f8201527f746f20556e697377617020563320506f6f6c0000000000000000000000000000602082015250565b5f6146016032836135cb565b915061460c826145a7565b604082019050919050565b5f6020820190508181035f83015261462e816145f5565b9050919050565b7f45524332303a204e6f74206c61756e636865642e0000000000000000000000005f82015250565b5f6146696014836135cb565b915061467482614635565b602082019050919050565b5f6020820190508181035f8301526146968161465d565b9050919050565b5f6146a7826136cd565b91506146b2836136cd565b92508282039050818111156146ca576146c9613dc9565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61472a6021836135cb565b9150614735826146d0565b604082019050919050565b5f6020820190508181035f8301526147578161471e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6147b86022836135cb565b91506147c38261475e565b604082019050919050565b5f6020820190508181035f8301526147e5816147ac565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6148466026836135cb565b9150614851826147ec565b604082019050919050565b5f6020820190508181035f8301526148738161483a565b9050919050565b5f614884826136cd565b915061488f836136cd565b925082820261489d816136cd565b915082820484148315176148b4576148b3613dc9565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6148f2826136cd565b91506148fd836136cd565b92508261490d5761490c6148bb565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61497781613692565b82525050565b5f614988838361496e565b60208301905092915050565b5f602082019050919050565b5f6149aa82614945565b6149b4818561494f565b93506149bf8361495f565b805f5b838110156149ef5781516149d6888261497d565b97506149e183614994565b9250506001810190506149c2565b5085935050505092915050565b5f60a082019050614a0f5f8301886137e5565b614a1c6020830187613c73565b8181036040830152614a2e81866149a0565b9050614a3d60608301856138f5565b614a4a60808301846137e5565b969550505050505056fea2646970667358221220f03383c273b3ad53246428b040aae5bb3097545292c3bf28272044a522c128ce64736f6c63430008150033

Deployed Bytecode

0x608060405260043610610254575f3560e01c8063790ca41311610138578063afa4f3b2116100b5578063dd62ed3e11610079578063dd62ed3e14610879578063e01af92c146108b5578063e0f3ccf5146108dd578063e2f4560514610907578063e4748b9e14610931578063f2fde38b1461095b5761025b565b8063afa4f3b2146107ad578063bff51ef8146107d5578063cb963728146107ff578063d00efb2f14610827578063dcf7aef3146108515761025b565b806395d89b41116100fc57806395d89b41146106b9578063a457c2d7146106e3578063a5c414a61461071f578063a9059cbb14610749578063ad29ffde146107855761025b565b8063790ca413146105e95780638091f3bf14610613578063885229981461063d5780638da5cb5b1461066757806395927c25146106915761025b565b806349bd5a5e116101d15780635d098b38116101955780635d098b38146105055780636ddd17131461052d57806370a0823114610557578063715018a61461059357806373d01ead146105a957806375f0a874146105bf5761025b565b806349bd5a5e146104235780634e6fd6c41461044d5780634fbee19314610477578063538ba4f9146104b357806359512ab0146104dd5761025b565b806323b872dd1161021857806323b872dd1461032f5780632c76d7a61461036b578063313ce5671461039557806339509351146103bf57806342966c68146103fb5761025b565b806301339c211461025f57806306fdde0314610275578063095ea7b31461029f5780631694505e146102db57806318160ddd146103055761025b565b3661025b57005b5f80fd5b34801561026a575f80fd5b50610273610983565b005b348015610280575f80fd5b506102896112cb565b604051610296919061364b565b60405180910390f35b3480156102aa575f80fd5b506102c560048036038101906102c09190613700565b61135b565b6040516102d29190613758565b60405180910390f35b3480156102e6575f80fd5b506102ef61137d565b6040516102fc91906137cc565b60405180910390f35b348015610310575f80fd5b506103196113a1565b60405161032691906137f4565b60405180910390f35b34801561033a575f80fd5b506103556004803603810190610350919061380d565b6113aa565b6040516103629190613758565b60405180910390f35b348015610376575f80fd5b5061037f6113d8565b60405161038c919061387d565b60405180910390f35b3480156103a0575f80fd5b506103a96113fc565b6040516103b691906138b1565b60405180910390f35b3480156103ca575f80fd5b506103e560048036038101906103e09190613700565b611404565b6040516103f29190613758565b60405180910390f35b348015610406575f80fd5b50610421600480360381019061041c91906138ca565b61143a565b005b34801561042e575f80fd5b50610437611447565b6040516104449190613904565b60405180910390f35b348015610458575f80fd5b5061046161146c565b60405161046e9190613904565b60405180910390f35b348015610482575f80fd5b5061049d6004803603810190610498919061391d565b611472565b6040516104aa9190613758565b60405180910390f35b3480156104be575f80fd5b506104c76114c4565b6040516104d49190613904565b60405180910390f35b3480156104e8575f80fd5b5061050360048036038101906104fe9190613972565b6114c8565b005b348015610510575f80fd5b5061052b6004803603810190610526919061391d565b611533565b005b348015610538575f80fd5b506105416116b9565b60405161054e9190613758565b60405180910390f35b348015610562575f80fd5b5061057d6004803603810190610578919061391d565b6116cc565b60405161058a91906137f4565b60405180910390f35b34801561059e575f80fd5b506105a7611711565b005b3480156105b4575f80fd5b506105bd611724565b005b3480156105ca575f80fd5b506105d36117fc565b6040516105e09190613904565b60405180910390f35b3480156105f4575f80fd5b506105fd611821565b60405161060a91906137f4565b60405180910390f35b34801561061e575f80fd5b50610627611827565b6040516106349190613758565b60405180910390f35b348015610648575f80fd5b5061065161183a565b60405161065e9190613904565b60405180910390f35b348015610672575f80fd5b5061067b61185f565b6040516106889190613904565b60405180910390f35b34801561069c575f80fd5b506106b760048036038101906106b291906138ca565b611887565b005b3480156106c4575f80fd5b506106cd611928565b6040516106da919061364b565b60405180910390f35b3480156106ee575f80fd5b5061070960048036038101906107049190613700565b6119b8565b6040516107169190613758565b60405180910390f35b34801561072a575f80fd5b50610733611a2d565b6040516107409190613904565b60405180910390f35b348015610754575f80fd5b5061076f600480360381019061076a9190613700565b611a51565b60405161077c9190613758565b60405180910390f35b348015610790575f80fd5b506107ab60048036038101906107a691906139fe565b611a73565b005b3480156107b8575f80fd5b506107d360048036038101906107ce91906138ca565b611ad2565b005b3480156107e0575f80fd5b506107e9611c09565b6040516107f69190613758565b60405180910390f35b34801561080a575f80fd5b506108256004803603810190610820919061391d565b611c1c565b005b348015610832575f80fd5b5061083b611eb8565b60405161084891906137f4565b60405180910390f35b34801561085c575f80fd5b50610877600480360381019061087291906138ca565b611ebe565b005b348015610884575f80fd5b5061089f600480360381019061089a9190613a5b565b611f56565b6040516108ac91906137f4565b60405180910390f35b3480156108c0575f80fd5b506108db60048036038101906108d69190613972565b611fd8565b005b3480156108e8575f80fd5b506108f1612043565b6040516108fe91906137f4565b60405180910390f35b348015610912575f80fd5b5061091b612049565b60405161092891906137f4565b60405180910390f35b34801561093c575f80fd5b5061094561204f565b60405161095291906137f4565b60405180910390f35b348015610966575f80fd5b50610981600480360381019061097c919061391d565b612055565b005b61098b6120d7565b600760189054906101000a900460ff16156109db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d290613ae3565b60405180910390fd5b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a44573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a689190613b15565b73ffffffffffffffffffffffffffffffffffffffff1663e6a43905307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610aed573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b119190613b15565b6040518363ffffffff1660e01b8152600401610b2e929190613b40565b602060405180830381865afa158015610b49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b6d9190613b15565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610dd3577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c69573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c8d9190613b15565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d12573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d369190613b15565b6040518363ffffffff1660e01b8152600401610d53929190613b40565b6020604051808303815f875af1158015610d6f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d939190613b15565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b7f000000000000000000000000e592427a0aece92de3edee1f18e0157c0586156473ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e3c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e609190613b15565b73ffffffffffffffffffffffffffffffffffffffff1663a1671295307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ee5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f099190613b15565b6127106040518463ffffffff1660e01b8152600401610f2a93929190613bae565b6020604051808303815f875af1158015610f46573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f6a9190613b15565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610ff53060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff612155565b6110413060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff612155565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016110dd929190613be3565b6020604051808303815f875af11580156110f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061111d9190613c1e565b5061114a60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612318565b61117660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612318565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71947306111bd306116cc565b5f806111c761185f565b426040518863ffffffff1660e01b81526004016111e996959493929190613c82565b60606040518083038185885af1158015611205573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061122a9190613cf5565b5050506001600760156101000a81548160ff0219169083151502179055506001600760166101000a81548160ff0219169083151502179055506001600760186101000a81548160ff0219169083151502179055504360098190555042600a819055507fa4eda92a9703eeccb36fbed43c5cfce0e180464bf695e806d3bd0e439743fd56600954600a546040516112c1929190613d45565b60405180910390a1565b6060600380546112da90613d99565b80601f016020809104026020016040519081016040528092919081815260200182805461130690613d99565b80156113515780601f1061132857610100808354040283529160200191611351565b820191905f5260205f20905b81548152906001019060200180831161133457829003601f168201915b5050505050905090565b5f806113656123b6565b9050611372818585612155565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b5f806113b46123b6565b90506113c18582856123bd565b6113cc858585612448565b60019150509392505050565b7f000000000000000000000000e592427a0aece92de3edee1f18e0157c0586156481565b5f6012905090565b5f8061140e6123b6565b905061142f8185856114208589611f56565b61142a9190613df6565b612155565b600191505092915050565b6114443382612c9c565b50565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61dead81565b5f600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f81565b6114d06120d7565b80600760166101000a81548160ff0219169083151502179055507f06cf69227e5c2b5a71319bc3784f6a5355ea0ba2a69bc4c39d64413dfa5a012b600760169054906101000a900460ff166040516115289190613758565b60405180910390a150565b61153b6120d7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a090613e73565b60405180910390fd5b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061163a60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612e5f565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f83e9b0264f846c733d721fc222bd1b60d47f257c00f2c8ee812d03d29fa87a6460405160405180910390a35050565b600760159054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6117196120d7565b6117225f612f05565b565b61172c6120d7565b5f600760156101000a81548160ff0219169083151502179055505f600760166101000a81548160ff0219169083151502179055505f600760176101000a81548160ff0219169083151502179055505f600c819055505f600d819055505f600e819055506117976113a1565b600b819055505f6117a7306116cc565b11156117c1576117c030336117bb306116cc565b612fc8565b5b7f4aee4a7ed8634b54edfc1176ee662b04884b0b8d9fcb732530404873ef13f38743426040516117f2929190613d45565b60405180910390a1565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b600760189054906101000a900460ff1681565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61188f6120d7565b600a8111156118d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ca90613f01565b60405180910390fd5b5f600d54905081600d81905550600d54600e819055507f125b37650f21d088600cef1223439f6a8bd70800debfd486c503a8a2d19d4b0181600d5460405161191c929190613d45565b60405180910390a15050565b60606004805461193790613d99565b80601f016020809104026020016040519081016040528092919081815260200182805461196390613d99565b80156119ae5780601f10611985576101008083540402835291602001916119ae565b820191905f5260205f20905b81548152906001019060200180831161199157829003601f168201915b5050505050905090565b5f806119c26123b6565b90505f6119cf8286611f56565b905083811015611a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0b90613f8f565b60405180910390fd5b611a218286868403612155565b60019250505092915050565b7f0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad81565b5f80611a5b6123b6565b9050611a68818585612448565b600191505092915050565b611a7b6120d7565b5f5b83839050811015611acc57611ab9848483818110611a9e57611a9d613fad565b5b9050602002016020810190611ab3919061391d565b83612e5f565b8080611ac490613fda565b915050611a7d565b50505050565b611ada6120d7565b611b0a620186a0611afc6001611aee6113a1565b61323490919063ffffffff16565b61324990919063ffffffff16565b811015611b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4390614091565b60405180910390fd5b611b7b6103e8611b6d6005611b5f6113a1565b61323490919063ffffffff16565b61324990919063ffffffff16565b811115611bbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb49061411f565b60405180910390fd5b5f600b54905081600b819055507f190dc7c30bc62ef30e35c5f5512ad715a1bd03230f2d89c965249246c8d8ecca81600b54604051611bfd929190613d45565b60405180910390a15050565b600760169054906101000a900460ff1681565b611c246120d7565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ccb575f4791503373ffffffffffffffffffffffffffffffffffffffff1682604051611c809061416a565b5f6040518083038185875af1925050503d805f8114611cba576040519150601f19603f3d011682016040523d82523d5f602084013e611cbf565b606091505b50508091505050611e7b565b5f8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611d059190613904565b602060405180830381865afa158015611d20573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d44919061417e565b11611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b906141f3565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611dbd9190613904565b602060405180830381865afa158015611dd8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dfc919061417e565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611e39929190613be3565b6020604051808303815f875af1158015611e55573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e799190613c1e565b505b7f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b8282604051611eac929190613be3565b60405180910390a15050565b60095481565b611ec66120d7565b600a811115611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0190613f01565b60405180910390fd5b5f600c54905081600c819055507f5fcc0eea159d45a3b8d481be746c9beed251431a542a5fed4484be37ab783e8d81600c54604051611f4a929190613d45565b60405180910390a15050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611fe06120d7565b80600760156101000a81548160ff0219169083151502179055507f8bcc108c7d867d0a70433f71ecba3056c4dcc48eaabe4ca987f9fb1f836091d5600760159054906101000a900460ff166040516120389190613758565b60405180910390a150565b600d5481565b600b5481565b600c5481565b61205d6120d7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c290614281565b60405180910390fd5b6120d481612f05565b50565b6120df6123b6565b73ffffffffffffffffffffffffffffffffffffffff166120fd61185f565b73ffffffffffffffffffffffffffffffffffffffff1614612153576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214a906142e9565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba90614377565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222890614405565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161230b91906137f4565b60405180910390a3505050565b8060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f33905090565b5f6123c88484611f56565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146124425781811015612434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242b9061446d565b60405180910390fd5b6124418484848403612155565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ad906144fb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251b90614589565b60405180910390fd5b5f810361253b5761253683835f612fc8565b612c97565b600760179054906101000a900460ff1680156125fa575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806125f9575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b5b156126da57600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061269a5750600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d090614617565b60405180910390fd5b5b6126e261185f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612750575061272061185f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561278857505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127c2575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127db5750600760149054906101000a900460ff16155b156128d057600760189054906101000a900460ff166128cf57600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168061288f5750600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6128ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c59061467f565b60405180910390fd5b5b5b600760159054906101000a900460ff1615612a1f575f6128ef306116cc565b90505f600b5482101590508080156129145750600760149054906101000a900460ff16155b8015612967575060105f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156129ba5750600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612a0d5750600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612a1c57612a1b8261325e565b5b50505b600760169054906101000a900460ff1615612c82575f600760149054906101000a900460ff16159050600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612ae35750600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612aec575f90505b5f808215612c7e5760105f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612b4b57505f600d54115b15612ba957612b66600260095461336f90919063ffffffff16565b431115612b7757600d549050612b7c565b602890505b612ba26064612b94838761323490919063ffffffff16565b61324990919063ffffffff16565b9150612c5b565b60105f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612c0057505f600c54115b15612c5a57612c1b600260095461336f90919063ffffffff16565b431115612c2c57600c549050612c31565b602890505b612c576064612c49838761323490919063ffffffff16565b61324990919063ffffffff16565b91505b5b5f821115612c6f57612c6e863084612fc8565b5b8184612c7b919061469d565b93505b5050505b612c8d838383612fc8565b600e54600d819055505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0190614740565b60405180910390fd5b612d15825f83613384565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8f906147ce565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612e4791906137f4565b60405180910390a3612e5a835f84613389565b505050565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051612ef99190613758565b60405180910390a25050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302d906144fb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036130a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309b90614589565b60405180910390fd5b6130af838383613384565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613132576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131299061485c565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161321b91906137f4565b60405180910390a361322e848484613389565b50505050565b5f8183613241919061487a565b905092915050565b5f818361325691906148e8565b905092915050565b6001600760146101000a81548160ff0219169083151502179055505f8082036132875750613352565b61329d600a600b5461323490919063ffffffff16565b8211156132bd576132ba600a600b5461323490919063ffffffff16565b91505b6132c68261338e565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161330b9061416a565b5f6040518083038185875af1925050503d805f8114613345576040519150601f19603f3d011682016040523d82523d5f602084013e61334a565b606091505b505080915050505b5f600760146101000a81548160ff02191690831515021790555050565b5f818361337c9190613df6565b905092915050565b505050565b505050565b5f600267ffffffffffffffff8111156133aa576133a9614918565b5b6040519080825280602002602001820160405280156133d85781602001602082028036833780820191505090505b50905030815f815181106133ef576133ee613fad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613492573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134b69190613b15565b816001815181106134ca576134c9613fad565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061352f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612155565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016135909594939291906149fc565b5f604051808303815f87803b1580156135a7575f80fd5b505af11580156135b9573d5f803e3d5ffd5b505050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156135f85780820151818401526020810190506135dd565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61361d826135c1565b61362781856135cb565b93506136378185602086016135db565b61364081613603565b840191505092915050565b5f6020820190508181035f8301526136638184613613565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61369c82613673565b9050919050565b6136ac81613692565b81146136b6575f80fd5b50565b5f813590506136c7816136a3565b92915050565b5f819050919050565b6136df816136cd565b81146136e9575f80fd5b50565b5f813590506136fa816136d6565b92915050565b5f80604083850312156137165761371561366b565b5b5f613723858286016136b9565b9250506020613734858286016136ec565b9150509250929050565b5f8115159050919050565b6137528161373e565b82525050565b5f60208201905061376b5f830184613749565b92915050565b5f819050919050565b5f61379461378f61378a84613673565b613771565b613673565b9050919050565b5f6137a58261377a565b9050919050565b5f6137b68261379b565b9050919050565b6137c6816137ac565b82525050565b5f6020820190506137df5f8301846137bd565b92915050565b6137ee816136cd565b82525050565b5f6020820190506138075f8301846137e5565b92915050565b5f805f606084860312156138245761382361366b565b5b5f613831868287016136b9565b9350506020613842868287016136b9565b9250506040613853868287016136ec565b9150509250925092565b5f6138678261379b565b9050919050565b6138778161385d565b82525050565b5f6020820190506138905f83018461386e565b92915050565b5f60ff82169050919050565b6138ab81613896565b82525050565b5f6020820190506138c45f8301846138a2565b92915050565b5f602082840312156138df576138de61366b565b5b5f6138ec848285016136ec565b91505092915050565b6138fe81613692565b82525050565b5f6020820190506139175f8301846138f5565b92915050565b5f602082840312156139325761393161366b565b5b5f61393f848285016136b9565b91505092915050565b6139518161373e565b811461395b575f80fd5b50565b5f8135905061396c81613948565b92915050565b5f602082840312156139875761398661366b565b5b5f6139948482850161395e565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126139be576139bd61399d565b5b8235905067ffffffffffffffff8111156139db576139da6139a1565b5b6020830191508360208202830111156139f7576139f66139a5565b5b9250929050565b5f805f60408486031215613a1557613a1461366b565b5b5f84013567ffffffffffffffff811115613a3257613a3161366f565b5b613a3e868287016139a9565b93509350506020613a518682870161395e565b9150509250925092565b5f8060408385031215613a7157613a7061366b565b5b5f613a7e858286016136b9565b9250506020613a8f858286016136b9565b9150509250929050565b7f45524332303a20416c7265616479206c61756e636865642e00000000000000005f82015250565b5f613acd6018836135cb565b9150613ad882613a99565b602082019050919050565b5f6020820190508181035f830152613afa81613ac1565b9050919050565b5f81519050613b0f816136a3565b92915050565b5f60208284031215613b2a57613b2961366b565b5b5f613b3784828501613b01565b91505092915050565b5f604082019050613b535f8301856138f5565b613b6060208301846138f5565b9392505050565b5f819050919050565b5f62ffffff82169050919050565b5f613b98613b93613b8e84613b67565b613771565b613b70565b9050919050565b613ba881613b7e565b82525050565b5f606082019050613bc15f8301866138f5565b613bce60208301856138f5565b613bdb6040830184613b9f565b949350505050565b5f604082019050613bf65f8301856138f5565b613c0360208301846137e5565b9392505050565b5f81519050613c1881613948565b92915050565b5f60208284031215613c3357613c3261366b565b5b5f613c4084828501613c0a565b91505092915050565b5f819050919050565b5f613c6c613c67613c6284613c49565b613771565b6136cd565b9050919050565b613c7c81613c52565b82525050565b5f60c082019050613c955f8301896138f5565b613ca260208301886137e5565b613caf6040830187613c73565b613cbc6060830186613c73565b613cc960808301856138f5565b613cd660a08301846137e5565b979650505050505050565b5f81519050613cef816136d6565b92915050565b5f805f60608486031215613d0c57613d0b61366b565b5b5f613d1986828701613ce1565b9350506020613d2a86828701613ce1565b9250506040613d3b86828701613ce1565b9150509250925092565b5f604082019050613d585f8301856137e5565b613d6560208301846137e5565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613db057607f821691505b602082108103613dc357613dc2613d6c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613e00826136cd565b9150613e0b836136cd565b9250828201905080821115613e2357613e22613dc9565b5b92915050565b7f45524332303a20416464726573732030000000000000000000000000000000005f82015250565b5f613e5d6010836135cb565b9150613e6882613e29565b602082019050919050565b5f6020820190508181035f830152613e8a81613e51565b9050919050565b7f45524332303a204d757374206b656570206665657320617420313025206f72205f8201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b5f613eeb6024836135cb565b9150613ef682613e91565b604082019050919050565b5f6020820190508181035f830152613f1881613edf565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f613f796025836135cb565b9150613f8482613f1f565b604082019050919050565b5f6020820190508181035f830152613fa681613f6d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f613fe4826136cd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361401657614015613dc9565b5b600182019050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f775f8201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000602082015250565b5f61407b603c836135cb565b915061408682614021565b604082019050919050565b5f6020820190508181035f8301526140a88161406f565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206869675f8201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000602082015250565b5f614109603b836135cb565b9150614114826140af565b604082019050919050565b5f6020820190508181035f830152614136816140fd565b9050919050565b5f81905092915050565b50565b5f6141555f8361413d565b915061416082614147565b5f82019050919050565b5f6141748261414a565b9150819050919050565b5f602082840312156141935761419261366b565b5b5f6141a084828501613ce1565b91505092915050565b7f4e6f20746f6b656e7300000000000000000000000000000000000000000000005f82015250565b5f6141dd6009836135cb565b91506141e8826141a9565b602082019050919050565b5f6020820190508181035f83015261420a816141d1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61426b6026836135cb565b915061427682614211565b604082019050919050565b5f6020820190508181035f8301526142988161425f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6142d36020836135cb565b91506142de8261429f565b602082019050919050565b5f6020820190508181035f830152614300816142c7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6143616024836135cb565b915061436c82614307565b604082019050919050565b5f6020820190508181035f83015261438e81614355565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6143ef6022836135cb565b91506143fa82614395565b604082019050919050565b5f6020820190508181035f83015261441c816143e3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f614457601d836135cb565b915061446282614423565b602082019050919050565b5f6020820190508181035f8301526144848161444b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6144e56025836135cb565b91506144f08261448b565b604082019050919050565b5f6020820190508181035f830152614512816144d9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6145736023836135cb565b915061457e82614519565b604082019050919050565b5f6020820190508181035f8301526145a081614567565b9050919050565b7f45524332303a204e6f7420617574686f72697a656420746f20616464204c50205f8201527f746f20556e697377617020563320506f6f6c0000000000000000000000000000602082015250565b5f6146016032836135cb565b915061460c826145a7565b604082019050919050565b5f6020820190508181035f83015261462e816145f5565b9050919050565b7f45524332303a204e6f74206c61756e636865642e0000000000000000000000005f82015250565b5f6146696014836135cb565b915061467482614635565b602082019050919050565b5f6020820190508181035f8301526146968161465d565b9050919050565b5f6146a7826136cd565b91506146b2836136cd565b92508282039050818111156146ca576146c9613dc9565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61472a6021836135cb565b9150614735826146d0565b604082019050919050565b5f6020820190508181035f8301526147578161471e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6147b86022836135cb565b91506147c38261475e565b604082019050919050565b5f6020820190508181035f8301526147e5816147ac565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6148466026836135cb565b9150614851826147ec565b604082019050919050565b5f6020820190508181035f8301526148738161483a565b9050919050565b5f614884826136cd565b915061488f836136cd565b925082820261489d816136cd565b915082820484148315176148b4576148b3613dc9565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6148f2826136cd565b91506148fd836136cd565b92508261490d5761490c6148bb565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61497781613692565b82525050565b5f614988838361496e565b60208301905092915050565b5f602082019050919050565b5f6149aa82614945565b6149b4818561494f565b93506149bf8361495f565b805f5b838110156149ef5781516149d6888261497d565b97506149e183614994565b9250506001810190506149c2565b5085935050505092915050565b5f60a082019050614a0f5f8301886137e5565b614a1c6020830187613c73565b8181036040830152614a2e81866149a0565b9050614a3d60608301856138f5565b614a4a60808301846137e5565b969550505050505056fea2646970667358221220f03383c273b3ad53246428b040aae5bb3097545292c3bf28272044a522c128ce64736f6c63430008150033

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.