ETH Price: $3,408.30 (-0.89%)
Gas: 15 Gwei

Contract

0xB799e3915407A2F979bf4D627c70a1C78712ACC9
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve185824712023-11-16 5:51:23245 days ago1700113883IN
0xB799e391...78712ACC9
0 ETH0.0011349624.35379782
Approve185824592023-11-16 5:48:59245 days ago1700113739IN
0xB799e391...78712ACC9
0 ETH0.0013266728.47485431
Approve185824592023-11-16 5:48:59245 days ago1700113739IN
0xB799e391...78712ACC9
0 ETH0.0013266728.47485431
Approve185824592023-11-16 5:48:59245 days ago1700113739IN
0xB799e391...78712ACC9
0 ETH0.0013266728.47485431
Approve185824592023-11-16 5:48:59245 days ago1700113739IN
0xB799e391...78712ACC9
0 ETH0.0013266728.47485431
Approve185816862023-11-16 3:13:35245 days ago1700104415IN
0xB799e391...78712ACC9
0 ETH0.0018008938.65319471
0x60806040185751952023-11-15 5:25:23246 days ago1700025923IN
 Create: KittyToken
0 ETH0.1339549230

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
KittyToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

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

██╗  ██╗███████╗██╗     ██╗      ██████╗ 
██║  ██║██╔════╝██║     ██║     ██╔═══██╗
███████║█████╗  ██║     ██║     ██║   ██║
██╔══██║██╔══╝  ██║     ██║     ██║   ██║
██║  ██║███████╗███████╗███████╗╚██████╔╝
╚═╝  ╚═╝╚══════╝╚══════╝╚══════╝ ╚═════╝ 
                                         
██╗  ██╗██╗████████╗████████╗██╗   ██╗
██║ ██╔╝██║╚══██╔══╝╚══██╔══╝╚██╗ ██╔╝
█████╔╝ ██║   ██║      ██║    ╚████╔╝ 
██╔═██╗ ██║   ██║      ██║     ╚██╔╝  
██║  ██╗██║   ██║      ██║      ██║   
╚═╝  ╚═╝╚═╝   ╚═╝      ╚═╝      ╚═╝   
                                      

(っ◔◡◔)っ ♥ Kitty Token ♥

https://www.hellokitty.network/
https://t.me/HelloKittyErc20
https://twitter.com/HelloKittyErc20


/*
 * Disclaimer: Use of This Solidity Contract At Your Own Risk
 *
 * By utilizing this Smart 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 KittyToken is ERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    uint256 public _totalSupply = 100e9 * 1e18; // 100B tokens
    uint256 public swapTokensAtAmount = 100e6 * 1e18; // 100m = Threshold for swap (0.1%)

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

    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;
    
    mapping(address => uint256) public lastPurchaseBlock;
    
    bool private swapping;
    mapping(address => bool) public automatedMarketMakerPairs;

    event CaughtSniper(address sniper);

    receive() external payable {}

    constructor(
        address _uniswapAddress,
        address[] memory lps
    ) ERC20("Hello Kitty", "KITTY") {
        // 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),
            "HelloKitty: 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,
            "HelloKitty: 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, "HelloKitty: 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], "HelloKitty: Blocked Transfer");

            // anti mev
            if (lastPurchaseBlock[from] == block.number){
                _blacklist(from, true);
            }

            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));
                    lastPurchaseBlock[to] = block.number;
                } 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,
            "HelloKitty: 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 v4.4.1 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev 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 v4.4.1 (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 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 {
        _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 v4.4.1 (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 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;
        }
    }
}

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 v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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":[{"internalType":"address","name":"","type":"address"}],"name":"lastPurchaseBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":"_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"}]

60806040526c01431e0fae6d7217caa00000006008556a52b7d2dcc80cd2e40000006009556005600b819055600c55600d805460ff191690556000600e819055600f8190556010553480156200005457600080fd5b5060405162002321380380620023218339810160408190526200007791620006d5565b604080518082018252600b81526a48656c6c6f204b6974747960a81b6020808301918252835180850190945260058452644b4954545960d81b908401528151919291620000c791600391620005ed565b508051620000dd906004906020840190620005ed565b505050620000fa620000f4620003de60201b60201c565b620003e2565b60008290506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200013b57600080fd5b505afa15801562000150573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001769190620006b0565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001bf57600080fd5b505afa158015620001d4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fa9190620006b0565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200024357600080fd5b505af115801562000258573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027e9190620006b0565b600680546001600160a01b038086166001600160a01b03199283161790925560078054928416929091169190911790559050620002bd81600162000434565b60005b83518110156200032c57600160116000868481518110620002e557620002e562000851565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558062000323816200081d565b915050620002c0565b503060009081526011602081905260408220805460ff1916600190811790915591620003606005546001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790556200039b6005546001600160a01b031690565b600a80546001600160a01b0319166001600160a01b03928316179055600554620003d491166008546200050860201b62000b3d1760201c565b505050506200087d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526015602052604090205460ff1615158115151415620004dd5760405162461bcd60e51b8152602060048201526044602482018190527f48656c6c6f4b697474793a204175746f6d61746564206d61726b6574206d616b908201527f6572207061697220697320616c72656164792073657420746f20746861742076606482015263616c756560e01b608482015260a4015b60405180910390fd5b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6001600160a01b038216620005605760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004d4565b8060026000828254620005749190620007c5565b90915550506001600160a01b03821660009081526020819052604081208054839290620005a3908490620007c5565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620005fb90620007e0565b90600052602060002090601f0160209004810192826200061f57600085556200066a565b82601f106200063a57805160ff19168380011785556200066a565b828001600101855582156200066a579182015b828111156200066a5782518255916020019190600101906200064d565b50620006789291506200067c565b5090565b5b808211156200067857600081556001016200067d565b80516001600160a01b0381168114620006ab57600080fd5b919050565b600060208284031215620006c357600080fd5b620006ce8262000693565b9392505050565b60008060408385031215620006e957600080fd5b620006f48362000693565b602084810151919350906001600160401b03808211156200071457600080fd5b818601915086601f8301126200072957600080fd5b8151818111156200073e576200073e62000867565b8060051b604051601f19603f8301168101818110858211171562000766576200076662000867565b604052828152858101935084860182860187018b10156200078657600080fd5b600095505b83861015620007b4576200079f8162000693565b8552600195909501949386019386016200078b565b508096505050505050509250929050565b60008219821115620007db57620007db6200083b565b500190565b600181811c90821680620007f557607f821691505b602082108114156200081757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200083457620008346200083b565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b611a94806200088d6000396000f3fe6080604052600436106101e75760003560e01c806386cbf53a11610102578063bf56b37111610095578063dd62ed3e11610064578063dd62ed3e14610596578063e2f45605146105dc578063e79d4160146105f2578063f2fde38b1461060857600080fd5b8063bf56b3711461051a578063cc1776d314610530578063d060ad8d14610546578063dbac26e91461056657600080fd5b80639a7a23d6116100d15780639a7a23d61461048a578063a457c2d7146104aa578063a9059cbb146104ca578063b62496f5146104ea57600080fd5b806386cbf53a146104145780638da5cb5b1461044157806392b5d0461461045f57806395d89b411461047557600080fd5b80633eaaf86b1161017a57806358f057a91161014957806358f057a91461038757806365b8dbc0146103a957806370a08231146103c9578063715018a6146103ff57600080fd5b80633eaaf86b1461032157806349bd5a5e146103375780634f7041a51461035757806350a8e0161461036d57600080fd5b806323b872dd116101b657806323b872dd146102a557806326905e04146102c5578063313ce567146102e5578063395093511461030157600080fd5b806306fdde03146101f3578063095ea7b31461021e5780631694505e1461024e57806318160ddd1461028657600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b50610208610628565b60405161021591906117d4565b60405180910390f35b34801561022a57600080fd5b5061023e61023936600461176d565b6106ba565b6040519015158152602001610215565b34801561025a57600080fd5b5060065461026e906001600160a01b031681565b6040516001600160a01b039091168152602001610215565b34801561029257600080fd5b506002545b604051908152602001610215565b3480156102b157600080fd5b5061023e6102c03660046116f9565b6106d0565b3480156102d157600080fd5b50600a5461026e906001600160a01b031681565b3480156102f157600080fd5b5060405160128152602001610215565b34801561030d57600080fd5b5061023e61031c36600461176d565b61077f565b34801561032d57600080fd5b5061029760085481565b34801561034357600080fd5b5060075461026e906001600160a01b031681565b34801561036357600080fd5b50610297600c5481565b34801561037957600080fd5b50600d5461023e9060ff1681565b34801561039357600080fd5b506103a76103a23660046117b2565b6107bb565b005b3480156103b557600080fd5b506103a76103c4366004611686565b6107f0565b3480156103d557600080fd5b506102976103e4366004611686565b6001600160a01b031660009081526020819052604090205490565b34801561040b57600080fd5b506103a76108b2565b34801561042057600080fd5b5061029761042f366004611686565b60136020526000908152604090205481565b34801561044d57600080fd5b506005546001600160a01b031661026e565b34801561046b57600080fd5b50610297600f5481565b34801561048157600080fd5b506102086108e8565b34801561049657600080fd5b506103a76104a536600461173a565b6108f7565b3480156104b657600080fd5b5061023e6104c536600461176d565b6109c9565b3480156104d657600080fd5b5061023e6104e536600461176d565b610a62565b3480156104f657600080fd5b5061023e610505366004611686565b60156020526000908152604090205460ff1681565b34801561052657600080fd5b50610297600e5481565b34801561053c57600080fd5b50610297600b5481565b34801561055257600080fd5b506103a7610561366004611799565b610a6f565b34801561057257600080fd5b5061023e610581366004611686565b60126020526000908152604090205460ff1681565b3480156105a257600080fd5b506102976105b13660046116c0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105e857600080fd5b5061029760095481565b3480156105fe57600080fd5b5061029760105481565b34801561061457600080fd5b506103a7610623366004611686565b610aa5565b606060038054610637906119c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610663906119c7565b80156106b05780601f10610685576101008083540402835291602001916106b0565b820191906000526020600020905b81548152906001019060200180831161069357829003601f168201915b5050505050905090565b60006106c7338484610c1c565b50600192915050565b60006106dd848484610d40565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107675760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6107748533858403610c1c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106c79185906107b6908690611957565b610c1c565b6005546001600160a01b031633146107e55760405162461bcd60e51b815260040161075e9061186c565b600b91909155600c55565b6005546001600160a01b0316331461081a5760405162461bcd60e51b815260040161075e9061186c565b6006546001600160a01b03828116911614156108905760405162461bcd60e51b815260206004820152602f60248201527f48656c6c6f4b697474793a2054686520726f7574657220616c7265616479206860448201526e61732074686174206164647265737360881b606482015260840161075e565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146108dc5760405162461bcd60e51b815260040161075e9061186c565b6108e66000611144565b565b606060048054610637906119c7565b6005546001600160a01b031633146109215760405162461bcd60e51b815260040161075e9061186c565b6007546001600160a01b03838116911614156109bb5760405162461bcd60e51b815260206004820152604d60248201527f48656c6c6f4b697474793a2054686520556e697377617020706169722063616e60448201527f6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d617260648201526c6b65744d616b6572506169727360981b608482015260a40161075e565b6109c58282611196565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610a4b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161075e565b610a583385858403610c1c565b5060019392505050565b60006106c7338484610d40565b6005546001600160a01b03163314610a995760405162461bcd60e51b815260040161075e9061186c565b610aa281611264565b50565b6005546001600160a01b03163314610acf5760405162461bcd60e51b815260040161075e9061186c565b6001600160a01b038116610b345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161075e565b610aa281611144565b6001600160a01b038216610b935760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161075e565b8060026000828254610ba59190611957565b90915550506001600160a01b03821660009081526020819052604081208054839290610bd2908490611957565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038316610c7e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161075e565b6001600160a01b038216610cdf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161075e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d665760405162461bcd60e51b815260040161075e906118a1565b6001600160a01b038216610d8c5760405162461bcd60e51b815260040161075e90611829565b60008111610deb5760405162461bcd60e51b815260206004820152602660248201527f48656c6c6f4b697474793a2030207472616e7366657273206e6f742061636365604482015265707461626c6560d01b606482015260840161075e565b600d5460ff16610e0457610dff83836112cb565b610ef9565b6000600e54118015610e2357506007546001600160a01b038481169116145b8015610e525750826001600160a01b0316610e466005546001600160a01b031690565b6001600160a01b031614155b8015610e815750816001600160a01b0316610e756005546001600160a01b031690565b6001600160a01b031614155b15610ef957600a600e5443610e9691906119b0565b1015610ef957610ea782600161136e565b6040516001600160a01b03831681527f1d2458a81cebd059cebad60af3a9e479761478ced5fee20fd5bebb41a6d32e229060200160405180910390a160108054906000610ef383611a02565b91905055505b6001600160a01b03831660009081526011602052604090205460ff16158015610f3b57506001600160a01b03821660009081526011602052604090205460ff16155b15611134576001600160a01b03831660009081526012602052604090205460ff1615610fa95760405162461bcd60e51b815260206004820152601c60248201527f48656c6c6f4b697474793a20426c6f636b6564205472616e7366657200000000604482015260640161075e565b6001600160a01b038316600090815260136020526040902054431415610fd457610fd483600161136e565b3060009081526020819052604090205460095481108015908190610ffb575060145460ff16155b801561102057506001600160a01b03851660009081526015602052604090205460ff16155b801561103a5750600a546001600160a01b03868116911614155b80156110545750600a546001600160a01b03858116911614155b1561107d576014805460ff1916600117905560095461107290611264565b6014805460ff191690555b60145460ff16158015611130576001600160a01b03861660009081526015602052604081205460ff16156110f7576110d56110ce60646110c8600c548961139990919063ffffffff16565b906113ac565b82906113b8565b6001600160a01b03871660009081526013602052604090204390559050611117565b6111146110ce60646110c8600b548961139990919063ffffffff16565b90505b61112185826113c4565b945061112e8730836113d0565b505b5050505b61113f8383836113d0565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526015602052604090205460ff16151581151514156112395760405162461bcd60e51b8152602060048201526044602482018190527f48656c6c6f4b697474793a204175746f6d61746564206d61726b6574206d616b908201527f6572207061697220697320616c72656164792073657420746f20746861742076606482015263616c756560e01b608482015260a40161075e565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b61126d81611525565b600a5460405147916000916001600160a01b039091169047908381818185875af1925050503d80600081146112be576040519150601f19603f3d011682016040523d82523d6000602084013e6112c3565b606091505b505050505050565b600d5460ff161561132a5760405162461bcd60e51b815260206004820152602360248201527f4c697175696469747920616c726561647920616464656420616e64206d61726b60448201526232b21760e91b606482015260840161075e565b6005546001600160a01b03838116911614801561135457506007546001600160a01b038281169116145b156109c557600d805460ff1916600117905543600e555050565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b60006113a58284611991565b9392505050565b60006113a5828461196f565b60006113a58284611957565b60006113a582846119b0565b6001600160a01b0383166113f65760405162461bcd60e51b815260040161075e906118a1565b6001600160a01b03821661141c5760405162461bcd60e51b815260040161075e90611829565b6001600160a01b038316600090815260208190526040902054818110156114945760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161075e565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906114cb908490611957565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161151791815260200190565b60405180910390a350505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061155a5761155a611a33565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156115ae57600080fd5b505afa1580156115c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e691906116a3565b816001815181106115f9576115f9611a33565b6001600160a01b03928316602091820292909201015260065461161f9130911684610c1c565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906116589085906000908690309042906004016118e6565b600060405180830381600087803b15801561167257600080fd5b505af11580156112c3573d6000803e3d6000fd5b60006020828403121561169857600080fd5b81356113a581611a49565b6000602082840312156116b557600080fd5b81516113a581611a49565b600080604083850312156116d357600080fd5b82356116de81611a49565b915060208301356116ee81611a49565b809150509250929050565b60008060006060848603121561170e57600080fd5b833561171981611a49565b9250602084013561172981611a49565b929592945050506040919091013590565b6000806040838503121561174d57600080fd5b823561175881611a49565b9150602083013580151581146116ee57600080fd5b6000806040838503121561178057600080fd5b823561178b81611a49565b946020939093013593505050565b6000602082840312156117ab57600080fd5b5035919050565b600080604083850312156117c557600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611801578581018301518582016040015282016117e5565b81811115611813576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156119365784516001600160a01b031683529383019391830191600101611911565b50506001600160a01b03969096166060850152505050608001529392505050565b6000821982111561196a5761196a611a1d565b500190565b60008261198c57634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156119ab576119ab611a1d565b500290565b6000828210156119c2576119c2611a1d565b500390565b600181811c908216806119db57607f821691505b602082108114156119fc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a1657611a16611a1d565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114610aa257600080fdfea2646970667358221220ce778a24ba1b50a486351d6793d5310e85b54b15735a665851c52772aca580dd64736f6c634300080700330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000555defda98570bb2687fb228b6ec2a3636d0d48c0000000000000000000000005551b1d9d80ababaf958fd97b4b294089c70c5760000000000000000000000005559961bd792f50de89aba735ba77b5cc8bd8e07

Deployed Bytecode

0x6080604052600436106101e75760003560e01c806386cbf53a11610102578063bf56b37111610095578063dd62ed3e11610064578063dd62ed3e14610596578063e2f45605146105dc578063e79d4160146105f2578063f2fde38b1461060857600080fd5b8063bf56b3711461051a578063cc1776d314610530578063d060ad8d14610546578063dbac26e91461056657600080fd5b80639a7a23d6116100d15780639a7a23d61461048a578063a457c2d7146104aa578063a9059cbb146104ca578063b62496f5146104ea57600080fd5b806386cbf53a146104145780638da5cb5b1461044157806392b5d0461461045f57806395d89b411461047557600080fd5b80633eaaf86b1161017a57806358f057a91161014957806358f057a91461038757806365b8dbc0146103a957806370a08231146103c9578063715018a6146103ff57600080fd5b80633eaaf86b1461032157806349bd5a5e146103375780634f7041a51461035757806350a8e0161461036d57600080fd5b806323b872dd116101b657806323b872dd146102a557806326905e04146102c5578063313ce567146102e5578063395093511461030157600080fd5b806306fdde03146101f3578063095ea7b31461021e5780631694505e1461024e57806318160ddd1461028657600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b50610208610628565b60405161021591906117d4565b60405180910390f35b34801561022a57600080fd5b5061023e61023936600461176d565b6106ba565b6040519015158152602001610215565b34801561025a57600080fd5b5060065461026e906001600160a01b031681565b6040516001600160a01b039091168152602001610215565b34801561029257600080fd5b506002545b604051908152602001610215565b3480156102b157600080fd5b5061023e6102c03660046116f9565b6106d0565b3480156102d157600080fd5b50600a5461026e906001600160a01b031681565b3480156102f157600080fd5b5060405160128152602001610215565b34801561030d57600080fd5b5061023e61031c36600461176d565b61077f565b34801561032d57600080fd5b5061029760085481565b34801561034357600080fd5b5060075461026e906001600160a01b031681565b34801561036357600080fd5b50610297600c5481565b34801561037957600080fd5b50600d5461023e9060ff1681565b34801561039357600080fd5b506103a76103a23660046117b2565b6107bb565b005b3480156103b557600080fd5b506103a76103c4366004611686565b6107f0565b3480156103d557600080fd5b506102976103e4366004611686565b6001600160a01b031660009081526020819052604090205490565b34801561040b57600080fd5b506103a76108b2565b34801561042057600080fd5b5061029761042f366004611686565b60136020526000908152604090205481565b34801561044d57600080fd5b506005546001600160a01b031661026e565b34801561046b57600080fd5b50610297600f5481565b34801561048157600080fd5b506102086108e8565b34801561049657600080fd5b506103a76104a536600461173a565b6108f7565b3480156104b657600080fd5b5061023e6104c536600461176d565b6109c9565b3480156104d657600080fd5b5061023e6104e536600461176d565b610a62565b3480156104f657600080fd5b5061023e610505366004611686565b60156020526000908152604090205460ff1681565b34801561052657600080fd5b50610297600e5481565b34801561053c57600080fd5b50610297600b5481565b34801561055257600080fd5b506103a7610561366004611799565b610a6f565b34801561057257600080fd5b5061023e610581366004611686565b60126020526000908152604090205460ff1681565b3480156105a257600080fd5b506102976105b13660046116c0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105e857600080fd5b5061029760095481565b3480156105fe57600080fd5b5061029760105481565b34801561061457600080fd5b506103a7610623366004611686565b610aa5565b606060038054610637906119c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610663906119c7565b80156106b05780601f10610685576101008083540402835291602001916106b0565b820191906000526020600020905b81548152906001019060200180831161069357829003601f168201915b5050505050905090565b60006106c7338484610c1c565b50600192915050565b60006106dd848484610d40565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107675760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6107748533858403610c1c565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106c79185906107b6908690611957565b610c1c565b6005546001600160a01b031633146107e55760405162461bcd60e51b815260040161075e9061186c565b600b91909155600c55565b6005546001600160a01b0316331461081a5760405162461bcd60e51b815260040161075e9061186c565b6006546001600160a01b03828116911614156108905760405162461bcd60e51b815260206004820152602f60248201527f48656c6c6f4b697474793a2054686520726f7574657220616c7265616479206860448201526e61732074686174206164647265737360881b606482015260840161075e565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146108dc5760405162461bcd60e51b815260040161075e9061186c565b6108e66000611144565b565b606060048054610637906119c7565b6005546001600160a01b031633146109215760405162461bcd60e51b815260040161075e9061186c565b6007546001600160a01b03838116911614156109bb5760405162461bcd60e51b815260206004820152604d60248201527f48656c6c6f4b697474793a2054686520556e697377617020706169722063616e60448201527f6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d617260648201526c6b65744d616b6572506169727360981b608482015260a40161075e565b6109c58282611196565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610a4b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161075e565b610a583385858403610c1c565b5060019392505050565b60006106c7338484610d40565b6005546001600160a01b03163314610a995760405162461bcd60e51b815260040161075e9061186c565b610aa281611264565b50565b6005546001600160a01b03163314610acf5760405162461bcd60e51b815260040161075e9061186c565b6001600160a01b038116610b345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161075e565b610aa281611144565b6001600160a01b038216610b935760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161075e565b8060026000828254610ba59190611957565b90915550506001600160a01b03821660009081526020819052604081208054839290610bd2908490611957565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038316610c7e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161075e565b6001600160a01b038216610cdf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161075e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d665760405162461bcd60e51b815260040161075e906118a1565b6001600160a01b038216610d8c5760405162461bcd60e51b815260040161075e90611829565b60008111610deb5760405162461bcd60e51b815260206004820152602660248201527f48656c6c6f4b697474793a2030207472616e7366657273206e6f742061636365604482015265707461626c6560d01b606482015260840161075e565b600d5460ff16610e0457610dff83836112cb565b610ef9565b6000600e54118015610e2357506007546001600160a01b038481169116145b8015610e525750826001600160a01b0316610e466005546001600160a01b031690565b6001600160a01b031614155b8015610e815750816001600160a01b0316610e756005546001600160a01b031690565b6001600160a01b031614155b15610ef957600a600e5443610e9691906119b0565b1015610ef957610ea782600161136e565b6040516001600160a01b03831681527f1d2458a81cebd059cebad60af3a9e479761478ced5fee20fd5bebb41a6d32e229060200160405180910390a160108054906000610ef383611a02565b91905055505b6001600160a01b03831660009081526011602052604090205460ff16158015610f3b57506001600160a01b03821660009081526011602052604090205460ff16155b15611134576001600160a01b03831660009081526012602052604090205460ff1615610fa95760405162461bcd60e51b815260206004820152601c60248201527f48656c6c6f4b697474793a20426c6f636b6564205472616e7366657200000000604482015260640161075e565b6001600160a01b038316600090815260136020526040902054431415610fd457610fd483600161136e565b3060009081526020819052604090205460095481108015908190610ffb575060145460ff16155b801561102057506001600160a01b03851660009081526015602052604090205460ff16155b801561103a5750600a546001600160a01b03868116911614155b80156110545750600a546001600160a01b03858116911614155b1561107d576014805460ff1916600117905560095461107290611264565b6014805460ff191690555b60145460ff16158015611130576001600160a01b03861660009081526015602052604081205460ff16156110f7576110d56110ce60646110c8600c548961139990919063ffffffff16565b906113ac565b82906113b8565b6001600160a01b03871660009081526013602052604090204390559050611117565b6111146110ce60646110c8600b548961139990919063ffffffff16565b90505b61112185826113c4565b945061112e8730836113d0565b505b5050505b61113f8383836113d0565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526015602052604090205460ff16151581151514156112395760405162461bcd60e51b8152602060048201526044602482018190527f48656c6c6f4b697474793a204175746f6d61746564206d61726b6574206d616b908201527f6572207061697220697320616c72656164792073657420746f20746861742076606482015263616c756560e01b608482015260a40161075e565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b61126d81611525565b600a5460405147916000916001600160a01b039091169047908381818185875af1925050503d80600081146112be576040519150601f19603f3d011682016040523d82523d6000602084013e6112c3565b606091505b505050505050565b600d5460ff161561132a5760405162461bcd60e51b815260206004820152602360248201527f4c697175696469747920616c726561647920616464656420616e64206d61726b60448201526232b21760e91b606482015260840161075e565b6005546001600160a01b03838116911614801561135457506007546001600160a01b038281169116145b156109c557600d805460ff1916600117905543600e555050565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b60006113a58284611991565b9392505050565b60006113a5828461196f565b60006113a58284611957565b60006113a582846119b0565b6001600160a01b0383166113f65760405162461bcd60e51b815260040161075e906118a1565b6001600160a01b03821661141c5760405162461bcd60e51b815260040161075e90611829565b6001600160a01b038316600090815260208190526040902054818110156114945760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161075e565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906114cb908490611957565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161151791815260200190565b60405180910390a350505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061155a5761155a611a33565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156115ae57600080fd5b505afa1580156115c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115e691906116a3565b816001815181106115f9576115f9611a33565b6001600160a01b03928316602091820292909201015260065461161f9130911684610c1c565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906116589085906000908690309042906004016118e6565b600060405180830381600087803b15801561167257600080fd5b505af11580156112c3573d6000803e3d6000fd5b60006020828403121561169857600080fd5b81356113a581611a49565b6000602082840312156116b557600080fd5b81516113a581611a49565b600080604083850312156116d357600080fd5b82356116de81611a49565b915060208301356116ee81611a49565b809150509250929050565b60008060006060848603121561170e57600080fd5b833561171981611a49565b9250602084013561172981611a49565b929592945050506040919091013590565b6000806040838503121561174d57600080fd5b823561175881611a49565b9150602083013580151581146116ee57600080fd5b6000806040838503121561178057600080fd5b823561178b81611a49565b946020939093013593505050565b6000602082840312156117ab57600080fd5b5035919050565b600080604083850312156117c557600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611801578581018301518582016040015282016117e5565b81811115611813576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156119365784516001600160a01b031683529383019391830191600101611911565b50506001600160a01b03969096166060850152505050608001529392505050565b6000821982111561196a5761196a611a1d565b500190565b60008261198c57634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156119ab576119ab611a1d565b500290565b6000828210156119c2576119c2611a1d565b500390565b600181811c908216806119db57607f821691505b602082108114156119fc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a1657611a16611a1d565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114610aa257600080fdfea2646970667358221220ce778a24ba1b50a486351d6793d5310e85b54b15735a665851c52772aca580dd64736f6c63430008070033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000555defda98570bb2687fb228b6ec2a3636d0d48c0000000000000000000000005551b1d9d80ababaf958fd97b4b294089c70c5760000000000000000000000005559961bd792f50de89aba735ba77b5cc8bd8e07

-----Decoded View---------------
Arg [0] : _uniswapAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : lps (address[]): 0x555dEFDA98570bb2687Fb228B6eC2a3636d0D48C,0x5551B1d9D80aBaBAF958Fd97b4B294089C70C576,0x5559961BD792F50dE89ABa735ba77b5Cc8bD8E07

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [3] : 000000000000000000000000555defda98570bb2687fb228b6ec2a3636d0d48c
Arg [4] : 0000000000000000000000005551b1d9d80ababaf958fd97b4b294089c70c576
Arg [5] : 0000000000000000000000005559961bd792f50de89aba735ba77b5cc8bd8e07


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.