ETH Price: $2,594.29 (-16.57%)
 

Overview

Max Total Supply

1,000,000 OSHO

Holders

65

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
Osho

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

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

/**
Welcome to the New Age!
*/

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";


contract Osho is Context, ERC20, Ownable {

    using SafeMath for uint256;
    //Transfer Type
    uint8 constant TRANSFER = 1;
    uint8 constant BUY = 2;
    uint8 constant SELL = 3;

    //Basic info
    string private constant NAME = "Osho";
    string private constant SYMBOL = "OSHO";
    uint256 private constant TOTAL_SUPPLY = 1000000 * 1e18;

    //Fees
    uint256 public _marketingBuyFee;
    uint256 public _liquidityBuyFee;
    uint256 public _marketingSellFee;
    uint256 public _liquiditySellFee;
    uint256 public constant MAX_FEE_PCT = 10;
    address public _marketingWallet;
    address public _liquidityWallet;
    uint256 private _marketingBalance;
    uint256 private _liquidityBalance;
    mapping(address => bool) private _feeExclusions;

    //Limit transaction
    uint256 public _transactionUpperLimit;
    uint256 private constant MIN_TRANS_UPPER_LIMIT = TOTAL_SUPPLY / 1000;
    //Limit wallet
    uint256 public _maxWalletSize;
    uint256 private constant MIN_WALLET_SIZE = TOTAL_SUPPLY / 100;

    mapping(address => bool) private _limitExclusions;

    //Bots
    mapping(address => bool) public _bots;

    //Router & pair
    IUniswapV2Router02 private _swapRouter;
    address public _swapPair;
    bool private _inSwap = false;
    bool private _tradingEnable = false;

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

    //// constructor
    constructor(address routerAddress) ERC20(NAME, SYMBOL){
        if (routerAddress != address(0)) {
            setSwapRouter(routerAddress);
        }
        setExcludedFromFees(address(this), true);
        setExcludedFromFees(_msgSender(), true);
        setLimitExclusions(address(this), true);
        setLimitExclusions(_msgSender(), true);

        setFees(5,1,5,1);
        _marketingWallet = _msgSender();
        _liquidityWallet = _msgSender();

        _transactionUpperLimit = TOTAL_SUPPLY / 200;
        // .5% max trans amt
        _maxWalletSize = TOTAL_SUPPLY / 20;
        // 2% max trans amt

        _mint(_msgSender(), TOTAL_SUPPLY);
    }

    //// modifier
    modifier swapping() {
        _inSwap = true;
        _;
        _inSwap = false;
    }

    //// receive
    receive() external payable {}
    //// fallback
    //// external
    function setFeeWallets(
        address marketingWallet,
        address liquidityWallet
    )
    external
    onlyOwner
    {
        _marketingWallet = marketingWallet;
        _liquidityWallet = liquidityWallet;
    }

    function removeLimits() external onlyOwner {
        setTransactionUpperLimit(TOTAL_SUPPLY);
        setMaxWalletSize(TOTAL_SUPPLY);
    }

    function blockBots(address[] memory bots) external onlyOwner {
        for (uint256 i = 0; i < bots.length; i++) {
            _bots[bots[i]] = true;
        }
    }

    function unblockBot(address notbot) external onlyOwner {
        _bots[notbot] = false;
    }

    function enableTrading() external onlyOwner {
        _tradingEnable = true;
    }

    //// public
    function setFees(
        uint256 marketingBuyFee,
        uint256 liquidityBuyFee,
        uint256 marketingSellFee,
        uint256 liquiditySellFee
    )
    public
    onlyOwner
    {
        require(MAX_FEE_PCT >= marketingBuyFee + liquidityBuyFee);
        require(MAX_FEE_PCT >= marketingSellFee + liquiditySellFee);
        _marketingBuyFee = marketingBuyFee;
        _liquidityBuyFee = liquidityBuyFee;
        _marketingSellFee = marketingSellFee;
        _liquiditySellFee = liquiditySellFee;
    }

    function setExcludedFromFees(address addr, bool value) public onlyOwner {
        _feeExclusions[addr] = value;
    }

    function isExcludedFromFees(address addr)
    public
    view
    returns (bool)
    {
        return _feeExclusions[addr];
    }

    function setTransactionUpperLimit(uint256 limit) public onlyOwner {
        require(limit > MIN_TRANS_UPPER_LIMIT);
        _transactionUpperLimit = limit;
    }

    function setLimitExclusions(address addr, bool value) public onlyOwner {
        _limitExclusions[addr] = value;
    }

    function isExcludedFromLimits(address addr)
    public
    view
    returns (bool)
    {
        return _limitExclusions[addr];
    }

    function setMaxWalletSize(uint256 maxWalletSize) public onlyOwner {
        _maxWalletSize = maxWalletSize;
    }

    function setSwapRouter(address routerAddress) public onlyOwner {
        require(routerAddress != address(0), "Invalid router address");

        _swapRouter = IUniswapV2Router02(routerAddress);
        _approve(address(this), routerAddress, type(uint256).max);

        _swapPair = IUniswapV2Factory(_swapRouter.factory()).getPair(address(this), _swapRouter.WETH());
        if (_swapPair == address(0)) {// pair doesn't exist beforehand
            _swapPair = IUniswapV2Factory(_swapRouter.factory()).createPair(address(this), _swapRouter.WETH());
        }
    }

    //// internal
    function _transfer(address sender, address recipient, uint256 amount) internal override {
        require(sender != address(0), "Invalid sender address");
        require(recipient != address(0), "Invalid recipient address");
        require(amount > 0, "Invalid transferring amount");
        require(!_bots[sender] && !_bots[recipient], "TOKEN: Your account is blacklisted!");

        if (_inSwap) {
            super._transfer(sender, recipient, amount);
            return;
        }

        uint8 transferType = transferType(sender, recipient);
        if ((transferType == BUY && !isExcludedFromLimits(recipient))
            || (transferType == SELL && !isExcludedFromLimits(sender))) {
            require(_tradingEnable, "Trading is not enable");
            require(amount <= _transactionUpperLimit, "Transferring amount exceeds the maximum allowed");
        }

        bool isIgnoreFee = (transferType == BUY && isExcludedFromFees(recipient)) || (transferType == SELL && isExcludedFromFees(sender));
        (uint256 totalFee,uint256 afterFeeAmount) = calAmountAfterFee(amount, transferType, isIgnoreFee);
        if (transferType == BUY && !isExcludedFromLimits(recipient)) {
            require(balanceOf(recipient) + afterFeeAmount <= _maxWalletSize, "Balance exceeds wallet size!");
        }

        super._transfer(sender, recipient, afterFeeAmount);
        if (totalFee > 0) {
            super._transfer(sender, address(this), totalFee);
            swapFees(transferType, totalFee);
        }

    }

    function transferType(address from, address to) internal view returns (uint8) {
        if (from == _swapPair) {
            return BUY;
        }
        if (to == _swapPair) {
            return SELL;
        }
        return TRANSFER;
    }

    function calAmountAfterFee(uint256 amount, uint8 transferType, bool isIgnoreFee) private returns (uint256, uint256) {
        if (transferType == TRANSFER || isIgnoreFee) {
            return (0, amount);
        }
        uint256 marketingPercentage = transferType == BUY ? _marketingBuyFee : _marketingSellFee;
        uint256 liquidityPercentage = transferType == BUY ? _liquidityBuyFee : _liquiditySellFee;

        uint256 marketingFee = amount.mul(marketingPercentage).div(100);
        uint256 liquidityFee = amount.mul(liquidityPercentage).div(100);

        _marketingBalance += marketingFee;
        _liquidityBalance += liquidityFee;

        uint256 totalFee = marketingFee.add(liquidityFee);
        uint256 afterFeeAmount = amount.sub(totalFee, "Insufficient amount");

        return (totalFee, afterFeeAmount);
    }

    function swapFees(uint8 transferType, uint256 totalFee) private returns (bool) {
        if (transferType == SELL && balanceOf(address(this)) > 0) {
            swapMarketingFee();
            swapAndLiquify();
        }
    }

    function swapMarketingFee() private swapping {
        uint256 ethToMarketing = swapTokensForEth(_marketingBalance);
        (bool successSentMarketing,) = _marketingWallet.call{value : ethToMarketing}("");
        _marketingBalance = 0;
    }

    function swapAndLiquify() private swapping {
        uint256 half = _liquidityBalance.div(2);
        uint256 otherHalf = _liquidityBalance.sub(half);
        uint256 ethToLiquidity = swapTokensForEth(half);
        _swapRouter.addLiquidityETH{value : ethToLiquidity}(
            address(this),
            otherHalf,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            _liquidityWallet,
            block.timestamp
        );
        _liquidityBalance = 0;

        emit SwapAndLiquify(half, ethToLiquidity, otherHalf);
    }

    function swapTokensForEth(uint256 amount) internal returns (uint256) {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _swapRouter.WETH();

        // Swap
        _swapRouter.swapExactTokensForETH(amount, 0, path, address(this), block.timestamp + 360);

        // Return the amount received
        return address(this).balance;
    }

    //// private
    //// view / pure
    function totalFee()
    external
    view
    returns (uint256)
    {
        return _marketingBuyFee.add(_liquidityBuyFee);
    }
}

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

pragma solidity ^0.8.0;

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

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

File 3 of 10 : 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 4 of 10 : 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 5 of 10 : 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 6 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

File 7 of 10 : 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 8 of 10 : 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 9 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

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

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FEE_PCT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquiditySellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_transactionUpperLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots","type":"address[]"}],"name":"blockBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"addr","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExcludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"marketingWallet","type":"address"},{"internalType":"address","name":"liquidityWallet","type":"address"}],"name":"setFeeWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingBuyFee","type":"uint256"},{"internalType":"uint256","name":"liquidityBuyFee","type":"uint256"},{"internalType":"uint256","name":"marketingSellFee","type":"uint256"},{"internalType":"uint256","name":"liquiditySellFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setLimitExclusions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"routerAddress","type":"address"}],"name":"setSwapRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setTransactionUpperLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFee","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":"address","name":"notbot","type":"address"}],"name":"unblockBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260006014806101000a81548160ff0219169083151502179055506000601460156101000a81548160ff0219169083151502179055503480156200004657600080fd5b50604051620051ab380380620051ab83398181016040528101906200006c919062000f5c565b6040518060400160405280600481526020017f4f73686f000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4f53484f000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000f092919062000e42565b5080600490805190602001906200010992919062000e42565b5050506200012c620001206200030560201b60201c565b6200030d60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161462000173576200017281620003d360201b60201c565b5b62000186306001620008f460201b60201c565b620001a86200019a6200030560201b60201c565b6001620008f460201b60201c565b620001bb3060016200095f60201b60201c565b620001dd620001cf6200030560201b60201c565b60016200095f60201b60201c565b620001f56005600160056001620009ca60201b60201c565b620002056200030560201b60201c565b600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002556200030560201b60201c565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060c869d3c21bcecceda1000000620002ae919062000ff6565b600f81905550601469d3c21bcecceda1000000620002cd919062000ff6565b601081905550620002fe620002e76200030560201b60201c565b69d3c21bcecceda100000062000a3460201b60201c565b50620013f2565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003e362000bac60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000455576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200044c906200108f565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004c930827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62000c3d60201b60201c565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000537573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200055d919062000f5c565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620005e7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200060d919062000f5c565b6040518363ffffffff1660e01b81526004016200062c929190620010c2565b602060405180830381865afa1580156200064a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000670919062000f5c565b601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603620008f157601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000775573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200079b919062000f5c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000825573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200084b919062000f5c565b6040518363ffffffff1660e01b81526004016200086a929190620010c2565b6020604051808303816000875af11580156200088a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620008b0919062000f5c565b601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b6200090462000bac60201b60201c565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6200096f62000bac60201b60201c565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b620009da62000bac60201b60201c565b8284620009e89190620010ef565b600a1015620009f657600080fd5b808262000a049190620010ef565b600a101562000a1257600080fd5b8360068190555082600781905550816008819055508060098190555050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000aa6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a9d906200119c565b60405180910390fd5b62000aba6000838362000e0e60201b60201c565b806002600082825462000ace9190620010ef565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000b259190620010ef565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b8c9190620011cf565b60405180910390a362000ba86000838362000e1360201b60201c565b5050565b62000bbc6200030560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000be262000e1860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000c3b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c32906200123c565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000caf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ca690620012d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000d21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d18906200136c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000e019190620011cf565b60405180910390a3505050565b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000e5090620013bd565b90600052602060002090601f01602090048101928262000e74576000855562000ec0565b82601f1062000e8f57805160ff191683800117855562000ec0565b8280016001018555821562000ec0579182015b8281111562000ebf57825182559160200191906001019062000ea2565b5b50905062000ecf919062000ed3565b5090565b5b8082111562000eee57600081600090555060010162000ed4565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f248262000ef7565b9050919050565b62000f368162000f17565b811462000f4257600080fd5b50565b60008151905062000f568162000f2b565b92915050565b60006020828403121562000f755762000f7462000ef2565b5b600062000f858482850162000f45565b91505092915050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010038262000f8e565b9150620010108362000f8e565b92508262001023576200102262000f98565b5b828204905092915050565b600082825260208201905092915050565b7f496e76616c696420726f75746572206164647265737300000000000000000000600082015250565b6000620010776016836200102e565b915062001084826200103f565b602082019050919050565b60006020820190508181036000830152620010aa8162001068565b9050919050565b620010bc8162000f17565b82525050565b6000604082019050620010d96000830185620010b1565b620010e86020830184620010b1565b9392505050565b6000620010fc8262000f8e565b9150620011098362000f8e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001141576200114062000fc7565b5b828201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001184601f836200102e565b915062001191826200114c565b602082019050919050565b60006020820190508181036000830152620011b78162001175565b9050919050565b620011c98162000f8e565b82525050565b6000602082019050620011e66000830184620011be565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620012246020836200102e565b91506200123182620011ec565b602082019050919050565b60006020820190508181036000830152620012578162001215565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000620012bc6024836200102e565b9150620012c9826200125e565b604082019050919050565b60006020820190508181036000830152620012ef81620012ad565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620013546022836200102e565b91506200136182620012f6565b604082019050919050565b60006020820190508181036000830152620013878162001345565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620013d657607f821691505b602082108103620013ec57620013eb6200138e565b5b50919050565b613da980620014026000396000f3fe6080604052600436106102335760003560e01c8063715018a61161012e578063b481ff95116100ab578063e3624bba1161006f578063e3624bba1461085f578063ea1644d51461088a578063f2fde38b146108b3578063f5040ada146108dc578063fd1fb605146109075761023a565b8063b481ff9514610766578063dac11380146107a3578063dca51277146107ce578063dd62ed3e146107f7578063e1254602146108345761023a565b806395d89b41116100f257806395d89b411461066b578063962dfc7514610696578063a457c2d7146106c1578063a9059cbb146106fe578063a93a0fd01461073b5761023a565b8063715018a6146105d0578063751039fc146105e75780638a8c523c146105fe5780638da5cb5b146106155780638f9a55c0146106405761023a565b8063313ce567116101bc5780635b0c2bfd116101805780635b0c2bfd146104db5780635cce86cd146105045780636b999053146105415780636fcba3771461056a57806370a08231146105935761023a565b8063313ce567146103e4578063395093511461040f578063412736571461044c5780634fbee19314610475578063590ffdce146104b25761023a565b806318160ddd1161020357806318160ddd146102fb5780631df4ccfc14610326578063226d2c641461035157806323b872dd1461037c578063243a7e31146103b95761023a565b8062b8cf2a1461023f57806306fdde0314610268578063095ea7b3146102935780630c066694146102d05761023a565b3661023a57005b600080fd5b34801561024b57600080fd5b5061026660048036038101906102619190612aa3565b610930565b005b34801561027457600080fd5b5061027d6109cd565b60405161028a9190612b74565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190612bcc565b610a5f565b6040516102c79190612c27565b60405180910390f35b3480156102dc57600080fd5b506102e5610a82565b6040516102f29190612c51565b60405180910390f35b34801561030757600080fd5b50610310610a88565b60405161031d9190612c51565b60405180910390f35b34801561033257600080fd5b5061033b610a92565b6040516103489190612c51565b60405180910390f35b34801561035d57600080fd5b50610366610ab0565b6040516103739190612c7b565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e9190612c96565b610ad6565b6040516103b09190612c27565b60405180910390f35b3480156103c557600080fd5b506103ce610b05565b6040516103db9190612c7b565b60405180910390f35b3480156103f057600080fd5b506103f9610b2b565b6040516104069190612d05565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612bcc565b610b34565b6040516104439190612c27565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190612d20565b610b6b565b005b34801561048157600080fd5b5061049c60048036038101906104979190612d20565b611062565b6040516104a99190612c27565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d49190612d79565b6110b8565b005b3480156104e757600080fd5b5061050260048036038101906104fd9190612d79565b61111b565b005b34801561051057600080fd5b5061052b60048036038101906105269190612d20565b61117e565b6040516105389190612c27565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190612d20565b6111d4565b005b34801561057657600080fd5b50610591600480360381019061058c9190612db9565b611237565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190612d20565b611293565b6040516105c79190612c51565b60405180910390f35b3480156105dc57600080fd5b506105e56112db565b005b3480156105f357600080fd5b506105fc6112ef565b005b34801561060a57600080fd5b5061061361131f565b005b34801561062157600080fd5b5061062a611344565b6040516106379190612c7b565b60405180910390f35b34801561064c57600080fd5b5061065561136e565b6040516106629190612c51565b60405180910390f35b34801561067757600080fd5b50610680611374565b60405161068d9190612b74565b60405180910390f35b3480156106a257600080fd5b506106ab611406565b6040516106b89190612c7b565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190612bcc565b61142c565b6040516106f59190612c27565b60405180910390f35b34801561070a57600080fd5b5061072560048036038101906107209190612bcc565b6114a3565b6040516107329190612c27565b60405180910390f35b34801561074757600080fd5b506107506114c6565b60405161075d9190612c51565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612d20565b6114cc565b60405161079a9190612c27565b60405180910390f35b3480156107af57600080fd5b506107b86114ec565b6040516107c59190612c51565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190612e20565b6114f2565b005b34801561080357600080fd5b5061081e60048036038101906108199190612e4d565b611527565b60405161082b9190612c51565b60405180910390f35b34801561084057600080fd5b506108496115ae565b6040516108569190612c51565b60405180910390f35b34801561086b57600080fd5b506108746115b4565b6040516108819190612c51565b60405180910390f35b34801561089657600080fd5b506108b160048036038101906108ac9190612e20565b6115ba565b005b3480156108bf57600080fd5b506108da60048036038101906108d59190612d20565b6115cc565b005b3480156108e857600080fd5b506108f161164f565b6040516108fe9190612c51565b60405180910390f35b34801561091357600080fd5b5061092e60048036038101906109299190612e4d565b611654565b005b6109386116e2565b60005b81518110156109c95760016012600084848151811061095d5761095c612e8d565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806109c190612eeb565b91505061093b565b5050565b6060600380546109dc90612f62565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0890612f62565b8015610a555780601f10610a2a57610100808354040283529160200191610a55565b820191906000526020600020905b815481529060010190602001808311610a3857829003601f168201915b5050505050905090565b600080610a6a611760565b9050610a77818585611768565b600191505092915050565b600f5481565b6000600254905090565b6000610aab60075460065461193190919063ffffffff16565b905090565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610ae1611760565b9050610aee858285611947565b610af98585856119d3565b60019150509392505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600080610b3f611760565b9050610b60818585610b518589611527565b610b5b9190612f93565b611768565b600191505092915050565b610b736116e2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd990613035565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610c4e30827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611768565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cdf919061306a565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8c919061306a565b6040518363ffffffff1660e01b8152600401610da9929190613097565b602060405180830381865afa158015610dc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dea919061306a565b601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361105f57601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610eed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f11919061306a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fbe919061306a565b6040518363ffffffff1660e01b8152600401610fdb929190613097565b6020604051808303816000875af1158015610ffa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101e919061306a565b601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110c06116e2565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6111236116e2565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6111dc6116e2565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61123f6116e2565b828461124b9190612f93565b600a101561125857600080fd5b80826112649190612f93565b600a101561127157600080fd5b8360068190555082600781905550816008819055508060098190555050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112e36116e2565b6112ed6000611de3565b565b6112f76116e2565b61130a69d3c21bcecceda10000006114f2565b61131d69d3c21bcecceda10000006115ba565b565b6113276116e2565b6001601460156101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b60606004805461138390612f62565b80601f01602080910402602001604051908101604052809291908181526020018280546113af90612f62565b80156113fc5780601f106113d1576101008083540402835291602001916113fc565b820191906000526020600020905b8154815290600101906020018083116113df57829003601f168201915b5050505050905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080611437611760565b905060006114458286611527565b90508381101561148a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148190613132565b60405180910390fd5b6114978286868403611768565b60019250505092915050565b6000806114ae611760565b90506114bb8185856119d3565b600191505092915050565b60065481565b60126020528060005260406000206000915054906101000a900460ff1681565b60095481565b6114fa6116e2565b6103e869d3c21bcecceda10000006115129190613181565b811161151d57600080fd5b80600f8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b60085481565b6115c26116e2565b8060108190555050565b6115d46116e2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a90613224565b60405180910390fd5b61164c81611de3565b50565b600a81565b61165c6116e2565b81600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6116ea611760565b73ffffffffffffffffffffffffffffffffffffffff16611708611344565b73ffffffffffffffffffffffffffffffffffffffff161461175e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175590613290565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce90613322565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d906133b4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119249190612c51565b60405180910390a3505050565b6000818361193f9190612f93565b905092915050565b60006119538484611527565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119cd57818110156119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b690613420565b60405180910390fd5b6119cc8484848403611768565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a399061348c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa8906134f8565b60405180910390fd5b60008111611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb90613564565b60405180910390fd5b601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611b985750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bce906135f6565b60405180910390fd5b60148054906101000a900460ff1615611bfa57611bf5838383611ea9565b611dde565b6000611c068484612128565b9050600260ff168160ff16148015611c245750611c228361117e565b155b80611c475750600360ff168160ff16148015611c465750611c448461117e565b155b5b15611ce157601460159054906101000a900460ff16611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9290613662565b60405180910390fd5b600f54821115611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd7906136f4565b60405180910390fd5b5b6000600260ff168260ff16148015611cfe5750611cfd84611062565b5b80611d205750600360ff168260ff16148015611d1f5750611d1e85611062565b5b5b9050600080611d308585856121f1565b91509150600260ff168460ff16148015611d505750611d4e8661117e565b155b15611dae5760105481611d6288611293565b611d6c9190612f93565b1115611dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da490613760565b60405180910390fd5b5b611db9878783611ea9565b6000821115611dd957611dcd873084611ea9565b611dd78483612353565b505b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0f906137f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7e90613884565b60405180910390fd5b611f9283838361238f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f90613916565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120ab9190612f93565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161210f9190612c51565b60405180910390a3612122848484612394565b50505050565b6000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361218857600290506121eb565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121e657600390506121eb565b600190505b92915050565b600080600160ff168460ff1614806122065750825b15612217576000859150915061234b565b6000600260ff168560ff161461222f57600854612233565b6006545b90506000600260ff168660ff161461224d57600954612251565b6007545b9050600061227b606461226d858b61239990919063ffffffff16565b6123af90919063ffffffff16565b905060006122a56064612297858c61239990919063ffffffff16565b6123af90919063ffffffff16565b905081600c60008282546122b99190612f93565b9250508190555080600d60008282546122d29190612f93565b9250508190555060006122ee828461193190919063ffffffff16565b9050600061233c826040518060400160405280601381526020017f496e73756666696369656e7420616d6f756e74000000000000000000000000008152508d6123c59092919063ffffffff16565b90508181975097505050505050505b935093915050565b6000600360ff168360ff161480156123735750600061237130611293565b115b156123895761238061241a565b6123886124f7565b5b92915050565b505050565b505050565b600081836123a79190613936565b905092915050565b600081836123bd9190613181565b905092915050565b600083831115829061240d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124049190612b74565b60405180910390fd5b5082840390509392505050565b60016014806101000a81548160ff0219169083151502179055506000612441600c54612682565b90506000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161248b906139c1565b60006040518083038185875af1925050503d80600081146124c8576040519150601f19603f3d011682016040523d82523d6000602084013e6124cd565b606091505b505090506000600c81905550505060006014806101000a81548160ff021916908315150217905550565b60016014806101000a81548160ff02191690831515021790555060006125296002600d546123af90919063ffffffff16565b9050600061254282600d546128c290919063ffffffff16565b9050600061254f83612682565b9050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016125da96959493929190613a1b565b60606040518083038185885af11580156125f8573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061261d9190613a91565b5050506000600d819055507f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56183828460405161265b93929190613ae4565b60405180910390a150505060006014806101000a81548160ff021916908315150217905550565b600080600267ffffffffffffffff8111156126a05761269f612902565b5b6040519080825280602002602001820160405280156126ce5781602001602082028036833780820191505090505b50905030816000815181106126e6576126e5612e8d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561278d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127b1919061306a565b816001815181106127c5576127c4612e8d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318cbafe58460008430610168426128509190612f93565b6040518663ffffffff1660e01b8152600401612870959493929190613bd9565b6000604051808303816000875af115801561288f573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906128b89190613cf6565b5047915050919050565b600081836128d09190613d3f565b905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61293a826128f1565b810181811067ffffffffffffffff8211171561295957612958612902565b5b80604052505050565b600061296c6128d8565b90506129788282612931565b919050565b600067ffffffffffffffff82111561299857612997612902565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129d9826129ae565b9050919050565b6129e9816129ce565b81146129f457600080fd5b50565b600081359050612a06816129e0565b92915050565b6000612a1f612a1a8461297d565b612962565b90508083825260208201905060208402830185811115612a4257612a416129a9565b5b835b81811015612a6b5780612a5788826129f7565b845260208401935050602081019050612a44565b5050509392505050565b600082601f830112612a8a57612a896128ec565b5b8135612a9a848260208601612a0c565b91505092915050565b600060208284031215612ab957612ab86128e2565b5b600082013567ffffffffffffffff811115612ad757612ad66128e7565b5b612ae384828501612a75565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b26578082015181840152602081019050612b0b565b83811115612b35576000848401525b50505050565b6000612b4682612aec565b612b508185612af7565b9350612b60818560208601612b08565b612b69816128f1565b840191505092915050565b60006020820190508181036000830152612b8e8184612b3b565b905092915050565b6000819050919050565b612ba981612b96565b8114612bb457600080fd5b50565b600081359050612bc681612ba0565b92915050565b60008060408385031215612be357612be26128e2565b5b6000612bf1858286016129f7565b9250506020612c0285828601612bb7565b9150509250929050565b60008115159050919050565b612c2181612c0c565b82525050565b6000602082019050612c3c6000830184612c18565b92915050565b612c4b81612b96565b82525050565b6000602082019050612c666000830184612c42565b92915050565b612c75816129ce565b82525050565b6000602082019050612c906000830184612c6c565b92915050565b600080600060608486031215612caf57612cae6128e2565b5b6000612cbd868287016129f7565b9350506020612cce868287016129f7565b9250506040612cdf86828701612bb7565b9150509250925092565b600060ff82169050919050565b612cff81612ce9565b82525050565b6000602082019050612d1a6000830184612cf6565b92915050565b600060208284031215612d3657612d356128e2565b5b6000612d44848285016129f7565b91505092915050565b612d5681612c0c565b8114612d6157600080fd5b50565b600081359050612d7381612d4d565b92915050565b60008060408385031215612d9057612d8f6128e2565b5b6000612d9e858286016129f7565b9250506020612daf85828601612d64565b9150509250929050565b60008060008060808587031215612dd357612dd26128e2565b5b6000612de187828801612bb7565b9450506020612df287828801612bb7565b9350506040612e0387828801612bb7565b9250506060612e1487828801612bb7565b91505092959194509250565b600060208284031215612e3657612e356128e2565b5b6000612e4484828501612bb7565b91505092915050565b60008060408385031215612e6457612e636128e2565b5b6000612e72858286016129f7565b9250506020612e83858286016129f7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ef682612b96565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f2857612f27612ebc565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f7a57607f821691505b602082108103612f8d57612f8c612f33565b5b50919050565b6000612f9e82612b96565b9150612fa983612b96565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fde57612fdd612ebc565b5b828201905092915050565b7f496e76616c696420726f75746572206164647265737300000000000000000000600082015250565b600061301f601683612af7565b915061302a82612fe9565b602082019050919050565b6000602082019050818103600083015261304e81613012565b9050919050565b600081519050613064816129e0565b92915050565b6000602082840312156130805761307f6128e2565b5b600061308e84828501613055565b91505092915050565b60006040820190506130ac6000830185612c6c565b6130b96020830184612c6c565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061311c602583612af7565b9150613127826130c0565b604082019050919050565b6000602082019050818103600083015261314b8161310f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061318c82612b96565b915061319783612b96565b9250826131a7576131a6613152565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061320e602683612af7565b9150613219826131b2565b604082019050919050565b6000602082019050818103600083015261323d81613201565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061327a602083612af7565b915061328582613244565b602082019050919050565b600060208201905081810360008301526132a98161326d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061330c602483612af7565b9150613317826132b0565b604082019050919050565b6000602082019050818103600083015261333b816132ff565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061339e602283612af7565b91506133a982613342565b604082019050919050565b600060208201905081810360008301526133cd81613391565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061340a601d83612af7565b9150613415826133d4565b602082019050919050565b60006020820190508181036000830152613439816133fd565b9050919050565b7f496e76616c69642073656e646572206164647265737300000000000000000000600082015250565b6000613476601683612af7565b915061348182613440565b602082019050919050565b600060208201905081810360008301526134a581613469565b9050919050565b7f496e76616c696420726563697069656e74206164647265737300000000000000600082015250565b60006134e2601983612af7565b91506134ed826134ac565b602082019050919050565b60006020820190508181036000830152613511816134d5565b9050919050565b7f496e76616c6964207472616e7366657272696e6720616d6f756e740000000000600082015250565b600061354e601b83612af7565b915061355982613518565b602082019050919050565b6000602082019050818103600083015261357d81613541565b9050919050565b7f544f4b454e3a20596f7572206163636f756e7420697320626c61636b6c69737460008201527f6564210000000000000000000000000000000000000000000000000000000000602082015250565b60006135e0602383612af7565b91506135eb82613584565b604082019050919050565b6000602082019050818103600083015261360f816135d3565b9050919050565b7f54726164696e67206973206e6f7420656e61626c650000000000000000000000600082015250565b600061364c601583612af7565b915061365782613616565b602082019050919050565b6000602082019050818103600083015261367b8161363f565b9050919050565b7f5472616e7366657272696e6720616d6f756e742065786365656473207468652060008201527f6d6178696d756d20616c6c6f7765640000000000000000000000000000000000602082015250565b60006136de602f83612af7565b91506136e982613682565b604082019050919050565b6000602082019050818103600083015261370d816136d1565b9050919050565b7f42616c616e636520657863656564732077616c6c65742073697a652100000000600082015250565b600061374a601c83612af7565b915061375582613714565b602082019050919050565b600060208201905081810360008301526137798161373d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137dc602583612af7565b91506137e782613780565b604082019050919050565b6000602082019050818103600083015261380b816137cf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061386e602383612af7565b915061387982613812565b604082019050919050565b6000602082019050818103600083015261389d81613861565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613900602683612af7565b915061390b826138a4565b604082019050919050565b6000602082019050818103600083015261392f816138f3565b9050919050565b600061394182612b96565b915061394c83612b96565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561398557613984612ebc565b5b828202905092915050565b600081905092915050565b50565b60006139ab600083613990565b91506139b68261399b565b600082019050919050565b60006139cc8261399e565b9150819050919050565b6000819050919050565b6000819050919050565b6000613a05613a006139fb846139d6565b6139e0565b612b96565b9050919050565b613a15816139ea565b82525050565b600060c082019050613a306000830189612c6c565b613a3d6020830188612c42565b613a4a6040830187613a0c565b613a576060830186613a0c565b613a646080830185612c6c565b613a7160a0830184612c42565b979650505050505050565b600081519050613a8b81612ba0565b92915050565b600080600060608486031215613aaa57613aa96128e2565b5b6000613ab886828701613a7c565b9350506020613ac986828701613a7c565b9250506040613ada86828701613a7c565b9150509250925092565b6000606082019050613af96000830186612c42565b613b066020830185612c42565b613b136040830184612c42565b949350505050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b50816129ce565b82525050565b6000613b628383613b47565b60208301905092915050565b6000602082019050919050565b6000613b8682613b1b565b613b908185613b26565b9350613b9b83613b37565b8060005b83811015613bcc578151613bb38882613b56565b9750613bbe83613b6e565b925050600181019050613b9f565b5085935050505092915050565b600060a082019050613bee6000830188612c42565b613bfb6020830187613a0c565b8181036040830152613c0d8186613b7b565b9050613c1c6060830185612c6c565b613c296080830184612c42565b9695505050505050565b600067ffffffffffffffff821115613c4e57613c4d612902565b5b602082029050602081019050919050565b6000613c72613c6d84613c33565b612962565b90508083825260208201905060208402830185811115613c9557613c946129a9565b5b835b81811015613cbe5780613caa8882613a7c565b845260208401935050602081019050613c97565b5050509392505050565b600082601f830112613cdd57613cdc6128ec565b5b8151613ced848260208601613c5f565b91505092915050565b600060208284031215613d0c57613d0b6128e2565b5b600082015167ffffffffffffffff811115613d2a57613d296128e7565b5b613d3684828501613cc8565b91505092915050565b6000613d4a82612b96565b9150613d5583612b96565b925082821015613d6857613d67612ebc565b5b82820390509291505056fea2646970667358221220f4ca246ce7f855e0fd5329cceb08188ef5399b40999d3adea2e0f89335f73ab464736f6c634300080d00330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x6080604052600436106102335760003560e01c8063715018a61161012e578063b481ff95116100ab578063e3624bba1161006f578063e3624bba1461085f578063ea1644d51461088a578063f2fde38b146108b3578063f5040ada146108dc578063fd1fb605146109075761023a565b8063b481ff9514610766578063dac11380146107a3578063dca51277146107ce578063dd62ed3e146107f7578063e1254602146108345761023a565b806395d89b41116100f257806395d89b411461066b578063962dfc7514610696578063a457c2d7146106c1578063a9059cbb146106fe578063a93a0fd01461073b5761023a565b8063715018a6146105d0578063751039fc146105e75780638a8c523c146105fe5780638da5cb5b146106155780638f9a55c0146106405761023a565b8063313ce567116101bc5780635b0c2bfd116101805780635b0c2bfd146104db5780635cce86cd146105045780636b999053146105415780636fcba3771461056a57806370a08231146105935761023a565b8063313ce567146103e4578063395093511461040f578063412736571461044c5780634fbee19314610475578063590ffdce146104b25761023a565b806318160ddd1161020357806318160ddd146102fb5780631df4ccfc14610326578063226d2c641461035157806323b872dd1461037c578063243a7e31146103b95761023a565b8062b8cf2a1461023f57806306fdde0314610268578063095ea7b3146102935780630c066694146102d05761023a565b3661023a57005b600080fd5b34801561024b57600080fd5b5061026660048036038101906102619190612aa3565b610930565b005b34801561027457600080fd5b5061027d6109cd565b60405161028a9190612b74565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190612bcc565b610a5f565b6040516102c79190612c27565b60405180910390f35b3480156102dc57600080fd5b506102e5610a82565b6040516102f29190612c51565b60405180910390f35b34801561030757600080fd5b50610310610a88565b60405161031d9190612c51565b60405180910390f35b34801561033257600080fd5b5061033b610a92565b6040516103489190612c51565b60405180910390f35b34801561035d57600080fd5b50610366610ab0565b6040516103739190612c7b565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e9190612c96565b610ad6565b6040516103b09190612c27565b60405180910390f35b3480156103c557600080fd5b506103ce610b05565b6040516103db9190612c7b565b60405180910390f35b3480156103f057600080fd5b506103f9610b2b565b6040516104069190612d05565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612bcc565b610b34565b6040516104439190612c27565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190612d20565b610b6b565b005b34801561048157600080fd5b5061049c60048036038101906104979190612d20565b611062565b6040516104a99190612c27565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d49190612d79565b6110b8565b005b3480156104e757600080fd5b5061050260048036038101906104fd9190612d79565b61111b565b005b34801561051057600080fd5b5061052b60048036038101906105269190612d20565b61117e565b6040516105389190612c27565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190612d20565b6111d4565b005b34801561057657600080fd5b50610591600480360381019061058c9190612db9565b611237565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190612d20565b611293565b6040516105c79190612c51565b60405180910390f35b3480156105dc57600080fd5b506105e56112db565b005b3480156105f357600080fd5b506105fc6112ef565b005b34801561060a57600080fd5b5061061361131f565b005b34801561062157600080fd5b5061062a611344565b6040516106379190612c7b565b60405180910390f35b34801561064c57600080fd5b5061065561136e565b6040516106629190612c51565b60405180910390f35b34801561067757600080fd5b50610680611374565b60405161068d9190612b74565b60405180910390f35b3480156106a257600080fd5b506106ab611406565b6040516106b89190612c7b565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190612bcc565b61142c565b6040516106f59190612c27565b60405180910390f35b34801561070a57600080fd5b5061072560048036038101906107209190612bcc565b6114a3565b6040516107329190612c27565b60405180910390f35b34801561074757600080fd5b506107506114c6565b60405161075d9190612c51565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612d20565b6114cc565b60405161079a9190612c27565b60405180910390f35b3480156107af57600080fd5b506107b86114ec565b6040516107c59190612c51565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190612e20565b6114f2565b005b34801561080357600080fd5b5061081e60048036038101906108199190612e4d565b611527565b60405161082b9190612c51565b60405180910390f35b34801561084057600080fd5b506108496115ae565b6040516108569190612c51565b60405180910390f35b34801561086b57600080fd5b506108746115b4565b6040516108819190612c51565b60405180910390f35b34801561089657600080fd5b506108b160048036038101906108ac9190612e20565b6115ba565b005b3480156108bf57600080fd5b506108da60048036038101906108d59190612d20565b6115cc565b005b3480156108e857600080fd5b506108f161164f565b6040516108fe9190612c51565b60405180910390f35b34801561091357600080fd5b5061092e60048036038101906109299190612e4d565b611654565b005b6109386116e2565b60005b81518110156109c95760016012600084848151811061095d5761095c612e8d565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806109c190612eeb565b91505061093b565b5050565b6060600380546109dc90612f62565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0890612f62565b8015610a555780601f10610a2a57610100808354040283529160200191610a55565b820191906000526020600020905b815481529060010190602001808311610a3857829003601f168201915b5050505050905090565b600080610a6a611760565b9050610a77818585611768565b600191505092915050565b600f5481565b6000600254905090565b6000610aab60075460065461193190919063ffffffff16565b905090565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610ae1611760565b9050610aee858285611947565b610af98585856119d3565b60019150509392505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600080610b3f611760565b9050610b60818585610b518589611527565b610b5b9190612f93565b611768565b600191505092915050565b610b736116e2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd990613035565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610c4e30827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611768565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cdf919061306a565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390530601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8c919061306a565b6040518363ffffffff1660e01b8152600401610da9929190613097565b602060405180830381865afa158015610dc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dea919061306a565b601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361105f57601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610eed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f11919061306a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fbe919061306a565b6040518363ffffffff1660e01b8152600401610fdb929190613097565b6020604051808303816000875af1158015610ffa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101e919061306a565b601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110c06116e2565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6111236116e2565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6111dc6116e2565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61123f6116e2565b828461124b9190612f93565b600a101561125857600080fd5b80826112649190612f93565b600a101561127157600080fd5b8360068190555082600781905550816008819055508060098190555050505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112e36116e2565b6112ed6000611de3565b565b6112f76116e2565b61130a69d3c21bcecceda10000006114f2565b61131d69d3c21bcecceda10000006115ba565b565b6113276116e2565b6001601460156101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b60606004805461138390612f62565b80601f01602080910402602001604051908101604052809291908181526020018280546113af90612f62565b80156113fc5780601f106113d1576101008083540402835291602001916113fc565b820191906000526020600020905b8154815290600101906020018083116113df57829003601f168201915b5050505050905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080611437611760565b905060006114458286611527565b90508381101561148a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148190613132565b60405180910390fd5b6114978286868403611768565b60019250505092915050565b6000806114ae611760565b90506114bb8185856119d3565b600191505092915050565b60065481565b60126020528060005260406000206000915054906101000a900460ff1681565b60095481565b6114fa6116e2565b6103e869d3c21bcecceda10000006115129190613181565b811161151d57600080fd5b80600f8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b60085481565b6115c26116e2565b8060108190555050565b6115d46116e2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163a90613224565b60405180910390fd5b61164c81611de3565b50565b600a81565b61165c6116e2565b81600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6116ea611760565b73ffffffffffffffffffffffffffffffffffffffff16611708611344565b73ffffffffffffffffffffffffffffffffffffffff161461175e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175590613290565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce90613322565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d906133b4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119249190612c51565b60405180910390a3505050565b6000818361193f9190612f93565b905092915050565b60006119538484611527565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119cd57818110156119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b690613420565b60405180910390fd5b6119cc8484848403611768565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a399061348c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa8906134f8565b60405180910390fd5b60008111611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb90613564565b60405180910390fd5b601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611b985750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bce906135f6565b60405180910390fd5b60148054906101000a900460ff1615611bfa57611bf5838383611ea9565b611dde565b6000611c068484612128565b9050600260ff168160ff16148015611c245750611c228361117e565b155b80611c475750600360ff168160ff16148015611c465750611c448461117e565b155b5b15611ce157601460159054906101000a900460ff16611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9290613662565b60405180910390fd5b600f54821115611ce0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd7906136f4565b60405180910390fd5b5b6000600260ff168260ff16148015611cfe5750611cfd84611062565b5b80611d205750600360ff168260ff16148015611d1f5750611d1e85611062565b5b5b9050600080611d308585856121f1565b91509150600260ff168460ff16148015611d505750611d4e8661117e565b155b15611dae5760105481611d6288611293565b611d6c9190612f93565b1115611dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da490613760565b60405180910390fd5b5b611db9878783611ea9565b6000821115611dd957611dcd873084611ea9565b611dd78483612353565b505b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0f906137f2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7e90613884565b60405180910390fd5b611f9283838361238f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f90613916565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120ab9190612f93565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161210f9190612c51565b60405180910390a3612122848484612394565b50505050565b6000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361218857600290506121eb565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121e657600390506121eb565b600190505b92915050565b600080600160ff168460ff1614806122065750825b15612217576000859150915061234b565b6000600260ff168560ff161461222f57600854612233565b6006545b90506000600260ff168660ff161461224d57600954612251565b6007545b9050600061227b606461226d858b61239990919063ffffffff16565b6123af90919063ffffffff16565b905060006122a56064612297858c61239990919063ffffffff16565b6123af90919063ffffffff16565b905081600c60008282546122b99190612f93565b9250508190555080600d60008282546122d29190612f93565b9250508190555060006122ee828461193190919063ffffffff16565b9050600061233c826040518060400160405280601381526020017f496e73756666696369656e7420616d6f756e74000000000000000000000000008152508d6123c59092919063ffffffff16565b90508181975097505050505050505b935093915050565b6000600360ff168360ff161480156123735750600061237130611293565b115b156123895761238061241a565b6123886124f7565b5b92915050565b505050565b505050565b600081836123a79190613936565b905092915050565b600081836123bd9190613181565b905092915050565b600083831115829061240d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124049190612b74565b60405180910390fd5b5082840390509392505050565b60016014806101000a81548160ff0219169083151502179055506000612441600c54612682565b90506000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161248b906139c1565b60006040518083038185875af1925050503d80600081146124c8576040519150601f19603f3d011682016040523d82523d6000602084013e6124cd565b606091505b505090506000600c81905550505060006014806101000a81548160ff021916908315150217905550565b60016014806101000a81548160ff02191690831515021790555060006125296002600d546123af90919063ffffffff16565b9050600061254282600d546128c290919063ffffffff16565b9050600061254f83612682565b9050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016125da96959493929190613a1b565b60606040518083038185885af11580156125f8573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061261d9190613a91565b5050506000600d819055507f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56183828460405161265b93929190613ae4565b60405180910390a150505060006014806101000a81548160ff021916908315150217905550565b600080600267ffffffffffffffff8111156126a05761269f612902565b5b6040519080825280602002602001820160405280156126ce5781602001602082028036833780820191505090505b50905030816000815181106126e6576126e5612e8d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561278d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127b1919061306a565b816001815181106127c5576127c4612e8d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318cbafe58460008430610168426128509190612f93565b6040518663ffffffff1660e01b8152600401612870959493929190613bd9565b6000604051808303816000875af115801561288f573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906128b89190613cf6565b5047915050919050565b600081836128d09190613d3f565b905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61293a826128f1565b810181811067ffffffffffffffff8211171561295957612958612902565b5b80604052505050565b600061296c6128d8565b90506129788282612931565b919050565b600067ffffffffffffffff82111561299857612997612902565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129d9826129ae565b9050919050565b6129e9816129ce565b81146129f457600080fd5b50565b600081359050612a06816129e0565b92915050565b6000612a1f612a1a8461297d565b612962565b90508083825260208201905060208402830185811115612a4257612a416129a9565b5b835b81811015612a6b5780612a5788826129f7565b845260208401935050602081019050612a44565b5050509392505050565b600082601f830112612a8a57612a896128ec565b5b8135612a9a848260208601612a0c565b91505092915050565b600060208284031215612ab957612ab86128e2565b5b600082013567ffffffffffffffff811115612ad757612ad66128e7565b5b612ae384828501612a75565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b26578082015181840152602081019050612b0b565b83811115612b35576000848401525b50505050565b6000612b4682612aec565b612b508185612af7565b9350612b60818560208601612b08565b612b69816128f1565b840191505092915050565b60006020820190508181036000830152612b8e8184612b3b565b905092915050565b6000819050919050565b612ba981612b96565b8114612bb457600080fd5b50565b600081359050612bc681612ba0565b92915050565b60008060408385031215612be357612be26128e2565b5b6000612bf1858286016129f7565b9250506020612c0285828601612bb7565b9150509250929050565b60008115159050919050565b612c2181612c0c565b82525050565b6000602082019050612c3c6000830184612c18565b92915050565b612c4b81612b96565b82525050565b6000602082019050612c666000830184612c42565b92915050565b612c75816129ce565b82525050565b6000602082019050612c906000830184612c6c565b92915050565b600080600060608486031215612caf57612cae6128e2565b5b6000612cbd868287016129f7565b9350506020612cce868287016129f7565b9250506040612cdf86828701612bb7565b9150509250925092565b600060ff82169050919050565b612cff81612ce9565b82525050565b6000602082019050612d1a6000830184612cf6565b92915050565b600060208284031215612d3657612d356128e2565b5b6000612d44848285016129f7565b91505092915050565b612d5681612c0c565b8114612d6157600080fd5b50565b600081359050612d7381612d4d565b92915050565b60008060408385031215612d9057612d8f6128e2565b5b6000612d9e858286016129f7565b9250506020612daf85828601612d64565b9150509250929050565b60008060008060808587031215612dd357612dd26128e2565b5b6000612de187828801612bb7565b9450506020612df287828801612bb7565b9350506040612e0387828801612bb7565b9250506060612e1487828801612bb7565b91505092959194509250565b600060208284031215612e3657612e356128e2565b5b6000612e4484828501612bb7565b91505092915050565b60008060408385031215612e6457612e636128e2565b5b6000612e72858286016129f7565b9250506020612e83858286016129f7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ef682612b96565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612f2857612f27612ebc565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f7a57607f821691505b602082108103612f8d57612f8c612f33565b5b50919050565b6000612f9e82612b96565b9150612fa983612b96565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fde57612fdd612ebc565b5b828201905092915050565b7f496e76616c696420726f75746572206164647265737300000000000000000000600082015250565b600061301f601683612af7565b915061302a82612fe9565b602082019050919050565b6000602082019050818103600083015261304e81613012565b9050919050565b600081519050613064816129e0565b92915050565b6000602082840312156130805761307f6128e2565b5b600061308e84828501613055565b91505092915050565b60006040820190506130ac6000830185612c6c565b6130b96020830184612c6c565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061311c602583612af7565b9150613127826130c0565b604082019050919050565b6000602082019050818103600083015261314b8161310f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061318c82612b96565b915061319783612b96565b9250826131a7576131a6613152565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061320e602683612af7565b9150613219826131b2565b604082019050919050565b6000602082019050818103600083015261323d81613201565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061327a602083612af7565b915061328582613244565b602082019050919050565b600060208201905081810360008301526132a98161326d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061330c602483612af7565b9150613317826132b0565b604082019050919050565b6000602082019050818103600083015261333b816132ff565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061339e602283612af7565b91506133a982613342565b604082019050919050565b600060208201905081810360008301526133cd81613391565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061340a601d83612af7565b9150613415826133d4565b602082019050919050565b60006020820190508181036000830152613439816133fd565b9050919050565b7f496e76616c69642073656e646572206164647265737300000000000000000000600082015250565b6000613476601683612af7565b915061348182613440565b602082019050919050565b600060208201905081810360008301526134a581613469565b9050919050565b7f496e76616c696420726563697069656e74206164647265737300000000000000600082015250565b60006134e2601983612af7565b91506134ed826134ac565b602082019050919050565b60006020820190508181036000830152613511816134d5565b9050919050565b7f496e76616c6964207472616e7366657272696e6720616d6f756e740000000000600082015250565b600061354e601b83612af7565b915061355982613518565b602082019050919050565b6000602082019050818103600083015261357d81613541565b9050919050565b7f544f4b454e3a20596f7572206163636f756e7420697320626c61636b6c69737460008201527f6564210000000000000000000000000000000000000000000000000000000000602082015250565b60006135e0602383612af7565b91506135eb82613584565b604082019050919050565b6000602082019050818103600083015261360f816135d3565b9050919050565b7f54726164696e67206973206e6f7420656e61626c650000000000000000000000600082015250565b600061364c601583612af7565b915061365782613616565b602082019050919050565b6000602082019050818103600083015261367b8161363f565b9050919050565b7f5472616e7366657272696e6720616d6f756e742065786365656473207468652060008201527f6d6178696d756d20616c6c6f7765640000000000000000000000000000000000602082015250565b60006136de602f83612af7565b91506136e982613682565b604082019050919050565b6000602082019050818103600083015261370d816136d1565b9050919050565b7f42616c616e636520657863656564732077616c6c65742073697a652100000000600082015250565b600061374a601c83612af7565b915061375582613714565b602082019050919050565b600060208201905081810360008301526137798161373d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137dc602583612af7565b91506137e782613780565b604082019050919050565b6000602082019050818103600083015261380b816137cf565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061386e602383612af7565b915061387982613812565b604082019050919050565b6000602082019050818103600083015261389d81613861565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613900602683612af7565b915061390b826138a4565b604082019050919050565b6000602082019050818103600083015261392f816138f3565b9050919050565b600061394182612b96565b915061394c83612b96565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561398557613984612ebc565b5b828202905092915050565b600081905092915050565b50565b60006139ab600083613990565b91506139b68261399b565b600082019050919050565b60006139cc8261399e565b9150819050919050565b6000819050919050565b6000819050919050565b6000613a05613a006139fb846139d6565b6139e0565b612b96565b9050919050565b613a15816139ea565b82525050565b600060c082019050613a306000830189612c6c565b613a3d6020830188612c42565b613a4a6040830187613a0c565b613a576060830186613a0c565b613a646080830185612c6c565b613a7160a0830184612c42565b979650505050505050565b600081519050613a8b81612ba0565b92915050565b600080600060608486031215613aaa57613aa96128e2565b5b6000613ab886828701613a7c565b9350506020613ac986828701613a7c565b9250506040613ada86828701613a7c565b9150509250925092565b6000606082019050613af96000830186612c42565b613b066020830185612c42565b613b136040830184612c42565b949350505050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b50816129ce565b82525050565b6000613b628383613b47565b60208301905092915050565b6000602082019050919050565b6000613b8682613b1b565b613b908185613b26565b9350613b9b83613b37565b8060005b83811015613bcc578151613bb38882613b56565b9750613bbe83613b6e565b925050600181019050613b9f565b5085935050505092915050565b600060a082019050613bee6000830188612c42565b613bfb6020830187613a0c565b8181036040830152613c0d8186613b7b565b9050613c1c6060830185612c6c565b613c296080830184612c42565b9695505050505050565b600067ffffffffffffffff821115613c4e57613c4d612902565b5b602082029050602081019050919050565b6000613c72613c6d84613c33565b612962565b90508083825260208201905060208402830185811115613c9557613c946129a9565b5b835b81811015613cbe5780613caa8882613a7c565b845260208401935050602081019050613c97565b5050509392505050565b600082601f830112613cdd57613cdc6128ec565b5b8151613ced848260208601613c5f565b91505092915050565b600060208284031215613d0c57613d0b6128e2565b5b600082015167ffffffffffffffff811115613d2a57613d296128e7565b5b613d3684828501613cc8565b91505092915050565b6000613d4a82612b96565b9150613d5583612b96565b925082821015613d6857613d67612ebc565b5b82820390509291505056fea2646970667358221220f4ca246ce7f855e0fd5329cceb08188ef5399b40999d3adea2e0f89335f73ab464736f6c634300080d0033

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.