ETH Price: $2,629.49 (-0.88%)

Token

SpookyFloki (SPKY)
 

Overview

Max Total Supply

1,000,000,000 SPKY

Holders

172

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
14.045972205563625754 SPKY

Value
$0.00
0x2b7f5de492ac463809708907fe615fccf5ce299b
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:
SPKY

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-06
*/

/**
 * SPDX-License-Identifier: MIT
 https://t.me/SpookyFlokiERC20
 https://twitter.com/SpookyFlokiCoin
 http://www.spookyfloki.vip/
 */
pragma solidity ^0.8.19;

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

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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

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

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

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

interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error ERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 default value returned by this function, unless
     * it's 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        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
     * `requestedDecrease`.
     *
     * NOTE: Although this function is designed to avoid double spending with {approval},
     * it can still be frontrunned, preventing any attempt of allowance reduction.
     */
    function decreaseAllowance(address spender, uint256 requestedDecrease) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < requestedDecrease) {
            revert ERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
        }
        unchecked {
            _approve(owner, spender, currentAllowance - requestedDecrease);
        }

        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` (or `to`) is
     * the zero address. All customizations to transfers, mints, and burns should be done by overriding this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, by transferring it to address(0).
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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 value) internal virtual {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Alternative version of {_approve} with an optional flag that can enable or disable the Approval event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to true
     * using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

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

interface IUniV2Factory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

interface IUniV2Router {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

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

    IUniV2Router public immutable uniV2Router;
    address public immutable uniV2Pair;

    // Swapback
    bool private _duringSwapBack;
    bool public _swapForFeesEnabled = false;
    uint256 public _minSwapbackTreshold;
    uint256 public _maxSwapbackLimit;

    //Anti-whale
    bool public _launchTradingLimitsInPlace = true;
    bool public _sameBlockTxLimitOn = true;
    uint256 public _maxWalletPerAddress;
    uint256 public _maxTokensPerTransfer;
    mapping(address => uint256) private lastTransferBlock; // to hold last Transfers temporarily during launch

    // Fee receivers
    address public _feeReceiverWallet1;
    address public _feeReceiverWallet2;

    bool public _isTradingEnabled = false;

    uint256 public _totalFeeForBuys;
    uint256 public _fee1ForBuy;
    uint256 public _fee2ForBuy;

    uint256 public _totalFeeForSells;
    uint256 public _fee1ForSell;
    uint256 public _fee2ForSell;

    uint256 public _tokensForReceiver1;
    uint256 public _tokensForReceiver2;

    /******************/

    // exclude from fees and max transaction amount
    mapping(address => bool) private feeWhitelisted;
    mapping(address => bool) public _txLimitWhitelisted;

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

    event AddressExcludedFromFees(address indexed account, bool isExcluded);

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

    event _feeReceiverWallet1Updated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event _feeReceiverWallet2Updated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("SpookyFloki", "SPKY") {
        IUniV2Router _uniV2Router = IUniV2Router(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        exemptFromTxLim(address(_uniV2Router), true);
        uniV2Router = _uniV2Router;

        uniV2Pair = IUniV2Factory(_uniV2Router.factory())
            .createPair(address(this), _uniV2Router.WETH());
        exemptFromTxLim(address(uniV2Pair), true);
        SetAsDexPair(address(uniV2Pair), true);

        uint256 tokenSupply = 1000000000 * 1e18;

        _maxTokensPerTransfer = (tokenSupply * 2) / 100; // 1% of total supply
        _maxWalletPerAddress = (tokenSupply * 2) / 100; // 1% of total supply

        _minSwapbackTreshold = (tokenSupply * 5) / 10000; // 0.05% swapback trigger
        _maxSwapbackLimit = (tokenSupply * 7) / 100; // 7% max swapback

        _fee1ForBuy = 25;
        _fee2ForBuy = 0;
        _totalFeeForBuys = _fee1ForBuy + _fee2ForBuy;

        _fee1ForSell = 35;
        _fee2ForSell = 0;
        _totalFeeForSells = _fee1ForSell + _fee2ForSell;

        _feeReceiverWallet1 = 0x14b1F105997b64B329Bd2459F44a7bb2D7BfDdA4;
        _feeReceiverWallet2 = address(msg.sender);

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

        exemptFromTxLim(owner(), true);
        exemptFromTxLim(address(this), true);
        exemptFromTxLim(address(0xdead), true);
        exemptFromTxLim(_feeReceiverWallet1, true);

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

    receive() external payable {}

    /// @notice Launches the token and enables trading. Irriversable.
    function lonchTheCoin() external onlyOwner {
        _isTradingEnabled = true;
        _swapForFeesEnabled = true;
    }

    /// @notice Removes the max wallet and max transaction limits
    function limitsOff() external onlyOwner returns (bool) {
        _launchTradingLimitsInPlace = false;
        return true;
    }

    /// @notice Disables the Same wallet block transfer delay
    function removeSameBlockRes() external onlyOwner returns (bool) {
        _sameBlockTxLimitOn = false;
        return true;
    }

    function changeMinSwapbackTresh(
        uint256 newAmount
    ) external onlyOwner returns (bool) {
        require(
            newAmount >= totalSupply() / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (500 * totalSupply()) / 100000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        require(
            newAmount <= _maxSwapbackLimit,
            "Swap amount cannot be higher than _maxSwapbackLimit"
        );
        _minSwapbackTreshold = newAmount;
        return true;
    }

    function changeMaxSwapbackLim(
        uint256 newAmount
    ) external onlyOwner returns (bool) {
        require(
            newAmount >= _minSwapbackTreshold,
            "Swap amount cannot be lower than _minSwapbackTreshold"
        );
        _maxSwapbackLimit = newAmount;
        return true;
    }

    /// @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
    /// @param newNum Base 1000, so 1% = 10
    function changeMaxTokensPerTrans(uint256 newNum) external onlyOwner {
        require(newNum >= 2, "Cannot set _maxTokensPerTransfer lower than 0.2%");
        _maxTokensPerTransfer = (newNum * totalSupply()) / 1000;
    }

    /// @notice Changes the maximum amount of tokens a wallet can hold
    /// @param newNum Base 1000, so 1% = 10
    function changeMaxWalletPerAdd(uint256 newNum) external onlyOwner {
        require(newNum >= 5, "Cannot set _maxWalletPerAddress lower than 0.5%");
        _maxWalletPerAddress = (newNum * totalSupply()) / 1000;
    }

    /// @notice Sets if a wallet is excluded from the max wallet and tx limits
    /// @param updAds The wallet to update
    /// @param isEx If the wallet is excluded or not
    function exemptFromTxLim(
        address updAds,
        bool isEx
    ) public onlyOwner {
        _txLimitWhitelisted[updAds] = isEx;
    }

    /// @notice Sets if the contract can sell tokens
    /// @param enabled set to false to disable selling
    function changeSwapForFeesEna(bool enabled) external onlyOwner {
        _swapForFeesEnabled = enabled;
    }

    /// @notice Sets the fees for buys
    /// @param _treasuryFee The fee for the treasury wallet
    /// @param _projectFee The fee for the dev wallet
    function chngeFeesForBuys(
        uint256 _treasuryFee,
        uint256 _projectFee
    ) external onlyOwner {
        _fee1ForBuy = _treasuryFee;
        _fee2ForBuy = _projectFee;
        _totalFeeForBuys = _fee1ForBuy + _fee2ForBuy;
        require(_totalFeeForBuys <= 12, "Must keep fees at 12% or less");
    }

    /// @notice Sets the fees for sells
    /// @param _treasuryFee The fee for the treasury wallet
    /// @param _projectFee The fee for the dev wallet
    function chngeFeesForSells(
        uint256 _treasuryFee,
        uint256 _projectFee
    ) external onlyOwner {
        _fee1ForSell = _treasuryFee;
        _fee2ForSell = _projectFee;
        _totalFeeForSells = _fee1ForSell + _fee2ForSell;
        require(_totalFeeForSells <= 12, "Must keep fees at 12% or less");
    }

    /// @notice Sets if a wallet is excluded from fees
    /// @param account The wallet to update
    /// @param excluded If the wallet is excluded or not
    function exemptFromSwapFees(address account, bool excluded) public onlyOwner {
        feeWhitelisted[account] = excluded;
        emit AddressExcludedFromFees(account, excluded);
    }

    /// @notice Sets an address as a new liquidity pair. You probably dont want to do this.
    /// @param pair The new pair
    function chngeAddressIsDexPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != uniV2Pair,
            "The pair cannot be removed from _isDexPair"
        );

        SetAsDexPair(pair, value);
    }

    function SetAsDexPair(address pair, bool value) private {
        _isDexPair[pair] = value;

        emit SetDexPair(pair, value);
    }

    /// @notice Sets a wallet as the new fee receiver 1 wallet
    /// @param newFeeReceiver1 The new fee receiver 1 wallet
    function chngeFeeReceiver1(
        address newFeeReceiver1
    ) external onlyOwner {
        emit _feeReceiverWallet1Updated(newFeeReceiver1, _feeReceiverWallet1);
        _feeReceiverWallet1 = newFeeReceiver1;
    }

    /// @notice Sets a wallet as the new fee receiver 2 wallet
    /// @param newFeeReceiver2 The new fee receiver 2 wallet
    function chngeFeeReceiver2(address newFeeReceiver2) external onlyOwner {
        emit _feeReceiverWallet2Updated(newFeeReceiver2, _feeReceiverWallet2);
        _feeReceiverWallet2 = newFeeReceiver2;
    }

    function isAddWhitelistedFromFees(address account) public view returns (bool) {
        return feeWhitelisted[account];
    }

    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (amount == 0) {
            super._update(from, to, 0);
            return;
        }

        if (_launchTradingLimitsInPlace) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !_duringSwapBack
            ) {
                if (!_isTradingEnabled) {
                    require(
                        feeWhitelisted[from] || feeWhitelisted[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (_sameBlockTxLimitOn) {
                    if (
                        to != owner() &&
                        to != address(uniV2Router) &&
                        to != address(uniV2Pair)
                    ) {
                        require(
                            lastTransferBlock[tx.origin] <
                                block.number,
                            "_update:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        lastTransferBlock[tx.origin] = block.number;
                    }
                }

                //when buy
                if (_isDexPair[from] && !_txLimitWhitelisted[to]) {
                    require(
                        amount <= _maxTokensPerTransfer,
                        "Buy transfer amount exceeds the _maxTokensPerTransfer."
                    );
                    require(
                        amount + balanceOf(to) <= _maxWalletPerAddress,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    _isDexPair[to] && !_txLimitWhitelisted[from]
                ) {
                    require(
                        amount <= _maxTokensPerTransfer,
                        "Sell transfer amount exceeds the _maxTokensPerTransfer."
                    );
                } else if (!_txLimitWhitelisted[to]) {
                    require(
                        amount + balanceOf(to) <= _maxWalletPerAddress,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= _minSwapbackTreshold;

        if (
            canSwap &&
            _swapForFeesEnabled &&
            !_duringSwapBack &&
            !_isDexPair[from] &&
            !feeWhitelisted[from] &&
            !feeWhitelisted[to]
        ) {
            _duringSwapBack = true;

            swapTaxesForETH();

            _duringSwapBack = false;
        }

        bool takeFee = !_duringSwapBack;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (_isDexPair[to] && _totalFeeForSells > 0) {
                fees = amount.mul(_totalFeeForSells).div(100);
                _tokensForReceiver2 += (fees * _fee2ForSell) / _totalFeeForSells;
                _tokensForReceiver1 += (fees * _fee1ForSell) / _totalFeeForSells;
            }
            // on buy
            else if (_isDexPair[from] && _totalFeeForBuys > 0) {
                fees = amount.mul(_totalFeeForBuys).div(100);
                _tokensForReceiver2 += (fees * _fee2ForBuy) / _totalFeeForBuys;
                _tokensForReceiver1 += (fees * _fee1ForBuy) / _totalFeeForBuys;
            }

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

            amount -= fees;
        }

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

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

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

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

    function swapTaxesForETH() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _tokensForReceiver1 + _tokensForReceiver2;
        bool success;

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

        if (contractBalance > _maxSwapbackLimit) {
            contractBalance = _maxSwapbackLimit;
        }

        uint256 initialETHBalance = address(this).balance;

        swapExactTokensForETHOnUniV2Router(contractBalance);

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

        uint256 ethForProject = ethBalance.mul(_tokensForReceiver2).div(totalTokensToSwap);

        _tokensForReceiver1 = 0;
        _tokensForReceiver2 = 0;

        (success, ) = address(_feeReceiverWallet2).call{value: ethForProject}("");

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"currentAllowance","type":"uint256"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"ERC20FailedDecreaseAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"AddressExcludedFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetDexPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"_feeReceiverWallet1Updated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"_feeReceiverWallet2Updated","type":"event"},{"inputs":[],"name":"_fee1ForBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fee1ForSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fee2ForBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fee2ForSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeReceiverWallet1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeReceiverWallet2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isDexPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isTradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_launchTradingLimitsInPlace","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSwapbackLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTokensPerTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_minSwapbackTreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sameBlockTxLimitOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapForFeesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokensForReceiver1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokensForReceiver2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalFeeForBuys","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalFeeForSells","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_txLimitWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"changeMaxSwapbackLim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"changeMaxTokensPerTrans","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"changeMaxWalletPerAdd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"changeMinSwapbackTresh","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"changeSwapForFeesEna","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"chngeAddressIsDexPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newFeeReceiver1","type":"address"}],"name":"chngeFeeReceiver1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newFeeReceiver2","type":"address"}],"name":"chngeFeeReceiver2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_projectFee","type":"uint256"}],"name":"chngeFeesForBuys","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_projectFee","type":"uint256"}],"name":"chngeFeesForSells","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"exemptFromSwapFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"exemptFromTxLim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isAddWhitelistedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsOff","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lonchTheCoin","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":"removeSameBlockRes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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":"uniV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniV2Router","outputs":[{"internalType":"contract IUniV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005805460ff60a81b191690556008805461ffff1916610101179055600d805460ff60a01b191690553480156200003a57600080fd5b506040518060400160405280600b81526020016a53706f6f6b79466c6f6b6960a81b8152506040518060400160405280600481526020016353504b5960e01b81525081600390816200008d9190620013a4565b5060046200009c8282620013a4565b505050620000b9620000b36200040d60201b60201c565b62000411565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000db81600162000463565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000126573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014c919062001470565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c0919062001470565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200020e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000234919062001470565b6001600160a01b031660a08190526200024f90600162000463565b60a0516200025f906001620004dd565b6b033b2e3c9fd0803ce800000060646200027b826002620014b8565b620002879190620014d2565b600a55606462000299826002620014b8565b620002a59190620014d2565b600955612710620002b8826005620014b8565b620002c49190620014d2565b6006556064620002d6826007620014b8565b620002e29190620014d2565b6007556019600f81905560006010819055620002fe91620014f5565b600e5560236012819055600060138190556200031a91620014f5565b601155600c80546001600160a01b03199081167314b1f105997b64b329bd2459f44a7bb2d7bfdda417909155600d80549091163317905562000370620003686005546001600160a01b031690565b600162000531565b6200037d30600162000531565b6200038c61dead600162000531565b600c54620003a5906001600160a01b0316600162000531565b620003c4620003bc6005546001600160a01b031690565b600162000463565b620003d130600162000463565b620003e061dead600162000463565b600c54620003f9906001600160a01b0316600162000463565b620004053382620005db565b5050620015aa565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004b25760405162461bcd60e51b8152602060048201819052602482015260008051602062003c8883398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6005546001600160a01b031633146200057c5760405162461bcd60e51b8152602060048201819052602482015260008051602062003c888339815191526044820152606401620004a9565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6001600160a01b038216620006075760405163ec442f0560e01b815260006004820152602401620004a9565b620006156000838362000619565b5050565b806000036200063557620006308383600062000df5565b505050565b60085460ff161562000af3576005546001600160a01b038481169116148015906200066e57506005546001600160a01b03838116911614155b80156200068357506001600160a01b03821615155b80156200069b57506001600160a01b03821661dead14155b8015620006b25750600554600160a01b900460ff16155b1562000af357600d54600160a01b900460ff1662000758576001600160a01b03831660009081526016602052604090205460ff16806200070a57506001600160a01b03821660009081526016602052604090205460ff165b620007585760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401620004a9565b600854610100900460ff16156200086c576005546001600160a01b038381169116148015906200079c57506080516001600160a01b0316826001600160a01b031614155b8015620007bd575060a0516001600160a01b0316826001600160a01b031614155b156200086c57326000908152600b60205260409020544311620008595760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401620004a9565b326000908152600b602052604090204390555b6001600160a01b03831660009081526018602052604090205460ff168015620008ae57506001600160a01b03821660009081526017602052604090205460ff16155b15620009a257600a548111156200092e5760405162461bcd60e51b815260206004820152603660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f5f6d6178546f6b656e735065725472616e736665722e000000000000000000006064820152608401620004a9565b6009546001600160a01b038316600090815260208190526040902054620009569083620014f5565b11156200099c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620004a9565b62000af3565b6001600160a01b03821660009081526018602052604090205460ff168015620009e457506001600160a01b03831660009081526017602052604090205460ff16155b1562000a6457600a548111156200099c5760405162461bcd60e51b815260206004820152603760248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f205f6d6178546f6b656e735065725472616e736665722e0000000000000000006064820152608401620004a9565b6001600160a01b03821660009081526017602052604090205460ff1662000af3576009546001600160a01b03831660009081526020819052604090205462000aad9083620014f5565b111562000af35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620004a9565b306000908152602081905260409020546006548110801590819062000b215750600554600160a81b900460ff165b801562000b385750600554600160a01b900460ff16155b801562000b5e57506001600160a01b03851660009081526018602052604090205460ff16155b801562000b8457506001600160a01b03851660009081526016602052604090205460ff16155b801562000baa57506001600160a01b03841660009081526016602052604090205460ff16155b1562000bdb576005805460ff60a01b1916600160a01b17905562000bcd62000f28565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526016602052604090205460ff600160a01b90920482161591168062000c2a57506001600160a01b03851660009081526016602052604090205460ff165b1562000c34575060005b6000811562000ddf576001600160a01b03861660009081526018602052604090205460ff16801562000c6857506000601154115b1562000d035760115462000c8d9060649062000c8690889062001075565b906200108c565b90506011546013548262000ca29190620014b8565b62000cae9190620014d2565b6015600082825462000cc19190620014f5565b909155505060115460125462000cd89083620014b8565b62000ce49190620014d2565b6014600082825462000cf79190620014f5565b9091555062000dbc9050565b6001600160a01b03871660009081526018602052604090205460ff16801562000d2e57506000600e54115b1562000dbc57600e5462000d4c9060649062000c8690889062001075565b9050600e546010548262000d619190620014b8565b62000d6d9190620014d2565b6015600082825462000d809190620014f5565b9091555050600e54600f5462000d979083620014b8565b62000da39190620014d2565b6014600082825462000db69190620014f5565b90915550505b801562000dd05762000dd087308362000df5565b62000ddc81866200150b565b94505b62000dec87878762000df5565b50505050505050565b6001600160a01b03831662000e2457806002600082825462000e189190620014f5565b9091555062000e989050565b6001600160a01b0383166000908152602081905260409020548181101562000e795760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620004a9565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821662000eb65760028054829003905562000ed5565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000f1b91815260200190565b60405180910390a3505050565b306000908152602081905260408120549050600060155460145462000f4e9190620014f5565b9050600082158062000f5e575081155b1562000f6957505050565b60075483111562000f7a5760075492505b4762000f86846200109a565b600062000f94478362001215565b9050600062000fb48562000c86601554856200107560201b90919060201c565b600060148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d80600081146200100e576040519150601f19603f3d011682016040523d82523d6000602084013e62001013565b606091505b5050600c546040519195506001600160a01b0316904790600081818185875af1925050503d806000811462001065576040519150601f19603f3d011682016040523d82523d6000602084013e6200106a565b606091505b505050505050505050565b6000620010838284620014b8565b90505b92915050565b6000620010838284620014d2565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110620010d257620010d262001521565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001133573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001159919062001470565b816001815181106200116f576200116f62001521565b60200260200101906001600160a01b031690816001600160a01b031681525050620011a430608051846200122360201b60201c565b6080516001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b8152600401620011dd95949392919062001537565b600060405180830381600087803b158015620011f857600080fd5b505af11580156200120d573d6000803e3d6000fd5b505050505050565b60006200108382846200150b565b6200063083838360016001600160a01b038416620012585760405163e602df0560e01b815260006004820152602401620004a9565b6001600160a01b0383166200128457604051634a1406b160e11b815260006004820152602401620004a9565b6001600160a01b03808516600090815260016020908152604080832093871683529290522082905580156200130257826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051620012f991815260200190565b60405180910390a35b50505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200133357607f821691505b6020821081036200135457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200063057600081815260208120601f850160051c81016020861015620013835750805b601f850160051c820191505b818110156200120d578281556001016200138f565b81516001600160401b03811115620013c057620013c062001308565b620013d881620013d184546200131e565b846200135a565b602080601f831160018114620014105760008415620013f75750858301515b600019600386901b1c1916600185901b1785556200120d565b600085815260208120601f198616915b82811015620014415788860151825594840194600190910190840162001420565b5085821015620014605787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200148357600080fd5b81516001600160a01b03811681146200149b57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620010865762001086620014a2565b600082620014f057634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620010865762001086620014a2565b81810381811115620010865762001086620014a2565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015620015895784516001600160a01b03168352938301939183019160010162001562565b50506001600160a01b03969096166060850152505050608001529392505050565b60805160a05161268e620015fa6000396000818161067901528181610c1501526118980152600081816106e10152818161185a0152818161219a01528181612253015261228f015261268e6000f3fe6080604052600436106103035760003560e01c80637361eda311610190578063bbd6d962116100dc578063cb3cd3f911610095578063dd62ed3e1161006f578063dd62ed3e14610904578063f043106a14610924578063f2fde38b14610944578063f99e0bf71461096457600080fd5b8063cb3cd3f914610895578063d3f2d9bd146108c5578063d910be0c146108e557600080fd5b8063bbd6d962146107ef578063c1cdddad14610805578063c2bf1b6914610825578063c3c884b414610845578063c3e5c04714610865578063c437c3961461087f57600080fd5b80639c83c37811610149578063a9059cbb11610123578063a9059cbb1461076f578063b1b591011461078f578063b2967e02146107af578063bb27b8b8146107cf57600080fd5b80639c83c378146107185780639e50e47c14610739578063a457c2d71461074f57600080fd5b80637361eda31461062e5780638bcea939146106675780638da5cb5b1461069b57806395087af9146106b9578063958c2e52146106cf57806395d89b411461070357600080fd5b80633c0946b71161024f57806353d6ece311610208578063656a0ff1116101e2578063656a0ff1146105ac57806367a7601c146105cd57806370a08231146105e3578063715018a61461061957600080fd5b806353d6ece314610560578063622bbb23146105765780636350d4001461059657600080fd5b80633c0946b7146104b85780633d508e0f146104ce5780633e2db054146104fe578063413f75051461051e57806352185cc8146105345780635348f9b21461054a57600080fd5b80631fbd1c92116102bc5780632b0cc3f2116102965780632b0cc3f21461042f578063313ce56714610467578063377c664314610483578063395093511461049857600080fd5b80631fbd1c92146103da578063232050f9146103fa57806323b872dd1461040f57600080fd5b806306fdde031461030f5780630886f8df1461033a578063095ea7b31461035c5780630f9cdeb71461038c5780630faeb408146103b057806318160ddd146103c557600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610984565b604051610331919061230f565b60405180910390f35b34801561034657600080fd5b5061035a61035536600461236d565b610a16565b005b34801561036857600080fd5b5061037c61037736600461239d565b610a67565b6040519015158152602001610331565b34801561039857600080fd5b506103a260115481565b604051908152602001610331565b3480156103bc57600080fd5b5061035a610a81565b3480156103d157600080fd5b506002546103a2565b3480156103e657600080fd5b5061035a6103f53660046123c9565b610ad3565b34801561040657600080fd5b5061037c610b28565b34801561041b57600080fd5b5061037c61042a3660046123fe565b610b65565b34801561043b57600080fd5b50600d5461044f906001600160a01b031681565b6040516001600160a01b039091168152602001610331565b34801561047357600080fd5b5060405160128152602001610331565b34801561048f57600080fd5b5061037c610b89565b3480156104a457600080fd5b5061037c6104b336600461239d565b610bc7565b3480156104c457600080fd5b506103a260125481565b3480156104da57600080fd5b5061037c6104e936600461243f565b60186020526000908152604090205460ff1681565b34801561050a57600080fd5b5061035a6105193660046123c9565b610be9565b34801561052a57600080fd5b506103a2600e5481565b34801561054057600080fd5b506103a260135481565b34801561055657600080fd5b506103a260145481565b34801561056c57600080fd5b506103a260075481565b34801561058257600080fd5b5061035a61059136600461245c565b610cb5565b3480156105a257600080fd5b506103a2600f5481565b3480156105b857600080fd5b5060055461037c90600160a81b900460ff1681565b3480156105d957600080fd5b506103a260155481565b3480156105ef57600080fd5b506103a26105fe36600461243f565b6001600160a01b031660009081526020819052604090205490565b34801561062557600080fd5b5061035a610d48565b34801561063a57600080fd5b5061037c61064936600461243f565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561067357600080fd5b5061044f7f000000000000000000000000000000000000000000000000000000000000000081565b3480156106a757600080fd5b506005546001600160a01b031661044f565b3480156106c557600080fd5b506103a260095481565b3480156106db57600080fd5b5061044f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561070f57600080fd5b50610324610d7e565b34801561072457600080fd5b50600d5461037c90600160a01b900460ff1681565b34801561074557600080fd5b506103a260105481565b34801561075b57600080fd5b5061037c61076a36600461239d565b610d8d565b34801561077b57600080fd5b5061037c61078a36600461239d565b610de4565b34801561079b57600080fd5b5061035a6107aa36600461247e565b610df2565b3480156107bb57600080fd5b5061035a6107ca36600461247e565b610eac565b3480156107db57600080fd5b5061035a6107ea3660046123c9565b610f65565b3480156107fb57600080fd5b506103a260065481565b34801561081157600080fd5b5061037c61082036600461247e565b610fee565b34801561083157600080fd5b5061037c61084036600461247e565b6111aa565b34801561085157600080fd5b5061035a61086036600461243f565b611250565b34801561087157600080fd5b5060085461037c9060ff1681565b34801561088b57600080fd5b506103a2600a5481565b3480156108a157600080fd5b5061037c6108b036600461243f565b60176020526000908152604090205460ff1681565b3480156108d157600080fd5b5061035a6108e036600461243f565b6112d7565b3480156108f157600080fd5b5060085461037c90610100900460ff1681565b34801561091057600080fd5b506103a261091f366004612497565b61135e565b34801561093057600080fd5b5061035a61093f36600461245c565b611389565b34801561095057600080fd5b5061035a61095f36600461243f565b61141c565b34801561097057600080fd5b50600c5461044f906001600160a01b031681565b606060038054610993906124d0565b80601f01602080910402602001604051908101604052809291908181526020018280546109bf906124d0565b8015610a0c5780601f106109e157610100808354040283529160200191610a0c565b820191906000526020600020905b8154815290600101906020018083116109ef57829003601f168201915b5050505050905090565b6005546001600160a01b03163314610a495760405162461bcd60e51b8152600401610a409061250a565b60405180910390fd5b60058054911515600160a81b0260ff60a81b19909216919091179055565b600033610a758185856114b7565b60019150505b92915050565b6005546001600160a01b03163314610aab5760405162461bcd60e51b8152600401610a409061250a565b600d805460ff60a01b1916600160a01b1790556005805460ff60a81b1916600160a81b179055565b6005546001600160a01b03163314610afd5760405162461bcd60e51b8152600401610a409061250a565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546000906001600160a01b03163314610b555760405162461bcd60e51b8152600401610a409061250a565b506008805460ff19169055600190565b600033610b738582856114c9565b610b7e85858561152f565b506001949350505050565b6005546000906001600160a01b03163314610bb65760405162461bcd60e51b8152600401610a409061250a565b506008805461ff0019169055600190565b600033610a75818585610bda838361135e565b610be49190612555565b6114b7565b6005546001600160a01b03163314610c135760405162461bcd60e51b8152600401610a409061250a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610ca75760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d206044820152692fb4b9a232bc2830b4b960b11b6064820152608401610a40565b610cb1828261158e565b5050565b6005546001600160a01b03163314610cdf5760405162461bcd60e51b8152600401610a409061250a565b600f8290556010819055610cf38183612555565b600e819055600c1015610cb15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a40565b6005546001600160a01b03163314610d725760405162461bcd60e51b8152600401610a409061250a565b610d7c60006115e2565b565b606060048054610993906124d0565b60003381610d9b828661135e565b905083811015610dd757604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610a40565b610b7e82868684036114b7565b600033610a7581858561152f565b6005546001600160a01b03163314610e1c5760405162461bcd60e51b8152600401610a409061250a565b6002811015610e865760405162461bcd60e51b815260206004820152603060248201527f43616e6e6f7420736574205f6d6178546f6b656e735065725472616e7366657260448201526f206c6f776572207468616e20302e322560801b6064820152608401610a40565b6103e8610e9260025490565b610e9c9083612568565b610ea6919061257f565b600a5550565b6005546001600160a01b03163314610ed65760405162461bcd60e51b8152600401610a409061250a565b6005811015610f3f5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574205f6d617857616c6c6574506572416464726573732060448201526e6c6f776572207468616e20302e352560881b6064820152608401610a40565b6103e8610f4b60025490565b610f559083612568565b610f5f919061257f565b60095550565b6005546001600160a01b03163314610f8f5760405162461bcd60e51b8152600401610a409061250a565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546000906001600160a01b0316331461101b5760405162461bcd60e51b8152600401610a409061250a565b620186a061102860025490565b611032919061257f565b82101561109f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a40565b620186a06110ac60025490565b6110b8906101f4612568565b6110c2919061257f565b82111561112e5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a40565b60075482111561119c5760405162461bcd60e51b815260206004820152603360248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152721b8817db585e14ddd85c189858dad31a5b5a5d606a1b6064820152608401610a40565b50600681905560015b919050565b6005546000906001600160a01b031633146111d75760405162461bcd60e51b8152600401610a409061250a565b6006548210156112475760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e6044820152740817db5a5b94ddd85c189858dad51c995cda1bdb19605a1b6064820152608401610a40565b50600755600190565b6005546001600160a01b0316331461127a5760405162461bcd60e51b8152600401610a409061250a565b600d546040516001600160a01b03918216918316907fb84ab223ec14c96484dc94cd1b5e9325788b491e5dd2718b54adce84eeede51190600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146113015760405162461bcd60e51b8152600401610a409061250a565b600c546040516001600160a01b03918216918316907f854264b92ce4ebf173b90dbb6d1c80cb903427f5a9ec01a9b6d0bb69f1a8b0ad90600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146113b35760405162461bcd60e51b8152600401610a409061250a565b601282905560138190556113c78183612555565b6011819055600c1015610cb15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a40565b6005546001600160a01b031633146114465760405162461bcd60e51b8152600401610a409061250a565b6001600160a01b0381166114ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a40565b6114b4816115e2565b50565b6114c48383836001611634565b505050565b60006114d5848461135e565b90506000198114611529578181101561151a57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a40565b61152984848484036000611634565b50505050565b6001600160a01b03831661155957604051634b637e8f60e11b815260006004820152602401610a40565b6001600160a01b0382166115835760405163ec442f0560e01b815260006004820152602401610a40565b6114c4838383611709565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03841661165e5760405163e602df0560e01b815260006004820152602401610a40565b6001600160a01b03831661168857604051634a1406b160e11b815260006004820152602401610a40565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561152957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516116fb91815260200190565b60405180910390a350505050565b8060000361171d576114c483836000611ebd565b60085460ff1615611be7576005546001600160a01b0384811691161480159061175457506005546001600160a01b03838116911614155b801561176857506001600160a01b03821615155b801561177f57506001600160a01b03821661dead14155b80156117955750600554600160a01b900460ff16155b15611be757600d54600160a01b900460ff1661182f576001600160a01b03831660009081526016602052604090205460ff16806117ea57506001600160a01b03821660009081526016602052604090205460ff165b61182f5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a40565b600854610100900460ff1615611979576005546001600160a01b0383811691161480159061188f57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156118cd57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561197957326000908152600b602052604090205443116119665760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401610a40565b326000908152600b602052604090204390555b6001600160a01b03831660009081526018602052604090205460ff1680156119ba57506001600160a01b03821660009081526017602052604090205460ff16155b15611a9f57600a54811115611a305760405162461bcd60e51b815260206004820152603660248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152752fb6b0bc2a37b5b2b739a832b92a3930b739b332b91760511b6064820152608401610a40565b6009546001600160a01b038316600090815260208190526040902054611a569083612555565b1115611a9a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a40565b611be7565b6001600160a01b03821660009081526018602052604090205460ff168015611ae057506001600160a01b03831660009081526017602052604090205460ff16155b15611b5d57600a54811115611a9a5760405162461bcd60e51b815260206004820152603760248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f205f6d6178546f6b656e735065725472616e736665722e0000000000000000006064820152608401610a40565b6001600160a01b03821660009081526017602052604090205460ff16611be7576009546001600160a01b038316600090815260208190526040902054611ba39083612555565b1115611be75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a40565b3060009081526020819052604090205460065481108015908190611c145750600554600160a81b900460ff165b8015611c2a5750600554600160a01b900460ff16155b8015611c4f57506001600160a01b03851660009081526018602052604090205460ff16155b8015611c7457506001600160a01b03851660009081526016602052604090205460ff16155b8015611c9957506001600160a01b03841660009081526016602052604090205460ff16155b15611cc7576005805460ff60a01b1916600160a01b179055611cb9611fe7565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680611d1557506001600160a01b03851660009081526016602052604090205460ff165b15611d1e575060005b60008115611ea9576001600160a01b03861660009081526018602052604090205460ff168015611d5057506000601154115b15611dde57611d756064611d6f6011548861212490919063ffffffff16565b90612137565b905060115460135482611d889190612568565b611d92919061257f565b60156000828254611da39190612555565b9091555050601154601254611db89083612568565b611dc2919061257f565b60146000828254611dd39190612555565b90915550611e8b9050565b6001600160a01b03871660009081526018602052604090205460ff168015611e0857506000600e54115b15611e8b57611e276064611d6f600e548861212490919063ffffffff16565b9050600e5460105482611e3a9190612568565b611e44919061257f565b60156000828254611e559190612555565b9091555050600e54600f54611e6a9083612568565b611e74919061257f565b60146000828254611e859190612555565b90915550505b8015611e9c57611e9c873083611ebd565b611ea681866125a1565b94505b611eb4878787611ebd565b50505050505050565b6001600160a01b038316611ee8578060026000828254611edd9190612555565b90915550611f5a9050565b6001600160a01b03831660009081526020819052604090205481811015611f3b5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a40565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611f7657600280548290039055611f95565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611fda91815260200190565b60405180910390a3505050565b306000908152602081905260408120549050600060155460145461200b9190612555565b9050600082158061201a575081155b1561202457505050565b6007548311156120345760075492505b4761203e84612143565b600061204a4783612303565b9050600061206785611d6f6015548561212490919063ffffffff16565b600060148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d80600081146120bf576040519150601f19603f3d011682016040523d82523d6000602084013e6120c4565b606091505b5050600c546040519195506001600160a01b0316904790600081818185875af1925050503d8060008114612114576040519150601f19603f3d011682016040523d82523d6000602084013e612119565b606091505b505050505050505050565b60006121308284612568565b9392505050565b6000612130828461257f565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612178576121786125b4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061221a91906125ca565b8160018151811061222d5761222d6125b4565b60200260200101906001600160a01b031690816001600160a01b031681525050612278307f0000000000000000000000000000000000000000000000000000000000000000846114b7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906122cd9085906000908690309042906004016125e7565b600060405180830381600087803b1580156122e757600080fd5b505af11580156122fb573d6000803e3d6000fd5b505050505050565b600061213082846125a1565b600060208083528351808285015260005b8181101561233c57858101830151858201604001528201612320565b506000604082860101526040601f19601f8301168501019250505092915050565b803580151581146111a557600080fd5b60006020828403121561237f57600080fd5b6121308261235d565b6001600160a01b03811681146114b457600080fd5b600080604083850312156123b057600080fd5b82356123bb81612388565b946020939093013593505050565b600080604083850312156123dc57600080fd5b82356123e781612388565b91506123f56020840161235d565b90509250929050565b60008060006060848603121561241357600080fd5b833561241e81612388565b9250602084013561242e81612388565b929592945050506040919091013590565b60006020828403121561245157600080fd5b813561213081612388565b6000806040838503121561246f57600080fd5b50508035926020909101359150565b60006020828403121561249057600080fd5b5035919050565b600080604083850312156124aa57600080fd5b82356124b581612388565b915060208301356124c581612388565b809150509250929050565b600181811c908216806124e457607f821691505b60208210810361250457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610a7b57610a7b61253f565b8082028115828204841417610a7b57610a7b61253f565b60008261259c57634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610a7b57610a7b61253f565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156125dc57600080fd5b815161213081612388565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156126375784516001600160a01b031683529383019391830191600101612612565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220c73ca6e5fba05fabb20f3bb8a12fbec14875c437b5f389ddedc14f21ac32656564736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103035760003560e01c80637361eda311610190578063bbd6d962116100dc578063cb3cd3f911610095578063dd62ed3e1161006f578063dd62ed3e14610904578063f043106a14610924578063f2fde38b14610944578063f99e0bf71461096457600080fd5b8063cb3cd3f914610895578063d3f2d9bd146108c5578063d910be0c146108e557600080fd5b8063bbd6d962146107ef578063c1cdddad14610805578063c2bf1b6914610825578063c3c884b414610845578063c3e5c04714610865578063c437c3961461087f57600080fd5b80639c83c37811610149578063a9059cbb11610123578063a9059cbb1461076f578063b1b591011461078f578063b2967e02146107af578063bb27b8b8146107cf57600080fd5b80639c83c378146107185780639e50e47c14610739578063a457c2d71461074f57600080fd5b80637361eda31461062e5780638bcea939146106675780638da5cb5b1461069b57806395087af9146106b9578063958c2e52146106cf57806395d89b411461070357600080fd5b80633c0946b71161024f57806353d6ece311610208578063656a0ff1116101e2578063656a0ff1146105ac57806367a7601c146105cd57806370a08231146105e3578063715018a61461061957600080fd5b806353d6ece314610560578063622bbb23146105765780636350d4001461059657600080fd5b80633c0946b7146104b85780633d508e0f146104ce5780633e2db054146104fe578063413f75051461051e57806352185cc8146105345780635348f9b21461054a57600080fd5b80631fbd1c92116102bc5780632b0cc3f2116102965780632b0cc3f21461042f578063313ce56714610467578063377c664314610483578063395093511461049857600080fd5b80631fbd1c92146103da578063232050f9146103fa57806323b872dd1461040f57600080fd5b806306fdde031461030f5780630886f8df1461033a578063095ea7b31461035c5780630f9cdeb71461038c5780630faeb408146103b057806318160ddd146103c557600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610984565b604051610331919061230f565b60405180910390f35b34801561034657600080fd5b5061035a61035536600461236d565b610a16565b005b34801561036857600080fd5b5061037c61037736600461239d565b610a67565b6040519015158152602001610331565b34801561039857600080fd5b506103a260115481565b604051908152602001610331565b3480156103bc57600080fd5b5061035a610a81565b3480156103d157600080fd5b506002546103a2565b3480156103e657600080fd5b5061035a6103f53660046123c9565b610ad3565b34801561040657600080fd5b5061037c610b28565b34801561041b57600080fd5b5061037c61042a3660046123fe565b610b65565b34801561043b57600080fd5b50600d5461044f906001600160a01b031681565b6040516001600160a01b039091168152602001610331565b34801561047357600080fd5b5060405160128152602001610331565b34801561048f57600080fd5b5061037c610b89565b3480156104a457600080fd5b5061037c6104b336600461239d565b610bc7565b3480156104c457600080fd5b506103a260125481565b3480156104da57600080fd5b5061037c6104e936600461243f565b60186020526000908152604090205460ff1681565b34801561050a57600080fd5b5061035a6105193660046123c9565b610be9565b34801561052a57600080fd5b506103a2600e5481565b34801561054057600080fd5b506103a260135481565b34801561055657600080fd5b506103a260145481565b34801561056c57600080fd5b506103a260075481565b34801561058257600080fd5b5061035a61059136600461245c565b610cb5565b3480156105a257600080fd5b506103a2600f5481565b3480156105b857600080fd5b5060055461037c90600160a81b900460ff1681565b3480156105d957600080fd5b506103a260155481565b3480156105ef57600080fd5b506103a26105fe36600461243f565b6001600160a01b031660009081526020819052604090205490565b34801561062557600080fd5b5061035a610d48565b34801561063a57600080fd5b5061037c61064936600461243f565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561067357600080fd5b5061044f7f0000000000000000000000007c77b4fc38accf27fee86c82e5f17affd42d929481565b3480156106a757600080fd5b506005546001600160a01b031661044f565b3480156106c557600080fd5b506103a260095481565b3480156106db57600080fd5b5061044f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561070f57600080fd5b50610324610d7e565b34801561072457600080fd5b50600d5461037c90600160a01b900460ff1681565b34801561074557600080fd5b506103a260105481565b34801561075b57600080fd5b5061037c61076a36600461239d565b610d8d565b34801561077b57600080fd5b5061037c61078a36600461239d565b610de4565b34801561079b57600080fd5b5061035a6107aa36600461247e565b610df2565b3480156107bb57600080fd5b5061035a6107ca36600461247e565b610eac565b3480156107db57600080fd5b5061035a6107ea3660046123c9565b610f65565b3480156107fb57600080fd5b506103a260065481565b34801561081157600080fd5b5061037c61082036600461247e565b610fee565b34801561083157600080fd5b5061037c61084036600461247e565b6111aa565b34801561085157600080fd5b5061035a61086036600461243f565b611250565b34801561087157600080fd5b5060085461037c9060ff1681565b34801561088b57600080fd5b506103a2600a5481565b3480156108a157600080fd5b5061037c6108b036600461243f565b60176020526000908152604090205460ff1681565b3480156108d157600080fd5b5061035a6108e036600461243f565b6112d7565b3480156108f157600080fd5b5060085461037c90610100900460ff1681565b34801561091057600080fd5b506103a261091f366004612497565b61135e565b34801561093057600080fd5b5061035a61093f36600461245c565b611389565b34801561095057600080fd5b5061035a61095f36600461243f565b61141c565b34801561097057600080fd5b50600c5461044f906001600160a01b031681565b606060038054610993906124d0565b80601f01602080910402602001604051908101604052809291908181526020018280546109bf906124d0565b8015610a0c5780601f106109e157610100808354040283529160200191610a0c565b820191906000526020600020905b8154815290600101906020018083116109ef57829003601f168201915b5050505050905090565b6005546001600160a01b03163314610a495760405162461bcd60e51b8152600401610a409061250a565b60405180910390fd5b60058054911515600160a81b0260ff60a81b19909216919091179055565b600033610a758185856114b7565b60019150505b92915050565b6005546001600160a01b03163314610aab5760405162461bcd60e51b8152600401610a409061250a565b600d805460ff60a01b1916600160a01b1790556005805460ff60a81b1916600160a81b179055565b6005546001600160a01b03163314610afd5760405162461bcd60e51b8152600401610a409061250a565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546000906001600160a01b03163314610b555760405162461bcd60e51b8152600401610a409061250a565b506008805460ff19169055600190565b600033610b738582856114c9565b610b7e85858561152f565b506001949350505050565b6005546000906001600160a01b03163314610bb65760405162461bcd60e51b8152600401610a409061250a565b506008805461ff0019169055600190565b600033610a75818585610bda838361135e565b610be49190612555565b6114b7565b6005546001600160a01b03163314610c135760405162461bcd60e51b8152600401610a409061250a565b7f0000000000000000000000007c77b4fc38accf27fee86c82e5f17affd42d92946001600160a01b0316826001600160a01b031603610ca75760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d206044820152692fb4b9a232bc2830b4b960b11b6064820152608401610a40565b610cb1828261158e565b5050565b6005546001600160a01b03163314610cdf5760405162461bcd60e51b8152600401610a409061250a565b600f8290556010819055610cf38183612555565b600e819055600c1015610cb15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a40565b6005546001600160a01b03163314610d725760405162461bcd60e51b8152600401610a409061250a565b610d7c60006115e2565b565b606060048054610993906124d0565b60003381610d9b828661135e565b905083811015610dd757604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610a40565b610b7e82868684036114b7565b600033610a7581858561152f565b6005546001600160a01b03163314610e1c5760405162461bcd60e51b8152600401610a409061250a565b6002811015610e865760405162461bcd60e51b815260206004820152603060248201527f43616e6e6f7420736574205f6d6178546f6b656e735065725472616e7366657260448201526f206c6f776572207468616e20302e322560801b6064820152608401610a40565b6103e8610e9260025490565b610e9c9083612568565b610ea6919061257f565b600a5550565b6005546001600160a01b03163314610ed65760405162461bcd60e51b8152600401610a409061250a565b6005811015610f3f5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574205f6d617857616c6c6574506572416464726573732060448201526e6c6f776572207468616e20302e352560881b6064820152608401610a40565b6103e8610f4b60025490565b610f559083612568565b610f5f919061257f565b60095550565b6005546001600160a01b03163314610f8f5760405162461bcd60e51b8152600401610a409061250a565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546000906001600160a01b0316331461101b5760405162461bcd60e51b8152600401610a409061250a565b620186a061102860025490565b611032919061257f565b82101561109f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a40565b620186a06110ac60025490565b6110b8906101f4612568565b6110c2919061257f565b82111561112e5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a40565b60075482111561119c5760405162461bcd60e51b815260206004820152603360248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152721b8817db585e14ddd85c189858dad31a5b5a5d606a1b6064820152608401610a40565b50600681905560015b919050565b6005546000906001600160a01b031633146111d75760405162461bcd60e51b8152600401610a409061250a565b6006548210156112475760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e6044820152740817db5a5b94ddd85c189858dad51c995cda1bdb19605a1b6064820152608401610a40565b50600755600190565b6005546001600160a01b0316331461127a5760405162461bcd60e51b8152600401610a409061250a565b600d546040516001600160a01b03918216918316907fb84ab223ec14c96484dc94cd1b5e9325788b491e5dd2718b54adce84eeede51190600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146113015760405162461bcd60e51b8152600401610a409061250a565b600c546040516001600160a01b03918216918316907f854264b92ce4ebf173b90dbb6d1c80cb903427f5a9ec01a9b6d0bb69f1a8b0ad90600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146113b35760405162461bcd60e51b8152600401610a409061250a565b601282905560138190556113c78183612555565b6011819055600c1015610cb15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a40565b6005546001600160a01b031633146114465760405162461bcd60e51b8152600401610a409061250a565b6001600160a01b0381166114ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a40565b6114b4816115e2565b50565b6114c48383836001611634565b505050565b60006114d5848461135e565b90506000198114611529578181101561151a57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a40565b61152984848484036000611634565b50505050565b6001600160a01b03831661155957604051634b637e8f60e11b815260006004820152602401610a40565b6001600160a01b0382166115835760405163ec442f0560e01b815260006004820152602401610a40565b6114c4838383611709565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03841661165e5760405163e602df0560e01b815260006004820152602401610a40565b6001600160a01b03831661168857604051634a1406b160e11b815260006004820152602401610a40565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561152957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516116fb91815260200190565b60405180910390a350505050565b8060000361171d576114c483836000611ebd565b60085460ff1615611be7576005546001600160a01b0384811691161480159061175457506005546001600160a01b03838116911614155b801561176857506001600160a01b03821615155b801561177f57506001600160a01b03821661dead14155b80156117955750600554600160a01b900460ff16155b15611be757600d54600160a01b900460ff1661182f576001600160a01b03831660009081526016602052604090205460ff16806117ea57506001600160a01b03821660009081526016602052604090205460ff165b61182f5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a40565b600854610100900460ff1615611979576005546001600160a01b0383811691161480159061188f57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156118cd57507f0000000000000000000000007c77b4fc38accf27fee86c82e5f17affd42d92946001600160a01b0316826001600160a01b031614155b1561197957326000908152600b602052604090205443116119665760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401610a40565b326000908152600b602052604090204390555b6001600160a01b03831660009081526018602052604090205460ff1680156119ba57506001600160a01b03821660009081526017602052604090205460ff16155b15611a9f57600a54811115611a305760405162461bcd60e51b815260206004820152603660248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152752fb6b0bc2a37b5b2b739a832b92a3930b739b332b91760511b6064820152608401610a40565b6009546001600160a01b038316600090815260208190526040902054611a569083612555565b1115611a9a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a40565b611be7565b6001600160a01b03821660009081526018602052604090205460ff168015611ae057506001600160a01b03831660009081526017602052604090205460ff16155b15611b5d57600a54811115611a9a5760405162461bcd60e51b815260206004820152603760248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f205f6d6178546f6b656e735065725472616e736665722e0000000000000000006064820152608401610a40565b6001600160a01b03821660009081526017602052604090205460ff16611be7576009546001600160a01b038316600090815260208190526040902054611ba39083612555565b1115611be75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a40565b3060009081526020819052604090205460065481108015908190611c145750600554600160a81b900460ff165b8015611c2a5750600554600160a01b900460ff16155b8015611c4f57506001600160a01b03851660009081526018602052604090205460ff16155b8015611c7457506001600160a01b03851660009081526016602052604090205460ff16155b8015611c9957506001600160a01b03841660009081526016602052604090205460ff16155b15611cc7576005805460ff60a01b1916600160a01b179055611cb9611fe7565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680611d1557506001600160a01b03851660009081526016602052604090205460ff165b15611d1e575060005b60008115611ea9576001600160a01b03861660009081526018602052604090205460ff168015611d5057506000601154115b15611dde57611d756064611d6f6011548861212490919063ffffffff16565b90612137565b905060115460135482611d889190612568565b611d92919061257f565b60156000828254611da39190612555565b9091555050601154601254611db89083612568565b611dc2919061257f565b60146000828254611dd39190612555565b90915550611e8b9050565b6001600160a01b03871660009081526018602052604090205460ff168015611e0857506000600e54115b15611e8b57611e276064611d6f600e548861212490919063ffffffff16565b9050600e5460105482611e3a9190612568565b611e44919061257f565b60156000828254611e559190612555565b9091555050600e54600f54611e6a9083612568565b611e74919061257f565b60146000828254611e859190612555565b90915550505b8015611e9c57611e9c873083611ebd565b611ea681866125a1565b94505b611eb4878787611ebd565b50505050505050565b6001600160a01b038316611ee8578060026000828254611edd9190612555565b90915550611f5a9050565b6001600160a01b03831660009081526020819052604090205481811015611f3b5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a40565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611f7657600280548290039055611f95565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611fda91815260200190565b60405180910390a3505050565b306000908152602081905260408120549050600060155460145461200b9190612555565b9050600082158061201a575081155b1561202457505050565b6007548311156120345760075492505b4761203e84612143565b600061204a4783612303565b9050600061206785611d6f6015548561212490919063ffffffff16565b600060148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d80600081146120bf576040519150601f19603f3d011682016040523d82523d6000602084013e6120c4565b606091505b5050600c546040519195506001600160a01b0316904790600081818185875af1925050503d8060008114612114576040519150601f19603f3d011682016040523d82523d6000602084013e612119565b606091505b505050505050505050565b60006121308284612568565b9392505050565b6000612130828461257f565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612178576121786125b4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061221a91906125ca565b8160018151811061222d5761222d6125b4565b60200260200101906001600160a01b031690816001600160a01b031681525050612278307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114b7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906122cd9085906000908690309042906004016125e7565b600060405180830381600087803b1580156122e757600080fd5b505af11580156122fb573d6000803e3d6000fd5b505050505050565b600061213082846125a1565b600060208083528351808285015260005b8181101561233c57858101830151858201604001528201612320565b506000604082860101526040601f19601f8301168501019250505092915050565b803580151581146111a557600080fd5b60006020828403121561237f57600080fd5b6121308261235d565b6001600160a01b03811681146114b457600080fd5b600080604083850312156123b057600080fd5b82356123bb81612388565b946020939093013593505050565b600080604083850312156123dc57600080fd5b82356123e781612388565b91506123f56020840161235d565b90509250929050565b60008060006060848603121561241357600080fd5b833561241e81612388565b9250602084013561242e81612388565b929592945050506040919091013590565b60006020828403121561245157600080fd5b813561213081612388565b6000806040838503121561246f57600080fd5b50508035926020909101359150565b60006020828403121561249057600080fd5b5035919050565b600080604083850312156124aa57600080fd5b82356124b581612388565b915060208301356124c581612388565b809150509250929050565b600181811c908216806124e457607f821691505b60208210810361250457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610a7b57610a7b61253f565b8082028115828204841417610a7b57610a7b61253f565b60008261259c57634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610a7b57610a7b61253f565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156125dc57600080fd5b815161213081612388565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156126375784516001600160a01b031683529383019391830191600101612612565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220c73ca6e5fba05fabb20f3bb8a12fbec14875c437b5f389ddedc14f21ac32656564736f6c63430008130033

Deployed Bytecode Sourcemap

26359:15269:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12829:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32909:111;;;;;;;;;;-1:-1:-1;32909:111:0;;;;;:::i;:::-;;:::i;:::-;;15122:190;;;;;;;;;;-1:-1:-1;15122:190:0;;;;;:::i;:::-;;:::i;:::-;;;1538:14:1;;1531:22;1513:41;;1501:2;1486:18;15122:190:0;1373:187:1;27278:32:0;;;;;;;;;;;;;;;;;;;1711:25:1;;;1699:2;1684:18;27278:32:0;1565:177:1;30244:123:0;;;;;;;;;;;;;:::i;13931:99::-;;;;;;;;;;-1:-1:-1;14010:12:0;;13931:99;;32644:147;;;;;;;;;;-1:-1:-1;32644:147:0;;;;;:::i;:::-;;:::i;30442:131::-;;;;;;;;;;;;;:::i;15890:249::-;;;;;;;;;;-1:-1:-1;15890:249:0;;;;;:::i;:::-;;:::i;27083:34::-;;;;;;;;;;-1:-1:-1;27083:34:0;;;;-1:-1:-1;;;;;27083:34:0;;;;;;-1:-1:-1;;;;;2692:32:1;;;2674:51;;2662:2;2647:18;27083:34:0;2528:203:1;13782:84:0;;;;;;;;;;-1:-1:-1;13782:84:0;;13856:2;2878:36:1;;2866:2;2851:18;13782:84:0;2736:184:1;30644:132:0;;;;;;;;;;;;;:::i;16548:238::-;;;;;;;;;;-1:-1:-1;16548:238:0;;;;;:::i;:::-;;:::i;27317:27::-;;;;;;;;;;;;;;;;27815:42;;;;;;;;;;-1:-1:-1;27815:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34494:265;;;;;;;;;;-1:-1:-1;34494:265:0;;;;;:::i;:::-;;:::i;27172:31::-;;;;;;;;;;;;;;;;27351:27;;;;;;;;;;;;;;;;27387:34;;;;;;;;;;;;;;;;26664:32;;;;;;;;;;;;;;;;33184:324;;;;;;;;;;-1:-1:-1;33184:324:0;;;;;:::i;:::-;;:::i;27210:26::-;;;;;;;;;;;;;;;;26576:39;;;;;;;;;;-1:-1:-1;26576:39:0;;;;-1:-1:-1;;;26576:39:0;;;;;;27428:34;;;;;;;;;;;;;;;;14093:118;;;;;;;;;;-1:-1:-1;14093:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14185:18:0;14158:7;14185:18;;;;;;;;;;;;14093:118;24990:103;;;;;;;;;;;;;:::i;35613:127::-;;;;;;;;;;-1:-1:-1;35613:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;35709:23:0;35685:4;35709:23;;;:14;:23;;;;;;;;;35613:127;26481:34;;;;;;;;;;;;;;;24339:87;;;;;;;;;;-1:-1:-1;24412:6:0;;-1:-1:-1;;;;;24412:6:0;24339:87;;26821:35;;;;;;;;;;;;;;;;26433:41;;;;;;;;;;;;;;;13039:95;;;;;;;;;;;;;:::i;27126:37::-;;;;;;;;;;-1:-1:-1;27126:37:0;;;;-1:-1:-1;;;27126:37:0;;;;;;27243:26;;;;;;;;;;;;;;;;17474:504;;;;;;;;;;-1:-1:-1;17474:504:0;;;;;:::i;:::-;;:::i;14416:182::-;;;;;;;;;;-1:-1:-1;14416:182:0;;;;;:::i;:::-;;:::i;31887:225::-;;;;;;;;;;-1:-1:-1;31887:225:0;;;;;:::i;:::-;;:::i;32237:221::-;;;;;;;;;;-1:-1:-1;32237:221:0;;;;;:::i;:::-;;:::i;34171:188::-;;;;;;;;;;-1:-1:-1;34171:188:0;;;;;:::i;:::-;;:::i;26622:35::-;;;;;;;;;;;;;;;;30784:621;;;;;;;;;;-1:-1:-1;30784:621:0;;;;;:::i;:::-;;:::i;31413:316::-;;;;;;;;;;-1:-1:-1;31413:316:0;;;;;:::i;:::-;;:::i;35398:207::-;;;;;;;;;;-1:-1:-1;35398:207:0;;;;;:::i;:::-;;:::i;26723:46::-;;;;;;;;;;-1:-1:-1;26723:46:0;;;;;;;;26863:36;;;;;;;;;;;;;;;;27606:51;;;;;;;;;;-1:-1:-1;27606:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;35041:223;;;;;;;;;;-1:-1:-1;35041:223:0;;;;;:::i;:::-;;:::i;26776:38::-;;;;;;;;;;-1:-1:-1;26776:38:0;;;;;;;;;;;14661:142;;;;;;;;;;-1:-1:-1;14661:142:0;;;;;:::i;:::-;;:::i;33673:331::-;;;;;;;;;;-1:-1:-1;33673:331:0;;;;;:::i;:::-;;:::i;25248:238::-;;;;;;;;;;-1:-1:-1;25248:238:0;;;;;:::i;:::-;;:::i;27042:34::-;;;;;;;;;;-1:-1:-1;27042:34:0;;;;-1:-1:-1;;;;;27042:34:0;;;12829:91;12874:13;12907:5;12900:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12829:91;:::o;32909:111::-;24412:6;;-1:-1:-1;;;;;24412:6:0;9998:10;24559:23;24551:68;;;;-1:-1:-1;;;24551:68:0;;;;;;;:::i;:::-;;;;;;;;;32983:19:::1;:29:::0;;;::::1;;-1:-1:-1::0;;;32983:29:0::1;-1:-1:-1::0;;;;32983:29:0;;::::1;::::0;;;::::1;::::0;;32909:111::o;15122:190::-;15195:4;9998:10;15251:31;9998:10;15267:7;15276:5;15251:8;:31::i;:::-;15300:4;15293:11;;;15122:190;;;;;:::o;30244:123::-;24412:6;;-1:-1:-1;;;;;24412:6:0;9998:10;24559:23;24551:68;;;;-1:-1:-1;;;24551:68:0;;;;;;;:::i;:::-;30298:17:::1;:24:::0;;-1:-1:-1;;;;30298:24:0::1;-1:-1:-1::0;;;30298:24:0::1;::::0;;30333:19:::1;:26:::0;;-1:-1:-1;;;;30333:26:0::1;-1:-1:-1::0;;;30333:26:0::1;::::0;;30244:123::o;32644:147::-;24412:6;;-1:-1:-1;;;;;24412:6:0;9998:10;24559:23;24551:68;;;;-1:-1:-1;;;24551:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32749:27:0;;;::::1;;::::0;;;:19:::1;:27;::::0;;;;:34;;-1:-1:-1;;32749:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32644:147::o;30442:131::-;24412:6;;30491:4;;-1:-1:-1;;;;;24412:6:0;9998:10;24559:23;24551:68;;;;-1:-1:-1;;;24551:68:0;;;;;;;:::i;:::-;-1:-1:-1;30508:27:0::1;:35:::0;;-1:-1:-1;;30508:35:0::1;::::0;;;30442:131;:::o;15890:249::-;15977:4;9998:10;16035:37;16051:4;9998:10;16066:5;16035:15;:37::i;:::-;16083:26;16093:4;16099:2;16103:5;16083:9;:26::i;:::-;-1:-1:-1;16127:4:0;;15890:249;-1:-1:-1;;;;15890:249:0:o;30644:132::-;24412:6;;30702:4;;-1:-1:-1;;;;;24412:6:0;9998:10;24559:23;24551:68;;;;-1:-1:-1;;;24551:68:0;;;;;;;:::i;:::-;-1:-1:-1;30719:19:0::1;:27:::0;;-1:-1:-1;;30719:27:0::1;::::0;;:19:::1;30644:132:::0;:::o;16548:238::-;16636:4;9998:10;16692:64;9998:10;16708:7;16745:10;16717:25;9998:10;16708:7;16717:9;:25::i;:::-;:38;;;;:::i;:::-;16692:8;:64::i;34494:265::-;24412:6;;-1:-1:-1;;;;;24412:6:0;9998:10;24559:23;24551:68;;;;-1:-1:-1;;;24551:68:0;;;;;;;:::i;:::-;34634:9:::1;-1:-1:-1::0;;;;;34626:17:0::1;:4;-1:-1:-1::0;;;;;34626:17:0::1;::::0;34604:109:::1;;;::::0;-1:-1:-1;;;34604:109:0;;5447:2:1;34604:109:0::1;::::0;::::1;5429:21:1::0;5486:2;5466:18;;;5459:30;5525:34;5505:18;;;5498:62;-1:-1:-1;;;5576:18:1;;;5569:40;5626:19;;34604:109:0::1;5245:406:1::0;34604:109:0::1;34726:25;34739:4;34745:5;34726:12;:25::i;:::-;34494:265:::0;;:::o;33184:324::-;24412:6;;-1:-1:-1;;;;;24412:6:0;9998:10;24559:23;24551:68;;;;-1:-1:-1;;;24551:68:0;;;;;;;:::i;:::-;33308:11:::1;:26:::0;;;33345:11:::1;:25:::0;;;33400::::1;33359:11:::0;33322:12;33400:25:::1;:::i;:::-;33381:16;:44:::0;;;33464:2:::1;-1:-1:-1::0;33444:22:0::1;33436:64;;;::::0;-1:-1:-1;;;33436:64:0;;5858:2:1;33436:64:0::1;::::0;::::1;5840:21:1::0;5897:2;5877:18;;;5870:30;5936:31;5916:18;;;5909:59;5985:18;;33436:64:0::1;5656:353:1::0;24990:103:0;24412:6;;-1:-1:-1;;;;;24412:6:0;9998:10;24559:23;24551:68;;;;-1:-1:-1;;;24551:68:0;;;;;;;:::i;:::-;25055:30:::1;25082:1;25055:18;:30::i;:::-;24990:103::o:0;13039:95::-;13086:13;13119:7;13112:14;;;;;:::i;17474:504::-;17569:4;9998:10;17569:4;17652:25;9998:10;17669:7;17652:9;:25::i;:::-;17625:52;;17711:17;17692:16;:36;17688:150;;;17752:74;;-1:-1:-1;;;17752:74:0;;-1:-1:-1;;;;;6234:32:1;;17752:74:0;;;6216:51:1;6283:18;;;6276:34;;;6326:18;;;6319:34;;;6189:18;;17752:74:0;6014:345:1;17688:150:0;17873:62;17882:5;17889:7;17917:17;17898:16;:36;17873:8;:62::i;14416:182::-;14485:4;9998:10;14541:27;9998:10;14558:2;14562:5;14541:9;:27::i;31887:225::-;24412:6;;-1:-1:-1;;;;;24412:6:0;9998:10;24559:23;24551:68;;;;-1:-1:-1;;;24551:68:0;;;;;;;:::i;:::-;31984:1:::1;31974:6;:11;;31966:72;;;::::0;-1:-1:-1;;;31966:72:0;;6566:2:1;31966:72:0::1;::::0;::::1;6548:21:1::0;6605:2;6585:18;;;6578:30;6644:34;6624:18;;;6617:62;-1:-1:-1;;;6695:18:1;;;6688:46;6751:19;;31966:72:0::1;6364:412:1::0;31966:72:0::1;32100:4;32083:13;14010:12:::0;;;13931:99;32083:13:::1;32074:22;::::0;:6;:22:::1;:::i;:::-;32073:31;;;;:::i;:::-;32049:21;:55:::0;-1:-1:-1;31887:225:0:o;32237:221::-;24412:6;;-1:-1:-1;;;;;24412:6:0;9998:10;24559:23;24551:68;;;;-1:-1:-1;;;24551:68:0;;;;;;;:::i;:::-;32332:1:::1;32322:6;:11;;32314:71;;;::::0;-1:-1:-1;;;32314:71:0;;7378:2:1;32314:71:0::1;::::0;::::1;7360:21:1::0;7417:2;7397:18;;;7390:30;7456:34;7436:18;;;7429:62;-1:-1:-1;;;7507:18:1;;;7500:45;7562:19;;32314:71:0::1;7176:411:1::0;32314:71:0::1;32446:4;32429:13;14010:12:::0;;;13931:99;32429:13:::1;32420:22;::::0;:6;:22:::1;:::i;:::-;32419:31;;;;:::i;:::-;32396:20;:54:::0;-1:-1:-1;32237:221:0:o;34171:188::-;24412:6;;-1:-1:-1;;;;;24412:6:0;9998:10;24559:23;24551:68;;;;-1:-1:-1;;;24551:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34259:23:0;::::1;;::::0;;;:14:::1;:23;::::0;;;;;;;;:34;;-1:-1:-1;;34259:34:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34309:42;;1513:41:1;;;34309:42:0::1;::::0;1486:18:1;34309:42:0::1;;;;;;;34171:188:::0;;:::o;30784:621::-;24412:6;;30879:4;;-1:-1:-1;;;;;24412:6:0;9998:10;24559:23;24551:68;;;;-1:-1:-1;;;24551:68:0;;;;;;;:::i;:::-;30947:6:::1;30931:13;14010:12:::0;;;13931:99;30931:13:::1;:22;;;;:::i;:::-;30918:9;:35;;30896:138;;;::::0;-1:-1:-1;;;30896:138:0;;7794:2:1;30896:138:0::1;::::0;::::1;7776:21:1::0;7833:2;7813:18;;;7806:30;7872:34;7852:18;;;7845:62;-1:-1:-1;;;7923:18:1;;;7916:51;7984:19;;30896:138:0::1;7592:417:1::0;30896:138:0::1;31104:6;31087:13;14010:12:::0;;;13931:99;31087:13:::1;31081:19;::::0;:3:::1;:19;:::i;:::-;31080:30;;;;:::i;:::-;31067:9;:43;;31045:145;;;::::0;-1:-1:-1;;;31045:145:0;;8216:2:1;31045:145:0::1;::::0;::::1;8198:21:1::0;8255:2;8235:18;;;8228:30;8294:34;8274:18;;;8267:62;-1:-1:-1;;;8345:18:1;;;8338:50;8405:19;;31045:145:0::1;8014:416:1::0;31045:145:0::1;31236:17;;31223:9;:30;;31201:131;;;::::0;-1:-1:-1;;;31201:131:0;;8637:2:1;31201:131:0::1;::::0;::::1;8619:21:1::0;8676:2;8656:18;;;8649:30;8715:34;8695:18;;;8688:62;-1:-1:-1;;;8766:18:1;;;8759:49;8825:19;;31201:131:0::1;8435:415:1::0;31201:131:0::1;-1:-1:-1::0;31343:20:0::1;:32:::0;;;31393:4:::1;24630:1;30784:621:::0;;;:::o;31413:316::-;24412:6;;31506:4;;-1:-1:-1;;;;;24412:6:0;9998:10;24559:23;24551:68;;;;-1:-1:-1;;;24551:68:0;;;;;;;:::i;:::-;31558:20:::1;;31545:9;:33;;31523:136;;;::::0;-1:-1:-1;;;31523:136:0;;9057:2:1;31523:136:0::1;::::0;::::1;9039:21:1::0;9096:2;9076:18;;;9069:30;9135:34;9115:18;;;9108:62;-1:-1:-1;;;9186:18:1;;;9179:51;9247:19;;31523:136:0::1;8855:417:1::0;31523:136:0::1;-1:-1:-1::0;31670:17:0::1;:29:::0;31717:4:::1;::::0;31413:316::o;35398:207::-;24412:6;;-1:-1:-1;;;;;24412:6:0;9998:10;24559:23;24551:68;;;;-1:-1:-1;;;24551:68:0;;;;;;;:::i;:::-;35529:19:::1;::::0;35485:64:::1;::::0;-1:-1:-1;;;;;35529:19:0;;::::1;::::0;35485:64;::::1;::::0;::::1;::::0;35529:19:::1;::::0;35485:64:::1;35560:19;:37:::0;;-1:-1:-1;;;;;;35560:37:0::1;-1:-1:-1::0;;;;;35560:37:0;;;::::1;::::0;;;::::1;::::0;;35398:207::o;35041:223::-;24412:6;;-1:-1:-1;;;;;24412:6:0;9998:10;24559:23;24551:68;;;;-1:-1:-1;;;24551:68:0;;;;;;;:::i;:::-;35188:19:::1;::::0;35144:64:::1;::::0;-1:-1:-1;;;;;35188:19:0;;::::1;::::0;35144:64;::::1;::::0;::::1;::::0;35188:19:::1;::::0;35144:64:::1;35219:19;:37:::0;;-1:-1:-1;;;;;;35219:37:0::1;-1:-1:-1::0;;;;;35219:37:0;;;::::1;::::0;;;::::1;::::0;;35041:223::o;14661:142::-;-1:-1:-1;;;;;14768:18:0;;;14741:7;14768:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14661:142::o;33673:331::-;24412:6;;-1:-1:-1;;;;;24412:6:0;9998:10;24559:23;24551:68;;;;-1:-1:-1;;;24551:68:0;;;;;;;:::i;:::-;33798:12:::1;:27:::0;;;33836:12:::1;:26:::0;;;33893:27:::1;33851:11:::0;33813:12;33893:27:::1;:::i;:::-;33873:17;:47:::0;;;33960:2:::1;-1:-1:-1::0;33939:23:0::1;33931:65;;;::::0;-1:-1:-1;;;33931:65:0;;5858:2:1;33931:65:0::1;::::0;::::1;5840:21:1::0;5897:2;5877:18;;;5870:30;5936:31;5916:18;;;5909:59;5985:18;;33931:65:0::1;5656:353:1::0;25248:238:0;24412:6;;-1:-1:-1;;;;;24412:6:0;9998:10;24559:23;24551:68;;;;-1:-1:-1;;;24551:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25351:22:0;::::1;25329:110;;;::::0;-1:-1:-1;;;25329:110:0;;9479:2:1;25329:110:0::1;::::0;::::1;9461:21:1::0;9518:2;9498:18;;;9491:30;9557:34;9537:18;;;9530:62;-1:-1:-1;;;9608:18:1;;;9601:36;9654:19;;25329:110:0::1;9277:402:1::0;25329:110:0::1;25450:28;25469:8;25450:18;:28::i;:::-;25248:238:::0;:::o;21671:138::-;21764:37;21773:5;21780:7;21789:5;21796:4;21764:8;:37::i;:::-;21671:138;;;:::o;23408:487::-;23508:24;23535:25;23545:5;23552:7;23535:9;:25::i;:::-;23508:52;;-1:-1:-1;;23575:16:0;:37;23571:317;;23652:5;23633:16;:24;23629:132;;;23685:60;;-1:-1:-1;;;23685:60:0;;-1:-1:-1;;;;;6234:32:1;;23685:60:0;;;6216:51:1;6283:18;;;6276:34;;;6326:18;;;6319:34;;;6189:18;;23685:60:0;6014:345:1;23629:132:0;23804:57;23813:5;23820:7;23848:5;23829:16;:24;23855:5;23804:8;:57::i;:::-;23497:398;23408:487;;;:::o;18363:308::-;-1:-1:-1;;;;;18447:18:0;;18443:88;;18489:30;;-1:-1:-1;;;18489:30:0;;18516:1;18489:30;;;2674:51:1;2647:18;;18489:30:0;2528:203:1;18443:88:0;-1:-1:-1;;;;;18545:16:0;;18541:88;;18585:32;;-1:-1:-1;;;18585:32:0;;18614:1;18585:32;;;2674:51:1;2647:18;;18585:32:0;2528:203:1;18541:88:0;18639:24;18647:4;18653:2;18657:5;18639:7;:24::i;34767:140::-;-1:-1:-1;;;;;34834:16:0;;;;;;:10;:16;;;;;;:24;;-1:-1:-1;;34834:24:0;;;;;;;;;;34876:23;;34834:24;;:16;34876:23;;;34767:140;;:::o;25646:191::-;25739:6;;;-1:-1:-1;;;;;25756:17:0;;;-1:-1:-1;;;;;;25756:17:0;;;;;;;25789:40;;25739:6;;;25756:17;25739:6;;25789:40;;25720:16;;25789:40;25709:128;25646:191;:::o;22676:443::-;-1:-1:-1;;;;;22789:19:0;;22785:91;;22832:32;;-1:-1:-1;;;22832:32:0;;22861:1;22832:32;;;2674:51:1;2647:18;;22832:32:0;2528:203:1;22785:91:0;-1:-1:-1;;;;;22890:21:0;;22886:92;;22935:31;;-1:-1:-1;;;22935:31:0;;22963:1;22935:31;;;2674:51:1;2647:18;;22935:31:0;2528:203:1;22886:92:0;-1:-1:-1;;;;;22988:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;23034:78;;;;23085:7;-1:-1:-1;;;;;23069:31:0;23078:5;-1:-1:-1;;;;;23069:31:0;;23094:5;23069:31;;;;1711:25:1;;1699:2;1684:18;;1565:177;23069:31:0;;;;;;;;22676:443;;;;:::o;35748:4274::-;35874:6;35884:1;35874:11;35870:91;;35902:26;35916:4;35922:2;35926:1;35902:13;:26::i;35870:91::-;35977:27;;;;35973:2346;;;24412:6;;-1:-1:-1;;;;;36043:15:0;;;24412:6;;36043:15;;;;:49;;-1:-1:-1;24412:6:0;;-1:-1:-1;;;;;36079:13:0;;;24412:6;;36079:13;;36043:49;:86;;;;-1:-1:-1;;;;;;36113:16:0;;;;36043:86;:128;;;;-1:-1:-1;;;;;;36150:21:0;;36164:6;36150:21;;36043:128;:165;;;;-1:-1:-1;36193:15:0;;-1:-1:-1;;;36193:15:0;;;;36192:16;36043:165;36021:2287;;;36248:17;;-1:-1:-1;;;36248:17:0;;;;36243:217;;-1:-1:-1;;;;;36324:20:0;;;;;;:14;:20;;;;;;;;;:42;;-1:-1:-1;;;;;;36348:18:0;;;;;;:14;:18;;;;;;;;36324:42;36290:150;;;;-1:-1:-1;;;36290:150:0;;9886:2:1;36290:150:0;;;9868:21:1;9925:2;9905:18;;;9898:30;-1:-1:-1;;;9944:18:1;;;9937:52;10006:18;;36290:150:0;9684:346:1;36290:150:0;36616:19;;;;;;;36612:608;;;24412:6;;-1:-1:-1;;;;;36690:13:0;;;24412:6;;36690:13;;;;:68;;;36746:11;-1:-1:-1;;;;;36732:26:0;:2;-1:-1:-1;;;;;36732:26:0;;;36690:68;:121;;;;;36801:9;-1:-1:-1;;;;;36787:24:0;:2;-1:-1:-1;;;;;36787:24:0;;;36690:121;36660:541;;;36918:9;36900:28;;;;:17;:28;;;;;;36964:12;-1:-1:-1;36862:245:0;;;;-1:-1:-1;;;36862:245:0;;10237:2:1;36862:245:0;;;10219:21:1;10276:2;10256:18;;;10249:30;10315:34;10295:18;;;10288:62;10386:34;10366:18;;;10359:62;-1:-1:-1;;;10437:19:1;;;10430:38;10485:19;;36862:245:0;10035:475:1;36862:245:0;37152:9;37134:28;;;;:17;:28;;;;;37165:12;37134:43;;36660:541;-1:-1:-1;;;;;37272:16:0;;;;;;:10;:16;;;;;;;;:44;;;;-1:-1:-1;;;;;;37293:23:0;;;;;;:19;:23;;;;;;;;37292:24;37272:44;37268:1025;;;37385:21;;37375:6;:31;;37341:171;;;;-1:-1:-1;;;37341:171:0;;10717:2:1;37341:171:0;;;10699:21:1;10756:2;10736:18;;;10729:30;10795:34;10775:18;;;10768:62;-1:-1:-1;;;10846:18:1;;;10839:52;10908:19;;37341:171:0;10515:418:1;37341:171:0;37595:20;;-1:-1:-1;;;;;14185:18:0;;14158:7;14185:18;;;;;;;;;;;37569:22;;:6;:22;:::i;:::-;:46;;37535:151;;;;-1:-1:-1;;;37535:151:0;;11140:2:1;37535:151:0;;;11122:21:1;11179:2;11159:18;;;11152:30;-1:-1:-1;;;11198:18:1;;;11191:49;11257:18;;37535:151:0;10938:343:1;37535:151:0;37268:1025;;;-1:-1:-1;;;;;37784:14:0;;;;;;:10;:14;;;;;;;;:44;;;;-1:-1:-1;;;;;;37803:25:0;;;;;;:19;:25;;;;;;;;37802:26;37784:44;37758:535;;;37915:21;;37905:6;:31;;37871:172;;;;-1:-1:-1;;;37871:172:0;;11488:2:1;37871:172:0;;;11470:21:1;11527:2;11507:18;;;11500:30;11566:34;11546:18;;;11539:62;11637:25;11617:18;;;11610:53;11680:19;;37871:172:0;11286:419:1;37758:535:0;-1:-1:-1;;;;;38074:23:0;;;;;;:19;:23;;;;;;;;38069:224;;38182:20;;-1:-1:-1;;;;;14185:18:0;;14158:7;14185:18;;;;;;;;;;;38156:22;;:6;:22;:::i;:::-;:46;;38122:151;;;;-1:-1:-1;;;38122:151:0;;11140:2:1;38122:151:0;;;11122:21:1;11179:2;11159:18;;;11152:30;-1:-1:-1;;;11198:18:1;;;11191:49;11257:18;;38122:151:0;10938:343:1;38122:151:0;38380:4;38331:28;14185:18;;;;;;;;;;;38438:20;;38414:44;;;;;;;38489:43;;-1:-1:-1;38513:19:0;;-1:-1:-1;;;38513:19:0;;;;38489:43;:76;;;;-1:-1:-1;38550:15:0;;-1:-1:-1;;;38550:15:0;;;;38549:16;38489:76;:110;;;;-1:-1:-1;;;;;;38583:16:0;;;;;;:10;:16;;;;;;;;38582:17;38489:110;:148;;;;-1:-1:-1;;;;;;38617:20:0;;;;;;:14;:20;;;;;;;;38616:21;38489:148;:184;;;;-1:-1:-1;;;;;;38655:18:0;;;;;;:14;:18;;;;;;;;38654:19;38489:184;38471:337;;;38700:15;:22;;-1:-1:-1;;;;38700:22:0;-1:-1:-1;;;38700:22:0;;;38739:17;:15;:17::i;:::-;38773:15;:23;;-1:-1:-1;;;;38773:23:0;;;38471:337;38836:15;;-1:-1:-1;;;;;38953:20:0;;38820:12;38953:20;;;:14;:20;;;;;;38836:15;-1:-1:-1;;;38836:15:0;;;;;38835:16;;38953:20;;:42;;-1:-1:-1;;;;;;38977:18:0;;;;;;:14;:18;;;;;;;;38953:42;38949:90;;;-1:-1:-1;39022:5:0;38949:90;39051:12;39156:7;39152:819;;;-1:-1:-1;;;;;39208:14:0;;;;;;:10;:14;;;;;;;;:39;;;;;39246:1;39226:17;;:21;39208:39;39204:620;;;39275:38;39309:3;39275:29;39286:17;;39275:6;:10;;:29;;;;:::i;:::-;:33;;:38::i;:::-;39268:45;;39379:17;;39363:12;;39356:4;:19;;;;:::i;:::-;39355:41;;;;:::i;:::-;39332:19;;:64;;;;;;;:::i;:::-;;;;-1:-1:-1;;39462:17:0;;39446:12;;39439:19;;:4;:19;:::i;:::-;39438:41;;;;:::i;:::-;39415:19;;:64;;;;;;;:::i;:::-;;;;-1:-1:-1;39204:620:0;;-1:-1:-1;39204:620:0;;-1:-1:-1;;;;;39541:16:0;;;;;;:10;:16;;;;;;;;:40;;;;;39580:1;39561:16;;:20;39541:40;39537:287;;;39609:37;39642:3;39609:28;39620:16;;39609:6;:10;;:28;;;;:::i;:37::-;39602:44;;39711:16;;39696:11;;39689:4;:18;;;;:::i;:::-;39688:39;;;;:::i;:::-;39665:19;;:62;;;;;;;:::i;:::-;;;;-1:-1:-1;;39792:16:0;;39777:11;;39770:18;;:4;:18;:::i;:::-;39769:39;;;;:::i;:::-;39746:19;;:62;;;;;;;:::i;:::-;;;;-1:-1:-1;;39537:287:0;39844:8;;39840:89;;39873:40;39887:4;39901;39908;39873:13;:40::i;:::-;39945:14;39955:4;39945:14;;:::i;:::-;;;39152:819;39983:31;39997:4;40003:2;40007:6;39983:13;:31::i;:::-;35859:4163;;;;35748:4274;;;:::o;18987:1135::-;-1:-1:-1;;;;;19077:18:0;;19073:552;;19231:5;19215:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;19073:552:0;;-1:-1:-1;19073:552:0;;-1:-1:-1;;;;;19291:15:0;;19269:19;19291:15;;;;;;;;;;;19325:19;;;19321:117;;;19372:50;;-1:-1:-1;;;19372:50:0;;-1:-1:-1;;;;;6234:32:1;;19372:50:0;;;6216:51:1;6283:18;;;6276:34;;;6326:18;;;6319:34;;;6189:18;;19372:50:0;6014:345:1;19321:117:0;-1:-1:-1;;;;;19561:15:0;;:9;:15;;;;;;;;;;19579:19;;;;19561:37;;19073:552;-1:-1:-1;;;;;19641:16:0;;19637:435;;19807:12;:21;;;;;;;19637:435;;;-1:-1:-1;;;;;20023:13:0;;:9;:13;;;;;;;;;;:22;;;;;;19637:435;20104:2;-1:-1:-1;;;;;20089:25:0;20098:4;-1:-1:-1;;;;;20089:25:0;;20108:5;20089:25;;;;1711::1;;1699:2;1684:18;;1565:177;20089:25:0;;;;;;;;18987:1135;;;:::o;40633:992::-;40723:4;40679:23;14185:18;;;;;;;;;;;40679:50;;40740:25;40790:19;;40768;;:41;;;;:::i;:::-;40740:69;-1:-1:-1;40820:12:0;40849:20;;;:46;;-1:-1:-1;40873:22:0;;40849:46;40845:85;;;40912:7;;;40633:992::o;40845:85::-;40964:17;;40946:15;:35;40942:103;;;41016:17;;40998:35;;40942:103;41085:21;41119:51;41154:15;41119:34;:51::i;:::-;41183:18;41204:44;:21;41230:17;41204:25;:44::i;:::-;41183:65;;41261:21;41285:58;41325:17;41285:35;41300:19;;41285:10;:14;;:35;;;;:::i;:58::-;41378:1;41356:19;:23;;;41390:19;:23;;;41448:19;;41440:59;;41261:82;;-1:-1:-1;;;;;;41448:19:0;;41261:82;;41440:59;41378:1;41440:59;41261:82;41448:19;41440:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;41534:19:0;;41526:91;;41426:73;;-1:-1:-1;;;;;;41534:19:0;;41581:21;;41526:91;;;;41581:21;41534:19;41526:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;40633:992:0:o;3385:98::-;3443:7;3470:5;3474:1;3470;:5;:::i;:::-;3463:12;3385:98;-1:-1:-1;;;3385:98:0:o;3784:::-;3842:7;3869:5;3873:1;3869;:5;:::i;40030:595::-;40198:16;;;40212:1;40198:16;;;;;;;;40174:21;;40198:16;;;;;;;;;;-1:-1:-1;40198:16:0;40174:40;;40243:4;40225;40230:1;40225:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;40225:23:0;;;-1:-1:-1;;;;;40225:23:0;;;;;40269:11;-1:-1:-1;;;;;40269:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40259:4;40264:1;40259:7;;;;;;;;:::i;:::-;;;;;;:28;-1:-1:-1;;;;;40259:28:0;;;-1:-1:-1;;;;;40259:28:0;;;;;40300:58;40317:4;40332:11;40346;40300:8;:58::i;:::-;40397:220;;-1:-1:-1;;;40397:220:0;;-1:-1:-1;;;;;40397:11:0;:62;;;;:220;;40474:11;;40500:1;;40544:4;;40571;;40591:15;;40397:220;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40103:522;40030:595;:::o;3028:98::-;3086:7;3113:5;3117:1;3113;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:160::-;632:20;;688:13;;681:21;671:32;;661:60;;717:1;714;707:12;732:180;788:6;841:2;829:9;820:7;816:23;812:32;809:52;;;857:1;854;847:12;809:52;880:26;896:9;880:26;:::i;917:131::-;-1:-1:-1;;;;;992:31:1;;982:42;;972:70;;1038:1;1035;1028:12;1053:315;1121:6;1129;1182:2;1170:9;1161:7;1157:23;1153:32;1150:52;;;1198:1;1195;1188:12;1150:52;1237:9;1224:23;1256:31;1281:5;1256:31;:::i;:::-;1306:5;1358:2;1343:18;;;;1330:32;;-1:-1:-1;;;1053:315:1:o;1747:::-;1812:6;1820;1873:2;1861:9;1852:7;1848:23;1844:32;1841:52;;;1889:1;1886;1879:12;1841:52;1928:9;1915:23;1947:31;1972:5;1947:31;:::i;:::-;1997:5;-1:-1:-1;2021:35:1;2052:2;2037:18;;2021:35;:::i;:::-;2011:45;;1747:315;;;;;:::o;2067:456::-;2144:6;2152;2160;2213:2;2201:9;2192:7;2188:23;2184:32;2181:52;;;2229:1;2226;2219:12;2181:52;2268:9;2255:23;2287:31;2312:5;2287:31;:::i;:::-;2337:5;-1:-1:-1;2394:2:1;2379:18;;2366:32;2407:33;2366:32;2407:33;:::i;:::-;2067:456;;2459:7;;-1:-1:-1;;;2513:2:1;2498:18;;;;2485:32;;2067:456::o;2925:247::-;2984:6;3037:2;3025:9;3016:7;3012:23;3008:32;3005:52;;;3053:1;3050;3043:12;3005:52;3092:9;3079:23;3111:31;3136:5;3111:31;:::i;3177:248::-;3245:6;3253;3306:2;3294:9;3285:7;3281:23;3277:32;3274:52;;;3322:1;3319;3312:12;3274:52;-1:-1:-1;;3345:23:1;;;3415:2;3400:18;;;3387:32;;-1:-1:-1;3177:248:1:o;3659:180::-;3718:6;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;-1:-1:-1;3810:23:1;;3659:180;-1:-1:-1;3659:180:1:o;3844:388::-;3912:6;3920;3973:2;3961:9;3952:7;3948:23;3944:32;3941:52;;;3989:1;3986;3979:12;3941:52;4028:9;4015:23;4047:31;4072:5;4047:31;:::i;:::-;4097:5;-1:-1:-1;4154:2:1;4139:18;;4126:32;4167:33;4126:32;4167:33;:::i;:::-;4219:7;4209:17;;;3844:388;;;;;:::o;4237:380::-;4316:1;4312:12;;;;4359;;;4380:61;;4434:4;4426:6;4422:17;4412:27;;4380:61;4487:2;4479:6;4476:14;4456:18;4453:38;4450:161;;4533:10;4528:3;4524:20;4521:1;4514:31;4568:4;4565:1;4558:15;4596:4;4593:1;4586:15;4450:161;;4237:380;;;:::o;4622:356::-;4824:2;4806:21;;;4843:18;;;4836:30;4902:34;4897:2;4882:18;;4875:62;4969:2;4954:18;;4622:356::o;4983:127::-;5044:10;5039:3;5035:20;5032:1;5025:31;5075:4;5072:1;5065:15;5099:4;5096:1;5089:15;5115:125;5180:9;;;5201:10;;;5198:36;;;5214:18;;:::i;6781:168::-;6854:9;;;6885;;6902:15;;;6896:22;;6882:37;6872:71;;6923:18;;:::i;6954:217::-;6994:1;7020;7010:132;;7064:10;7059:3;7055:20;7052:1;7045:31;7099:4;7096:1;7089:15;7127:4;7124:1;7117:15;7010:132;-1:-1:-1;7156:9:1;;6954:217::o;11710:128::-;11777:9;;;11798:11;;;11795:37;;;11812:18;;:::i;12185:127::-;12246:10;12241:3;12237:20;12234:1;12227:31;12277:4;12274:1;12267:15;12301:4;12298:1;12291:15;12317:251;12387:6;12440:2;12428:9;12419:7;12415:23;12411:32;12408:52;;;12456:1;12453;12446:12;12408:52;12488:9;12482:16;12507:31;12532:5;12507:31;:::i;12573:980::-;12835:4;12883:3;12872:9;12868:19;12914:6;12903:9;12896:25;12940:2;12978:6;12973:2;12962:9;12958:18;12951:34;13021:3;13016:2;13005:9;13001:18;12994:31;13045:6;13080;13074:13;13111:6;13103;13096:22;13149:3;13138:9;13134:19;13127:26;;13188:2;13180:6;13176:15;13162:29;;13209:1;13219:195;13233:6;13230:1;13227:13;13219:195;;;13298:13;;-1:-1:-1;;;;;13294:39:1;13282:52;;13389:15;;;;13354:12;;;;13330:1;13248:9;13219:195;;;-1:-1:-1;;;;;;;13470:32:1;;;;13465:2;13450:18;;13443:60;-1:-1:-1;;;13534:3:1;13519:19;13512:35;13431:3;12573:980;-1:-1:-1;;;12573:980:1:o

Swarm Source

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