ETH Price: $2,271.96 (-0.80%)

Token

Milkyway (MILK)
 

Overview

Max Total Supply

1,000,000,000 MILK

Holders

81

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,643,750 MILK

Value
$0.00
0x3da0cffa8a227f767336b31bc58f7d3e5791cdff
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Milkyway

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

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

pragma solidity >=0.8.8;

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


contract Milkyway is ERC20, Ownable {

    using SafeMath for uint256;

    //Contract functional variables
    uint256 private constant TOTAL_SUPPLY = 1_000_000_000 * 1e18;
    uint256 public _maxTransactionAmount;
    mapping(address => bool) public _isExcludedFromLimit;
    uint256 public _swapTokensAtAmount;
    uint256 public _maxWallet;
    bool public _limitsInEffect = true;
    bool public _tradingActive = false;
    bool private _swapping;

    // Anti-bot
    mapping(address => uint256) private _lastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public _transferDelay = true;

    //Fees
    address public marketingWallet;
    address public devWallet;

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

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

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;
    mapping(address => bool) private _isExcludedFromFees;

    //Uniswap
    IUniswapV2Router02 public router;
    address public pair;
    address public constant deadAddress = address(0xdead);

    constructor(address routerAddress) ERC20("Milkyway", "MILK") {
        setupSwapRouter(routerAddress);

        uint256 _buyMarketingFee = 3;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 3;
        uint256 _sellMarketingFee = 3;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 3;

        _maxTransactionAmount = TOTAL_SUPPLY / 1000 * 5 + 1;
        // .5% from total supply maxTransactionAmountTxn
        _maxWallet = _maxTransactionAmount * 4;
        // 2% from total supply maxWallet
        _swapTokensAtAmount = TOTAL_SUPPLY / 1000;
        // .1% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0x27a732bd1506738B29c97D5508894DE3d2cDE84C);
        // set as marketing wallet
        devWallet = owner();
        // set as dev wallet

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

        excludeFromLimit(owner(), true);
        excludeFromLimit(address(this), true);
        excludeFromLimit(address(0xdead), true);
        excludeFromLimit(address(marketingWallet), true);

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

    function setupSwapRouter(address routerAddress) private {
        require(routerAddress != address(0), "Invalid router address");
        router = IUniswapV2Router02(routerAddress);
        pair = IUniswapV2Factory(router.factory()).getPair(address(this), router.WETH());
        if (pair == address(0)) {
            pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH());
        }
        excludeFromLimit(routerAddress, true);
        excludeFromLimit(address(pair), true);
    }

    receive() external payable {}

    function activeTrading() external onlyOwner {
        _tradingActive = true;
    }

    function removeLimits() external onlyOwner {
        _limitsInEffect = false;
    }

    function disableTransferDelay() external onlyOwner {
        _transferDelay = false;
    }

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

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

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

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

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

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

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

        if (!_tradingActive) {
            require(
                from == owner() || to == owner(),
                "Trading is not active."
            );
        }

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

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

        if (_limitsInEffect) {
            if ( //when buy
                from == pair &&
                !_isExcludedFromLimit[to]
            ) {
                require(
                    amount <= _maxTransactionAmount,
                    "Buy transfer amount exceeds the maxTransactionAmount."
                );
                require(
                    amount + balanceOf(to) <= _maxWallet,
                    "Max wallet exceeded"
                );
                // Delay on buy only
                if (
                    _transferDelay
                ) {
                    require(
                        _lastTransferTimestamp[tx.origin] < block.number,
                        "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                    );
                    _lastTransferTimestamp[tx.origin] = block.number;
                }
            } else if ( //when sell
                to == pair &&
                !_isExcludedFromLimit[from]
            ) {
                require(
                    amount <= _maxTransactionAmount,
                    "Sell transfer amount exceeds the maxTransactionAmount."
                );
            } else if (!_isExcludedFromLimit[to]) { // transfer
                require(
                    amount + balanceOf(to) <= _maxWallet,
                    "Max wallet exceeded"
                );
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= _swapTokensAtAmount;

        if (
            canSwap &&
            _tradingActive &&
            to == pair && //on sell
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapBack();
        }

        bool takeFee = true;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

        // add the liquidity
        router.addLiquidityETH{value : ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            devWallet,
            block.timestamp
        );
    }

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
        }

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

    modifier lockTheSwap {
        _swapping = true;
        _;
        _swapping = false;
    }

}

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

import './IUniswapV2Router01.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 11 of 11 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"routerAddress","type":"address"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_transferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activeTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromLimit","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":"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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506001600c60006101000a81548160ff0219169083151502179055503480156200006257600080fd5b5060405162004f9238038062004f92833981810160405281019062000088919062000e51565b6040518060400160405280600881526020017f4d696c6b797761790000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d494c4b0000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010c92919062000d37565b5080600490805190602001906200012592919062000d37565b505050620001486200013c6200043060201b60201c565b6200043860201b60201c565b6200015981620004fe60201b60201c565b6000600390506000806003905060006003905060008060039050600160056103e86b033b2e3c9fd0803ce800000062000193919062000eeb565b6200019f919062000f23565b620001ab919062000f84565b6006819055506004600654620001c2919062000f23565b6009819055506103e86b033b2e3c9fd0803ce8000000620001e4919062000eeb565b60088190555085600f819055508460108190555083601181905550601154601054600f5462000214919062000f84565b62000220919062000f84565b600e8190555082601381905550816014819055508060158190555060155460145460135462000250919062000f84565b6200025c919062000f84565b6012819055507327a732bd1506738b29c97d5508894de3d2cde84c600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002c762000a2460201b60201c565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003296200031b62000a2460201b60201c565b600162000a4e60201b60201c565b6200033c30600162000a4e60201b60201c565b6200035161dead600162000a4e60201b60201c565b62000386600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000a4e60201b60201c565b620003a86200039a62000a2460201b60201c565b600162000ab960201b60201c565b620003bb30600162000ab960201b60201c565b620003d061dead600162000ab960201b60201c565b62000405600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000ab960201b60201c565b62000423336b033b2e3c9fd0803ce800000062000b2460201b60201c565b5050505050505062001218565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005679062001042565b60405180910390fd5b80601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200061f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000645919062000e51565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620006cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006f5919062000e51565b6040518363ffffffff1660e01b81526004016200071492919062001075565b602060405180830381865afa15801562000732573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000758919062000e51565b601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff16601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603620009d957601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200085d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000883919062000e51565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200090d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000933919062000e51565b6040518363ffffffff1660e01b81526004016200095292919062001075565b6020604051808303816000875af115801562000972573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000998919062000e51565b601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b620009ec81600162000ab960201b60201c565b62000a21601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000ab960201b60201c565b50565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000a5e62000c9c60201b60201c565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b62000ac962000c9c60201b60201c565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b8d90620010f2565b60405180910390fd5b62000baa6000838362000d2d60201b60201c565b806002600082825462000bbe919062000f84565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000c15919062000f84565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c7c919062001125565b60405180910390a362000c986000838362000d3260201b60201c565b5050565b62000cac6200043060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000cd262000a2460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000d2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d229062001192565b60405180910390fd5b565b505050565b505050565b82805462000d4590620011e3565b90600052602060002090601f01602090048101928262000d69576000855562000db5565b82601f1062000d8457805160ff191683800117855562000db5565b8280016001018555821562000db5579182015b8281111562000db457825182559160200191906001019062000d97565b5b50905062000dc4919062000dc8565b5090565b5b8082111562000de357600081600090555060010162000dc9565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e198262000dec565b9050919050565b62000e2b8162000e0c565b811462000e3757600080fd5b50565b60008151905062000e4b8162000e20565b92915050565b60006020828403121562000e6a5762000e6962000de7565b5b600062000e7a8482850162000e3a565b91505092915050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ef88262000e83565b915062000f058362000e83565b92508262000f185762000f1762000e8d565b5b828204905092915050565b600062000f308262000e83565b915062000f3d8362000e83565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000f795762000f7862000ebc565b5b828202905092915050565b600062000f918262000e83565b915062000f9e8362000e83565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000fd65762000fd562000ebc565b5b828201905092915050565b600082825260208201905092915050565b7f496e76616c696420726f75746572206164647265737300000000000000000000600082015250565b60006200102a60168362000fe1565b9150620010378262000ff2565b602082019050919050565b600060208201905081810360008301526200105d816200101b565b9050919050565b6200106f8162000e0c565b82525050565b60006040820190506200108c600083018562001064565b6200109b602083018462001064565b9392505050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010da601f8362000fe1565b9150620010e782620010a2565b602082019050919050565b600060208201905081810360008301526200110d81620010cb565b9050919050565b6200111f8162000e83565b82525050565b60006020820190506200113c600083018462001114565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200117a60208362000fe1565b9150620011878262001142565b602082019050919050565b60006020820190508181036000830152620011ad816200116b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620011fc57607f821691505b602082108103620012125762001211620011b4565b5b50919050565b613d6a80620012286000396000f3fe6080604052600436106102815760003560e01c80638da5cb5b1161014f578063c0246668116100c1578063e73b90cd1161007a578063e73b90cd146109b5578063e884f260146109e0578063f11a24d3146109f7578063f2fde38b14610a22578063f637434214610a4b578063f887ea4014610a7657610288565b8063c024666814610881578063c18bc195146108aa578063cd183bbd146108d3578063d257b34f14610910578063d85ba0631461094d578063dd62ed3e1461097857610288565b80639fccce32116101135780639fccce321461076f578063a0d82dc51461079a578063a457c2d7146107c5578063a8aa1b3114610802578063a9059cbb1461082d578063b3ac85371461086a57610288565b80638da5cb5b146106985780638ea5220f146106c357806392136913146106ee57806395d89b41146107195780639c3b4fdc1461074457610288565b8063313ce567116101f3578063715018a6116101ac578063715018a6146105c0578063751039fc146105d757806375f0a874146105ee5780637bce5a041461061957806381905bf81461064457806382247ec01461066d57610288565b8063313ce5671461048857806339509351146104b35780634fbee193146104f057806363361f9f1461052d5780636a486a8e1461055857806370a082311461058357610288565b80631f3fed8f116102455780631f3fed8f14610376578063203e727e146103a157806323b872dd146103ca57806327c8f8351461040757806327f4d7d5146104325780632fd689e31461045d57610288565b806304beaeb81461028d57806306fdde03146102b8578063095ea7b3146102e357806318160ddd146103205780631a8145bb1461034b57610288565b3661028857005b600080fd5b34801561029957600080fd5b506102a2610aa1565b6040516102af9190612a7e565b60405180910390f35b3480156102c457600080fd5b506102cd610aa7565b6040516102da9190612b32565b60405180910390f35b3480156102ef57600080fd5b5061030a60048036038101906103059190612be3565b610b39565b6040516103179190612c3e565b60405180910390f35b34801561032c57600080fd5b50610335610b5c565b6040516103429190612a7e565b60405180910390f35b34801561035757600080fd5b50610360610b66565b60405161036d9190612a7e565b60405180910390f35b34801561038257600080fd5b5061038b610b6c565b6040516103989190612a7e565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c39190612c59565b610b72565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612c86565b610c0d565b6040516103fe9190612c3e565b60405180910390f35b34801561041357600080fd5b5061041c610c3c565b6040516104299190612ce8565b60405180910390f35b34801561043e57600080fd5b50610447610c42565b6040516104549190612c3e565b60405180910390f35b34801561046957600080fd5b50610472610c55565b60405161047f9190612a7e565b60405180910390f35b34801561049457600080fd5b5061049d610c5b565b6040516104aa9190612d1f565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190612be3565b610c64565b6040516104e79190612c3e565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190612d3a565b610c9b565b6040516105249190612c3e565b60405180910390f35b34801561053957600080fd5b50610542610cf1565b60405161054f9190612c3e565b60405180910390f35b34801561056457600080fd5b5061056d610d04565b60405161057a9190612a7e565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190612d3a565b610d0a565b6040516105b79190612a7e565b60405180910390f35b3480156105cc57600080fd5b506105d5610d52565b005b3480156105e357600080fd5b506105ec610d66565b005b3480156105fa57600080fd5b50610603610d8b565b6040516106109190612ce8565b60405180910390f35b34801561062557600080fd5b5061062e610db1565b60405161063b9190612a7e565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190612d93565b610db7565b005b34801561067957600080fd5b50610682610e1a565b60405161068f9190612a7e565b60405180910390f35b3480156106a457600080fd5b506106ad610e20565b6040516106ba9190612ce8565b60405180910390f35b3480156106cf57600080fd5b506106d8610e4a565b6040516106e59190612ce8565b60405180910390f35b3480156106fa57600080fd5b50610703610e70565b6040516107109190612a7e565b60405180910390f35b34801561072557600080fd5b5061072e610e76565b60405161073b9190612b32565b60405180910390f35b34801561075057600080fd5b50610759610f08565b6040516107669190612a7e565b60405180910390f35b34801561077b57600080fd5b50610784610f0e565b6040516107919190612a7e565b60405180910390f35b3480156107a657600080fd5b506107af610f14565b6040516107bc9190612a7e565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190612be3565b610f1a565b6040516107f99190612c3e565b60405180910390f35b34801561080e57600080fd5b50610817610f91565b6040516108249190612ce8565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f9190612be3565b610fb7565b6040516108619190612c3e565b60405180910390f35b34801561087657600080fd5b5061087f610fda565b005b34801561088d57600080fd5b506108a860048036038101906108a39190612d93565b610fff565b005b3480156108b657600080fd5b506108d160048036038101906108cc9190612c59565b611062565b005b3480156108df57600080fd5b506108fa60048036038101906108f59190612d3a565b6110fd565b6040516109079190612c3e565b60405180910390f35b34801561091c57600080fd5b5061093760048036038101906109329190612c59565b61111d565b6040516109449190612c3e565b60405180910390f35b34801561095957600080fd5b50610962611236565b60405161096f9190612a7e565b60405180910390f35b34801561098457600080fd5b5061099f600480360381019061099a9190612dd3565b61123c565b6040516109ac9190612a7e565b60405180910390f35b3480156109c157600080fd5b506109ca6112c3565b6040516109d79190612c3e565b60405180910390f35b3480156109ec57600080fd5b506109f56112d6565b005b348015610a0357600080fd5b50610a0c6112fb565b604051610a199190612a7e565b60405180910390f35b348015610a2e57600080fd5b50610a496004803603810190610a449190612d3a565b611301565b005b348015610a5757600080fd5b50610a60611384565b604051610a6d9190612a7e565b60405180910390f35b348015610a8257600080fd5b50610a8b61138a565b604051610a989190612e72565b60405180910390f35b60065481565b606060038054610ab690612ebc565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae290612ebc565b8015610b2f5780601f10610b0457610100808354040283529160200191610b2f565b820191906000526020600020905b815481529060010190602001808311610b1257829003601f168201915b5050505050905090565b600080610b446113b0565b9050610b518185856113b8565b600191505092915050565b6000600254905090565b60175481565b60165481565b610b7a611581565b670de0b6b3a76400006103e86001610b90610b5c565b610b9a9190612f1c565b610ba49190612fa5565b610bae9190612fa5565b811015610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be790613048565b60405180910390fd5b670de0b6b3a764000081610c049190612f1c565b60068190555050565b600080610c186113b0565b9050610c258582856115ff565b610c3085858561168b565b60019150509392505050565b61dead81565b600a60019054906101000a900460ff1681565b60085481565b60006012905090565b600080610c6f6113b0565b9050610c90818585610c81858961123c565b610c8b9190613068565b6113b8565b600191505092915050565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600c60009054906101000a900460ff1681565b60125481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d5a611581565b610d6460006120d9565b565b610d6e611581565b6000600a60006101000a81548160ff021916908315150217905550565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b610dbf611581565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60095481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b606060048054610e8590612ebc565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb190612ebc565b8015610efe5780601f10610ed357610100808354040283529160200191610efe565b820191906000526020600020905b815481529060010190602001808311610ee157829003601f168201915b5050505050905090565b60115481565b60185481565b60155481565b600080610f256113b0565b90506000610f33828661123c565b905083811015610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f90613130565b60405180910390fd5b610f8582868684036113b8565b60019250505092915050565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610fc26113b0565b9050610fcf81858561168b565b600191505092915050565b610fe2611581565b6001600a60016101000a81548160ff021916908315150217905550565b611007611581565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61106a611581565b670de0b6b3a76400006103e86005611080610b5c565b61108a9190612f1c565b6110949190612fa5565b61109e9190612fa5565b8110156110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d7906131c2565b60405180910390fd5b670de0b6b3a7640000816110f49190612f1c565b60098190555050565b60076020528060005260406000206000915054906101000a900460ff1681565b6000611127611581565b670de0b6b3a7640000612710600161113d610b5c565b6111479190612f1c565b6111519190612fa5565b61115b9190612fa5565b82101561119d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119490613254565b60405180910390fd5b670de0b6b3a76400006103e860056111b3610b5c565b6111bd9190612f1c565b6111c79190612fa5565b6111d19190612fa5565b821115611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a906132e6565b60405180910390fd5b670de0b6b3a7640000826112279190612f1c565b60088190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a60009054906101000a900460ff1681565b6112de611581565b6000600c60006101000a81548160ff021916908315150217905550565b60105481565b611309611581565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90613378565b60405180910390fd5b611381816120d9565b50565b60145481565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e9061340a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d9061349c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115749190612a7e565b60405180910390a3505050565b6115896113b0565b73ffffffffffffffffffffffffffffffffffffffff166115a7610e20565b73ffffffffffffffffffffffffffffffffffffffff16146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f490613508565b60405180910390fd5b565b600061160b848461123c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116855781811015611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e90613574565b60405180910390fd5b61168484848484036113b8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190613606565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613698565b60405180910390fd5b600a60019054906101000a900460ff1661183057611785610e20565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806117f057506117c1610e20565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61182f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182690613704565b60405180910390fd5b5b60008103611849576118448383600061219f565b6120d4565b600a60029054906101000a900460ff161561186e5761186983838361219f565b6120d4565b600a60009054906101000a900460ff1615611c4f57601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561192a5750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611aac57600654811115611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b90613796565b60405180910390fd5b60095461198083610d0a565b8261198b9190613068565b11156119cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c390613802565b60405180910390fd5b600c60009054906101000a900460ff1615611aa75743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a59906138ba565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b611c4e565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015611b535750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611ba257600654811115611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b949061394c565b60405180910390fd5b611c4d565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c4c57600954611bff83610d0a565b82611c0a9190613068565b1115611c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4290613802565b60405180910390fd5b5b5b5b5b6000611c5a30610d0a565b905060006008548210159050808015611c7f5750600a60019054906101000a900460ff165b8015611cd85750601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b8015611d2e5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611d845750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d9257611d9161241e565b5b600060019050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e395750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611e4357600090505b600081156120c457601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16148015611eaa57506000601254115b15611f7757611ed76064611ec9601254886126d690919063ffffffff16565b6126ec90919063ffffffff16565b905060125460145482611eea9190612f1c565b611ef49190612fa5565b60176000828254611f059190613068565b9250508190555060125460155482611f1d9190612f1c565b611f279190612fa5565b60186000828254611f389190613068565b9250508190555060125460135482611f509190612f1c565b611f5a9190612fa5565b60166000828254611f6b9190613068565b925050819055506120a0565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16148015611fd657506000600e54115b1561209f576120036064611ff5600e54886126d690919063ffffffff16565b6126ec90919063ffffffff16565b9050600e54601054826120169190612f1c565b6120209190612fa5565b601760008282546120319190613068565b92505081905550600e54601154826120499190612f1c565b6120539190612fa5565b601860008282546120649190613068565b92505081905550600e54600f548261207c9190612f1c565b6120869190612fa5565b601660008282546120979190613068565b925050819055505b5b60008111156120b5576120b487308361219f565b5b80856120c1919061396c565b94505b6120cf87878761219f565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361220e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220590613606565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361227d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227490613698565b60405180910390fd5b612288838383612702565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561230e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230590613a12565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123a19190613068565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124059190612a7e565b60405180910390a3612418848484612707565b50505050565b6001600a60026101000a81548160ff021916908315150217905550600061244430610d0a565b9050600060185460165460175461245b9190613068565b6124659190613068565b90506000808314806124775750600082145b15612484575050506126b9565b6000600283601754866124979190612f1c565b6124a19190612fa5565b6124ab9190612fa5565b905060006124c2828661270c90919063ffffffff16565b905060004790506124d282612722565b60006124e7824761270c90919063ffffffff16565b9050600061251287612504601654856126d690919063ffffffff16565b6126ec90919063ffffffff16565b9050600061253d8861252f601854866126d690919063ffffffff16565b6126ec90919063ffffffff16565b9050600081838561254e919061396c565b612558919061396c565b9050600060178190555060006016819055506000601881905550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516125b890613a63565b60006040518083038185875af1925050503d80600081146125f5576040519150601f19603f3d011682016040523d82523d6000602084013e6125fa565b606091505b5050809850506000871180156126105750600081115b156126205761261f8782612965565b5b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161266690613a63565b60006040518083038185875af1925050503d80600081146126a3576040519150601f19603f3d011682016040523d82523d6000602084013e6126a8565b606091505b505080985050505050505050505050505b6000600a60026101000a81548160ff021916908315150217905550565b600081836126e49190612f1c565b905092915050565b600081836126fa9190612fa5565b905092915050565b505050565b505050565b6000818361271a919061396c565b905092915050565b6000600267ffffffffffffffff81111561273f5761273e613a78565b5b60405190808252806020026020018201604052801561276d5781602001602082028036833780820191505090505b509050308160008151811061278557612784613aa7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561282c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128509190613aeb565b8160018151811061286457612863613aa7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506128cb30601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846113b8565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161292f959493929190613c11565b600060405180830381600087803b15801561294957600080fd5b505af115801561295d573d6000803e3d6000fd5b505050505050565b61299230601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846113b8565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401612a1b96959493929190613c6b565b60606040518083038185885af1158015612a39573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612a5e9190613ce1565b5050505050565b6000819050919050565b612a7881612a65565b82525050565b6000602082019050612a936000830184612a6f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ad3578082015181840152602081019050612ab8565b83811115612ae2576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b0482612a99565b612b0e8185612aa4565b9350612b1e818560208601612ab5565b612b2781612ae8565b840191505092915050565b60006020820190508181036000830152612b4c8184612af9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b8482612b59565b9050919050565b612b9481612b79565b8114612b9f57600080fd5b50565b600081359050612bb181612b8b565b92915050565b612bc081612a65565b8114612bcb57600080fd5b50565b600081359050612bdd81612bb7565b92915050565b60008060408385031215612bfa57612bf9612b54565b5b6000612c0885828601612ba2565b9250506020612c1985828601612bce565b9150509250929050565b60008115159050919050565b612c3881612c23565b82525050565b6000602082019050612c536000830184612c2f565b92915050565b600060208284031215612c6f57612c6e612b54565b5b6000612c7d84828501612bce565b91505092915050565b600080600060608486031215612c9f57612c9e612b54565b5b6000612cad86828701612ba2565b9350506020612cbe86828701612ba2565b9250506040612ccf86828701612bce565b9150509250925092565b612ce281612b79565b82525050565b6000602082019050612cfd6000830184612cd9565b92915050565b600060ff82169050919050565b612d1981612d03565b82525050565b6000602082019050612d346000830184612d10565b92915050565b600060208284031215612d5057612d4f612b54565b5b6000612d5e84828501612ba2565b91505092915050565b612d7081612c23565b8114612d7b57600080fd5b50565b600081359050612d8d81612d67565b92915050565b60008060408385031215612daa57612da9612b54565b5b6000612db885828601612ba2565b9250506020612dc985828601612d7e565b9150509250929050565b60008060408385031215612dea57612de9612b54565b5b6000612df885828601612ba2565b9250506020612e0985828601612ba2565b9150509250929050565b6000819050919050565b6000612e38612e33612e2e84612b59565b612e13565b612b59565b9050919050565b6000612e4a82612e1d565b9050919050565b6000612e5c82612e3f565b9050919050565b612e6c81612e51565b82525050565b6000602082019050612e876000830184612e63565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ed457607f821691505b602082108103612ee757612ee6612e8d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f2782612a65565b9150612f3283612a65565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f6b57612f6a612eed565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612fb082612a65565b9150612fbb83612a65565b925082612fcb57612fca612f76565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613032602f83612aa4565b915061303d82612fd6565b604082019050919050565b6000602082019050818103600083015261306181613025565b9050919050565b600061307382612a65565b915061307e83612a65565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130b3576130b2612eed565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061311a602583612aa4565b9150613125826130be565b604082019050919050565b600060208201905081810360008301526131498161310d565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006131ac602483612aa4565b91506131b782613150565b604082019050919050565b600060208201905081810360008301526131db8161319f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30312520746f74616c20737570706c792e000000000000000000000000602082015250565b600061323e603483612aa4565b9150613249826131e2565b604082019050919050565b6000602082019050818103600083015261326d81613231565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006132d0603483612aa4565b91506132db82613274565b604082019050919050565b600060208201905081810360008301526132ff816132c3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613362602683612aa4565b915061336d82613306565b604082019050919050565b6000602082019050818103600083015261339181613355565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006133f4602483612aa4565b91506133ff82613398565b604082019050919050565b60006020820190508181036000830152613423816133e7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613486602283612aa4565b91506134918261342a565b604082019050919050565b600060208201905081810360008301526134b581613479565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134f2602083612aa4565b91506134fd826134bc565b602082019050919050565b60006020820190508181036000830152613521816134e5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061355e601d83612aa4565b915061356982613528565b602082019050919050565b6000602082019050818103600083015261358d81613551565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006135f0602583612aa4565b91506135fb82613594565b604082019050919050565b6000602082019050818103600083015261361f816135e3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613682602383612aa4565b915061368d82613626565b604082019050919050565b600060208201905081810360008301526136b181613675565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006136ee601683612aa4565b91506136f9826136b8565b602082019050919050565b6000602082019050818103600083015261371d816136e1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613780603583612aa4565b915061378b82613724565b604082019050919050565b600060208201905081810360008301526137af81613773565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006137ec601383612aa4565b91506137f7826137b6565b602082019050919050565b6000602082019050818103600083015261381b816137df565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006138a4604983612aa4565b91506138af82613822565b606082019050919050565b600060208201905081810360008301526138d381613897565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613936603683612aa4565b9150613941826138da565b604082019050919050565b6000602082019050818103600083015261396581613929565b9050919050565b600061397782612a65565b915061398283612a65565b92508282101561399557613994612eed565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006139fc602683612aa4565b9150613a07826139a0565b604082019050919050565b60006020820190508181036000830152613a2b816139ef565b9050919050565b600081905092915050565b50565b6000613a4d600083613a32565b9150613a5882613a3d565b600082019050919050565b6000613a6e82613a40565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613ae581612b8b565b92915050565b600060208284031215613b0157613b00612b54565b5b6000613b0f84828501613ad6565b91505092915050565b6000819050919050565b6000613b3d613b38613b3384613b18565b612e13565b612a65565b9050919050565b613b4d81613b22565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b8881612b79565b82525050565b6000613b9a8383613b7f565b60208301905092915050565b6000602082019050919050565b6000613bbe82613b53565b613bc88185613b5e565b9350613bd383613b6f565b8060005b83811015613c04578151613beb8882613b8e565b9750613bf683613ba6565b925050600181019050613bd7565b5085935050505092915050565b600060a082019050613c266000830188612a6f565b613c336020830187613b44565b8181036040830152613c458186613bb3565b9050613c546060830185612cd9565b613c616080830184612a6f565b9695505050505050565b600060c082019050613c806000830189612cd9565b613c8d6020830188612a6f565b613c9a6040830187613b44565b613ca76060830186613b44565b613cb46080830185612cd9565b613cc160a0830184612a6f565b979650505050505050565b600081519050613cdb81612bb7565b92915050565b600080600060608486031215613cfa57613cf9612b54565b5b6000613d0886828701613ccc565b9350506020613d1986828701613ccc565b9250506040613d2a86828701613ccc565b915050925092509256fea26469706673582212209efa39b8ae488020778bc106d24e98114f63a63a65baa9d851f7a139a70b710664736f6c634300080d00330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x6080604052600436106102815760003560e01c80638da5cb5b1161014f578063c0246668116100c1578063e73b90cd1161007a578063e73b90cd146109b5578063e884f260146109e0578063f11a24d3146109f7578063f2fde38b14610a22578063f637434214610a4b578063f887ea4014610a7657610288565b8063c024666814610881578063c18bc195146108aa578063cd183bbd146108d3578063d257b34f14610910578063d85ba0631461094d578063dd62ed3e1461097857610288565b80639fccce32116101135780639fccce321461076f578063a0d82dc51461079a578063a457c2d7146107c5578063a8aa1b3114610802578063a9059cbb1461082d578063b3ac85371461086a57610288565b80638da5cb5b146106985780638ea5220f146106c357806392136913146106ee57806395d89b41146107195780639c3b4fdc1461074457610288565b8063313ce567116101f3578063715018a6116101ac578063715018a6146105c0578063751039fc146105d757806375f0a874146105ee5780637bce5a041461061957806381905bf81461064457806382247ec01461066d57610288565b8063313ce5671461048857806339509351146104b35780634fbee193146104f057806363361f9f1461052d5780636a486a8e1461055857806370a082311461058357610288565b80631f3fed8f116102455780631f3fed8f14610376578063203e727e146103a157806323b872dd146103ca57806327c8f8351461040757806327f4d7d5146104325780632fd689e31461045d57610288565b806304beaeb81461028d57806306fdde03146102b8578063095ea7b3146102e357806318160ddd146103205780631a8145bb1461034b57610288565b3661028857005b600080fd5b34801561029957600080fd5b506102a2610aa1565b6040516102af9190612a7e565b60405180910390f35b3480156102c457600080fd5b506102cd610aa7565b6040516102da9190612b32565b60405180910390f35b3480156102ef57600080fd5b5061030a60048036038101906103059190612be3565b610b39565b6040516103179190612c3e565b60405180910390f35b34801561032c57600080fd5b50610335610b5c565b6040516103429190612a7e565b60405180910390f35b34801561035757600080fd5b50610360610b66565b60405161036d9190612a7e565b60405180910390f35b34801561038257600080fd5b5061038b610b6c565b6040516103989190612a7e565b60405180910390f35b3480156103ad57600080fd5b506103c860048036038101906103c39190612c59565b610b72565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612c86565b610c0d565b6040516103fe9190612c3e565b60405180910390f35b34801561041357600080fd5b5061041c610c3c565b6040516104299190612ce8565b60405180910390f35b34801561043e57600080fd5b50610447610c42565b6040516104549190612c3e565b60405180910390f35b34801561046957600080fd5b50610472610c55565b60405161047f9190612a7e565b60405180910390f35b34801561049457600080fd5b5061049d610c5b565b6040516104aa9190612d1f565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190612be3565b610c64565b6040516104e79190612c3e565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190612d3a565b610c9b565b6040516105249190612c3e565b60405180910390f35b34801561053957600080fd5b50610542610cf1565b60405161054f9190612c3e565b60405180910390f35b34801561056457600080fd5b5061056d610d04565b60405161057a9190612a7e565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190612d3a565b610d0a565b6040516105b79190612a7e565b60405180910390f35b3480156105cc57600080fd5b506105d5610d52565b005b3480156105e357600080fd5b506105ec610d66565b005b3480156105fa57600080fd5b50610603610d8b565b6040516106109190612ce8565b60405180910390f35b34801561062557600080fd5b5061062e610db1565b60405161063b9190612a7e565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190612d93565b610db7565b005b34801561067957600080fd5b50610682610e1a565b60405161068f9190612a7e565b60405180910390f35b3480156106a457600080fd5b506106ad610e20565b6040516106ba9190612ce8565b60405180910390f35b3480156106cf57600080fd5b506106d8610e4a565b6040516106e59190612ce8565b60405180910390f35b3480156106fa57600080fd5b50610703610e70565b6040516107109190612a7e565b60405180910390f35b34801561072557600080fd5b5061072e610e76565b60405161073b9190612b32565b60405180910390f35b34801561075057600080fd5b50610759610f08565b6040516107669190612a7e565b60405180910390f35b34801561077b57600080fd5b50610784610f0e565b6040516107919190612a7e565b60405180910390f35b3480156107a657600080fd5b506107af610f14565b6040516107bc9190612a7e565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190612be3565b610f1a565b6040516107f99190612c3e565b60405180910390f35b34801561080e57600080fd5b50610817610f91565b6040516108249190612ce8565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f9190612be3565b610fb7565b6040516108619190612c3e565b60405180910390f35b34801561087657600080fd5b5061087f610fda565b005b34801561088d57600080fd5b506108a860048036038101906108a39190612d93565b610fff565b005b3480156108b657600080fd5b506108d160048036038101906108cc9190612c59565b611062565b005b3480156108df57600080fd5b506108fa60048036038101906108f59190612d3a565b6110fd565b6040516109079190612c3e565b60405180910390f35b34801561091c57600080fd5b5061093760048036038101906109329190612c59565b61111d565b6040516109449190612c3e565b60405180910390f35b34801561095957600080fd5b50610962611236565b60405161096f9190612a7e565b60405180910390f35b34801561098457600080fd5b5061099f600480360381019061099a9190612dd3565b61123c565b6040516109ac9190612a7e565b60405180910390f35b3480156109c157600080fd5b506109ca6112c3565b6040516109d79190612c3e565b60405180910390f35b3480156109ec57600080fd5b506109f56112d6565b005b348015610a0357600080fd5b50610a0c6112fb565b604051610a199190612a7e565b60405180910390f35b348015610a2e57600080fd5b50610a496004803603810190610a449190612d3a565b611301565b005b348015610a5757600080fd5b50610a60611384565b604051610a6d9190612a7e565b60405180910390f35b348015610a8257600080fd5b50610a8b61138a565b604051610a989190612e72565b60405180910390f35b60065481565b606060038054610ab690612ebc565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae290612ebc565b8015610b2f5780601f10610b0457610100808354040283529160200191610b2f565b820191906000526020600020905b815481529060010190602001808311610b1257829003601f168201915b5050505050905090565b600080610b446113b0565b9050610b518185856113b8565b600191505092915050565b6000600254905090565b60175481565b60165481565b610b7a611581565b670de0b6b3a76400006103e86001610b90610b5c565b610b9a9190612f1c565b610ba49190612fa5565b610bae9190612fa5565b811015610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be790613048565b60405180910390fd5b670de0b6b3a764000081610c049190612f1c565b60068190555050565b600080610c186113b0565b9050610c258582856115ff565b610c3085858561168b565b60019150509392505050565b61dead81565b600a60019054906101000a900460ff1681565b60085481565b60006012905090565b600080610c6f6113b0565b9050610c90818585610c81858961123c565b610c8b9190613068565b6113b8565b600191505092915050565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600c60009054906101000a900460ff1681565b60125481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d5a611581565b610d6460006120d9565b565b610d6e611581565b6000600a60006101000a81548160ff021916908315150217905550565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b610dbf611581565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60095481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b606060048054610e8590612ebc565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb190612ebc565b8015610efe5780601f10610ed357610100808354040283529160200191610efe565b820191906000526020600020905b815481529060010190602001808311610ee157829003601f168201915b5050505050905090565b60115481565b60185481565b60155481565b600080610f256113b0565b90506000610f33828661123c565b905083811015610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f90613130565b60405180910390fd5b610f8582868684036113b8565b60019250505092915050565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610fc26113b0565b9050610fcf81858561168b565b600191505092915050565b610fe2611581565b6001600a60016101000a81548160ff021916908315150217905550565b611007611581565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61106a611581565b670de0b6b3a76400006103e86005611080610b5c565b61108a9190612f1c565b6110949190612fa5565b61109e9190612fa5565b8110156110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d7906131c2565b60405180910390fd5b670de0b6b3a7640000816110f49190612f1c565b60098190555050565b60076020528060005260406000206000915054906101000a900460ff1681565b6000611127611581565b670de0b6b3a7640000612710600161113d610b5c565b6111479190612f1c565b6111519190612fa5565b61115b9190612fa5565b82101561119d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119490613254565b60405180910390fd5b670de0b6b3a76400006103e860056111b3610b5c565b6111bd9190612f1c565b6111c79190612fa5565b6111d19190612fa5565b821115611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a906132e6565b60405180910390fd5b670de0b6b3a7640000826112279190612f1c565b60088190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a60009054906101000a900460ff1681565b6112de611581565b6000600c60006101000a81548160ff021916908315150217905550565b60105481565b611309611581565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90613378565b60405180910390fd5b611381816120d9565b50565b60145481565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e9061340a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d9061349c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115749190612a7e565b60405180910390a3505050565b6115896113b0565b73ffffffffffffffffffffffffffffffffffffffff166115a7610e20565b73ffffffffffffffffffffffffffffffffffffffff16146115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f490613508565b60405180910390fd5b565b600061160b848461123c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116855781811015611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e90613574565b60405180910390fd5b61168484848484036113b8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190613606565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613698565b60405180910390fd5b600a60019054906101000a900460ff1661183057611785610e20565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806117f057506117c1610e20565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61182f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182690613704565b60405180910390fd5b5b60008103611849576118448383600061219f565b6120d4565b600a60029054906101000a900460ff161561186e5761186983838361219f565b6120d4565b600a60009054906101000a900460ff1615611c4f57601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561192a5750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611aac57600654811115611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b90613796565b60405180910390fd5b60095461198083610d0a565b8261198b9190613068565b11156119cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c390613802565b60405180910390fd5b600c60009054906101000a900460ff1615611aa75743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a59906138ba565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b611c4e565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015611b535750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611ba257600654811115611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b949061394c565b60405180910390fd5b611c4d565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c4c57600954611bff83610d0a565b82611c0a9190613068565b1115611c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4290613802565b60405180910390fd5b5b5b5b5b6000611c5a30610d0a565b905060006008548210159050808015611c7f5750600a60019054906101000a900460ff165b8015611cd85750601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b8015611d2e5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611d845750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d9257611d9161241e565b5b600060019050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611e395750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611e4357600090505b600081156120c457601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16148015611eaa57506000601254115b15611f7757611ed76064611ec9601254886126d690919063ffffffff16565b6126ec90919063ffffffff16565b905060125460145482611eea9190612f1c565b611ef49190612fa5565b60176000828254611f059190613068565b9250508190555060125460155482611f1d9190612f1c565b611f279190612fa5565b60186000828254611f389190613068565b9250508190555060125460135482611f509190612f1c565b611f5a9190612fa5565b60166000828254611f6b9190613068565b925050819055506120a0565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff16148015611fd657506000600e54115b1561209f576120036064611ff5600e54886126d690919063ffffffff16565b6126ec90919063ffffffff16565b9050600e54601054826120169190612f1c565b6120209190612fa5565b601760008282546120319190613068565b92505081905550600e54601154826120499190612f1c565b6120539190612fa5565b601860008282546120649190613068565b92505081905550600e54600f548261207c9190612f1c565b6120869190612fa5565b601660008282546120979190613068565b925050819055505b5b60008111156120b5576120b487308361219f565b5b80856120c1919061396c565b94505b6120cf87878761219f565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361220e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220590613606565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361227d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227490613698565b60405180910390fd5b612288838383612702565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561230e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230590613a12565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123a19190613068565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124059190612a7e565b60405180910390a3612418848484612707565b50505050565b6001600a60026101000a81548160ff021916908315150217905550600061244430610d0a565b9050600060185460165460175461245b9190613068565b6124659190613068565b90506000808314806124775750600082145b15612484575050506126b9565b6000600283601754866124979190612f1c565b6124a19190612fa5565b6124ab9190612fa5565b905060006124c2828661270c90919063ffffffff16565b905060004790506124d282612722565b60006124e7824761270c90919063ffffffff16565b9050600061251287612504601654856126d690919063ffffffff16565b6126ec90919063ffffffff16565b9050600061253d8861252f601854866126d690919063ffffffff16565b6126ec90919063ffffffff16565b9050600081838561254e919061396c565b612558919061396c565b9050600060178190555060006016819055506000601881905550600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516125b890613a63565b60006040518083038185875af1925050503d80600081146125f5576040519150601f19603f3d011682016040523d82523d6000602084013e6125fa565b606091505b5050809850506000871180156126105750600081115b156126205761261f8782612965565b5b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161266690613a63565b60006040518083038185875af1925050503d80600081146126a3576040519150601f19603f3d011682016040523d82523d6000602084013e6126a8565b606091505b505080985050505050505050505050505b6000600a60026101000a81548160ff021916908315150217905550565b600081836126e49190612f1c565b905092915050565b600081836126fa9190612fa5565b905092915050565b505050565b505050565b6000818361271a919061396c565b905092915050565b6000600267ffffffffffffffff81111561273f5761273e613a78565b5b60405190808252806020026020018201604052801561276d5781602001602082028036833780820191505090505b509050308160008151811061278557612784613aa7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561282c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128509190613aeb565b8160018151811061286457612863613aa7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506128cb30601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846113b8565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161292f959493929190613c11565b600060405180830381600087803b15801561294957600080fd5b505af115801561295d573d6000803e3d6000fd5b505050505050565b61299230601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846113b8565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401612a1b96959493929190613c6b565b60606040518083038185885af1158015612a39573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612a5e9190613ce1565b5050505050565b6000819050919050565b612a7881612a65565b82525050565b6000602082019050612a936000830184612a6f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ad3578082015181840152602081019050612ab8565b83811115612ae2576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b0482612a99565b612b0e8185612aa4565b9350612b1e818560208601612ab5565b612b2781612ae8565b840191505092915050565b60006020820190508181036000830152612b4c8184612af9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b8482612b59565b9050919050565b612b9481612b79565b8114612b9f57600080fd5b50565b600081359050612bb181612b8b565b92915050565b612bc081612a65565b8114612bcb57600080fd5b50565b600081359050612bdd81612bb7565b92915050565b60008060408385031215612bfa57612bf9612b54565b5b6000612c0885828601612ba2565b9250506020612c1985828601612bce565b9150509250929050565b60008115159050919050565b612c3881612c23565b82525050565b6000602082019050612c536000830184612c2f565b92915050565b600060208284031215612c6f57612c6e612b54565b5b6000612c7d84828501612bce565b91505092915050565b600080600060608486031215612c9f57612c9e612b54565b5b6000612cad86828701612ba2565b9350506020612cbe86828701612ba2565b9250506040612ccf86828701612bce565b9150509250925092565b612ce281612b79565b82525050565b6000602082019050612cfd6000830184612cd9565b92915050565b600060ff82169050919050565b612d1981612d03565b82525050565b6000602082019050612d346000830184612d10565b92915050565b600060208284031215612d5057612d4f612b54565b5b6000612d5e84828501612ba2565b91505092915050565b612d7081612c23565b8114612d7b57600080fd5b50565b600081359050612d8d81612d67565b92915050565b60008060408385031215612daa57612da9612b54565b5b6000612db885828601612ba2565b9250506020612dc985828601612d7e565b9150509250929050565b60008060408385031215612dea57612de9612b54565b5b6000612df885828601612ba2565b9250506020612e0985828601612ba2565b9150509250929050565b6000819050919050565b6000612e38612e33612e2e84612b59565b612e13565b612b59565b9050919050565b6000612e4a82612e1d565b9050919050565b6000612e5c82612e3f565b9050919050565b612e6c81612e51565b82525050565b6000602082019050612e876000830184612e63565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ed457607f821691505b602082108103612ee757612ee6612e8d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f2782612a65565b9150612f3283612a65565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f6b57612f6a612eed565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612fb082612a65565b9150612fbb83612a65565b925082612fcb57612fca612f76565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613032602f83612aa4565b915061303d82612fd6565b604082019050919050565b6000602082019050818103600083015261306181613025565b9050919050565b600061307382612a65565b915061307e83612a65565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130b3576130b2612eed565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061311a602583612aa4565b9150613125826130be565b604082019050919050565b600060208201905081810360008301526131498161310d565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006131ac602483612aa4565b91506131b782613150565b604082019050919050565b600060208201905081810360008301526131db8161319f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30312520746f74616c20737570706c792e000000000000000000000000602082015250565b600061323e603483612aa4565b9150613249826131e2565b604082019050919050565b6000602082019050818103600083015261326d81613231565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006132d0603483612aa4565b91506132db82613274565b604082019050919050565b600060208201905081810360008301526132ff816132c3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613362602683612aa4565b915061336d82613306565b604082019050919050565b6000602082019050818103600083015261339181613355565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006133f4602483612aa4565b91506133ff82613398565b604082019050919050565b60006020820190508181036000830152613423816133e7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613486602283612aa4565b91506134918261342a565b604082019050919050565b600060208201905081810360008301526134b581613479565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134f2602083612aa4565b91506134fd826134bc565b602082019050919050565b60006020820190508181036000830152613521816134e5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061355e601d83612aa4565b915061356982613528565b602082019050919050565b6000602082019050818103600083015261358d81613551565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006135f0602583612aa4565b91506135fb82613594565b604082019050919050565b6000602082019050818103600083015261361f816135e3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613682602383612aa4565b915061368d82613626565b604082019050919050565b600060208201905081810360008301526136b181613675565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006136ee601683612aa4565b91506136f9826136b8565b602082019050919050565b6000602082019050818103600083015261371d816136e1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613780603583612aa4565b915061378b82613724565b604082019050919050565b600060208201905081810360008301526137af81613773565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006137ec601383612aa4565b91506137f7826137b6565b602082019050919050565b6000602082019050818103600083015261381b816137df565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006138a4604983612aa4565b91506138af82613822565b606082019050919050565b600060208201905081810360008301526138d381613897565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613936603683612aa4565b9150613941826138da565b604082019050919050565b6000602082019050818103600083015261396581613929565b9050919050565b600061397782612a65565b915061398283612a65565b92508282101561399557613994612eed565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006139fc602683612aa4565b9150613a07826139a0565b604082019050919050565b60006020820190508181036000830152613a2b816139ef565b9050919050565b600081905092915050565b50565b6000613a4d600083613a32565b9150613a5882613a3d565b600082019050919050565b6000613a6e82613a40565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613ae581612b8b565b92915050565b600060208284031215613b0157613b00612b54565b5b6000613b0f84828501613ad6565b91505092915050565b6000819050919050565b6000613b3d613b38613b3384613b18565b612e13565b612a65565b9050919050565b613b4d81613b22565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b8881612b79565b82525050565b6000613b9a8383613b7f565b60208301905092915050565b6000602082019050919050565b6000613bbe82613b53565b613bc88185613b5e565b9350613bd383613b6f565b8060005b83811015613c04578151613beb8882613b8e565b9750613bf683613ba6565b925050600181019050613bd7565b5085935050505092915050565b600060a082019050613c266000830188612a6f565b613c336020830187613b44565b8181036040830152613c458186613bb3565b9050613c546060830185612cd9565b613c616080830184612a6f565b9695505050505050565b600060c082019050613c806000830189612cd9565b613c8d6020830188612a6f565b613c9a6040830187613b44565b613ca76060830186613b44565b613cb46080830185612cd9565b613cc160a0830184612a6f565b979650505050505050565b600081519050613cdb81612bb7565b92915050565b600080600060608486031215613cfa57613cf9612b54565b5b6000613d0886828701613ccc565b9350506020613d1986828701613ccc565b9250506040613d2a86828701613ccc565b915050925092509256fea26469706673582212209efa39b8ae488020778bc106d24e98114f63a63a65baa9d851f7a139a70b710664736f6c634300080d0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : routerAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


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.