ETH Price: $2,618.87 (+0.84%)

Token

Kuro Inu (KURO)
 

Overview

Max Total Supply

1,000,000,000,000 KURO

Holders

150

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,601,156,069.000000002601156069 KURO

Value
$0.00
0x54d8fF8CA899F5F5FaF2B4A508198bbd1ECB7745
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:
KuroInu

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : KuroInu.sol
/**

https://t.me/KuroShibaInuEth
https://kuro.is

/*
 * Disclaimer: Use of This Solidity Contract At Your Own Risk
 *
 * By utilizing this Solidity contract ("Contract"), you acknowledge and agree that your use of the Contract
 * is entirely at your own risk. This Contract is provided "as is" and without any representations, warranties,
 * or guarantees of any kind, whether express or implied.
 *
 * 1. Not a Security: The Contract is not intended to represent or be classified as a security under any jurisdiction's
 * laws or regulations. It is solely a technological implementation and does not entitle the holder to any ownership,
 * dividends, or other financial rights.
 *
 * 2. No Liability: The developers, contributors, or any associated parties involved in creating and deploying this
 * Contract shall not be held liable for any damages, losses, or liabilities resulting from its use. This includes,
 * but is not limited to, financial losses, loss of data, security breaches, hacks, or any other form of harm that might
 * arise from the use or misuse of the Contract.
 *
 * 3. No Warranty: There are no warranties or guarantees concerning the accuracy, reliability, functionality, or
 * suitability of the Contract for any particular purpose. Users should conduct their own due diligence and assessments
 * before interacting with the Contract.
 *
 * 4. Third-Party Risks: The Contract may interact with other smart contracts or third-party protocols, and users are
 * solely responsible for understanding and accepting the risks associated with these interactions.
 *
 * 5. No Legal or Financial Advice: The Contract does not provide legal, financial, or investment advice. Users should
 * seek independent advice from qualified professionals before making any decisions related to the Contract.
 *
 * 6. Not Responsible for Transactions: Users are solely responsible for the correctness and accuracy of their
 * interactions with the Contract. Transactions made using the Contract are irreversible and binding.
 *
 * By using the Contract, you agree to waive any claims, actions, or legal proceedings against the developers,
 * contributors, or any associated parties. This disclaimer is subject to change without prior notice, and users are
 * encouraged to review it regularly for updates.
 *
 * If you do not agree to the terms of this disclaimer, refrain from using the Contract.
 *
 * Please proceed with caution and make informed decisions when interacting with the Contract.
 *
 */

// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "../lib/IUniswapV2Pair.sol";
import "../lib/IUniswapV2Factory.sol";
import "../lib/IUniswapV2Router.sol";

contract KuroInu is ERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    uint256 public _totalSupply = 1e12 * 1e18; // 1T tokens
    uint256 public swapTokensAtAmount = 1e9 * 1e18; // 1B = Threshold for swap (0.1%)

    address public taxAddr;
    uint256 public sellTax = 10;
    uint256 public buyTax = 10;

    bool public _hasLiqBeenAdded = false;
    uint256 public launchedAt = 0;
    uint256 public swapAndLiquifycount = 0;
    uint256 public snipersCaught = 0;

    mapping(address => bool) private whitelisted;
    mapping(address => bool) public blacklisted;
    bool private swapping;
    mapping(address => bool) public automatedMarketMakerPairs;

    event CaughtSniper(address sniper);

    receive() external payable {}

    constructor(
        address _uniswapAddress,
        address[] memory lps
    ) ERC20("Kuro Inu", "KURO") {
        // Set Uniswap Address
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            address(_uniswapAddress)
        );

        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        // Whitelist LP provider address(s)
        for (uint i = 0; i < lps.length; i++) {
            whitelisted[lps[i]] = true;
        }
        whitelisted[address(this)] = true;
        whitelisted[owner()] = true;

        taxAddr = owner();
        super._mint(owner(), _totalSupply);
    }

    /**
     * ADMIN SETTINGS
     */

    function updateMarketingVariables(
        uint256 _sellTax,
        uint256 _buyTax
    ) public onlyOwner {
        sellTax = _sellTax;
        buyTax = _buyTax;
    }

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

    function manualSwapandLiquify(uint256 _balance) external onlyOwner {
        swapAndSendDividends(_balance);
    }

    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != uniswapV2Pair,
            "KuroInu: The Uniswap pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    /**
     * Private functions
     */

    function swapAndSendDividends(uint256 tokens) private {
        swapTokensForEth(tokens);
        uint256 dividends = address(this).balance;
        (bool success, ) = address(taxAddr).call{value: address(this).balance}(
            ""
        );
    }

    // Main override transfer function
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "KuroInu: 0 transfers not acceptable");
        // Sniper Protection
        if (!_hasLiqBeenAdded) {
            // If no liquidity yet, allow owner to add liquidity
            _checkLiquidityAdd(from, to);
        } else {
            // if liquidity has already been added.
            if (
                launchedAt > 0 &&
                from == uniswapV2Pair &&
                owner() != from &&
                owner() != to
            ) {
                if (block.number - launchedAt < 10) {
                    _blacklist(to, true);
                    emit CaughtSniper(to);
                    snipersCaught++;
                }
            }
        }
        if (!whitelisted[from] && !whitelisted[to]) {
            require(!blacklisted[from], "KuroInu: Blocked Transfer");

            uint256 contractTokenBalance = balanceOf(address(this));
            bool canSwap = contractTokenBalance >= swapTokensAtAmount;
            if (
                canSwap &&
                !swapping &&
                !automatedMarketMakerPairs[from] &&
                from != taxAddr &&
                to != taxAddr
            ) {
                swapping = true;
                swapAndSendDividends(swapTokensAtAmount);
                swapping = false;
            }
            bool takeFee = !swapping;

            if (takeFee) {
                uint256 fees = 0;
                if (automatedMarketMakerPairs[from]) {
                    fees = fees.add(amount.mul(buyTax).div(100));
                } else {
                    fees = fees.add(amount.mul(sellTax).div(100));
                }
                amount = amount.sub(fees);
                super._transfer(from, address(this), fees);
            }
        }
        super._transfer(from, to, amount);
    }

    function _checkLiquidityAdd(address from, address to) private {
        // if liquidity is added by the _liquidityholders set
        // trading enables to true and start the anti sniper timer
        require(!_hasLiqBeenAdded, "Liquidity already added and marked.");
        // require liquidity has been added == false (not added).
        // This is basically only called when owner is adding liquidity.

        if (from == owner() && to == uniswapV2Pair) {
            _hasLiqBeenAdded = true;
            launchedAt = block.number;
        }
    }

    /**********/
    /* PRIVATE FUNCTIONS */
    /**********/

    // this is only called by the sniper protection.
    function _blacklist(address account, bool isBlacklisted) private {
        blacklisted[account] = isBlacklisted;
        (account, isBlacklisted);
    }

    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();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

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

File 2 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 10 : IUniswapV2Pair.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

File 6 of 10 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

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

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

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

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

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

File 7 of 10 : IUniswapV2Router.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

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



// pragma solidity >=0.6.2;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_uniswapAddress","type":"address"},{"internalType":"address[]","name":"lps","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":false,"internalType":"address","name":"sniper","type":"address"}],"name":"CaughtSniper","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_hasLiqBeenAdded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address","name":"","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_balance","type":"uint256"}],"name":"manualSwapandLiquify","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snipersCaught","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifycount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"_sellTax","type":"uint256"},{"internalType":"uint256","name":"_buyTax","type":"uint256"}],"name":"updateMarketingVariables","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526c0c9f2c9cd04674edea400000006008556b033b2e3c9fd0803ce8000000600955600a600b819055600c55600d805460ff191690556000600e819055600f8190556010553480156200005557600080fd5b506040516200212c3803806200212c8339810160408190526200007891620006ac565b60408051808201825260088152674b75726f20496e7560c01b6020808301918252835180850190945260048452634b55524f60e01b908401528151919291620000c491600391620005c4565b508051620000da906004906020840190620005c4565b505050620000f7620000f1620003db60201b60201c565b620003df565b60008290506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200013857600080fd5b505afa1580156200014d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000173919062000687565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001bc57600080fd5b505afa158015620001d1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f7919062000687565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200024057600080fd5b505af115801562000255573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027b919062000687565b600680546001600160a01b038086166001600160a01b03199283161790925560078054928416929091169190911790559050620002ba81600162000431565b60005b83518110156200032957600160116000868481518110620002e257620002e262000828565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806200032081620007f4565b915050620002bd565b503060009081526011602081905260408220805460ff19166001908117909155916200035d6005546001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620003986005546001600160a01b031690565b600a80546001600160a01b0319166001600160a01b03928316179055600554620003d191166008546200050160201b6200097d1760201c565b5050505062000854565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526014602052604090205460ff1615158115151415620004d65760405162461bcd60e51b815260206004820152604160248201527f4b75726f496e753a204175746f6d61746564206d61726b6574206d616b65722060448201527f7061697220697320616c72656164792073657420746f20746861742076616c756064820152606560f81b608482015260a4015b60405180910390fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6001600160a01b038216620005595760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004cd565b80600260008282546200056d91906200079c565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b828054620005d290620007b7565b90600052602060002090601f016020900481019282620005f6576000855562000641565b82601f106200061157805160ff191683800117855562000641565b8280016001018555821562000641579182015b828111156200064157825182559160200191906001019062000624565b506200064f92915062000653565b5090565b5b808211156200064f576000815560010162000654565b80516001600160a01b03811681146200068257600080fd5b919050565b6000602082840312156200069a57600080fd5b620006a5826200066a565b9392505050565b60008060408385031215620006c057600080fd5b620006cb836200066a565b602084810151919350906001600160401b0380821115620006eb57600080fd5b818601915086601f8301126200070057600080fd5b8151818111156200071557620007156200083e565b8060051b604051601f19603f830116810181811085821117156200073d576200073d6200083e565b604052828152858101935084860182860187018b10156200075d57600080fd5b600095505b838610156200078b5762000776816200066a565b85526001959095019493860193860162000762565b508096505050505050509250929050565b60008219821115620007b257620007b262000812565b500190565b600181811c90821680620007cc57607f821691505b60208210811415620007ee57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200080b576200080b62000812565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6118c880620008646000396000f3fe6080604052600436106101dc5760003560e01c8063715018a611610102578063bf56b37111610095578063dd62ed3e11610064578063dd62ed3e1461055e578063e2f456051461057e578063e79d416014610594578063f2fde38b146105aa57600080fd5b8063bf56b371146104e2578063cc1776d3146104f8578063d060ad8d1461050e578063dbac26e91461052e57600080fd5b80639a7a23d6116100d15780639a7a23d614610452578063a457c2d714610472578063a9059cbb14610492578063b62496f5146104b257600080fd5b8063715018a6146103f45780638da5cb5b1461040957806392b5d0461461042757806395d89b411461043d57600080fd5b8063395093511161017a57806350a8e0161161014957806350a8e0161461036257806358f057a91461037c57806365b8dbc01461039e57806370a08231146103be57600080fd5b806339509351146102f65780633eaaf86b1461031657806349bd5a5e1461032c5780634f7041a51461034c57600080fd5b806318160ddd116101b657806318160ddd1461027b57806323b872dd1461029a57806326905e04146102ba578063313ce567146102da57600080fd5b806306fdde03146101e8578063095ea7b3146102135780631694505e1461024357600080fd5b366101e357005b600080fd5b3480156101f457600080fd5b506101fd6105ca565b60405161020a919061163d565b60405180910390f35b34801561021f57600080fd5b5061023361022e3660046115d6565b61065c565b604051901515815260200161020a565b34801561024f57600080fd5b50600654610263906001600160a01b031681565b6040516001600160a01b03909116815260200161020a565b34801561028757600080fd5b506002545b60405190815260200161020a565b3480156102a657600080fd5b506102336102b5366004611562565b610674565b3480156102c657600080fd5b50600a54610263906001600160a01b031681565b3480156102e657600080fd5b506040516012815260200161020a565b34801561030257600080fd5b506102336103113660046115d6565b610698565b34801561032257600080fd5b5061028c60085481565b34801561033857600080fd5b50600754610263906001600160a01b031681565b34801561035857600080fd5b5061028c600c5481565b34801561036e57600080fd5b50600d546102339060ff1681565b34801561038857600080fd5b5061039c61039736600461161b565b6106ba565b005b3480156103aa57600080fd5b5061039c6103b93660046114ef565b6106cd565b3480156103ca57600080fd5b5061028c6103d93660046114ef565b6001600160a01b031660009081526020819052604090205490565b34801561040057600080fd5b5061039c61076f565b34801561041557600080fd5b506005546001600160a01b0316610263565b34801561043357600080fd5b5061028c600f5481565b34801561044957600080fd5b506101fd610783565b34801561045e57600080fd5b5061039c61046d3660046115a3565b610792565b34801561047e57600080fd5b5061023361048d3660046115d6565b61083f565b34801561049e57600080fd5b506102336104ad3660046115d6565b6108ba565b3480156104be57600080fd5b506102336104cd3660046114ef565b60146020526000908152604090205460ff1681565b3480156104ee57600080fd5b5061028c600e5481565b34801561050457600080fd5b5061028c600b5481565b34801561051a57600080fd5b5061039c610529366004611602565b6108c8565b34801561053a57600080fd5b506102336105493660046114ef565b60126020526000908152604090205460ff1681565b34801561056a57600080fd5b5061028c610579366004611529565b6108dc565b34801561058a57600080fd5b5061028c60095481565b3480156105a057600080fd5b5061028c60105481565b3480156105b657600080fd5b5061039c6105c53660046114ef565b610907565b6060600380546105d9906117fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610605906117fb565b80156106525780601f1061062757610100808354040283529160200191610652565b820191906000526020600020905b81548152906001019060200180831161063557829003601f168201915b5050505050905090565b60003361066a818585610a3c565b5060019392505050565b600033610682858285610b60565b61068d858585610bda565b506001949350505050565b60003361066a8185856106ab83836108dc565b6106b5919061178b565b610a3c565b6106c2610fad565b600b91909155600c55565b6106d5610fad565b6006546001600160a01b038281169116141561074d5760405162461bcd60e51b815260206004820152602c60248201527f4b75726f496e753a2054686520726f7574657220616c7265616479206861732060448201526b74686174206164647265737360a01b60648201526084015b60405180910390fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b610777610fad565b6107816000611007565b565b6060600480546105d9906117fb565b61079a610fad565b6007546001600160a01b03838116911614156108315760405162461bcd60e51b815260206004820152604a60248201527f4b75726f496e753a2054686520556e697377617020706169722063616e6e6f7460448201527f2062652072656d6f7665642066726f6d206175746f6d617465644d61726b65746064820152694d616b6572506169727360b01b608482015260a401610744565b61083b8282611059565b5050565b6000338161084d82866108dc565b9050838110156108ad5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610744565b61068d8286868403610a3c565b60003361066a818585610bda565b6108d0610fad565b6108d981611123565b50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61090f610fad565b6001600160a01b0381166109745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610744565b6108d981611007565b6001600160a01b0382166109d35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610744565b80600260008282546109e5919061178b565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316610a9e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610744565b6001600160a01b038216610aff5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610744565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610b6c84846108dc565b90506000198114610bd45781811015610bc75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610744565b610bd48484848403610a3c565b50505050565b6001600160a01b038316610c005760405162461bcd60e51b8152600401610744906116d5565b6001600160a01b038216610c265760405162461bcd60e51b815260040161074490611692565b60008111610c825760405162461bcd60e51b815260206004820152602360248201527f4b75726f496e753a2030207472616e7366657273206e6f742061636365707461604482015262626c6560e81b6064820152608401610744565b600d5460ff16610c9b57610c96838361118a565b610da8565b6000600e54118015610cba57506007546001600160a01b038481169116145b8015610ce95750826001600160a01b0316610cdd6005546001600160a01b031690565b6001600160a01b031614155b8015610d185750816001600160a01b0316610d0c6005546001600160a01b031690565b6001600160a01b031614155b15610da857600a600e5443610d2d91906117e4565b1015610da8576001600160a01b0382166000908152601260205260409020805460ff191660011790556040516001600160a01b03831681527f1d2458a81cebd059cebad60af3a9e479761478ced5fee20fd5bebb41a6d32e229060200160405180910390a160108054906000610da283611836565b91905055505b6001600160a01b03831660009081526011602052604090205460ff16158015610dea57506001600160a01b03821660009081526011602052604090205460ff16155b15610f9d576001600160a01b03831660009081526012602052604090205460ff1615610e585760405162461bcd60e51b815260206004820152601960248201527f4b75726f496e753a20426c6f636b6564205472616e73666572000000000000006044820152606401610744565b3060009081526020819052604090205460095481108015908190610e7f575060135460ff16155b8015610ea457506001600160a01b03851660009081526014602052604090205460ff16155b8015610ebe5750600a546001600160a01b03868116911614155b8015610ed85750600a546001600160a01b03858116911614155b15610f01576013805460ff19166001179055600954610ef690611123565b6013805460ff191690555b60135460ff16158015610f99576001600160a01b03861660009081526014602052604081205460ff1615610f6057610f59610f526064610f4c600c548961122d90919063ffffffff16565b90611240565b829061124c565b9050610f80565b610f7d610f526064610f4c600b548961122d90919063ffffffff16565b90505b610f8a8582611258565b9450610f97873083611264565b505b5050505b610fa8838383611264565b505050565b6005546001600160a01b031633146107815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610744565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526014602052604090205460ff16151581151514156110f85760405162461bcd60e51b815260206004820152604160248201527f4b75726f496e753a204175746f6d61746564206d61726b6574206d616b65722060448201527f7061697220697320616c72656164792073657420746f20746861742076616c756064820152606560f81b608482015260a401610744565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b61112c8161138e565b600a5460405147916000916001600160a01b039091169047908381818185875af1925050503d806000811461117d576040519150601f19603f3d011682016040523d82523d6000602084013e611182565b606091505b505050505050565b600d5460ff16156111e95760405162461bcd60e51b815260206004820152602360248201527f4c697175696469747920616c726561647920616464656420616e64206d61726b60448201526232b21760e91b6064820152608401610744565b6005546001600160a01b03838116911614801561121357506007546001600160a01b038281169116145b1561083b57600d805460ff1916600117905543600e555050565b600061123982846117c5565b9392505050565b600061123982846117a3565b6000611239828461178b565b600061123982846117e4565b6001600160a01b03831661128a5760405162461bcd60e51b8152600401610744906116d5565b6001600160a01b0382166112b05760405162461bcd60e51b815260040161074490611692565b6001600160a01b038316600090815260208190526040902054818110156113285760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610744565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610bd4565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106113c3576113c3611867565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561141757600080fd5b505afa15801561142b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144f919061150c565b8160018151811061146257611462611867565b6001600160a01b0392831660209182029290920101526006546114889130911684610a3c565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906114c190859060009086903090429060040161171a565b600060405180830381600087803b1580156114db57600080fd5b505af1158015611182573d6000803e3d6000fd5b60006020828403121561150157600080fd5b81356112398161187d565b60006020828403121561151e57600080fd5b81516112398161187d565b6000806040838503121561153c57600080fd5b82356115478161187d565b915060208301356115578161187d565b809150509250929050565b60008060006060848603121561157757600080fd5b83356115828161187d565b925060208401356115928161187d565b929592945050506040919091013590565b600080604083850312156115b657600080fd5b82356115c18161187d565b91506020830135801515811461155757600080fd5b600080604083850312156115e957600080fd5b82356115f48161187d565b946020939093013593505050565b60006020828403121561161457600080fd5b5035919050565b6000806040838503121561162e57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561166a5785810183015185820160400152820161164e565b8181111561167c576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561176a5784516001600160a01b031683529383019391830191600101611745565b50506001600160a01b03969096166060850152505050608001529392505050565b6000821982111561179e5761179e611851565b500190565b6000826117c057634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156117df576117df611851565b500290565b6000828210156117f6576117f6611851565b500390565b600181811c9082168061180f57607f821691505b6020821081141561183057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561184a5761184a611851565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03811681146108d957600080fdfea264697066735822122078c2aaf8488e1507f70d782f2f503a21fb17b88963596c2694b4ba67fce2dc2c64736f6c634300080700330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000b75a08e82a1bf0fcceb89bbdaf9aae00be8ca29a000000000000000000000000d0f1ea2c84182dd2858143b4003f115212b5401c0000000000000000000000002030df08c14328957c5480a2fba003587f78f091

Deployed Bytecode

0x6080604052600436106101dc5760003560e01c8063715018a611610102578063bf56b37111610095578063dd62ed3e11610064578063dd62ed3e1461055e578063e2f456051461057e578063e79d416014610594578063f2fde38b146105aa57600080fd5b8063bf56b371146104e2578063cc1776d3146104f8578063d060ad8d1461050e578063dbac26e91461052e57600080fd5b80639a7a23d6116100d15780639a7a23d614610452578063a457c2d714610472578063a9059cbb14610492578063b62496f5146104b257600080fd5b8063715018a6146103f45780638da5cb5b1461040957806392b5d0461461042757806395d89b411461043d57600080fd5b8063395093511161017a57806350a8e0161161014957806350a8e0161461036257806358f057a91461037c57806365b8dbc01461039e57806370a08231146103be57600080fd5b806339509351146102f65780633eaaf86b1461031657806349bd5a5e1461032c5780634f7041a51461034c57600080fd5b806318160ddd116101b657806318160ddd1461027b57806323b872dd1461029a57806326905e04146102ba578063313ce567146102da57600080fd5b806306fdde03146101e8578063095ea7b3146102135780631694505e1461024357600080fd5b366101e357005b600080fd5b3480156101f457600080fd5b506101fd6105ca565b60405161020a919061163d565b60405180910390f35b34801561021f57600080fd5b5061023361022e3660046115d6565b61065c565b604051901515815260200161020a565b34801561024f57600080fd5b50600654610263906001600160a01b031681565b6040516001600160a01b03909116815260200161020a565b34801561028757600080fd5b506002545b60405190815260200161020a565b3480156102a657600080fd5b506102336102b5366004611562565b610674565b3480156102c657600080fd5b50600a54610263906001600160a01b031681565b3480156102e657600080fd5b506040516012815260200161020a565b34801561030257600080fd5b506102336103113660046115d6565b610698565b34801561032257600080fd5b5061028c60085481565b34801561033857600080fd5b50600754610263906001600160a01b031681565b34801561035857600080fd5b5061028c600c5481565b34801561036e57600080fd5b50600d546102339060ff1681565b34801561038857600080fd5b5061039c61039736600461161b565b6106ba565b005b3480156103aa57600080fd5b5061039c6103b93660046114ef565b6106cd565b3480156103ca57600080fd5b5061028c6103d93660046114ef565b6001600160a01b031660009081526020819052604090205490565b34801561040057600080fd5b5061039c61076f565b34801561041557600080fd5b506005546001600160a01b0316610263565b34801561043357600080fd5b5061028c600f5481565b34801561044957600080fd5b506101fd610783565b34801561045e57600080fd5b5061039c61046d3660046115a3565b610792565b34801561047e57600080fd5b5061023361048d3660046115d6565b61083f565b34801561049e57600080fd5b506102336104ad3660046115d6565b6108ba565b3480156104be57600080fd5b506102336104cd3660046114ef565b60146020526000908152604090205460ff1681565b3480156104ee57600080fd5b5061028c600e5481565b34801561050457600080fd5b5061028c600b5481565b34801561051a57600080fd5b5061039c610529366004611602565b6108c8565b34801561053a57600080fd5b506102336105493660046114ef565b60126020526000908152604090205460ff1681565b34801561056a57600080fd5b5061028c610579366004611529565b6108dc565b34801561058a57600080fd5b5061028c60095481565b3480156105a057600080fd5b5061028c60105481565b3480156105b657600080fd5b5061039c6105c53660046114ef565b610907565b6060600380546105d9906117fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610605906117fb565b80156106525780601f1061062757610100808354040283529160200191610652565b820191906000526020600020905b81548152906001019060200180831161063557829003601f168201915b5050505050905090565b60003361066a818585610a3c565b5060019392505050565b600033610682858285610b60565b61068d858585610bda565b506001949350505050565b60003361066a8185856106ab83836108dc565b6106b5919061178b565b610a3c565b6106c2610fad565b600b91909155600c55565b6106d5610fad565b6006546001600160a01b038281169116141561074d5760405162461bcd60e51b815260206004820152602c60248201527f4b75726f496e753a2054686520726f7574657220616c7265616479206861732060448201526b74686174206164647265737360a01b60648201526084015b60405180910390fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b610777610fad565b6107816000611007565b565b6060600480546105d9906117fb565b61079a610fad565b6007546001600160a01b03838116911614156108315760405162461bcd60e51b815260206004820152604a60248201527f4b75726f496e753a2054686520556e697377617020706169722063616e6e6f7460448201527f2062652072656d6f7665642066726f6d206175746f6d617465644d61726b65746064820152694d616b6572506169727360b01b608482015260a401610744565b61083b8282611059565b5050565b6000338161084d82866108dc565b9050838110156108ad5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610744565b61068d8286868403610a3c565b60003361066a818585610bda565b6108d0610fad565b6108d981611123565b50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61090f610fad565b6001600160a01b0381166109745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610744565b6108d981611007565b6001600160a01b0382166109d35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610744565b80600260008282546109e5919061178b565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316610a9e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610744565b6001600160a01b038216610aff5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610744565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610b6c84846108dc565b90506000198114610bd45781811015610bc75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610744565b610bd48484848403610a3c565b50505050565b6001600160a01b038316610c005760405162461bcd60e51b8152600401610744906116d5565b6001600160a01b038216610c265760405162461bcd60e51b815260040161074490611692565b60008111610c825760405162461bcd60e51b815260206004820152602360248201527f4b75726f496e753a2030207472616e7366657273206e6f742061636365707461604482015262626c6560e81b6064820152608401610744565b600d5460ff16610c9b57610c96838361118a565b610da8565b6000600e54118015610cba57506007546001600160a01b038481169116145b8015610ce95750826001600160a01b0316610cdd6005546001600160a01b031690565b6001600160a01b031614155b8015610d185750816001600160a01b0316610d0c6005546001600160a01b031690565b6001600160a01b031614155b15610da857600a600e5443610d2d91906117e4565b1015610da8576001600160a01b0382166000908152601260205260409020805460ff191660011790556040516001600160a01b03831681527f1d2458a81cebd059cebad60af3a9e479761478ced5fee20fd5bebb41a6d32e229060200160405180910390a160108054906000610da283611836565b91905055505b6001600160a01b03831660009081526011602052604090205460ff16158015610dea57506001600160a01b03821660009081526011602052604090205460ff16155b15610f9d576001600160a01b03831660009081526012602052604090205460ff1615610e585760405162461bcd60e51b815260206004820152601960248201527f4b75726f496e753a20426c6f636b6564205472616e73666572000000000000006044820152606401610744565b3060009081526020819052604090205460095481108015908190610e7f575060135460ff16155b8015610ea457506001600160a01b03851660009081526014602052604090205460ff16155b8015610ebe5750600a546001600160a01b03868116911614155b8015610ed85750600a546001600160a01b03858116911614155b15610f01576013805460ff19166001179055600954610ef690611123565b6013805460ff191690555b60135460ff16158015610f99576001600160a01b03861660009081526014602052604081205460ff1615610f6057610f59610f526064610f4c600c548961122d90919063ffffffff16565b90611240565b829061124c565b9050610f80565b610f7d610f526064610f4c600b548961122d90919063ffffffff16565b90505b610f8a8582611258565b9450610f97873083611264565b505b5050505b610fa8838383611264565b505050565b6005546001600160a01b031633146107815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610744565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526014602052604090205460ff16151581151514156110f85760405162461bcd60e51b815260206004820152604160248201527f4b75726f496e753a204175746f6d61746564206d61726b6574206d616b65722060448201527f7061697220697320616c72656164792073657420746f20746861742076616c756064820152606560f81b608482015260a401610744565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b61112c8161138e565b600a5460405147916000916001600160a01b039091169047908381818185875af1925050503d806000811461117d576040519150601f19603f3d011682016040523d82523d6000602084013e611182565b606091505b505050505050565b600d5460ff16156111e95760405162461bcd60e51b815260206004820152602360248201527f4c697175696469747920616c726561647920616464656420616e64206d61726b60448201526232b21760e91b6064820152608401610744565b6005546001600160a01b03838116911614801561121357506007546001600160a01b038281169116145b1561083b57600d805460ff1916600117905543600e555050565b600061123982846117c5565b9392505050565b600061123982846117a3565b6000611239828461178b565b600061123982846117e4565b6001600160a01b03831661128a5760405162461bcd60e51b8152600401610744906116d5565b6001600160a01b0382166112b05760405162461bcd60e51b815260040161074490611692565b6001600160a01b038316600090815260208190526040902054818110156113285760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610744565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610bd4565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106113c3576113c3611867565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561141757600080fd5b505afa15801561142b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144f919061150c565b8160018151811061146257611462611867565b6001600160a01b0392831660209182029290920101526006546114889130911684610a3c565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906114c190859060009086903090429060040161171a565b600060405180830381600087803b1580156114db57600080fd5b505af1158015611182573d6000803e3d6000fd5b60006020828403121561150157600080fd5b81356112398161187d565b60006020828403121561151e57600080fd5b81516112398161187d565b6000806040838503121561153c57600080fd5b82356115478161187d565b915060208301356115578161187d565b809150509250929050565b60008060006060848603121561157757600080fd5b83356115828161187d565b925060208401356115928161187d565b929592945050506040919091013590565b600080604083850312156115b657600080fd5b82356115c18161187d565b91506020830135801515811461155757600080fd5b600080604083850312156115e957600080fd5b82356115f48161187d565b946020939093013593505050565b60006020828403121561161457600080fd5b5035919050565b6000806040838503121561162e57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561166a5785810183015185820160400152820161164e565b8181111561167c576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561176a5784516001600160a01b031683529383019391830191600101611745565b50506001600160a01b03969096166060850152505050608001529392505050565b6000821982111561179e5761179e611851565b500190565b6000826117c057634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156117df576117df611851565b500290565b6000828210156117f6576117f6611851565b500390565b600181811c9082168061180f57607f821691505b6020821081141561183057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561184a5761184a611851565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03811681146108d957600080fdfea264697066735822122078c2aaf8488e1507f70d782f2f503a21fb17b88963596c2694b4ba67fce2dc2c64736f6c63430008070033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000b75a08e82a1bf0fcceb89bbdaf9aae00be8ca29a000000000000000000000000d0f1ea2c84182dd2858143b4003f115212b5401c0000000000000000000000002030df08c14328957c5480a2fba003587f78f091

-----Decoded View---------------
Arg [0] : _uniswapAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : lps (address[]): 0xb75A08E82A1Bf0FccEb89bbdAf9AAE00BE8CA29a,0xD0F1ea2C84182DD2858143B4003F115212B5401c,0x2030DF08c14328957c5480A2FBa003587F78F091

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [3] : 000000000000000000000000b75a08e82a1bf0fcceb89bbdaf9aae00be8ca29a
Arg [4] : 000000000000000000000000d0f1ea2c84182dd2858143b4003f115212b5401c
Arg [5] : 0000000000000000000000002030df08c14328957c5480a2fba003587f78f091


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.