ETH Price: $2,961.46 (-5.10%)
Gas: 8 Gwei

Token

Kermit The Frog (KERMIT)
 

Overview

Max Total Supply

1,000,000,000 KERMIT

Holders

418

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.108348713629348533 KERMIT

Value
$0.00
0xee188cfda906c3a91b157828c6546a4d2caa4e7f
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:
KERMIT

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-07
*/

/*
 * SPDX-License-Identifier: MIT
 * https://KermitTheFrog.lol
 * https://t.me/KermitFrog_eth
 * https://twitter.com/KermitFrog_eth
*/

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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 IDexFactory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

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

    IDexRouter private immutable dexRouter;
    address public immutable dexPair;

    // Swapback
    bool private swapping;

    bool private swapbackEnabled = false;
    uint256 private swapBackValueMin;
    uint256 private swapBackValueMax;

    //Anti-whale
    bool private limitsInEffect = true;
    bool private transferDelayEnabled = true;
    bool private delayOn = true;
    uint256 private maxWallet;
    uint256 private maxTx;
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    mapping(address => bool) private _isDelayExempt;

    bool public kermitLive = false;

    // Fee receivers
    address private mktReceiver;
    address private devReceiver;

    uint256 private totalBuyFee;
    uint256 private buyMktFee;
    uint256 private buyDevFee;

    uint256 private totalSellFee;
    uint256 private sellMktFee;
    uint256 private sellDevFee;

    uint256 private tokensForMarketing;
    uint256 private tokensForDev;

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

    // exlcude from fees and max transaction amount
    mapping(address => bool) private isFeeExempt;
    mapping(address => bool) private isTxLimitExempt;
    mapping(address => bool) private automatedMarketMakerPairs;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount

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

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeFromLimits(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event TradingEnabled(uint256 indexed timestamp);
    event LimitsRemoved(uint256 indexed timestamp);
    event DisabledTransferDelay(uint256 indexed timestamp);

    event SwapbackSettingsUpdated(
        bool enabled,
        uint256 swapBackValueMin,
        uint256 swapBackValueMax
    );
    event MaxTxUpdated(uint256 maxTx);
    event MaxWalletUpdated(uint256 maxWallet);

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

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

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

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

    event BuyFeeUpdated(
        uint256 totalBuyFee,
        uint256 buyMktFee,
        uint256 buyDevFee
    );

    event SellFeeUpdated(
        uint256 totalSellFee,
        uint256 sellMktFee,
        uint256 sellDevFee
    );

    constructor() ERC20("Kermit The Frog", "KERMIT") {
        IDexRouter _dexRouter = IDexRouter(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_dexRouter), true);
        dexRouter = _dexRouter;

        dexPair = IDexFactory(_dexRouter.factory()).createPair(
            address(this),
            _dexRouter.WETH()
        );
        excludeFromMaxTransaction(address(dexPair), true);
        _setAutomatedMarketMakerPair(address(dexPair), true);

        uint256 _buyMktFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMktFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1_000_000_000 * 10 ** decimals();

        maxTx = (totalSupply * 10) / 1000;
        maxWallet = (totalSupply * 10) / 1000;

        swapBackValueMin = (totalSupply * 1) / 1000;
        swapBackValueMax = (totalSupply * 2) / 100;

        buyMktFee = _buyMktFee;
        buyDevFee = _buyDevFee;
        totalBuyFee = buyMktFee + buyDevFee;

        sellMktFee = _sellMktFee;
        sellDevFee = _sellDevFee;
        totalSellFee = sellMktFee + sellDevFee;

        mktReceiver = address(0x63a6F325Ac6Ba9c4a1b0EFA6D4EA1e6db33AAAdE);
        devReceiver = address(msg.sender);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(msg.sender, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(mktReceiver, true);

        excludeFromMaxTransaction(msg.sender, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(mktReceiver, true);

        transferOwnership(msg.sender);

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

    /**
     * @notice  Information about the swapback settings
     * @return  _swapbackEnabled  if swapback is enabled
     * @return  _swapBackValueMin  the minimum amount of tokens in the contract balance to trigger swapback
     * @return  _swapBackValueMax  the maximum amount of tokens in the contract balance to trigger swapback
     */
    function swapbackInfoKermit()
        external
        view
        returns (
            bool _swapbackEnabled,
            uint256 _swapBackValueMin,
            uint256 _swapBackValueMax
        )
    {
        _swapbackEnabled = swapbackEnabled;
        _swapBackValueMin = swapBackValueMin;
        _swapBackValueMax = swapBackValueMax;
    }

    /**
     * @notice  Information about the anti whale parameters
     * @return  _limitsInEffect  if the wallet limits are in effect
     * @return  _transferDelayEnabled  if the transfer delay is enabled
     * @return  _maxWallet  The maximum amount of tokens that can be held by a wallet
     * @return  _maxTx  The maximum amount of tokens that can be bought or sold in a single transaction
     */
    function limitsInfoKermit()
        external
        view
        returns (
            bool _limitsInEffect,
            bool _transferDelayEnabled,
            uint256 _maxWallet,
            uint256 _maxTx
        )
    {
        _limitsInEffect = limitsInEffect;
        _transferDelayEnabled = transferDelayEnabled;
        _maxWallet = maxWallet;
        _maxTx = maxTx;
    }

    /**
     * @notice The wallets that receive the collected fees
     * @return _mktReceiver The wallet that receives the marketing fees
     * @return _devReceiver The wallet that receives the dev fees
     */
    function feeWalletsKermit()
        external
        view
        returns (
            address _mktReceiver,
            address _devReceiver
        )
    {
        return (mktReceiver, devReceiver);
    }

    /**
     * @notice Fees for buys, sells, and transfers
     * @return _totalBuyFee The total fee for buys
     * @return _buyMktFee The fee for buys that gets sent to marketing
     * @return _buyDevFee The fee for buys that gets sent to dev
     * @return _totalSellFee The total fee for sells
     * @return _sellMktFee The fee for sells that gets sent to marketing
     * @return _sellDevFee The fee for sells that gets sent to dev
     */
    function feeInfoKermit()
        external
        view
        returns (
            uint256 _totalBuyFee,
            uint256 _buyMktFee,
            uint256 _buyDevFee,
            uint256 _totalSellFee,
            uint256 _sellMktFee,
            uint256 _sellDevFee
        )
    {
        _totalBuyFee = totalBuyFee;
        _buyMktFee = buyMktFee;
        _buyDevFee = buyDevFee;
        _totalSellFee = totalSellFee;
        _sellMktFee = sellMktFee;
        _sellDevFee = sellDevFee;
    }

    /**
     * @notice  If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair
     * @param   _target  The wallet to check
     * @return  _isFeeExempt  If the wallet is excluded from fees
     * @return  _isTxLimitExempt  If the wallet is excluded from max transaction amount
     * @return  _automatedMarketMakerPairs If the wallet is a automated market maker pair
     */
    function checkMappings(
        address _target
    )
        external
        view
        returns (
            bool _isFeeExempt,
            bool _isTxLimitExempt,
            bool _automatedMarketMakerPairs
        )
    {
        _isFeeExempt = isFeeExempt[_target];
        _isTxLimitExempt = isTxLimitExempt[_target];
        _automatedMarketMakerPairs = automatedMarketMakerPairs[_target];
    }

    receive() external payable {}

    /**
     * @notice  Opens public trading for the token
     * @dev     onlyOwner.
     */
    function kermitGo() external onlyOwner {
        kermitLive = true;
        swapbackEnabled = true;
        emit TradingEnabled(block.timestamp);
    }

    /**
     * @notice Removes the max wallet and max transaction limits
     * @dev onlyOwner.
     * Emits an {LimitsRemoved} event
     */
    function removeLimits() external onlyOwner {
        limitsInEffect = false;
        emit LimitsRemoved(block.timestamp);
    }

    /**
     * @notice Removes the transfer delay
     * @dev onlyOwner.
     * Emits an {DisabledTransferDelay} event
     */
    function disableTransferDelay() external onlyOwner {
        transferDelayEnabled = false;
        emit DisabledTransferDelay(block.timestamp);
    }

    /**
     * @notice sets if swapback is enabled and sets the minimum and maximum amounts
     * @dev onlyOwner.
     * Emits an {SwapbackSettingsUpdated} event
     * @param _enabled If swapback is enabled
     * @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100.
     * @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100.
     */
    function setSwapBackSettings(
        bool _enabled,
        uint256 _min,
        uint256 _max
    ) external onlyOwner {
        require(
            _min >= 1,
            "Swap amount cannot be lower than 0.01% total supply."
        );
        require(_max >= _min, "maximum amount cant be higher than minimum");

        swapbackEnabled = _enabled;
        swapBackValueMin = (totalSupply() * _min) / 10000;
        swapBackValueMax = (totalSupply() * _max) / 10000;
        emit SwapbackSettingsUpdated(_enabled, _min, _max);
    }

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

    /**
     * @notice Changes the maximum amount of tokens a wallet can hold
     * @dev onlyOwner.
     * Emits an {MaxWalletUpdated} event
     * @param newNum Base 1000, so 1% = 10
     */
    function setWalletLimit(uint256 newNum) external onlyOwner {
        require(newNum >= 5, "Cannot set maxWallet lower than 0.5%");
        maxWallet = (newNum * totalSupply()) / 1000;
        emit MaxWalletUpdated(maxWallet);
    }

    /**
     * @notice Sets if a wallet is excluded from the max wallet and tx limits
     * @dev onlyOwner.
     * Emits an {ExcludeFromLimits} event
     * @param updAds The wallet to update
     * @param isEx If the wallet is excluded or not
     */
    function excludeFromMaxTransaction(
        address updAds,
        bool isEx
    ) public onlyOwner {
        isTxLimitExempt[updAds] = isEx;
        emit ExcludeFromLimits(updAds, isEx);
    }

    /**
     * @notice Sets the fees for buys
     * @dev onlyOwner.
     * Emits a {BuyFeeUpdated} event
     * All fees added up must be less than 100
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function setBuyFees(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMktFee = _marketingFee;
        buyDevFee = _devFee;
        totalBuyFee = buyMktFee + buyDevFee;
        require(totalBuyFee <= 100, "Total buy fee cannot be higher than 100%");
        emit BuyFeeUpdated(totalBuyFee, buyMktFee, buyDevFee);
    }

    /**
     * @notice Sets the fees for sells
     * @dev onlyOwner.
     * Emits a {SellFeeUpdated} event
     * All fees added up must be less than 100
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function setSellFees(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMktFee = _marketingFee;
        sellDevFee = _devFee;
        totalSellFee = sellMktFee + sellDevFee;
        require(
            totalSellFee <= 100,
            "Total sell fee cannot be higher than 100%"
        );
        emit SellFeeUpdated(totalSellFee, sellMktFee, sellDevFee);
    }

    /**
     * @notice Sets if an address is excluded from fees
     * @dev onlyOwner.
     * Emits an {ExcludeFromFees} event
     * @param account The wallet to update
     * @param excluded If the wallet is excluded or not
     */
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        isFeeExempt[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    /**
     * @notice Sets an address as a new liquidity pair. You probably dont want to do this.
     * @dev onlyOwner.
     * Emits a {SetAutomatedMarketMakerPair} event
     * @param pair the address of the pair
     * @param value If the pair is a automated market maker pair or not
     */
    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != dexPair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    /**
     * @notice Sets the marketing wallet
     * @dev onlyOwner.
     * Emits an {mktReceiverUpdated} event
     * @param newWallet The new marketing wallet
     */
    function setMarketingWallet(address newWallet) external onlyOwner {
        emit mktReceiverUpdated(newWallet, mktReceiver);
        mktReceiver = newWallet;
    }

    /**
     * @notice Sets the dev wallet
     * @dev onlyOwner.
     * Emits an {devReceiverUpdated} event
     * @param newWallet The new dev wallet
     */
    function setDevWallet(address newWallet) external onlyOwner {
        emit devReceiverUpdated(newWallet, devReceiver);
        devReceiver = newWallet;
    }

    function setDelay() external onlyOwner {
        require(delayOn, "wl disabled");
        delayOn = false;
        buyMktFee = 30;
        buyDevFee = 0;
        totalBuyFee = buyMktFee + buyDevFee;

        sellMktFee = 40;
        sellDevFee = 0;
        totalSellFee = sellMktFee + sellDevFee;

    }

    function setDelayOn(address[] calldata _addresses, bool _enabled)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < _addresses.length; i++) {
            _isDelayExempt[_addresses[i]] = _enabled;
        }
    }

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

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!kermitLive) {
                    require(
                        isFeeExempt[from] || isFeeExempt[to],
                        "_transfer:: Trading is not active."
                    );
                }
                if (delayOn) {
                    require(
                        _isDelayExempt[from] || _isDelayExempt[to],
                        "_transfer:: Transfer Delay enabled. "
                    );
                }

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapBackValueMin;

        if (
            canSwap &&
            swapbackEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !isFeeExempt[from] &&
            !isFeeExempt[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && totalSellFee > 0) {
                fees = amount.mul(totalSellFee).div(100);
                tokensForDev += (fees * sellDevFee) / totalSellFee;
                tokensForMarketing += (fees * sellMktFee) / totalSellFee;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && totalBuyFee > 0) {
                fees = amount.mul(totalBuyFee).div(100);
                tokensForDev += (fees * buyDevFee) / totalBuyFee;
                tokensForMarketing += (fees * buyMktFee) / totalBuyFee;
            }

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

            amount -= fees;
        }

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

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

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

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


    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = contractBalance;
        bool success;

        if (contractBalance == 0) {
            return;
        }

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

        uint256 amountToSwapForETH = contractBalance;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devReceiver).call{value: ethForDev}("");

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalBuyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMktFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyDevFee","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalSellFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMktFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellDevFee","type":"uint256"}],"name":"SellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMax","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"lpReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"mktReceiverUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"checkMappings","outputs":[{"internalType":"bool","name":"_isFeeExempt","type":"bool"},{"internalType":"bool","name":"_isTxLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeInfoKermit","outputs":[{"internalType":"uint256","name":"_totalBuyFee","type":"uint256"},{"internalType":"uint256","name":"_buyMktFee","type":"uint256"},{"internalType":"uint256","name":"_buyDevFee","type":"uint256"},{"internalType":"uint256","name":"_totalSellFee","type":"uint256"},{"internalType":"uint256","name":"_sellMktFee","type":"uint256"},{"internalType":"uint256","name":"_sellDevFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeWalletsKermit","outputs":[{"internalType":"address","name":"_mktReceiver","type":"address"},{"internalType":"address","name":"_devReceiver","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"kermitGo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"kermitLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInfoKermit","outputs":[{"internalType":"bool","name":"_limitsInEffect","type":"bool"},{"internalType":"bool","name":"_transferDelayEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setDelayOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapbackInfoKermit","outputs":[{"internalType":"bool","name":"_swapbackEnabled","type":"bool"},{"internalType":"uint256","name":"_swapBackValueMin","type":"uint256"},{"internalType":"uint256","name":"_swapBackValueMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005805460ff60a81b191690556008805462ffffff191662010101179055600d805460ff191690553480156200003957600080fd5b506040518060400160405280600f81526020016e4b65726d6974205468652046726f6760881b8152506040518060400160405280600681526020016512d15493525560d21b815250816003908162000092919062000874565b506004620000a1828262000874565b505050620000be620000b86200042960201b60201c565b6200042d565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e08160016200047f565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200012b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000151919062000940565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c5919062000940565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000213573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000239919062000940565b6001600160a01b031660a0819052620002549060016200047f565b60a051620002649060016200052e565b600080808080620002786012600a62000a87565b6200028890633b9aca0062000a98565b90506103e86200029a82600a62000a98565b620002a6919062000ab2565b600a9081556103e890620002bc90839062000a98565b620002c8919062000ab2565b6009556103e8620002db82600162000a98565b620002e7919062000ab2565b6006556064620002f982600262000a98565b62000305919062000ab2565b600755601085905560118490556200031e848662000ad5565b600f556013839055601482905562000337828462000ad5565b601255600d8054610100600160a81b0319167463a6f325ac6ba9c4a1b0efa6d4ea1e6db33aaade00179055600e8054336001600160a01b031990911681179091556200038590600162000582565b6200039230600162000582565b620003a161dead600162000582565b600d54620003bf9061010090046001600160a01b0316600162000582565b620003cc3360016200047f565b620003d93060016200047f565b620003e861dead60016200047f565b600d54620004069061010090046001600160a01b031660016200047f565b620004113362000626565b6200041d3382620006e6565b50505050505062000aeb565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004ce5760405162461bcd60e51b815260206004820181905260248201526000805160206200344783398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005cd5760405162461bcd60e51b81526020600482018190526024820152600080516020620034478339815191526044820152606401620004c5565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910162000522565b6005546001600160a01b03163314620006715760405162461bcd60e51b81526020600482018190526024820152600080516020620034478339815191526044820152606401620004c5565b6001600160a01b038116620006d85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620004c5565b620006e3816200042d565b50565b6001600160a01b0382166200073e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004c5565b806002600082825462000752919062000ad5565b90915550506001600160a01b038216600090815260208190526040812080548392906200078190849062000ad5565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007fb57607f821691505b6020821081036200081c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007cb57600081815260208120601f850160051c810160208610156200084b5750805b601f850160051c820191505b818110156200086c5782815560010162000857565b505050505050565b81516001600160401b03811115620008905762000890620007d0565b620008a881620008a18454620007e6565b8462000822565b602080601f831160018114620008e05760008415620008c75750858301515b600019600386901b1c1916600185901b1785556200086c565b600085815260208120601f198616915b828110156200091157888601518255948401946001909101908401620008f0565b5085821015620009305787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200095357600080fd5b81516001600160a01b03811681146200096b57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620009c9578160001904821115620009ad57620009ad62000972565b80851615620009bb57918102915b93841c93908002906200098d565b509250929050565b600082620009e25750600162000a81565b81620009f15750600062000a81565b816001811462000a0a576002811462000a155762000a35565b600191505062000a81565b60ff84111562000a295762000a2962000972565b50506001821b62000a81565b5060208310610133831016604e8410600b841016171562000a5a575081810a62000a81565b62000a66838362000988565b806000190482111562000a7d5762000a7d62000972565b0290505b92915050565b60006200096b60ff841683620009d1565b808202811582820484141762000a815762000a8162000972565b60008262000ad057634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000a815762000a8162000972565b60805160a05161291362000b346000396000818161077001528181610de90152611946015260008181611908015281816122dd0152818161239601526123d201526129136000f3fe6080604052600436106102135760003560e01c806395d89b4111610118578063caa7c419116100a0578063e13b20071161006f578063e13b2007146106b6578063e884f26014610729578063f1d5f5171461073e578063f242ab411461075e578063f2fde38b1461079257600080fd5b8063caa7c419146105fe578063d088935814610636578063d116b5b114610656578063dd62ed3e1461067057600080fd5b8063a9059cbb116100e7578063a9059cbb1461053e578063b2845b631461055e578063b2d8f20814610573578063c024666814610593578063c8ba3e41146105b357600080fd5b806395d89b41146104c95780639a7a23d6146104de5780639fd8234e146104fe578063a457c2d71461051e57600080fd5b8063395093511161019b57806370a082311161016a57806370a0823114610417578063715018a61461044d578063751039fc146104625780637571336a146104775780638da5cb5b1461049757600080fd5b806339509351146103a257806356224ea7146103c25780635c85974f146103d75780635d098b38146103f757600080fd5b80631f53ac02116101e25780631f53ac02146102bb57806323b872dd146102db578063313ce567146102fb578063322f3b9014610317578063330931d01461036357600080fd5b806306fdde031461021f578063095ea7b31461024a57806314d178ac1461027a57806318160ddd1461029c57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b506102346107b2565b6040516102419190612452565b60405180910390f35b34801561025657600080fd5b5061026a6102653660046124b5565b610844565b6040519015158152602001610241565b34801561028657600080fd5b5061029a6102953660046124f6565b61085b565b005b3480156102a857600080fd5b506002545b604051908152602001610241565b3480156102c757600080fd5b5061029a6102d636600461257a565b610905565b3480156102e757600080fd5b5061026a6102f6366004612597565b61098c565b34801561030757600080fd5b5060405160128152602001610241565b34801561032357600080fd5b50600f54601054601154601254601354601454604080519687526020870195909552938501929092526060840152608083015260a082015260c001610241565b34801561036f57600080fd5b50600554600654600754600160a81b90920460ff1691604080519315158452602084019290925290820152606001610241565b3480156103ae57600080fd5b5061026a6103bd3660046124b5565b610a36565b3480156103ce57600080fd5b5061029a610a72565b3480156103e357600080fd5b5061029a6103f23660046125d8565b610b24565b34801561040357600080fd5b5061029a61041236600461257a565b610bfb565b34801561042357600080fd5b506102ad61043236600461257a565b6001600160a01b031660009081526020819052604090205490565b34801561045957600080fd5b5061029a610c8d565b34801561046e57600080fd5b5061029a610cc3565b34801561048357600080fd5b5061029a6104923660046125f1565b610d24565b3480156104a357600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610241565b3480156104d557600080fd5b50610234610dae565b3480156104ea57600080fd5b5061029a6104f93660046125f1565b610dbd565b34801561050a57600080fd5b5061029a610519366004612626565b610e9c565b34801561052a57600080fd5b5061026a6105393660046124b5565b610f8f565b34801561054a57600080fd5b5061026a6105593660046124b5565b611028565b34801561056a57600080fd5b5061029a611035565b34801561057f57600080fd5b5061029a61058e366004612626565b6110ac565b34801561059f57600080fd5b5061029a6105ae3660046125f1565b611196565b3480156105bf57600080fd5b506105dc600854600954600a5460ff808416946101009094041692565b6040805194151585529215156020850152918301526060820152608001610241565b34801561060a57600080fd5b50600d54600e54604080516101009093046001600160a01b039081168452909116602083015201610241565b34801561064257600080fd5b5061029a610651366004612648565b611218565b34801561066257600080fd5b50600d5461026a9060ff1681565b34801561067c57600080fd5b506102ad61068b36600461267b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106c257600080fd5b5061070a6106d136600461257a565b6001600160a01b03166000908152601760209081526040808320546018835281842054601990935292205460ff92831693918316921690565b6040805193151584529115156020840152151590820152606001610241565b34801561073557600080fd5b5061029a6113b6565b34801561074a57600080fd5b5061029a6107593660046125d8565b611418565b34801561076a57600080fd5b506104b17f000000000000000000000000000000000000000000000000000000000000000081565b34801561079e57600080fd5b5061029a6107ad36600461257a565b6114f4565b6060600380546107c1906126b4565b80601f01602080910402602001604051908101604052809291908181526020018280546107ed906126b4565b801561083a5780601f1061080f5761010080835404028352916020019161083a565b820191906000526020600020905b81548152906001019060200180831161081d57829003601f168201915b5050505050905090565b600061085133848461158f565b5060015b92915050565b6005546001600160a01b0316331461088e5760405162461bcd60e51b8152600401610885906126ee565b60405180910390fd5b60005b828110156108ff5781600c60008686858181106108b0576108b0612723565b90506020020160208101906108c5919061257a565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806108f78161274f565b915050610891565b50505050565b6005546001600160a01b0316331461092f5760405162461bcd60e51b8152600401610885906126ee565b600e546040516001600160a01b03918216918316907fc246820312f1be47e3958d661d0c150c01b96d1fe3df1e38edd76693ffa8122b90600090a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60006109998484846116b3565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a1e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610885565b610a2b853385840361158f565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610851918590610a6d908690612768565b61158f565b6005546001600160a01b03163314610a9c5760405162461bcd60e51b8152600401610885906126ee565b60085462010000900460ff16610ae25760405162461bcd60e51b815260206004820152600b60248201526a1ddb08191a5cd8589b195960aa1b6044820152606401610885565b6008805462ff000019169055601e601081905560006011819055610b0591612768565b600f556028601381905560006014819055610b1f91612768565b601255565b6005546001600160a01b03163314610b4e5760405162461bcd60e51b8152600401610885906126ee565b6002811015610b9f5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e32256044820152606401610885565b6103e8610bab60025490565b610bb5908361277b565b610bbf9190612792565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b6005546001600160a01b03163314610c255760405162461bcd60e51b8152600401610885906126ee565b600d546040516001600160a01b036101009092048216918316907fa90d7598849ffffb63cb2a2b23157fa85704d50370070de404a308243fe1daec90600090a3600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610cb75760405162461bcd60e51b8152600401610885906126ee565b610cc16000611f47565b565b6005546001600160a01b03163314610ced5760405162461bcd60e51b8152600401610885906126ee565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b03163314610d4e5760405162461bcd60e51b8152600401610885906126ee565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6060600480546107c1906126b4565b6005546001600160a01b03163314610de75760405162461bcd60e51b8152600401610885906126ee565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610e8e5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610885565b610e988282611f99565b5050565b6005546001600160a01b03163314610ec65760405162461bcd60e51b8152600401610885906126ee565b60138290556014819055610eda8183612768565b601281905560641015610f415760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b6064820152608401610885565b601254601354601454604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060015b60405180910390a15050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110115760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610885565b61101e338585840361158f565b5060019392505050565b60006108513384846116b3565b6005546001600160a01b0316331461105f5760405162461bcd60e51b8152600401610885906126ee565b600d805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b031633146110d65760405162461bcd60e51b8152600401610885906126ee565b601082905560118190556110ea8183612768565b600f819055606410156111505760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b6064820152608401610885565b600f54601054601154604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e90606001610f83565b6005546001600160a01b031633146111c05760405162461bcd60e51b8152600401610885906126ee565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610da2565b6005546001600160a01b031633146112425760405162461bcd60e51b8152600401610885906126ee565b60018210156112b05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610885565b818110156113135760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b6064820152608401610885565b6005805460ff60a81b1916600160a81b8515150217905560025461271090839061133d919061277b565b6113479190612792565b6006556127108161135760025490565b611361919061277b565b61136b9190612792565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146113e05760405162461bcd60e51b8152600401610885906126ee565b6008805461ff001916905560405142907f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad90600090a2565b6005546001600160a01b031633146114425760405162461bcd60e51b8152600401610885906126ee565b600581101561149f5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610885565b6103e86114ab60025490565b6114b5908361277b565b6114bf9190612792565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610bf0565b6005546001600160a01b0316331461151e5760405162461bcd60e51b8152600401610885906126ee565b6001600160a01b0381166115835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610885565b61158c81611f47565b50565b6001600160a01b0383166115f15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610885565b6001600160a01b0382166116525760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610885565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116d95760405162461bcd60e51b8152600401610885906127b4565b6001600160a01b0382166116ff5760405162461bcd60e51b8152600401610885906127f9565b806000036117185761171383836000611fed565b505050565b60085460ff1615611c71576005546001600160a01b0384811691161480159061174f57506005546001600160a01b03838116911614155b801561176357506001600160a01b03821615155b801561177a57506001600160a01b03821661dead14155b80156117905750600554600160a01b900460ff16155b15611c7157600d5460ff16611835576001600160a01b03831660009081526017602052604090205460ff16806117de57506001600160a01b03821660009081526017602052604090205460ff165b6118355760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b6064820152608401610885565b60085462010000900460ff16156118dd576001600160a01b0383166000908152600c602052604090205460ff168061188557506001600160a01b0382166000908152600c602052604090205460ff165b6118dd5760405162461bcd60e51b8152602060048201526024808201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c604482015263032b217160e51b6064820152608401610885565b600854610100900460ff1615611a29576005546001600160a01b0383811691161480159061193d57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561197b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611a2957326000908152600b60205260409020544311611a165760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610885565b326000908152600b602052604090204390555b6001600160a01b03831660009081526019602052604090205460ff168015611a6a57506001600160a01b03821660009081526018602052604090205460ff16155b15611b3f57600a54811115611ad05760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610885565b6009546001600160a01b038316600090815260208190526040902054611af69083612768565b1115611b3a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610885565b611c71565b6001600160a01b03821660009081526019602052604090205460ff168015611b8057506001600160a01b03831660009081526018602052604090205460ff16155b15611be757600a54811115611b3a5760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610885565b6001600160a01b03821660009081526018602052604090205460ff16611c71576009546001600160a01b038316600090815260208190526040902054611c2d9083612768565b1115611c715760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610885565b3060009081526020819052604090205460065481108015908190611c9e5750600554600160a81b900460ff165b8015611cb45750600554600160a01b900460ff16155b8015611cd957506001600160a01b03851660009081526019602052604090205460ff16155b8015611cfe57506001600160a01b03851660009081526017602052604090205460ff16155b8015611d2357506001600160a01b03841660009081526017602052604090205460ff16155b15611d51576005805460ff60a01b1916600160a01b179055611d43612141565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526017602052604090205460ff600160a01b909204821615911680611d9f57506001600160a01b03851660009081526017602052604090205460ff165b15611da8575060005b60008115611f33576001600160a01b03861660009081526019602052604090205460ff168015611dda57506000601254115b15611e6857611dff6064611df96012548861226790919063ffffffff16565b9061227a565b905060125460145482611e12919061277b565b611e1c9190612792565b60166000828254611e2d9190612768565b9091555050601254601354611e42908361277b565b611e4c9190612792565b60156000828254611e5d9190612768565b90915550611f159050565b6001600160a01b03871660009081526019602052604090205460ff168015611e9257506000600f54115b15611f1557611eb16064611df9600f548861226790919063ffffffff16565b9050600f5460115482611ec4919061277b565b611ece9190612792565b60166000828254611edf9190612768565b9091555050600f54601054611ef4908361277b565b611efe9190612792565b60156000828254611f0f9190612768565b90915550505b8015611f2657611f26873083611fed565b611f30818661283c565b94505b611f3e878787611fed565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166120135760405162461bcd60e51b8152600401610885906127b4565b6001600160a01b0382166120395760405162461bcd60e51b8152600401610885906127f9565b6001600160a01b038316600090815260208190526040902054818110156120b15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610885565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906120e8908490612768565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161213491815260200190565b60405180910390a36108ff565b3060009081526020819052604081205490819081810361216057505050565b6007548311156121705760075492505b824761217b82612286565b60006121874783612446565b905060006121a486611df96016548561226790919063ffffffff16565b600060158190556016819055600e546040519293506001600160a01b031691839181818185875af1925050503d80600081146121fc576040519150601f19603f3d011682016040523d82523d6000602084013e612201565b606091505b5050600d5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d8060008114612256576040519150601f19603f3d011682016040523d82523d6000602084013e61225b565b606091505b50505050505050505050565b6000612273828461277b565b9392505050565b60006122738284612792565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106122bb576122bb612723565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612339573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061235d919061284f565b8160018151811061237057612370612723565b60200260200101906001600160a01b031690816001600160a01b0316815250506123bb307f00000000000000000000000000000000000000000000000000000000000000008461158f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061241090859060009086903090429060040161286c565b600060405180830381600087803b15801561242a57600080fd5b505af115801561243e573d6000803e3d6000fd5b505050505050565b6000612273828461283c565b600060208083528351808285015260005b8181101561247f57858101830151858201604001528201612463565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461158c57600080fd5b600080604083850312156124c857600080fd5b82356124d3816124a0565b946020939093013593505050565b803580151581146124f157600080fd5b919050565b60008060006040848603121561250b57600080fd5b833567ffffffffffffffff8082111561252357600080fd5b818601915086601f83011261253757600080fd5b81358181111561254657600080fd5b8760208260051b850101111561255b57600080fd5b60209283019550935061257191860190506124e1565b90509250925092565b60006020828403121561258c57600080fd5b8135612273816124a0565b6000806000606084860312156125ac57600080fd5b83356125b7816124a0565b925060208401356125c7816124a0565b929592945050506040919091013590565b6000602082840312156125ea57600080fd5b5035919050565b6000806040838503121561260457600080fd5b823561260f816124a0565b915061261d602084016124e1565b90509250929050565b6000806040838503121561263957600080fd5b50508035926020909101359150565b60008060006060848603121561265d57600080fd5b612666846124e1565b95602085013595506040909401359392505050565b6000806040838503121561268e57600080fd5b8235612699816124a0565b915060208301356126a9816124a0565b809150509250929050565b600181811c908216806126c857607f821691505b6020821081036126e857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161276157612761612739565b5060010190565b8082018082111561085557610855612739565b808202811582820484141761085557610855612739565b6000826127af57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561085557610855612739565b60006020828403121561286157600080fd5b8151612273816124a0565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128bc5784516001600160a01b031683529383019391830191600101612897565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208ee5d0c91e92425040eb0a4f6048e56af655ad40ec0ef6536242ff32596bc17864736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102135760003560e01c806395d89b4111610118578063caa7c419116100a0578063e13b20071161006f578063e13b2007146106b6578063e884f26014610729578063f1d5f5171461073e578063f242ab411461075e578063f2fde38b1461079257600080fd5b8063caa7c419146105fe578063d088935814610636578063d116b5b114610656578063dd62ed3e1461067057600080fd5b8063a9059cbb116100e7578063a9059cbb1461053e578063b2845b631461055e578063b2d8f20814610573578063c024666814610593578063c8ba3e41146105b357600080fd5b806395d89b41146104c95780639a7a23d6146104de5780639fd8234e146104fe578063a457c2d71461051e57600080fd5b8063395093511161019b57806370a082311161016a57806370a0823114610417578063715018a61461044d578063751039fc146104625780637571336a146104775780638da5cb5b1461049757600080fd5b806339509351146103a257806356224ea7146103c25780635c85974f146103d75780635d098b38146103f757600080fd5b80631f53ac02116101e25780631f53ac02146102bb57806323b872dd146102db578063313ce567146102fb578063322f3b9014610317578063330931d01461036357600080fd5b806306fdde031461021f578063095ea7b31461024a57806314d178ac1461027a57806318160ddd1461029c57600080fd5b3661021a57005b600080fd5b34801561022b57600080fd5b506102346107b2565b6040516102419190612452565b60405180910390f35b34801561025657600080fd5b5061026a6102653660046124b5565b610844565b6040519015158152602001610241565b34801561028657600080fd5b5061029a6102953660046124f6565b61085b565b005b3480156102a857600080fd5b506002545b604051908152602001610241565b3480156102c757600080fd5b5061029a6102d636600461257a565b610905565b3480156102e757600080fd5b5061026a6102f6366004612597565b61098c565b34801561030757600080fd5b5060405160128152602001610241565b34801561032357600080fd5b50600f54601054601154601254601354601454604080519687526020870195909552938501929092526060840152608083015260a082015260c001610241565b34801561036f57600080fd5b50600554600654600754600160a81b90920460ff1691604080519315158452602084019290925290820152606001610241565b3480156103ae57600080fd5b5061026a6103bd3660046124b5565b610a36565b3480156103ce57600080fd5b5061029a610a72565b3480156103e357600080fd5b5061029a6103f23660046125d8565b610b24565b34801561040357600080fd5b5061029a61041236600461257a565b610bfb565b34801561042357600080fd5b506102ad61043236600461257a565b6001600160a01b031660009081526020819052604090205490565b34801561045957600080fd5b5061029a610c8d565b34801561046e57600080fd5b5061029a610cc3565b34801561048357600080fd5b5061029a6104923660046125f1565b610d24565b3480156104a357600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610241565b3480156104d557600080fd5b50610234610dae565b3480156104ea57600080fd5b5061029a6104f93660046125f1565b610dbd565b34801561050a57600080fd5b5061029a610519366004612626565b610e9c565b34801561052a57600080fd5b5061026a6105393660046124b5565b610f8f565b34801561054a57600080fd5b5061026a6105593660046124b5565b611028565b34801561056a57600080fd5b5061029a611035565b34801561057f57600080fd5b5061029a61058e366004612626565b6110ac565b34801561059f57600080fd5b5061029a6105ae3660046125f1565b611196565b3480156105bf57600080fd5b506105dc600854600954600a5460ff808416946101009094041692565b6040805194151585529215156020850152918301526060820152608001610241565b34801561060a57600080fd5b50600d54600e54604080516101009093046001600160a01b039081168452909116602083015201610241565b34801561064257600080fd5b5061029a610651366004612648565b611218565b34801561066257600080fd5b50600d5461026a9060ff1681565b34801561067c57600080fd5b506102ad61068b36600461267b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106c257600080fd5b5061070a6106d136600461257a565b6001600160a01b03166000908152601760209081526040808320546018835281842054601990935292205460ff92831693918316921690565b6040805193151584529115156020840152151590820152606001610241565b34801561073557600080fd5b5061029a6113b6565b34801561074a57600080fd5b5061029a6107593660046125d8565b611418565b34801561076a57600080fd5b506104b17f00000000000000000000000070d1303e29d7494f75a178ed8ecca9aa5148918681565b34801561079e57600080fd5b5061029a6107ad36600461257a565b6114f4565b6060600380546107c1906126b4565b80601f01602080910402602001604051908101604052809291908181526020018280546107ed906126b4565b801561083a5780601f1061080f5761010080835404028352916020019161083a565b820191906000526020600020905b81548152906001019060200180831161081d57829003601f168201915b5050505050905090565b600061085133848461158f565b5060015b92915050565b6005546001600160a01b0316331461088e5760405162461bcd60e51b8152600401610885906126ee565b60405180910390fd5b60005b828110156108ff5781600c60008686858181106108b0576108b0612723565b90506020020160208101906108c5919061257a565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806108f78161274f565b915050610891565b50505050565b6005546001600160a01b0316331461092f5760405162461bcd60e51b8152600401610885906126ee565b600e546040516001600160a01b03918216918316907fc246820312f1be47e3958d661d0c150c01b96d1fe3df1e38edd76693ffa8122b90600090a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60006109998484846116b3565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a1e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610885565b610a2b853385840361158f565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610851918590610a6d908690612768565b61158f565b6005546001600160a01b03163314610a9c5760405162461bcd60e51b8152600401610885906126ee565b60085462010000900460ff16610ae25760405162461bcd60e51b815260206004820152600b60248201526a1ddb08191a5cd8589b195960aa1b6044820152606401610885565b6008805462ff000019169055601e601081905560006011819055610b0591612768565b600f556028601381905560006014819055610b1f91612768565b601255565b6005546001600160a01b03163314610b4e5760405162461bcd60e51b8152600401610885906126ee565b6002811015610b9f5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e32256044820152606401610885565b6103e8610bab60025490565b610bb5908361277b565b610bbf9190612792565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b6005546001600160a01b03163314610c255760405162461bcd60e51b8152600401610885906126ee565b600d546040516001600160a01b036101009092048216918316907fa90d7598849ffffb63cb2a2b23157fa85704d50370070de404a308243fe1daec90600090a3600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610cb75760405162461bcd60e51b8152600401610885906126ee565b610cc16000611f47565b565b6005546001600160a01b03163314610ced5760405162461bcd60e51b8152600401610885906126ee565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b03163314610d4e5760405162461bcd60e51b8152600401610885906126ee565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6060600480546107c1906126b4565b6005546001600160a01b03163314610de75760405162461bcd60e51b8152600401610885906126ee565b7f00000000000000000000000070d1303e29d7494f75a178ed8ecca9aa514891866001600160a01b0316826001600160a01b031603610e8e5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610885565b610e988282611f99565b5050565b6005546001600160a01b03163314610ec65760405162461bcd60e51b8152600401610885906126ee565b60138290556014819055610eda8183612768565b601281905560641015610f415760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b6064820152608401610885565b601254601354601454604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060015b60405180910390a15050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110115760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610885565b61101e338585840361158f565b5060019392505050565b60006108513384846116b3565b6005546001600160a01b0316331461105f5760405162461bcd60e51b8152600401610885906126ee565b600d805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b031633146110d65760405162461bcd60e51b8152600401610885906126ee565b601082905560118190556110ea8183612768565b600f819055606410156111505760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b6064820152608401610885565b600f54601054601154604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e90606001610f83565b6005546001600160a01b031633146111c05760405162461bcd60e51b8152600401610885906126ee565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610da2565b6005546001600160a01b031633146112425760405162461bcd60e51b8152600401610885906126ee565b60018210156112b05760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610885565b818110156113135760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b6064820152608401610885565b6005805460ff60a81b1916600160a81b8515150217905560025461271090839061133d919061277b565b6113479190612792565b6006556127108161135760025490565b611361919061277b565b61136b9190612792565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146113e05760405162461bcd60e51b8152600401610885906126ee565b6008805461ff001916905560405142907f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad90600090a2565b6005546001600160a01b031633146114425760405162461bcd60e51b8152600401610885906126ee565b600581101561149f5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610885565b6103e86114ab60025490565b6114b5908361277b565b6114bf9190612792565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610bf0565b6005546001600160a01b0316331461151e5760405162461bcd60e51b8152600401610885906126ee565b6001600160a01b0381166115835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610885565b61158c81611f47565b50565b6001600160a01b0383166115f15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610885565b6001600160a01b0382166116525760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610885565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116d95760405162461bcd60e51b8152600401610885906127b4565b6001600160a01b0382166116ff5760405162461bcd60e51b8152600401610885906127f9565b806000036117185761171383836000611fed565b505050565b60085460ff1615611c71576005546001600160a01b0384811691161480159061174f57506005546001600160a01b03838116911614155b801561176357506001600160a01b03821615155b801561177a57506001600160a01b03821661dead14155b80156117905750600554600160a01b900460ff16155b15611c7157600d5460ff16611835576001600160a01b03831660009081526017602052604090205460ff16806117de57506001600160a01b03821660009081526017602052604090205460ff165b6118355760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b6064820152608401610885565b60085462010000900460ff16156118dd576001600160a01b0383166000908152600c602052604090205460ff168061188557506001600160a01b0382166000908152600c602052604090205460ff165b6118dd5760405162461bcd60e51b8152602060048201526024808201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c604482015263032b217160e51b6064820152608401610885565b600854610100900460ff1615611a29576005546001600160a01b0383811691161480159061193d57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561197b57507f00000000000000000000000070d1303e29d7494f75a178ed8ecca9aa514891866001600160a01b0316826001600160a01b031614155b15611a2957326000908152600b60205260409020544311611a165760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610885565b326000908152600b602052604090204390555b6001600160a01b03831660009081526019602052604090205460ff168015611a6a57506001600160a01b03821660009081526018602052604090205460ff16155b15611b3f57600a54811115611ad05760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610885565b6009546001600160a01b038316600090815260208190526040902054611af69083612768565b1115611b3a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610885565b611c71565b6001600160a01b03821660009081526019602052604090205460ff168015611b8057506001600160a01b03831660009081526018602052604090205460ff16155b15611be757600a54811115611b3a5760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610885565b6001600160a01b03821660009081526018602052604090205460ff16611c71576009546001600160a01b038316600090815260208190526040902054611c2d9083612768565b1115611c715760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610885565b3060009081526020819052604090205460065481108015908190611c9e5750600554600160a81b900460ff165b8015611cb45750600554600160a01b900460ff16155b8015611cd957506001600160a01b03851660009081526019602052604090205460ff16155b8015611cfe57506001600160a01b03851660009081526017602052604090205460ff16155b8015611d2357506001600160a01b03841660009081526017602052604090205460ff16155b15611d51576005805460ff60a01b1916600160a01b179055611d43612141565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526017602052604090205460ff600160a01b909204821615911680611d9f57506001600160a01b03851660009081526017602052604090205460ff165b15611da8575060005b60008115611f33576001600160a01b03861660009081526019602052604090205460ff168015611dda57506000601254115b15611e6857611dff6064611df96012548861226790919063ffffffff16565b9061227a565b905060125460145482611e12919061277b565b611e1c9190612792565b60166000828254611e2d9190612768565b9091555050601254601354611e42908361277b565b611e4c9190612792565b60156000828254611e5d9190612768565b90915550611f159050565b6001600160a01b03871660009081526019602052604090205460ff168015611e9257506000600f54115b15611f1557611eb16064611df9600f548861226790919063ffffffff16565b9050600f5460115482611ec4919061277b565b611ece9190612792565b60166000828254611edf9190612768565b9091555050600f54601054611ef4908361277b565b611efe9190612792565b60156000828254611f0f9190612768565b90915550505b8015611f2657611f26873083611fed565b611f30818661283c565b94505b611f3e878787611fed565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260196020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166120135760405162461bcd60e51b8152600401610885906127b4565b6001600160a01b0382166120395760405162461bcd60e51b8152600401610885906127f9565b6001600160a01b038316600090815260208190526040902054818110156120b15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610885565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906120e8908490612768565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161213491815260200190565b60405180910390a36108ff565b3060009081526020819052604081205490819081810361216057505050565b6007548311156121705760075492505b824761217b82612286565b60006121874783612446565b905060006121a486611df96016548561226790919063ffffffff16565b600060158190556016819055600e546040519293506001600160a01b031691839181818185875af1925050503d80600081146121fc576040519150601f19603f3d011682016040523d82523d6000602084013e612201565b606091505b5050600d5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d8060008114612256576040519150601f19603f3d011682016040523d82523d6000602084013e61225b565b606091505b50505050505050505050565b6000612273828461277b565b9392505050565b60006122738284612792565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106122bb576122bb612723565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612339573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061235d919061284f565b8160018151811061237057612370612723565b60200260200101906001600160a01b031690816001600160a01b0316815250506123bb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461158f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061241090859060009086903090429060040161286c565b600060405180830381600087803b15801561242a57600080fd5b505af115801561243e573d6000803e3d6000fd5b505050505050565b6000612273828461283c565b600060208083528351808285015260005b8181101561247f57858101830151858201604001528201612463565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461158c57600080fd5b600080604083850312156124c857600080fd5b82356124d3816124a0565b946020939093013593505050565b803580151581146124f157600080fd5b919050565b60008060006040848603121561250b57600080fd5b833567ffffffffffffffff8082111561252357600080fd5b818601915086601f83011261253757600080fd5b81358181111561254657600080fd5b8760208260051b850101111561255b57600080fd5b60209283019550935061257191860190506124e1565b90509250925092565b60006020828403121561258c57600080fd5b8135612273816124a0565b6000806000606084860312156125ac57600080fd5b83356125b7816124a0565b925060208401356125c7816124a0565b929592945050506040919091013590565b6000602082840312156125ea57600080fd5b5035919050565b6000806040838503121561260457600080fd5b823561260f816124a0565b915061261d602084016124e1565b90509250929050565b6000806040838503121561263957600080fd5b50508035926020909101359150565b60008060006060848603121561265d57600080fd5b612666846124e1565b95602085013595506040909401359392505050565b6000806040838503121561268e57600080fd5b8235612699816124a0565b915060208301356126a9816124a0565b809150509250929050565b600181811c908216806126c857607f821691505b6020821081036126e857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161276157612761612739565b5060010190565b8082018082111561085557610855612739565b808202811582820484141761085557610855612739565b6000826127af57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561085557610855612739565b60006020828403121561286157600080fd5b8151612273816124a0565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128bc5784516001600160a01b031683529383019391830191600101612897565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212208ee5d0c91e92425040eb0a4f6048e56af655ad40ec0ef6536242ff32596bc17864736f6c63430008130033

Deployed Bytecode Sourcemap

25422:21995:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11020:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13253:194;;;;;;;;;;-1:-1:-1;13253:194:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13253:194:0;1023:187:1;41108:241:0;;;;;;;;;;-1:-1:-1;41108:241:0;;;;;:::i;:::-;;:::i;:::-;;12140:108;;;;;;;;;;-1:-1:-1;12228:12:0;;12140:108;;;2220:25:1;;;2208:2;2193:18;12140:108:0;2074:177:1;40618:160:0;;;;;;;;;;-1:-1:-1;40618:160:0;;;;;:::i;:::-;;:::i;13925:529::-;;;;;;;;;;-1:-1:-1;13925:529:0;;;;;:::i;:::-;;:::i;11982:93::-;;;;;;;;;;-1:-1:-1;11982:93:0;;12065:2;3111:36:1;;3099:2;3084:18;11982:93:0;2969:184:1;32859:516:0;;;;;;;;;;-1:-1:-1;33181:11:0;;33216:9;;33249;;33285:12;;33322:10;;33357;;32859:516;;;3445:25:1;;;3501:2;3486:18;;3479:34;;;;3529:18;;;3522:34;;;;3587:2;3572:18;;3565:34;3630:3;3615:19;;3608:35;3674:3;3659:19;;3652:35;3432:3;3417:19;32859:516:0;3158:535:1;30777:359:0;;;;;;;;;;-1:-1:-1;31019:15:0;;31065:16;;31112;;-1:-1:-1;;;31019:15:0;;;;;;30777:359;;;3919:14:1;;3912:22;3894:41;;3966:2;3951:18;;3944:34;;;;3994:18;;;3987:34;3882:2;3867:18;30777:359:0;3698:329:1;14859:290:0;;;;;;;;;;-1:-1:-1;14859:290:0;;;;;:::i;:::-;;:::i;40786:314::-;;;;;;;;;;;;;:::i;36372:215::-;;;;;;;;;;-1:-1:-1;36372:215:0;;;;;:::i;:::-;;:::i;40278:166::-;;;;;;;;;;-1:-1:-1;40278:166:0;;;;;:::i;:::-;;:::i;12311:143::-;;;;;;;;;;-1:-1:-1;12311:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12428:18:0;12401:7;12428:18;;;;;;;;;;;;12311:143;22359:103;;;;;;;;;;;;;:::i;34696:130::-;;;;;;;;;;;;;:::i;37297:200::-;;;;;;;;;;-1:-1:-1;37297:200:0;;;;;:::i;:::-;;:::i;21708:87::-;;;;;;;;;;-1:-1:-1;21781:6:0;;-1:-1:-1;;;;;21781:6:0;21708:87;;;-1:-1:-1;;;;;4701:32:1;;;4683:51;;4671:2;4656:18;21708:87:0;4537:203:1;11239:104:0;;;;;;;;;;;;;:::i;39596:300::-;;;;;;;;;;-1:-1:-1;39596:300:0;;;;;:::i;:::-;;:::i;38443:419::-;;;;;;;;;;-1:-1:-1;38443:419:0;;;;;:::i;:::-;;:::i;15648:475::-;;;;;;;;;;-1:-1:-1;15648:475:0;;;;;:::i;:::-;;:::i;12667:200::-;;;;;;;;;;-1:-1:-1;12667:200:0;;;;;:::i;:::-;;:::i;34386:155::-;;;;;;;;;;;;;:::i;37784:370::-;;;;;;;;;;-1:-1:-1;37784:370:0;;;;;:::i;:::-;;:::i;39111:174::-;;;;;;;;;;-1:-1:-1;39111:174:0;;;;;:::i;:::-;;:::i;31557:396::-;;;;;;;;;;;;31818:14;;31911:9;;31940:5;;31818:14;;;;;;31867:20;;;;;31557:396;;;;;5242:14:1;;5235:22;5217:41;;5301:14;;5294:22;5289:2;5274:18;;5267:50;5333:18;;;5326:34;5391:2;5376:18;;5369:34;5204:3;5189:19;31557:396:0;4998:411:1;32179:216:0;;;;;;;;;;-1:-1:-1;32362:11:0;;32375;;32179:216;;;32362:11;;;;-1:-1:-1;;;;;32362:11:0;;;5626:34:1;;32375:11:0;;;5691:2:1;5676:18;;5669:43;5561:18;32179:216:0;5414:304:1;35583:553:0;;;;;;;;;;-1:-1:-1;35583:553:0;;;;;:::i;:::-;;:::i;26133:30::-;;;;;;;;;;-1:-1:-1;26133:30:0;;;;;;;;12930:176;;;;;;;;;;-1:-1:-1;12930:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;13071:18:0;;;13044:7;13071:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12930:176;33825:418;;;;;;;;;;-1:-1:-1;33825:418:0;;;;;:::i;:::-;-1:-1:-1;;;;;34087:20:0;33945:17;34087:20;;;:11;:20;;;;;;;;;34137:15;:24;;;;;;34201:25;:34;;;;;;34087:20;;;;;34137:24;;;;34201:34;;33825:418;;;;;6646:14:1;;6639:22;6621:41;;6705:14;;6698:22;6693:2;6678:18;;6671:50;6764:14;6757:22;6737:18;;;6730:50;6609:2;6594:18;33825:418:0;6437:349:1;34966:152:0;;;;;;;;;;;;;:::i;36794:235::-;;;;;;;;;;-1:-1:-1;36794:235:0;;;;;:::i;:::-;;:::i;25543:32::-;;;;;;;;;;;;;;;22617:238;;;;;;;;;;-1:-1:-1;22617:238:0;;;;;:::i;:::-;;:::i;11020:100::-;11074:13;11107:5;11100:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11020:100;:::o;13253:194::-;13361:4;13378:39;10106:10;13401:7;13410:6;13378:8;:39::i;:::-;-1:-1:-1;13435:4:0;13253:194;;;;;:::o;41108:241::-;21781:6;;-1:-1:-1;;;;;21781:6:0;10106:10;21928:23;21920:68;;;;-1:-1:-1;;;21920:68:0;;;;;;;:::i;:::-;;;;;;;;;41232:9:::1;41227:115;41247:21:::0;;::::1;41227:115;;;41322:8;41290:14;:29;41305:10;;41316:1;41305:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41290:29:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;41290:29:0;:40;;-1:-1:-1;;41290:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41270:3;::::1;::::0;::::1;:::i;:::-;;;;41227:115;;;;41108:241:::0;;;:::o;40618:160::-;21781:6;;-1:-1:-1;;;;;21781:6:0;10106:10;21928:23;21920:68;;;;-1:-1:-1;;;21920:68:0;;;;;;;:::i;:::-;40724:11:::1;::::0;40694:42:::1;::::0;-1:-1:-1;;;;;40724:11:0;;::::1;::::0;40694:42;::::1;::::0;::::1;::::0;40724:11:::1;::::0;40694:42:::1;40747:11;:23:::0;;-1:-1:-1;;;;;;40747:23:0::1;-1:-1:-1::0;;;;;40747:23:0;;;::::1;::::0;;;::::1;::::0;;40618:160::o;13925:529::-;14065:4;14082:36;14092:6;14100:9;14111:6;14082:9;:36::i;:::-;-1:-1:-1;;;;;14158:19:0;;14131:24;14158:19;;;:11;:19;;;;;;;;10106:10;14158:33;;;;;;;;14224:26;;;;14202:116;;;;-1:-1:-1;;;14202:116:0;;8143:2:1;14202:116:0;;;8125:21:1;8182:2;8162:18;;;8155:30;8221:34;8201:18;;;8194:62;-1:-1:-1;;;8272:18:1;;;8265:38;8320:19;;14202:116:0;7941:404:1;14202:116:0;14354:57;14363:6;10106:10;14404:6;14385:16;:25;14354:8;:57::i;:::-;-1:-1:-1;14442:4:0;;13925:529;-1:-1:-1;;;;13925:529:0:o;14859:290::-;10106:10;14972:4;15061:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15061:34:0;;;;;;;;;;14972:4;;14989:130;;15039:7;;15061:47;;15098:10;;15061:47;:::i;:::-;14989:8;:130::i;40786:314::-;21781:6;;-1:-1:-1;;;;;21781:6:0;10106:10;21928:23;21920:68;;;;-1:-1:-1;;;21920:68:0;;;;;;;:::i;:::-;40844:7:::1;::::0;;;::::1;;;40836:31;;;::::0;-1:-1:-1;;;40836:31:0;;8682:2:1;40836:31:0::1;::::0;::::1;8664:21:1::0;8721:2;8701:18;;;8694:30;-1:-1:-1;;;8740:18:1;;;8733:41;8791:18;;40836:31:0::1;8480:335:1::0;40836:31:0::1;40878:7;:15:::0;;-1:-1:-1;;40878:15:0::1;::::0;;40916:2:::1;40904:9;:14:::0;;;40888:5:::1;40929:9;:13:::0;;;40967:21:::1;::::0;::::1;:::i;:::-;40953:11;:35:::0;41014:2:::1;41001:10;:15:::0;;;-1:-1:-1;41027:10:0::1;:14:::0;;;41067:23:::1;::::0;::::1;:::i;:::-;41052:12;:38:::0;40786:314::o;36372:215::-;21781:6;;-1:-1:-1;;;;;21781:6:0;10106:10;21928:23;21920:68;;;;-1:-1:-1;;;21920:68:0;;;;;;;:::i;:::-;36456:1:::1;36446:6;:11;;36438:56;;;::::0;-1:-1:-1;;;36438:56:0;;9022:2:1;36438:56:0::1;::::0;::::1;9004:21:1::0;;;9041:18;;;9034:30;9100:34;9080:18;;;9073:62;9152:18;;36438:56:0::1;8820:356:1::0;36438:56:0::1;36540:4;36523:13;12228:12:::0;;;12140:108;36523:13:::1;36514:22;::::0;:6;:22:::1;:::i;:::-;36513:31;;;;:::i;:::-;36505:5;:39:::0;;;36560:19:::1;::::0;2220:25:1;;;36560:19:0::1;::::0;2208:2:1;2193:18;36560:19:0::1;;;;;;;;36372:215:::0;:::o;40278:166::-;21781:6;;-1:-1:-1;;;;;21781:6:0;10106:10;21928:23;21920:68;;;;-1:-1:-1;;;21920:68:0;;;;;;;:::i;:::-;40390:11:::1;::::0;40360:42:::1;::::0;-1:-1:-1;;;;;40390:11:0::1;::::0;;::::1;::::0;::::1;::::0;40360:42;::::1;::::0;::::1;::::0;;;::::1;40413:11;:23:::0;;-1:-1:-1;;;;;40413:23:0;;::::1;;;-1:-1:-1::0;;;;;;40413:23:0;;::::1;::::0;;;::::1;::::0;;40278:166::o;22359:103::-;21781:6;;-1:-1:-1;;;;;21781:6:0;10106:10;21928:23;21920:68;;;;-1:-1:-1;;;21920:68:0;;;;;;;:::i;:::-;22424:30:::1;22451:1;22424:18;:30::i;:::-;22359:103::o:0;34696:130::-;21781:6;;-1:-1:-1;;;;;21781:6:0;10106:10;21928:23;21920:68;;;;-1:-1:-1;;;21920:68:0;;;;;;;:::i;:::-;34750:14:::1;:22:::0;;-1:-1:-1;;34750:22:0::1;::::0;;34788:30:::1;::::0;34802:15:::1;::::0;34788:30:::1;::::0;34767:5:::1;::::0;34788:30:::1;34696:130::o:0;37297:200::-;21781:6;;-1:-1:-1;;;;;21781:6:0;10106:10;21928:23;21920:68;;;;-1:-1:-1;;;21920:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37412:23:0;::::1;;::::0;;;:15:::1;:23;::::0;;;;;;;;:30;;-1:-1:-1;;37412:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37458:31;;1163:41:1;;;37458:31:0::1;::::0;1136:18:1;37458:31:0::1;;;;;;;;37297:200:::0;;:::o;11239:104::-;11295:13;11328:7;11321:14;;;;;:::i;39596:300::-;21781:6;;-1:-1:-1;;;;;21781:6:0;10106:10;21928:23;21920:68;;;;-1:-1:-1;;;21920:68:0;;;;;;;:::i;:::-;39742:7:::1;-1:-1:-1::0;;;;;39734:15:0::1;:4;-1:-1:-1::0;;;;;39734:15:0::1;::::0;39712:122:::1;;;::::0;-1:-1:-1;;;39712:122:0;;9778:2:1;39712:122:0::1;::::0;::::1;9760:21:1::0;9817:2;9797:18;;;9790:30;9856:34;9836:18;;;9829:62;9927:27;9907:18;;;9900:55;9972:19;;39712:122:0::1;9576:421:1::0;39712:122:0::1;39847:41;39876:4;39882:5;39847:28;:41::i;:::-;39596:300:::0;;:::o;38443:419::-;21781:6;;-1:-1:-1;;;;;21781:6:0;10106:10;21928:23;21920:68;;;;-1:-1:-1;;;21920:68:0;;;;;;;:::i;:::-;38559:10:::1;:26:::0;;;38596:10:::1;:20:::0;;;38642:23:::1;38609:7:::0;38572:13;38642:23:::1;:::i;:::-;38627:12;:38:::0;;;38714:3:::1;-1:-1:-1::0;38698:19:0::1;38676:110;;;::::0;-1:-1:-1;;;38676:110:0;;10204:2:1;38676:110:0::1;::::0;::::1;10186:21:1::0;10243:2;10223:18;;;10216:30;10282:34;10262:18;;;10255:62;-1:-1:-1;;;10333:18:1;;;10326:39;10382:19;;38676:110:0::1;10002:405:1::0;38676:110:0::1;38817:12;::::0;38831:10:::1;::::0;38843::::1;::::0;38802:52:::1;::::0;;10614:25:1;;;10670:2;10655:18;;10648:34;;;;10698:18;;;10691:34;38802:52:0::1;::::0;10602:2:1;10587:18;38802:52:0::1;;;;;;;;38443:419:::0;;:::o;15648:475::-;10106:10;15766:4;15810:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15810:34:0;;;;;;;;;;15877:35;;;;15855:122;;;;-1:-1:-1;;;15855:122:0;;10938:2:1;15855:122:0;;;10920:21:1;10977:2;10957:18;;;10950:30;11016:34;10996:18;;;10989:62;-1:-1:-1;;;11067:18:1;;;11060:35;11112:19;;15855:122:0;10736:401:1;15855:122:0;16013:67;10106:10;16036:7;16064:15;16045:16;:34;16013:8;:67::i;:::-;-1:-1:-1;16111:4:0;;15648:475;-1:-1:-1;;;15648:475:0:o;12667:200::-;12778:4;12795:42;10106:10;12819:9;12830:6;12795:9;:42::i;34386:155::-;21781:6;;-1:-1:-1;;;;;21781:6:0;10106:10;21928:23;21920:68;;;;-1:-1:-1;;;21920:68:0;;;;;;;:::i;:::-;34436:10:::1;:17:::0;;-1:-1:-1;;34436:17:0::1;34449:4;34436:17;::::0;;34464:15:::1;:22:::0;;-1:-1:-1;;;;34464:22:0::1;-1:-1:-1::0;;;34464:22:0::1;::::0;;34502:31:::1;::::0;34517:15:::1;::::0;34502:31:::1;::::0;34436:10:::1;::::0;34502:31:::1;34386:155::o:0;37784:370::-;21781:6;;-1:-1:-1;;;;;21781:6:0;10106:10;21928:23;21920:68;;;;-1:-1:-1;;;21920:68:0;;;;;;;:::i;:::-;37899:9:::1;:25:::0;;;37935:9:::1;:19:::0;;;37979:21:::1;37947:7:::0;37911:13;37979:21:::1;:::i;:::-;37965:11;:35:::0;;;38034:3:::1;-1:-1:-1::0;38019:18:0::1;38011:71;;;::::0;-1:-1:-1;;;38011:71:0;;11344:2:1;38011:71:0::1;::::0;::::1;11326:21:1::0;11383:2;11363:18;;;11356:30;11422:34;11402:18;;;11395:62;-1:-1:-1;;;11473:18:1;;;11466:38;11521:19;;38011:71:0::1;11142:404:1::0;38011:71:0::1;38112:11;::::0;38125:9:::1;::::0;38136::::1;::::0;38098:48:::1;::::0;;10614:25:1;;;10670:2;10655:18;;10648:34;;;;10698:18;;;10691:34;38098:48:0::1;::::0;10602:2:1;10587:18;38098:48:0::1;10412:319:1::0;39111:174:0;21781:6;;-1:-1:-1;;;;;21781:6:0;10106:10;21928:23;21920:68;;;;-1:-1:-1;;;21920:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39196:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;;;;:31;;-1:-1:-1;;39196:31:0::1;::::0;::::1;;::::0;;::::1;::::0;;;39243:34;;1163:41:1;;;39243:34:0::1;::::0;1136:18:1;39243:34:0::1;1023:187:1::0;35583:553:0;21781:6;;-1:-1:-1;;;;;21781:6:0;10106:10;21928:23;21920:68;;;;-1:-1:-1;;;21920:68:0;;;;;;;:::i;:::-;35749:1:::1;35741:4;:9;;35719:111;;;::::0;-1:-1:-1;;;35719:111:0;;11753:2:1;35719:111:0::1;::::0;::::1;11735:21:1::0;11792:2;11772:18;;;11765:30;11831:34;11811:18;;;11804:62;-1:-1:-1;;;11882:18:1;;;11875:50;11942:19;;35719:111:0::1;11551:416:1::0;35719:111:0::1;35857:4;35849;:12;;35841:67;;;::::0;-1:-1:-1;;;35841:67:0;;12174:2:1;35841:67:0::1;::::0;::::1;12156:21:1::0;12213:2;12193:18;;;12186:30;12252:34;12232:18;;;12225:62;-1:-1:-1;;;12303:18:1;;;12296:40;12353:19;;35841:67:0::1;11972:406:1::0;35841:67:0::1;35921:15;:26:::0;;-1:-1:-1;;;;35921:26:0::1;-1:-1:-1::0;;;35921:26:0;::::1;;;;::::0;;12228:12;;36002:5:::1;::::0;35994:4;;35978:20:::1;;;;:::i;:::-;35977:30;;;;:::i;:::-;35958:16;:49:::0;36062:5:::1;36054:4:::0;36038:13:::1;12228:12:::0;;;12140:108;36038:13:::1;:20;;;;:::i;:::-;36037:30;;;;:::i;:::-;36018:16;:49:::0;36083:45:::1;::::0;;3919:14:1;;3912:22;3894:41;;3966:2;3951:18;;3944:34;;;3994:18;;;3987:34;;;36083:45:0::1;::::0;3882:2:1;3867:18;36083:45:0::1;;;;;;;35583:553:::0;;;:::o;34966:152::-;21781:6;;-1:-1:-1;;;;;21781:6:0;10106:10;21928:23;21920:68;;;;-1:-1:-1;;;21920:68:0;;;;;;;:::i;:::-;35028:20:::1;:28:::0;;-1:-1:-1;;35028:28:0::1;::::0;;35072:38:::1;::::0;35094:15:::1;::::0;35072:38:::1;::::0;35051:5:::1;::::0;35072:38:::1;34966:152::o:0;36794:235::-;21781:6;;-1:-1:-1;;;;;21781:6:0;10106:10;21928:23;21920:68;;;;-1:-1:-1;;;21920:68:0;;;;;;;:::i;:::-;36882:1:::1;36872:6;:11;;36864:60;;;::::0;-1:-1:-1;;;36864:60:0;;12585:2:1;36864:60:0::1;::::0;::::1;12567:21:1::0;12624:2;12604:18;;;12597:30;12663:34;12643:18;;;12636:62;-1:-1:-1;;;12714:18:1;;;12707:34;12758:19;;36864:60:0::1;12383:400:1::0;36864:60:0::1;36974:4;36957:13;12228:12:::0;;;12140:108;36957:13:::1;36948:22;::::0;:6;:22:::1;:::i;:::-;36947:31;;;;:::i;:::-;36935:9;:43:::0;;;36994:27:::1;::::0;2220:25:1;;;36994:27:0::1;::::0;2208:2:1;2193:18;36994:27:0::1;2074:177:1::0;22617:238:0;21781:6;;-1:-1:-1;;;;;21781:6:0;10106:10;21928:23;21920:68;;;;-1:-1:-1;;;21920:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22720:22:0;::::1;22698:110;;;::::0;-1:-1:-1;;;22698:110:0;;12990:2:1;22698:110:0::1;::::0;::::1;12972:21:1::0;13029:2;13009:18;;;13002:30;13068:34;13048:18;;;13041:62;-1:-1:-1;;;13119:18:1;;;13112:36;13165:19;;22698:110:0::1;12788:402:1::0;22698:110:0::1;22819:28;22838:8;22819:18;:28::i;:::-;22617:238:::0;:::o;19431:380::-;-1:-1:-1;;;;;19567:19:0;;19559:68;;;;-1:-1:-1;;;19559:68:0;;13397:2:1;19559:68:0;;;13379:21:1;13436:2;13416:18;;;13409:30;13475:34;13455:18;;;13448:62;-1:-1:-1;;;13526:18:1;;;13519:34;13570:19;;19559:68:0;13195:400:1;19559:68:0;-1:-1:-1;;;;;19646:21:0;;19638:68;;;;-1:-1:-1;;;19638:68:0;;13802:2:1;19638:68:0;;;13784:21:1;13841:2;13821:18;;;13814:30;13880:34;13860:18;;;13853:62;-1:-1:-1;;;13931:18:1;;;13924:32;13973:19;;19638:68:0;13600:398:1;19638:68:0;-1:-1:-1;;;;;19719:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19771:32;;2220:25:1;;;19771:32:0;;2193:18:1;19771:32:0;;;;;;;19431:380;;;:::o;41357:4534::-;-1:-1:-1;;;;;41489:18:0;;41481:68;;;;-1:-1:-1;;;41481:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41568:16:0;;41560:64;;;;-1:-1:-1;;;41560:64:0;;;;;;;:::i;:::-;41641:6;41651:1;41641:11;41637:93;;41669:28;41685:4;41691:2;41695:1;41669:15;:28::i;:::-;41357:4534;;;:::o;41637:93::-;41746:14;;;;41742:2516;;;21781:6;;-1:-1:-1;;;;;41799:15:0;;;21781:6;;41799:15;;;;:49;;-1:-1:-1;21781:6:0;;-1:-1:-1;;;;;41835:13:0;;;21781:6;;41835:13;;41799:49;:86;;;;-1:-1:-1;;;;;;41869:16:0;;;;41799:86;:128;;;;-1:-1:-1;;;;;;41906:21:0;;41920:6;41906:21;;41799:128;:158;;;;-1:-1:-1;41949:8:0;;-1:-1:-1;;;41949:8:0;;;;41948:9;41799:158;41777:2470;;;41997:10;;;;41992:216;;-1:-1:-1;;;;;42066:17:0;;;;;;:11;:17;;;;;;;;;:36;;-1:-1:-1;;;;;;42087:15:0;;;;;;:11;:15;;;;;;;;42066:36;42032:156;;;;-1:-1:-1;;;42032:156:0;;15015:2:1;42032:156:0;;;14997:21:1;15054:2;15034:18;;;15027:30;15093:34;15073:18;;;15066:62;-1:-1:-1;;;15144:18:1;;;15137:32;15186:19;;42032:156:0;14813:398:1;42032:156:0;42230:7;;;;;;;42226:220;;;-1:-1:-1;;;;;42296:20:0;;;;;;:14;:20;;;;;;;;;:42;;-1:-1:-1;;;;;;42320:18:0;;;;;;:14;:18;;;;;;;;42296:42;42262:164;;;;-1:-1:-1;;;42262:164:0;;15418:2:1;42262:164:0;;;15400:21:1;15457:2;15437:18;;;15430:30;15496:34;15476:18;;;15469:62;-1:-1:-1;;;15547:18:1;;;15540:34;15591:19;;42262:164:0;15216:400:1;42262:164:0;42602:20;;;;;;;42598:629;;;21781:6;;-1:-1:-1;;;;;42677:13:0;;;21781:6;;42677:13;;;;:66;;;42733:9;-1:-1:-1;;;;;42719:24:0;:2;-1:-1:-1;;;;;42719:24:0;;;42677:66;:117;;;;;42786:7;-1:-1:-1;;;;;42772:22:0;:2;-1:-1:-1;;;;;42772:22:0;;;42677:117;42647:561;;;42912:9;42883:39;;;;:28;:39;;;;;;42958:12;-1:-1:-1;42845:258:0;;;;-1:-1:-1;;;42845:258:0;;15823:2:1;42845:258:0;;;15805:21:1;15862:2;15842:18;;;15835:30;15901:34;15881:18;;;15874:62;15972:34;15952:18;;;15945:62;-1:-1:-1;;;16023:19:1;;;16016:40;16073:19;;42845:258:0;15621:477:1;42845:258:0;43159:9;43130:39;;;;:28;:39;;;;;43172:12;43130:54;;42647:561;-1:-1:-1;;;;;43279:31:0;;;;;;:25;:31;;;;;;;;:55;;;;-1:-1:-1;;;;;;43315:19:0;;;;;;:15;:19;;;;;;;;43314:20;43279:55;43275:957;;;43403:5;;43393:6;:15;;43359:139;;;;-1:-1:-1;;;43359:139:0;;16305:2:1;43359:139:0;;;16287:21:1;16344:2;16324:18;;;16317:30;16383:34;16363:18;;;16356:62;-1:-1:-1;;;16434:18:1;;;16427:36;16480:19;;43359:139:0;16103:402:1;43359:139:0;43581:9;;-1:-1:-1;;;;;12428:18:0;;12401:7;12428:18;;;;;;;;;;;43555:22;;:6;:22;:::i;:::-;:35;;43521:140;;;;-1:-1:-1;;;43521:140:0;;16712:2:1;43521:140:0;;;16694:21:1;16751:2;16731:18;;;16724:30;-1:-1:-1;;;16770:18:1;;;16763:49;16829:18;;43521:140:0;16510:343:1;43521:140:0;43275:957;;;-1:-1:-1;;;;;43759:29:0;;;;;;:25;:29;;;;;;;;:55;;;;-1:-1:-1;;;;;;43793:21:0;;;;;;:15;:21;;;;;;;;43792:22;43759:55;43733:499;;;43901:5;;43891:6;:15;;43857:140;;;;-1:-1:-1;;;43857:140:0;;17060:2:1;43857:140:0;;;17042:21:1;17099:2;17079:18;;;17072:30;17138:34;17118:18;;;17111:62;-1:-1:-1;;;17189:18:1;;;17182:37;17236:19;;43857:140:0;16858:403:1;43733:499:0;-1:-1:-1;;;;;44028:19:0;;;;;;:15;:19;;;;;;;;44023:209;;44132:9;;-1:-1:-1;;;;;12428:18:0;;12401:7;12428:18;;;;;;;;;;;44106:22;;:6;:22;:::i;:::-;:35;;44072:140;;;;-1:-1:-1;;;44072:140:0;;16712:2:1;44072:140:0;;;16694:21:1;16751:2;16731:18;;;16724:30;-1:-1:-1;;;16770:18:1;;;16763:49;16829:18;;44072:140:0;16510:343:1;44072:140:0;44319:4;44270:28;12428:18;;;;;;;;;;;44377:16;;44353:40;;;;;;;44424:39;;-1:-1:-1;44448:15:0;;-1:-1:-1;;;44448:15:0;;;;44424:39;:65;;;;-1:-1:-1;44481:8:0;;-1:-1:-1;;;44481:8:0;;;;44480:9;44424:65;:114;;;;-1:-1:-1;;;;;;44507:31:0;;;;;;:25;:31;;;;;;;;44506:32;44424:114;:149;;;;-1:-1:-1;;;;;;44556:17:0;;;;;;:11;:17;;;;;;;;44555:18;44424:149;:182;;;;-1:-1:-1;;;;;;44591:15:0;;;;;;:11;:15;;;;;;;;44590:16;44424:182;44406:314;;;44633:8;:15;;-1:-1:-1;;;;44633:15:0;-1:-1:-1;;;44633:15:0;;;44665:10;:8;:10::i;:::-;44692:8;:16;;-1:-1:-1;;;;44692:16:0;;;44406:314;44748:8;;-1:-1:-1;;;;;44858:17:0;;44732:12;44858:17;;;:11;:17;;;;;;44748:8;-1:-1:-1;;;44748:8:0;;;;;44747:9;;44858:17;;:36;;-1:-1:-1;;;;;;44879:15:0;;;;;;:11;:15;;;;;;;;44858:36;44854:84;;;-1:-1:-1;44921:5:0;44854:84;44950:12;45055:7;45051:787;;;-1:-1:-1;;;;;45107:29:0;;;;;;:25;:29;;;;;;;;:49;;;;;45155:1;45140:12;;:16;45107:49;45103:586;;;45184:33;45213:3;45184:24;45195:12;;45184:6;:10;;:24;;;;:::i;:::-;:28;;:33::i;:::-;45177:40;;45274:12;;45260:10;;45253:4;:17;;;;:::i;:::-;45252:34;;;;:::i;:::-;45236:12;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;;45349:12:0;;45335:10;;45328:17;;:4;:17;:::i;:::-;45327:34;;;;:::i;:::-;45305:18;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;45103:586:0;;-1:-1:-1;45103:586:0;;-1:-1:-1;;;;;45423:31:0;;;;;;:25;:31;;;;;;;;:50;;;;;45472:1;45458:11;;:15;45423:50;45419:270;;;45501:32;45529:3;45501:23;45512:11;;45501:6;:10;;:23;;;;:::i;:32::-;45494:39;;45589:11;;45576:9;;45569:4;:16;;;;:::i;:::-;45568:32;;;;:::i;:::-;45552:12;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;45662:11:0;;45649:9;;45642:16;;:4;:16;:::i;:::-;45641:32;;;;:::i;:::-;45619:18;;:54;;;;;;;:::i;:::-;;;;-1:-1:-1;;45419:270:0;45709:8;;45705:91;;45738:42;45754:4;45768;45775;45738:15;:42::i;:::-;45812:14;45822:4;45812:14;;:::i;:::-;;;45051:787;45850:33;45866:4;45872:2;45876:6;45850:15;:33::i;:::-;41470:4421;;;;41357:4534;;;:::o;23015:191::-;23108:6;;;-1:-1:-1;;;;;23125:17:0;;;-1:-1:-1;;;;;;23125:17:0;;;;;;;23158:40;;23108:6;;;23125:17;23108:6;;23158:40;;23089:16;;23158:40;23078:128;23015:191;:::o;39904:188::-;-1:-1:-1;;;;;39987:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;39987:39:0;;;;;;;;;;40044:40;;39987:39;;:31;40044:40;;;39904:188;;:::o;16613:770::-;-1:-1:-1;;;;;16753:20:0;;16745:70;;;;-1:-1:-1;;;16745:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16834:23:0;;16826:71;;;;-1:-1:-1;;;16826:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16994:17:0;;16970:21;16994:17;;;;;;;;;;;17044:23;;;;17022:111;;;;-1:-1:-1;;;17022:111:0;;17601:2:1;17022:111:0;;;17583:21:1;17640:2;17620:18;;;17613:30;17679:34;17659:18;;;17652:62;-1:-1:-1;;;17730:18:1;;;17723:36;17776:19;;17022:111:0;17399:402:1;17022:111:0;-1:-1:-1;;;;;17169:17:0;;;:9;:17;;;;;;;;;;;17189:22;;;17169:42;;17233:20;;;;;;;;:30;;17205:6;;17169:9;17233:30;;17205:6;;17233:30;:::i;:::-;;;;;;;;17298:9;-1:-1:-1;;;;;17281:35:0;17290:6;-1:-1:-1;;;;;17281:35:0;;17309:6;17281:35;;;;2220:25:1;;2208:2;2193:18;;2074:177;17281:35:0;;;;;;;;17329:46;41357:4534;46480:934;46563:4;46519:23;12428:18;;;;;;;;;;;;;;46663:20;;;46659:59;;46700:7;;;46480:934::o;46659:59::-;46752:16;;46734:15;:34;46730:101;;;46803:16;;46785:34;;46730:101;46872:15;46928:21;46962:36;46872:15;46962:16;:36::i;:::-;47011:18;47032:44;:21;47058:17;47032:25;:44::i;:::-;47011:65;;47089:17;47109:51;47142:17;47109:28;47124:12;;47109:10;:14;;:28;;;;:::i;:51::-;47194:1;47173:18;:22;;;47206:12;:16;;;47257:11;;47249:47;;47089:71;;-1:-1:-1;;;;;;47257:11:0;;47089:71;;47249:47;47194:1;47249:47;47089:71;47257:11;47249:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47331:11:0;;47323:83;;47235:61;;-1:-1:-1;47331:11:0;;;-1:-1:-1;;;;;47331:11:0;;47356:21;;47323:83;;;;47356:21;47331:11;47323:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;46480:934: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;45899:571::-;46049:16;;;46063:1;46049:16;;;;;;;;46025:21;;46049:16;;;;;;;;;;-1:-1:-1;46049:16:0;46025:40;;46094:4;46076;46081:1;46076:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46076:23:0;;;-1:-1:-1;;;;;46076:23:0;;;;;46120:9;-1:-1:-1;;;;;46120:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46110:4;46115:1;46110:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;46110:26:0;;;-1:-1:-1;;;;;46110:26:0;;;;;46149:56;46166:4;46181:9;46193:11;46149:8;:56::i;:::-;46244:218;;-1:-1:-1;;;46244:218:0;;-1:-1:-1;;;;;46244:9:0;:60;;;;:218;;46319:11;;46345:1;;46389:4;;46416;;46436:15;;46244:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45954:516;45899:571;:::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:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:160::-;1280:20;;1336:13;;1329:21;1319:32;;1309:60;;1365:1;1362;1355:12;1309:60;1215:160;;;:::o;1380:689::-;1472:6;1480;1488;1541:2;1529:9;1520:7;1516:23;1512:32;1509:52;;;1557:1;1554;1547:12;1509:52;1597:9;1584:23;1626:18;1667:2;1659:6;1656:14;1653:34;;;1683:1;1680;1673:12;1653:34;1721:6;1710:9;1706:22;1696:32;;1766:7;1759:4;1755:2;1751:13;1747:27;1737:55;;1788:1;1785;1778:12;1737:55;1828:2;1815:16;1854:2;1846:6;1843:14;1840:34;;;1870:1;1867;1860:12;1840:34;1925:7;1918:4;1908:6;1905:1;1901:14;1897:2;1893:23;1889:34;1886:47;1883:67;;;1946:1;1943;1936:12;1883:67;1977:4;1969:13;;;;-1:-1:-1;2001:6:1;-1:-1:-1;2026:37:1;;2042:20;;;-1:-1:-1;2026:37:1;:::i;:::-;2016:47;;1380:689;;;;;:::o;2256:247::-;2315:6;2368:2;2356:9;2347:7;2343:23;2339:32;2336:52;;;2384:1;2381;2374:12;2336:52;2423:9;2410:23;2442:31;2467:5;2442:31;:::i;2508:456::-;2585:6;2593;2601;2654:2;2642:9;2633:7;2629:23;2625:32;2622:52;;;2670:1;2667;2660:12;2622:52;2709:9;2696:23;2728:31;2753:5;2728:31;:::i;:::-;2778:5;-1:-1:-1;2835:2:1;2820:18;;2807:32;2848:33;2807:32;2848:33;:::i;:::-;2508:456;;2900:7;;-1:-1:-1;;;2954:2:1;2939:18;;;;2926:32;;2508:456::o;4032:180::-;4091:6;4144:2;4132:9;4123:7;4119:23;4115:32;4112:52;;;4160:1;4157;4150:12;4112:52;-1:-1:-1;4183:23:1;;4032:180;-1:-1:-1;4032:180:1:o;4217:315::-;4282:6;4290;4343:2;4331:9;4322:7;4318:23;4314:32;4311:52;;;4359:1;4356;4349:12;4311:52;4398:9;4385:23;4417:31;4442:5;4417:31;:::i;:::-;4467:5;-1:-1:-1;4491:35:1;4522:2;4507:18;;4491:35;:::i;:::-;4481:45;;4217:315;;;;;:::o;4745:248::-;4813:6;4821;4874:2;4862:9;4853:7;4849:23;4845:32;4842:52;;;4890:1;4887;4880:12;4842:52;-1:-1:-1;;4913:23:1;;;4983:2;4968:18;;;4955:32;;-1:-1:-1;4745:248:1:o;5723:316::-;5797:6;5805;5813;5866:2;5854:9;5845:7;5841:23;5837:32;5834:52;;;5882:1;5879;5872:12;5834:52;5905:26;5921:9;5905:26;:::i;:::-;5895:36;5978:2;5963:18;;5950:32;;-1:-1:-1;6029:2:1;6014:18;;;6001:32;;5723:316;-1:-1:-1;;;5723:316:1:o;6044:388::-;6112:6;6120;6173:2;6161:9;6152:7;6148:23;6144:32;6141:52;;;6189:1;6186;6179:12;6141:52;6228:9;6215:23;6247:31;6272:5;6247:31;:::i;:::-;6297:5;-1:-1:-1;6354:2:1;6339:18;;6326:32;6367:33;6326:32;6367:33;:::i;:::-;6419:7;6409:17;;;6044:388;;;;;:::o;6791:380::-;6870:1;6866:12;;;;6913;;;6934:61;;6988:4;6980:6;6976:17;6966:27;;6934:61;7041:2;7033:6;7030:14;7010:18;7007:38;7004:161;;7087:10;7082:3;7078:20;7075:1;7068:31;7122:4;7119:1;7112:15;7150:4;7147:1;7140:15;7004:161;;6791:380;;;:::o;7176:356::-;7378:2;7360:21;;;7397:18;;;7390:30;7456:34;7451:2;7436:18;;7429:62;7523:2;7508:18;;7176:356::o;7537:127::-;7598:10;7593:3;7589:20;7586:1;7579:31;7629:4;7626:1;7619:15;7653:4;7650:1;7643:15;7669:127;7730:10;7725:3;7721:20;7718:1;7711:31;7761:4;7758:1;7751:15;7785:4;7782:1;7775:15;7801:135;7840:3;7861:17;;;7858:43;;7881:18;;:::i;:::-;-1:-1:-1;7928:1:1;7917:13;;7801:135::o;8350:125::-;8415:9;;;8436:10;;;8433:36;;;8449:18;;:::i;9181:168::-;9254:9;;;9285;;9302:15;;;9296:22;;9282:37;9272:71;;9323:18;;:::i;9354:217::-;9394:1;9420;9410:132;;9464:10;9459:3;9455:20;9452:1;9445:31;9499:4;9496:1;9489:15;9527:4;9524:1;9517:15;9410:132;-1:-1:-1;9556:9:1;;9354:217::o;14003:401::-;14205:2;14187:21;;;14244:2;14224:18;;;14217:30;14283:34;14278:2;14263:18;;14256:62;-1:-1:-1;;;14349:2:1;14334:18;;14327:35;14394:3;14379:19;;14003:401::o;14409:399::-;14611:2;14593:21;;;14650:2;14630:18;;;14623:30;14689:34;14684:2;14669:18;;14662:62;-1:-1:-1;;;14755:2:1;14740:18;;14733:33;14798:3;14783:19;;14409:399::o;17266:128::-;17333:9;;;17354:11;;;17351:37;;;17368:18;;:::i;18148:251::-;18218:6;18271:2;18259:9;18250:7;18246:23;18242:32;18239:52;;;18287:1;18284;18277:12;18239:52;18319:9;18313:16;18338:31;18363:5;18338:31;:::i;18404:980::-;18666:4;18714:3;18703:9;18699:19;18745:6;18734:9;18727:25;18771:2;18809:6;18804:2;18793:9;18789:18;18782:34;18852:3;18847:2;18836:9;18832:18;18825:31;18876:6;18911;18905:13;18942:6;18934;18927:22;18980:3;18969:9;18965:19;18958:26;;19019:2;19011:6;19007:15;18993:29;;19040:1;19050:195;19064:6;19061:1;19058:13;19050:195;;;19129:13;;-1:-1:-1;;;;;19125:39:1;19113:52;;19220:15;;;;19185:12;;;;19161:1;19079:9;19050:195;;;-1:-1:-1;;;;;;;19301:32:1;;;;19296:2;19281:18;;19274:60;-1:-1:-1;;;19365:3:1;19350:19;19343:35;19262:3;18404:980;-1:-1:-1;;;18404:980:1:o

Swarm Source

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