ETH Price: $3,059.34 (+2.59%)
Gas: 2 Gwei

Token

Luna Inu (LINU)
 

Overview

Max Total Supply

1,000,000,000,000,000 LINU

Holders

1,775

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,467,255,146 LINU

Value
$0.00
0x07a1FD3737c3C4EfbF62Cc765eFF25A5510d1aC6
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:
LUNAINU

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
*/
// SPDX-License-Identifier: Unlicensed
 
pragma solidity 0.8.13;
 
abstract contract Context
{
    function _msgSender() internal view virtual returns (address)
    {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata)
    {
        return msg.data;
    }
}
 
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);
 
    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);
 
    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);
 
    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);
 
    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);
 
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
 
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
 
/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);
 
    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);
 
    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}
 
/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using this function
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
 
    mapping(address => mapping(address => uint256)) private _allowances;
 
    uint256 private _totalSupply;
 
    string private _name;
    string private _symbol;
 
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
 
    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }
 
    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
 
    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }
 
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
 
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
 
    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
 
        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }
 
        return true;
    }
 
    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }
 
    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }
 
        return true;
    }
 
    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
 
        _beforeTokenTransfer(sender, recipient, amount);
 
        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;
 
        emit Transfer(sender, recipient, amount);
 
        _afterTokenTransfer(sender, recipient, amount);
    }
 
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _createInitialSupply(address account, 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 {}
}
 
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;
 
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
 
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }
 
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }
 
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
 
    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }
 
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }
 
    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
 
interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
 
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
 
    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}
 
interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);
 
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
 
interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);
 
    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);
 
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);
 
    function createPair(address tokenA, address tokenB) external returns (address pair);
 
    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}
 
/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SignedSafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SignedSafeMath {
    /**
     * @dev Returns the multiplication of two signed integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        return a * b;
    }
 
    /**
     * @dev Returns the integer division of two signed integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        return a / b;
    }
 
    /**
     * @dev Returns the subtraction of two signed integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        return a - b;
    }
 
    /**
     * @dev Returns the addition of two signed integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        return a + b;
    }
}
 
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
 
/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }
 
    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }
 
    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }
 
    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }
 
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }
 
    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}
 
/**
 * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such an operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 *
 * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
 * all math on `uint256` and `int256` and then downcasting.
 */
library SafeCast {
    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
        return uint224(value);
    }
 
    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
        return uint128(value);
    }
 
    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
        return uint96(value);
    }
 
    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
        return uint64(value);
    }
 
    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
        return uint32(value);
    }
 
    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
        return uint16(value);
    }
 
    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
        return uint8(value);
    }
 
    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        require(value >= 0, "SafeCast: value must be positive");
        return uint256(value);
    }
 
    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     *
     * _Available since v3.1._
     */
    function toInt128(int256 value) internal pure returns (int128) {
        require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits");
        return int128(value);
    }
 
    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     *
     * _Available since v3.1._
     */
    function toInt64(int256 value) internal pure returns (int64) {
        require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits");
        return int64(value);
    }
 
    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     *
     * _Available since v3.1._
     */
    function toInt32(int256 value) internal pure returns (int32) {
        require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits");
        return int32(value);
    }
 
    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     *
     * _Available since v3.1._
     */
    function toInt16(int256 value) internal pure returns (int16) {
        require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits");
        return int16(value);
    }
 
    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     *
     * _Available since v3.1._
     */
    function toInt8(int256 value) internal pure returns (int8) {
        require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits");
        return int8(value);
    }
 
    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
        return int256(value);
    }
}
 
contract LUNAINU is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;
 
    bool private inSwapAndLiquify;
 
    bool public swapAndLiquifyEnabled = true;
 
    bool public enableEarlySellTax = true;
 
    uint256 public maxSellTransactionAmount = 1000000000000000 * (10**18);
    uint256 public maxBuyTransactionAmount = 100000000000000 * (10**18);
    uint256 public swapTokensAtAmount = 1000000000 * (10**18);
    uint256 public maxWalletToken = 1000000000 * (10**18);
 
    uint256 private buyTotalFees = 3;
    uint256 public sellTotalFees = 5;
    uint256 public earlySellTotalFee = 20;
 
    // auto burn fee
    uint256 public burnFee = 0;
    address public deadWallet = 0x000000000000000000000000000000000000dEaD;
   
 
    // distribute the collected tax percentage wise
    uint256 public liquidityPercent = 50; // 50% of total collected tax
    uint256 public marketingPercent = 20; // 20% of total collected tax
    uint256 public devPercent = 30; // 30% of total collected tax
 
    address payable private marketingWallet = payable(0x78BE99CAcC9c895c4d6c1be03F38d12fF6819AFa);
    address payable private devWallet = payable(0x24F588fD684F13A95dc7c2976C04D3874Ee3595f);
   
    // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
 
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;
    mapping (address => uint256) public lastTxTimestamp;
 
    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
 
    event ExcludeFromFees(address indexed account, bool isExcluded);
 
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
 
    event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue);
 
    event SwapAndLiquifyEnabledUpdated(bool enabled);
 
    event SwapAndLiquify(
        uint256 tokensIntoLiqudity,
        uint256 ethReceived
    );
 
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
 
    constructor() ERC20("Luna Inu", "LINU") {
 
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // pancakeswap v2 router address
         // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
 
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;
 
        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);
 
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(devWallet, true);
        excludeFromFees(address(this), true);
       
        /*
            an internal function that is only called here,
            and CANNOT be called ever again
        */
        _createInitialSupply(owner(), 1000000000000000 * (10**18));
    }
 
    receive() external payable {
 
    }
 
    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(newAddress != address(uniswapV2Router), "KCoin: The router already has that address");
        emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
    }
 
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded, "KCoin: Account is already the value of 'excluded'");
        _isExcludedFromFees[account] = excluded;
 
        emit ExcludeFromFees(account, excluded);
    }
   
    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "KCoin: The PancakeSwap pair cannot be removed from automatedMarketMakerPairs");
 
        _setAutomatedMarketMakerPair(pair, value);
    }
 
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(automatedMarketMakerPairs[pair] != value, "KCoin: Automated market maker pair is already set to that value");
        automatedMarketMakerPairs[pair] = value;
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }
   
    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
   
    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
 
    function _transfer(address from, address to, uint256 amount) internal override
    {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
 
        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
       
        if(automatedMarketMakerPairs[from] && (!_isExcludedFromFees[from]) && (!_isExcludedFromFees[to])) {
            require(amount <= maxBuyTransactionAmount, "amount exceeds the maxBuyTransactionAmount.");
            uint256 contractBalanceRecepient = balanceOf(to);
            require(contractBalanceRecepient + amount <= maxWalletToken,"Exceeds maximum wallet token amount.");
            lastTxTimestamp[to] = block.timestamp;
           
        }
 
        if(automatedMarketMakerPairs[to] && (!_isExcludedFromFees[from]) && (!_isExcludedFromFees[to])) {
            require(amount <= maxSellTransactionAmount, "amount exceeds the maxSellTransactionAmount.");
        }
       
 
        uint256 contractTokenBalance = balanceOf(address(this));
       
        bool overMinTokenBalance = contractTokenBalance >= swapTokensAtAmount;
       
        if(
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            automatedMarketMakerPairs[to] &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = swapTokensAtAmount;
            swapAndLiquify(contractTokenBalance);
        }
 
        uint256 fees = 0;
        uint256 burnShare = 0;
         // if any account belongs to _isExcludedFromFee account then remove the fee
        if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            uint256 _totalFees = buyTotalFees;
 
            if (automatedMarketMakerPairs[to]) {  
                uint256 span = block.timestamp-lastTxTimestamp[from];
                if(enableEarlySellTax && span <= 24 hours) {
                    _totalFees = earlySellTotalFee;
                }
                else if(!enableEarlySellTax) {
                    _totalFees = sellTotalFees;
                }
            }
 
            fees = amount.mul(_totalFees).div(100);
            burnShare = amount.mul(burnFee).div(100);
            if(fees > 0) {
                super._transfer(from, address(this), fees);
            }
 
            if(burnShare > 0) {
                super._transfer(from, deadWallet, burnShare);
            }
 
            amount = amount.sub(fees.add(burnShare));
        }
 
        super._transfer(from, to, amount);
 
    }
 
     function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 tokensForLiquidity = contractTokenBalance.mul(liquidityPercent).div(100);
        // split the Liquidity token balance into halves
        uint256 half = tokensForLiquidity.div(2);
        uint256 otherHalf = tokensForLiquidity.sub(half);
        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;
        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered
        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);
        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);
        // swap and Send  Eth to marketing, dev wallets
        swapTokensForEth(contractTokenBalance.sub(tokensForLiquidity));
        marketingWallet.transfer(address(this).balance.mul(marketingPercent).div(marketingPercent.add(devPercent)));
        devWallet.transfer(address(this).balance);
        emit SwapAndLiquify(half, newBalance);
    }
 
    function swapTokensForEth(uint256 tokenAmount) private {
 
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        if(allowance(address(this), address(uniswapV2Router)) < tokenAmount) {
          _approve(address(this), address(uniswapV2Router), ~uint256(0));
        }
 
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
       
    }
 
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
       
        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
       
    }
 
    function setMaxSellTransaction(uint256 _maxSellTxAmount) public onlyOwner {
        maxSellTransactionAmount = _maxSellTxAmount;
        require(maxSellTransactionAmount>totalSupply().div(1000), "value is too low");
    }
   
    function setMaxBuyTransaction(uint256 _maxBuyTxAmount) public onlyOwner {
        maxBuyTransactionAmount = _maxBuyTxAmount;
        require(maxBuyTransactionAmount>totalSupply().div(1000), "value is too low");
    }
 
    function setSwapTokensAtAmouunt(uint256 _newAmount) public onlyOwner {
        swapTokensAtAmount = _newAmount;
    }
 
    function setDevWallet(address payable wallet) public onlyOwner {
        devWallet = wallet;
    }
 
    function updateBuyTotalTax(uint256 _buyTotalFees) public onlyOwner {
        buyTotalFees = _buyTotalFees;
        require(buyTotalFees <= 10, "Fee too high");
    }
 
   function updateSellTotalTax(uint256 _sellTotalFees) public onlyOwner {
        sellTotalFees = _sellTotalFees;
        require(sellTotalFees <= 10, "Fee too high");
    }
 
    function updateEarlySellTotalTax(uint256 _earlySellTotalFee) public onlyOwner {
        earlySellTotalFee = _earlySellTotalFee;
        require(earlySellTotalFee <= 20, "Fee too high");
    }
 
    function updateTaxDistributionPercentage(uint256 _liquidityPercent, uint256 _marketingPercent, uint256 _devPercent) public onlyOwner {
        require(_liquidityPercent.add(_marketingPercent).add(_devPercent) == 100, "total percentage must be equal to 100");
        liquidityPercent = _liquidityPercent;
        marketingPercent = _marketingPercent;
        devPercent = _devPercent;  
    }
 
    function setEarlySellTax(bool onoff) external onlyOwner  {
        enableEarlySellTax = onoff;
    }
 
    function setAutoBurn(uint256 _burnFee) external onlyOwner  {
        require(_burnFee <= 5, "value too high");
        burnFee = _burnFee;
    }
 
    function setMaxWalletToken(uint256 _maxToken) external onlyOwner {
        maxWalletToken = _maxToken;
        require(maxWalletToken>totalSupply().div(1000), "value is too low");
    }
 
}

Contract Security Audit

Contract ABI

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

60a06040526001600660156101000a81548160ff0219169083151502179055506001600660166101000a81548160ff0219169083151502179055506d314dc6448d9338c15b0a000000006007556d04ee2d6d415b85acef81000000006008556b033b2e3c9fd0803ce80000006009556b033b2e3c9fd0803ce8000000600a556003600b556005600c556014600d556000600e5561dead600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060326010556014601155601e6012557378be99cacc9c895c4d6c1be03f38d12ff6819afa601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507324f588fd684f13a95dc7c2976c04d3874ee3595f601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200019b57600080fd5b506040518060400160405280600881526020017f4c756e6120496e750000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4c494e550000000000000000000000000000000000000000000000000000000081525081600390805190602001906200022092919062000abb565b5080600490805190602001906200023992919062000abb565b5050506200025c620002506200053c60201b60201c565b6200054460201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e9919062000bd5565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000351573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000377919062000bd5565b6040518363ffffffff1660e01b81526004016200039692919062000c18565b6020604051808303816000875af1158015620003b6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003dc919062000bd5565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050620004668160016200060a60201b60201c565b620004886200047a6200074060201b60201c565b60016200076a60201b60201c565b620004bd601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200076a60201b60201c565b620004f2601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200076a60201b60201c565b620005053060016200076a60201b60201c565b62000534620005196200074060201b60201c565b6d314dc6448d9338c15b0a000000006200093960201b60201c565b505062000fcc565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036200069f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006969062000ccc565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200077a6200053c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007a06200074060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f09062000d3e565b60405180910390fd5b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036200088e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008859062000dd6565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200092d919062000e15565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009a29062000e82565b60405180910390fd5b620009bf6000838362000ab160201b60201c565b8060026000828254620009d3919062000edd565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a2a919062000edd565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a91919062000f4b565b60405180910390a362000aad6000838362000ab660201b60201c565b5050565b505050565b505050565b82805462000ac99062000f97565b90600052602060002090601f01602090048101928262000aed576000855562000b39565b82601f1062000b0857805160ff191683800117855562000b39565b8280016001018555821562000b39579182015b8281111562000b3857825182559160200191906001019062000b1b565b5b50905062000b48919062000b4c565b5090565b5b8082111562000b6757600081600090555060010162000b4d565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b9d8262000b70565b9050919050565b62000baf8162000b90565b811462000bbb57600080fd5b50565b60008151905062000bcf8162000ba4565b92915050565b60006020828403121562000bee5762000bed62000b6b565b5b600062000bfe8482850162000bbe565b91505092915050565b62000c128162000b90565b82525050565b600060408201905062000c2f600083018562000c07565b62000c3e602083018462000c07565b9392505050565b600082825260208201905092915050565b7f4b436f696e3a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b600062000cb4603f8362000c45565b915062000cc18262000c56565b604082019050919050565b6000602082019050818103600083015262000ce78162000ca5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000d2660208362000c45565b915062000d338262000cee565b602082019050919050565b6000602082019050818103600083015262000d598162000d17565b9050919050565b7f4b436f696e3a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b600062000dbe60318362000c45565b915062000dcb8262000d60565b604082019050919050565b6000602082019050818103600083015262000df18162000daf565b9050919050565b60008115159050919050565b62000e0f8162000df8565b82525050565b600060208201905062000e2c600083018462000e04565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e6a601f8362000c45565b915062000e778262000e32565b602082019050919050565b6000602082019050818103600083015262000e9d8162000e5b565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000eea8262000ea4565b915062000ef78362000ea4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f2f5762000f2e62000eae565b5b828201905092915050565b62000f458162000ea4565b82525050565b600060208201905062000f62600083018462000f3a565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000fb057607f821691505b60208210810362000fc65762000fc562000f68565b5b50919050565b60805161494662000fef60003960008181610f6d01526117e801526149466000f3fe60806040526004361061028c5760003560e01c8063750c11b61161015a578063b3b5e043116100c1578063e2f456051161007a578063e2f45605146109ff578063e5c4005c14610a2a578063e6c75f7114610a53578063f2fde38b14610a7e578063fc3c28af14610aa7578063fce589d814610ad257610293565b8063b3b5e043146108df578063b62496f514610908578063c024666814610945578063c49b9a801461096e578063d8020a1814610997578063dd62ed3e146109c257610293565b8063a265777811610113578063a2657778146107bd578063a457c2d7146107e6578063a4d15b6414610823578063a9059cbb1461084e578063b06837551461088b578063b2f5260a146108b657610293565b8063750c11b6146106c157806385141a77146106ea5780638da5cb5b1461071557806391d55f411461074057806395d89b41146107695780639a7a23d61461079457610293565b80634551bbe9116101fe5780635c38ffe2116101b75780635c38ffe2146105c75780636078a9b5146105f057806365b8dbc0146106195780636a486a8e1461064257806370a082311461066d578063715018a6146106aa57610293565b80634551bbe9146104a357806349bd5a5e146104e05780634a74bb021461050b5780634fbee19314610536578063533f9630146105735780635aa821a91461059c57610293565b806318160ddd1161025057806318160ddd1461037f5780631aa04b88146103aa5780631f53ac02146103d557806323b872dd146103fe578063313ce5671461043b578063395093511461046657610293565b806302259e9e1461029857806306fdde03146102c3578063095ea7b3146102ee5780630db722c41461032b5780631694505e1461035457610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610afd565b6040516102ba9190613468565b60405180910390f35b3480156102cf57600080fd5b506102d8610b03565b6040516102e5919061351c565b60405180910390f35b3480156102fa57600080fd5b50610315600480360381019061031091906135cd565b610b95565b6040516103229190613628565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190613643565b610bb3565b005b34801561036057600080fd5b50610369610cb0565b60405161037691906136f5565b60405180910390f35b34801561038b57600080fd5b50610394610cd6565b6040516103a19190613468565b60405180910390f35b3480156103b657600080fd5b506103bf610ce0565b6040516103cc9190613468565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f7919061374e565b610ce6565b005b34801561040a57600080fd5b506104256004803603810190610420919061377b565b610da6565b6040516104329190613628565b60405180910390f35b34801561044757600080fd5b50610450610e9e565b60405161045d91906137ea565b60405180910390f35b34801561047257600080fd5b5061048d600480360381019061048891906135cd565b610ea7565b60405161049a9190613628565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c59190613805565b610f53565b6040516104d79190613468565b60405180910390f35b3480156104ec57600080fd5b506104f5610f6b565b6040516105029190613841565b60405180910390f35b34801561051757600080fd5b50610520610f8f565b60405161052d9190613628565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613805565b610fa2565b60405161056a9190613628565b60405180910390f35b34801561057f57600080fd5b5061059a6004803603810190610595919061385c565b610ff8565b005b3480156105a857600080fd5b506105b16110c4565b6040516105be9190613468565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e9919061385c565b6110ca565b005b3480156105fc57600080fd5b506106176004803603810190610612919061385c565b6111af565b005b34801561062557600080fd5b50610640600480360381019061063b9190613805565b61127b565b005b34801561064e57600080fd5b50610657611447565b6040516106649190613468565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f9190613805565b61144d565b6040516106a19190613468565b60405180910390f35b3480156106b657600080fd5b506106bf611495565b005b3480156106cd57600080fd5b506106e860048036038101906106e3919061385c565b61151d565b005b3480156106f657600080fd5b506106ff6115a3565b60405161070c9190613841565b60405180910390f35b34801561072157600080fd5b5061072a6115c9565b6040516107379190613841565b60405180910390f35b34801561074c57600080fd5b506107676004803603810190610762919061385c565b6115f3565b005b34801561077557600080fd5b5061077e6116d8565b60405161078b919061351c565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b691906138b5565b61176a565b005b3480156107c957600080fd5b506107e460048036038101906107df91906138f5565b611882565b005b3480156107f257600080fd5b5061080d600480360381019061080891906135cd565b61191b565b60405161081a9190613628565b60405180910390f35b34801561082f57600080fd5b50610838611a06565b6040516108459190613628565b60405180910390f35b34801561085a57600080fd5b50610875600480360381019061087091906135cd565b611a19565b6040516108829190613628565b60405180910390f35b34801561089757600080fd5b506108a0611a37565b6040516108ad9190613468565b60405180910390f35b3480156108c257600080fd5b506108dd60048036038101906108d8919061385c565b611a3d565b005b3480156108eb57600080fd5b506109066004803603810190610901919061385c565b611b09565b005b34801561091457600080fd5b5061092f600480360381019061092a9190613805565b611bee565b60405161093c9190613628565b60405180910390f35b34801561095157600080fd5b5061096c600480360381019061096791906138b5565b611c0e565b005b34801561097a57600080fd5b50610995600480360381019061099091906138f5565b611dc5565b005b3480156109a357600080fd5b506109ac611e95565b6040516109b99190613468565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e49190613922565b611e9b565b6040516109f69190613468565b60405180910390f35b348015610a0b57600080fd5b50610a14611f22565b604051610a219190613468565b60405180910390f35b348015610a3657600080fd5b50610a516004803603810190610a4c919061385c565b611f28565b005b348015610a5f57600080fd5b50610a68611ff2565b604051610a759190613468565b60405180910390f35b348015610a8a57600080fd5b50610aa56004803603810190610aa09190613805565b611ff8565b005b348015610ab357600080fd5b50610abc6120ef565b604051610ac99190613468565b60405180910390f35b348015610ade57600080fd5b50610ae76120f5565b604051610af49190613468565b60405180910390f35b60075481565b606060038054610b1290613991565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3e90613991565b8015610b8b5780601f10610b6057610100808354040283529160200191610b8b565b820191906000526020600020905b815481529060010190602001808311610b6e57829003601f168201915b5050505050905090565b6000610ba9610ba26120fb565b8484612103565b6001905092915050565b610bbb6120fb565b73ffffffffffffffffffffffffffffffffffffffff16610bd96115c9565b73ffffffffffffffffffffffffffffffffffffffff1614610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2690613a0e565b60405180910390fd5b6064610c5682610c4885876122cc90919063ffffffff16565b6122cc90919063ffffffff16565b14610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d90613aa0565b60405180910390fd5b826010819055508160118190555080601281905550505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600d5481565b610cee6120fb565b73ffffffffffffffffffffffffffffffffffffffff16610d0c6115c9565b73ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990613a0e565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610db38484846122e2565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610dfe6120fb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590613b32565b60405180910390fd5b610e9285610e8a6120fb565b858403612103565b60019150509392505050565b60006012905090565b6000610f49610eb46120fb565b848460016000610ec26120fb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f449190613b81565b612103565b6001905092915050565b60176020528060005260406000206000915090505481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600660159054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110006120fb565b73ffffffffffffffffffffffffffffffffffffffff1661101e6115c9565b73ffffffffffffffffffffffffffffffffffffffff1614611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90613a0e565b60405180910390fd5b80600b81905550600a600b5411156110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890613c23565b60405180910390fd5b50565b60085481565b6110d26120fb565b73ffffffffffffffffffffffffffffffffffffffff166110f06115c9565b73ffffffffffffffffffffffffffffffffffffffff1614611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90613a0e565b60405180910390fd5b806007819055506111696103e861115b610cd6565b612a3090919063ffffffff16565b600754116111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390613c8f565b60405180910390fd5b50565b6111b76120fb565b73ffffffffffffffffffffffffffffffffffffffff166111d56115c9565b73ffffffffffffffffffffffffffffffffffffffff161461122b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122290613a0e565b60405180910390fd5b80600d819055506014600d541115611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90613c23565b60405180910390fd5b50565b6112836120fb565b73ffffffffffffffffffffffffffffffffffffffff166112a16115c9565b73ffffffffffffffffffffffffffffffffffffffff16146112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90613a0e565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90613d21565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61149d6120fb565b73ffffffffffffffffffffffffffffffffffffffff166114bb6115c9565b73ffffffffffffffffffffffffffffffffffffffff1614611511576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150890613a0e565b60405180910390fd5b61151b6000612a46565b565b6115256120fb565b73ffffffffffffffffffffffffffffffffffffffff166115436115c9565b73ffffffffffffffffffffffffffffffffffffffff1614611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090613a0e565b60405180910390fd5b8060098190555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115fb6120fb565b73ffffffffffffffffffffffffffffffffffffffff166116196115c9565b73ffffffffffffffffffffffffffffffffffffffff161461166f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166690613a0e565b60405180910390fd5b80600a819055506116926103e8611684610cd6565b612a3090919063ffffffff16565b600a54116116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90613c8f565b60405180910390fd5b50565b6060600480546116e790613991565b80601f016020809104026020016040519081016040528092919081815260200182805461171390613991565b80156117605780601f1061173557610100808354040283529160200191611760565b820191906000526020600020905b81548152906001019060200180831161174357829003601f168201915b5050505050905090565b6117726120fb565b73ffffffffffffffffffffffffffffffffffffffff166117906115c9565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90613a0e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90613dd9565b60405180910390fd5b61187e8282612b0c565b5050565b61188a6120fb565b73ffffffffffffffffffffffffffffffffffffffff166118a86115c9565b73ffffffffffffffffffffffffffffffffffffffff16146118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590613a0e565b60405180910390fd5b80600660166101000a81548160ff02191690831515021790555050565b6000806001600061192a6120fb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156119e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119de90613e6b565b60405180910390fd5b6119fb6119f26120fb565b85858403612103565b600191505092915050565b600660169054906101000a900460ff1681565b6000611a2d611a266120fb565b84846122e2565b6001905092915050565b60105481565b611a456120fb565b73ffffffffffffffffffffffffffffffffffffffff16611a636115c9565b73ffffffffffffffffffffffffffffffffffffffff1614611ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab090613a0e565b60405180910390fd5b80600c81905550600a600c541115611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd90613c23565b60405180910390fd5b50565b611b116120fb565b73ffffffffffffffffffffffffffffffffffffffff16611b2f6115c9565b73ffffffffffffffffffffffffffffffffffffffff1614611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c90613a0e565b60405180910390fd5b80600881905550611ba86103e8611b9a610cd6565b612a3090919063ffffffff16565b60085411611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be290613c8f565b60405180910390fd5b50565b60166020528060005260406000206000915054906101000a900460ff1681565b611c166120fb565b73ffffffffffffffffffffffffffffffffffffffff16611c346115c9565b73ffffffffffffffffffffffffffffffffffffffff1614611c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8190613a0e565b60405180910390fd5b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1390613efd565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611db99190613628565b60405180910390a25050565b611dcd6120fb565b73ffffffffffffffffffffffffffffffffffffffff16611deb6115c9565b73ffffffffffffffffffffffffffffffffffffffff1614611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3890613a0e565b60405180910390fd5b80600660156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15981604051611e8a9190613628565b60405180910390a150565b60115481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b611f306120fb565b73ffffffffffffffffffffffffffffffffffffffff16611f4e6115c9565b73ffffffffffffffffffffffffffffffffffffffff1614611fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9b90613a0e565b60405180910390fd5b6005811115611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdf90613f69565b60405180910390fd5b80600e8190555050565b600a5481565b6120006120fb565b73ffffffffffffffffffffffffffffffffffffffff1661201e6115c9565b73ffffffffffffffffffffffffffffffffffffffff1614612074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206b90613a0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120da90613ffb565b60405180910390fd5b6120ec81612a46565b50565b60125481565b600e5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612172576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121699061408d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d89061411f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122bf9190613468565b60405180910390a3505050565b600081836122da9190613b81565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612351576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612348906141b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b790614243565b60405180910390fd5b600081036123d9576123d483836000612c3f565b612a2b565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561247c5750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124d25750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156125bf5760085481111561251c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612513906142d5565b60405180910390fd5b60006125278361144d565b9050600a5482826125389190613b81565b1115612579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257090614367565b60405180910390fd5b42601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126625750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126b85750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561270357600754811115612702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f9906143f9565b60405180910390fd5b5b600061270e3061144d565b9050600060095482101590508080156127345750600660149054906101000a900460ff16155b80156127895750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156127a15750600660159054906101000a900460ff165b156127b55760095491506127b482612ebe565b5b600080601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561285c5750601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a1b576000600b549050601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612954576000601760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054426129079190614419565b9050600660169054906101000a900460ff1680156129285750620151808111155b1561293757600d549150612952565b600660169054906101000a900460ff1661295157600c5491505b5b505b61297a606461296c83896130e890919063ffffffff16565b612a3090919063ffffffff16565b92506129a46064612996600e54896130e890919063ffffffff16565b612a3090919063ffffffff16565b915060008311156129bb576129ba883085612c3f565b5b60008211156129f2576129f188600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612c3f565b5b612a17612a0883856122cc90919063ffffffff16565b876130fe90919063ffffffff16565b9550505b612a26878787612c3f565b505050505b505050565b60008183612a3e919061447c565b905092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b959061451f565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca5906141b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1490614243565b60405180910390fd5b612d28838383613114565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da5906145b1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e419190613b81565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ea59190613468565b60405180910390a3612eb8848484613119565b50505050565b6001600660146101000a81548160ff0219169083151502179055506000612f036064612ef5601054856130e890919063ffffffff16565b612a3090919063ffffffff16565b90506000612f1b600283612a3090919063ffffffff16565b90506000612f3282846130fe90919063ffffffff16565b90506000479050612f428361311e565b6000612f5782476130fe90919063ffffffff16565b9050612f638382613397565b612f7e612f7986886130fe90919063ffffffff16565b61311e565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc612ff7612fd46012546011546122cc90919063ffffffff16565b612fe9601154476130e890919063ffffffff16565b612a3090919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015613022573d6000803e3d6000fd5b50601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561308b573d6000803e3d6000fd5b507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f838148684826040516130bd9291906145d1565b60405180910390a150505050506000600660146101000a81548160ff02191690831515021790555050565b600081836130f691906145fa565b905092915050565b6000818361310c9190614419565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561313b5761313a614654565b5b6040519080825280602002602001820160405280156131695781602001602082028036833780820191505090505b509050308160008151811061318157613180614683565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613228573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061324c91906146c7565b816001815181106132605761325f614683565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050816132c730600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611e9b565b10156132fd576132fc30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600019612103565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016133619594939291906147ed565b600060405180830381600087803b15801561337b57600080fd5b505af115801561338f573d6000803e3d6000fd5b505050505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806133e36115c9565b426040518863ffffffff1660e01b815260040161340596959493929190614847565b60606040518083038185885af1158015613423573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061344891906148bd565b5050505050565b6000819050919050565b6134628161344f565b82525050565b600060208201905061347d6000830184613459565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134bd5780820151818401526020810190506134a2565b838111156134cc576000848401525b50505050565b6000601f19601f8301169050919050565b60006134ee82613483565b6134f8818561348e565b935061350881856020860161349f565b613511816134d2565b840191505092915050565b6000602082019050818103600083015261353681846134e3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061356e82613543565b9050919050565b61357e81613563565b811461358957600080fd5b50565b60008135905061359b81613575565b92915050565b6135aa8161344f565b81146135b557600080fd5b50565b6000813590506135c7816135a1565b92915050565b600080604083850312156135e4576135e361353e565b5b60006135f28582860161358c565b9250506020613603858286016135b8565b9150509250929050565b60008115159050919050565b6136228161360d565b82525050565b600060208201905061363d6000830184613619565b92915050565b60008060006060848603121561365c5761365b61353e565b5b600061366a868287016135b8565b935050602061367b868287016135b8565b925050604061368c868287016135b8565b9150509250925092565b6000819050919050565b60006136bb6136b66136b184613543565b613696565b613543565b9050919050565b60006136cd826136a0565b9050919050565b60006136df826136c2565b9050919050565b6136ef816136d4565b82525050565b600060208201905061370a60008301846136e6565b92915050565b600061371b82613543565b9050919050565b61372b81613710565b811461373657600080fd5b50565b60008135905061374881613722565b92915050565b6000602082840312156137645761376361353e565b5b600061377284828501613739565b91505092915050565b6000806000606084860312156137945761379361353e565b5b60006137a28682870161358c565b93505060206137b38682870161358c565b92505060406137c4868287016135b8565b9150509250925092565b600060ff82169050919050565b6137e4816137ce565b82525050565b60006020820190506137ff60008301846137db565b92915050565b60006020828403121561381b5761381a61353e565b5b60006138298482850161358c565b91505092915050565b61383b81613563565b82525050565b60006020820190506138566000830184613832565b92915050565b6000602082840312156138725761387161353e565b5b6000613880848285016135b8565b91505092915050565b6138928161360d565b811461389d57600080fd5b50565b6000813590506138af81613889565b92915050565b600080604083850312156138cc576138cb61353e565b5b60006138da8582860161358c565b92505060206138eb858286016138a0565b9150509250929050565b60006020828403121561390b5761390a61353e565b5b6000613919848285016138a0565b91505092915050565b600080604083850312156139395761393861353e565b5b60006139478582860161358c565b92505060206139588582860161358c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139a957607f821691505b6020821081036139bc576139bb613962565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139f860208361348e565b9150613a03826139c2565b602082019050919050565b60006020820190508181036000830152613a27816139eb565b9050919050565b7f746f74616c2070657263656e74616765206d75737420626520657175616c207460008201527f6f20313030000000000000000000000000000000000000000000000000000000602082015250565b6000613a8a60258361348e565b9150613a9582613a2e565b604082019050919050565b60006020820190508181036000830152613ab981613a7d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613b1c60288361348e565b9150613b2782613ac0565b604082019050919050565b60006020820190508181036000830152613b4b81613b0f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b8c8261344f565b9150613b978361344f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bcc57613bcb613b52565b5b828201905092915050565b7f46656520746f6f20686967680000000000000000000000000000000000000000600082015250565b6000613c0d600c8361348e565b9150613c1882613bd7565b602082019050919050565b60006020820190508181036000830152613c3c81613c00565b9050919050565b7f76616c756520697320746f6f206c6f7700000000000000000000000000000000600082015250565b6000613c7960108361348e565b9150613c8482613c43565b602082019050919050565b60006020820190508181036000830152613ca881613c6c565b9050919050565b7f4b436f696e3a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b6000613d0b602a8361348e565b9150613d1682613caf565b604082019050919050565b60006020820190508181036000830152613d3a81613cfe565b9050919050565b7f4b436f696e3a205468652050616e63616b655377617020706169722063616e6e60008201527f6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b60208201527f65744d616b657250616972730000000000000000000000000000000000000000604082015250565b6000613dc3604c8361348e565b9150613dce82613d41565b606082019050919050565b60006020820190508181036000830152613df281613db6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613e5560258361348e565b9150613e6082613df9565b604082019050919050565b60006020820190508181036000830152613e8481613e48565b9050919050565b7f4b436f696e3a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b6000613ee760318361348e565b9150613ef282613e8b565b604082019050919050565b60006020820190508181036000830152613f1681613eda565b9050919050565b7f76616c756520746f6f2068696768000000000000000000000000000000000000600082015250565b6000613f53600e8361348e565b9150613f5e82613f1d565b602082019050919050565b60006020820190508181036000830152613f8281613f46565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fe560268361348e565b9150613ff082613f89565b604082019050919050565b6000602082019050818103600083015261401481613fd8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061407760248361348e565b91506140828261401b565b604082019050919050565b600060208201905081810360008301526140a68161406a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061410960228361348e565b9150614114826140ad565b604082019050919050565b60006020820190508181036000830152614138816140fc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061419b60258361348e565b91506141a68261413f565b604082019050919050565b600060208201905081810360008301526141ca8161418e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061422d60238361348e565b9150614238826141d1565b604082019050919050565b6000602082019050818103600083015261425c81614220565b9050919050565b7f616d6f756e74206578636565647320746865206d61784275795472616e73616360008201527f74696f6e416d6f756e742e000000000000000000000000000000000000000000602082015250565b60006142bf602b8361348e565b91506142ca82614263565b604082019050919050565b600060208201905081810360008301526142ee816142b2565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e742e00000000000000000000000000000000000000000000000000000000602082015250565b600061435160248361348e565b915061435c826142f5565b604082019050919050565b6000602082019050818103600083015261438081614344565b9050919050565b7f616d6f756e74206578636565647320746865206d617853656c6c5472616e736160008201527f6374696f6e416d6f756e742e0000000000000000000000000000000000000000602082015250565b60006143e3602c8361348e565b91506143ee82614387565b604082019050919050565b60006020820190508181036000830152614412816143d6565b9050919050565b60006144248261344f565b915061442f8361344f565b92508282101561444257614441613b52565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006144878261344f565b91506144928361344f565b9250826144a2576144a161444d565b5b828204905092915050565b7f4b436f696e3a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b6000614509603f8361348e565b9150614514826144ad565b604082019050919050565b60006020820190508181036000830152614538816144fc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061459b60268361348e565b91506145a68261453f565b604082019050919050565b600060208201905081810360008301526145ca8161458e565b9050919050565b60006040820190506145e66000830185613459565b6145f36020830184613459565b9392505050565b60006146058261344f565b91506146108361344f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561464957614648613b52565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506146c181613575565b92915050565b6000602082840312156146dd576146dc61353e565b5b60006146eb848285016146b2565b91505092915050565b6000819050919050565b600061471961471461470f846146f4565b613696565b61344f565b9050919050565b614729816146fe565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61476481613563565b82525050565b6000614776838361475b565b60208301905092915050565b6000602082019050919050565b600061479a8261472f565b6147a4818561473a565b93506147af8361474b565b8060005b838110156147e05781516147c7888261476a565b97506147d283614782565b9250506001810190506147b3565b5085935050505092915050565b600060a0820190506148026000830188613459565b61480f6020830187614720565b8181036040830152614821818661478f565b90506148306060830185613832565b61483d6080830184613459565b9695505050505050565b600060c08201905061485c6000830189613832565b6148696020830188613459565b6148766040830187614720565b6148836060830186614720565b6148906080830185613832565b61489d60a0830184613459565b979650505050505050565b6000815190506148b7816135a1565b92915050565b6000806000606084860312156148d6576148d561353e565b5b60006148e4868287016148a8565b93505060206148f5868287016148a8565b9250506040614906868287016148a8565b915050925092509256fea26469706673582212202b60b5416bcfec58f56ad69b93b047819d140290f0b3a152d98abcf25b46bac164736f6c634300080d0033

Deployed Bytecode

0x60806040526004361061028c5760003560e01c8063750c11b61161015a578063b3b5e043116100c1578063e2f456051161007a578063e2f45605146109ff578063e5c4005c14610a2a578063e6c75f7114610a53578063f2fde38b14610a7e578063fc3c28af14610aa7578063fce589d814610ad257610293565b8063b3b5e043146108df578063b62496f514610908578063c024666814610945578063c49b9a801461096e578063d8020a1814610997578063dd62ed3e146109c257610293565b8063a265777811610113578063a2657778146107bd578063a457c2d7146107e6578063a4d15b6414610823578063a9059cbb1461084e578063b06837551461088b578063b2f5260a146108b657610293565b8063750c11b6146106c157806385141a77146106ea5780638da5cb5b1461071557806391d55f411461074057806395d89b41146107695780639a7a23d61461079457610293565b80634551bbe9116101fe5780635c38ffe2116101b75780635c38ffe2146105c75780636078a9b5146105f057806365b8dbc0146106195780636a486a8e1461064257806370a082311461066d578063715018a6146106aa57610293565b80634551bbe9146104a357806349bd5a5e146104e05780634a74bb021461050b5780634fbee19314610536578063533f9630146105735780635aa821a91461059c57610293565b806318160ddd1161025057806318160ddd1461037f5780631aa04b88146103aa5780631f53ac02146103d557806323b872dd146103fe578063313ce5671461043b578063395093511461046657610293565b806302259e9e1461029857806306fdde03146102c3578063095ea7b3146102ee5780630db722c41461032b5780631694505e1461035457610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610afd565b6040516102ba9190613468565b60405180910390f35b3480156102cf57600080fd5b506102d8610b03565b6040516102e5919061351c565b60405180910390f35b3480156102fa57600080fd5b50610315600480360381019061031091906135cd565b610b95565b6040516103229190613628565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190613643565b610bb3565b005b34801561036057600080fd5b50610369610cb0565b60405161037691906136f5565b60405180910390f35b34801561038b57600080fd5b50610394610cd6565b6040516103a19190613468565b60405180910390f35b3480156103b657600080fd5b506103bf610ce0565b6040516103cc9190613468565b60405180910390f35b3480156103e157600080fd5b506103fc60048036038101906103f7919061374e565b610ce6565b005b34801561040a57600080fd5b506104256004803603810190610420919061377b565b610da6565b6040516104329190613628565b60405180910390f35b34801561044757600080fd5b50610450610e9e565b60405161045d91906137ea565b60405180910390f35b34801561047257600080fd5b5061048d600480360381019061048891906135cd565b610ea7565b60405161049a9190613628565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c59190613805565b610f53565b6040516104d79190613468565b60405180910390f35b3480156104ec57600080fd5b506104f5610f6b565b6040516105029190613841565b60405180910390f35b34801561051757600080fd5b50610520610f8f565b60405161052d9190613628565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613805565b610fa2565b60405161056a9190613628565b60405180910390f35b34801561057f57600080fd5b5061059a6004803603810190610595919061385c565b610ff8565b005b3480156105a857600080fd5b506105b16110c4565b6040516105be9190613468565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e9919061385c565b6110ca565b005b3480156105fc57600080fd5b506106176004803603810190610612919061385c565b6111af565b005b34801561062557600080fd5b50610640600480360381019061063b9190613805565b61127b565b005b34801561064e57600080fd5b50610657611447565b6040516106649190613468565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f9190613805565b61144d565b6040516106a19190613468565b60405180910390f35b3480156106b657600080fd5b506106bf611495565b005b3480156106cd57600080fd5b506106e860048036038101906106e3919061385c565b61151d565b005b3480156106f657600080fd5b506106ff6115a3565b60405161070c9190613841565b60405180910390f35b34801561072157600080fd5b5061072a6115c9565b6040516107379190613841565b60405180910390f35b34801561074c57600080fd5b506107676004803603810190610762919061385c565b6115f3565b005b34801561077557600080fd5b5061077e6116d8565b60405161078b919061351c565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b691906138b5565b61176a565b005b3480156107c957600080fd5b506107e460048036038101906107df91906138f5565b611882565b005b3480156107f257600080fd5b5061080d600480360381019061080891906135cd565b61191b565b60405161081a9190613628565b60405180910390f35b34801561082f57600080fd5b50610838611a06565b6040516108459190613628565b60405180910390f35b34801561085a57600080fd5b50610875600480360381019061087091906135cd565b611a19565b6040516108829190613628565b60405180910390f35b34801561089757600080fd5b506108a0611a37565b6040516108ad9190613468565b60405180910390f35b3480156108c257600080fd5b506108dd60048036038101906108d8919061385c565b611a3d565b005b3480156108eb57600080fd5b506109066004803603810190610901919061385c565b611b09565b005b34801561091457600080fd5b5061092f600480360381019061092a9190613805565b611bee565b60405161093c9190613628565b60405180910390f35b34801561095157600080fd5b5061096c600480360381019061096791906138b5565b611c0e565b005b34801561097a57600080fd5b50610995600480360381019061099091906138f5565b611dc5565b005b3480156109a357600080fd5b506109ac611e95565b6040516109b99190613468565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e49190613922565b611e9b565b6040516109f69190613468565b60405180910390f35b348015610a0b57600080fd5b50610a14611f22565b604051610a219190613468565b60405180910390f35b348015610a3657600080fd5b50610a516004803603810190610a4c919061385c565b611f28565b005b348015610a5f57600080fd5b50610a68611ff2565b604051610a759190613468565b60405180910390f35b348015610a8a57600080fd5b50610aa56004803603810190610aa09190613805565b611ff8565b005b348015610ab357600080fd5b50610abc6120ef565b604051610ac99190613468565b60405180910390f35b348015610ade57600080fd5b50610ae76120f5565b604051610af49190613468565b60405180910390f35b60075481565b606060038054610b1290613991565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3e90613991565b8015610b8b5780601f10610b6057610100808354040283529160200191610b8b565b820191906000526020600020905b815481529060010190602001808311610b6e57829003601f168201915b5050505050905090565b6000610ba9610ba26120fb565b8484612103565b6001905092915050565b610bbb6120fb565b73ffffffffffffffffffffffffffffffffffffffff16610bd96115c9565b73ffffffffffffffffffffffffffffffffffffffff1614610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2690613a0e565b60405180910390fd5b6064610c5682610c4885876122cc90919063ffffffff16565b6122cc90919063ffffffff16565b14610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d90613aa0565b60405180910390fd5b826010819055508160118190555080601281905550505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600d5481565b610cee6120fb565b73ffffffffffffffffffffffffffffffffffffffff16610d0c6115c9565b73ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990613a0e565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610db38484846122e2565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610dfe6120fb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7590613b32565b60405180910390fd5b610e9285610e8a6120fb565b858403612103565b60019150509392505050565b60006012905090565b6000610f49610eb46120fb565b848460016000610ec26120fb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f449190613b81565b612103565b6001905092915050565b60176020528060005260406000206000915090505481565b7f00000000000000000000000018f20ead8738b573c9b2ac880fdacbb5568c742981565b600660159054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110006120fb565b73ffffffffffffffffffffffffffffffffffffffff1661101e6115c9565b73ffffffffffffffffffffffffffffffffffffffff1614611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b90613a0e565b60405180910390fd5b80600b81905550600a600b5411156110c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b890613c23565b60405180910390fd5b50565b60085481565b6110d26120fb565b73ffffffffffffffffffffffffffffffffffffffff166110f06115c9565b73ffffffffffffffffffffffffffffffffffffffff1614611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90613a0e565b60405180910390fd5b806007819055506111696103e861115b610cd6565b612a3090919063ffffffff16565b600754116111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390613c8f565b60405180910390fd5b50565b6111b76120fb565b73ffffffffffffffffffffffffffffffffffffffff166111d56115c9565b73ffffffffffffffffffffffffffffffffffffffff161461122b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122290613a0e565b60405180910390fd5b80600d819055506014600d541115611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90613c23565b60405180910390fd5b50565b6112836120fb565b73ffffffffffffffffffffffffffffffffffffffff166112a16115c9565b73ffffffffffffffffffffffffffffffffffffffff16146112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90613a0e565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90613d21565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61149d6120fb565b73ffffffffffffffffffffffffffffffffffffffff166114bb6115c9565b73ffffffffffffffffffffffffffffffffffffffff1614611511576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150890613a0e565b60405180910390fd5b61151b6000612a46565b565b6115256120fb565b73ffffffffffffffffffffffffffffffffffffffff166115436115c9565b73ffffffffffffffffffffffffffffffffffffffff1614611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090613a0e565b60405180910390fd5b8060098190555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115fb6120fb565b73ffffffffffffffffffffffffffffffffffffffff166116196115c9565b73ffffffffffffffffffffffffffffffffffffffff161461166f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166690613a0e565b60405180910390fd5b80600a819055506116926103e8611684610cd6565b612a3090919063ffffffff16565b600a54116116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90613c8f565b60405180910390fd5b50565b6060600480546116e790613991565b80601f016020809104026020016040519081016040528092919081815260200182805461171390613991565b80156117605780601f1061173557610100808354040283529160200191611760565b820191906000526020600020905b81548152906001019060200180831161174357829003601f168201915b5050505050905090565b6117726120fb565b73ffffffffffffffffffffffffffffffffffffffff166117906115c9565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90613a0e565b60405180910390fd5b7f00000000000000000000000018f20ead8738b573c9b2ac880fdacbb5568c742973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90613dd9565b60405180910390fd5b61187e8282612b0c565b5050565b61188a6120fb565b73ffffffffffffffffffffffffffffffffffffffff166118a86115c9565b73ffffffffffffffffffffffffffffffffffffffff16146118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590613a0e565b60405180910390fd5b80600660166101000a81548160ff02191690831515021790555050565b6000806001600061192a6120fb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156119e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119de90613e6b565b60405180910390fd5b6119fb6119f26120fb565b85858403612103565b600191505092915050565b600660169054906101000a900460ff1681565b6000611a2d611a266120fb565b84846122e2565b6001905092915050565b60105481565b611a456120fb565b73ffffffffffffffffffffffffffffffffffffffff16611a636115c9565b73ffffffffffffffffffffffffffffffffffffffff1614611ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab090613a0e565b60405180910390fd5b80600c81905550600a600c541115611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd90613c23565b60405180910390fd5b50565b611b116120fb565b73ffffffffffffffffffffffffffffffffffffffff16611b2f6115c9565b73ffffffffffffffffffffffffffffffffffffffff1614611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c90613a0e565b60405180910390fd5b80600881905550611ba86103e8611b9a610cd6565b612a3090919063ffffffff16565b60085411611beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be290613c8f565b60405180910390fd5b50565b60166020528060005260406000206000915054906101000a900460ff1681565b611c166120fb565b73ffffffffffffffffffffffffffffffffffffffff16611c346115c9565b73ffffffffffffffffffffffffffffffffffffffff1614611c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8190613a0e565b60405180910390fd5b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1390613efd565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611db99190613628565b60405180910390a25050565b611dcd6120fb565b73ffffffffffffffffffffffffffffffffffffffff16611deb6115c9565b73ffffffffffffffffffffffffffffffffffffffff1614611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3890613a0e565b60405180910390fd5b80600660156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15981604051611e8a9190613628565b60405180910390a150565b60115481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b611f306120fb565b73ffffffffffffffffffffffffffffffffffffffff16611f4e6115c9565b73ffffffffffffffffffffffffffffffffffffffff1614611fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9b90613a0e565b60405180910390fd5b6005811115611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdf90613f69565b60405180910390fd5b80600e8190555050565b600a5481565b6120006120fb565b73ffffffffffffffffffffffffffffffffffffffff1661201e6115c9565b73ffffffffffffffffffffffffffffffffffffffff1614612074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206b90613a0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120da90613ffb565b60405180910390fd5b6120ec81612a46565b50565b60125481565b600e5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612172576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121699061408d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d89061411f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516122bf9190613468565b60405180910390a3505050565b600081836122da9190613b81565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612351576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612348906141b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b790614243565b60405180910390fd5b600081036123d9576123d483836000612c3f565b612a2b565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561247c5750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124d25750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156125bf5760085481111561251c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612513906142d5565b60405180910390fd5b60006125278361144d565b9050600a5482826125389190613b81565b1115612579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257090614367565b60405180910390fd5b42601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126625750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156126b85750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561270357600754811115612702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f9906143f9565b60405180910390fd5b5b600061270e3061144d565b9050600060095482101590508080156127345750600660149054906101000a900460ff16155b80156127895750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156127a15750600660159054906101000a900460ff165b156127b55760095491506127b482612ebe565b5b600080601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561285c5750601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a1b576000600b549050601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612954576000601760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054426129079190614419565b9050600660169054906101000a900460ff1680156129285750620151808111155b1561293757600d549150612952565b600660169054906101000a900460ff1661295157600c5491505b5b505b61297a606461296c83896130e890919063ffffffff16565b612a3090919063ffffffff16565b92506129a46064612996600e54896130e890919063ffffffff16565b612a3090919063ffffffff16565b915060008311156129bb576129ba883085612c3f565b5b60008211156129f2576129f188600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612c3f565b5b612a17612a0883856122cc90919063ffffffff16565b876130fe90919063ffffffff16565b9550505b612a26878787612c3f565b505050505b505050565b60008183612a3e919061447c565b905092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b959061451f565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca5906141b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1490614243565b60405180910390fd5b612d28838383613114565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da5906145b1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e419190613b81565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ea59190613468565b60405180910390a3612eb8848484613119565b50505050565b6001600660146101000a81548160ff0219169083151502179055506000612f036064612ef5601054856130e890919063ffffffff16565b612a3090919063ffffffff16565b90506000612f1b600283612a3090919063ffffffff16565b90506000612f3282846130fe90919063ffffffff16565b90506000479050612f428361311e565b6000612f5782476130fe90919063ffffffff16565b9050612f638382613397565b612f7e612f7986886130fe90919063ffffffff16565b61311e565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc612ff7612fd46012546011546122cc90919063ffffffff16565b612fe9601154476130e890919063ffffffff16565b612a3090919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015613022573d6000803e3d6000fd5b50601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561308b573d6000803e3d6000fd5b507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f838148684826040516130bd9291906145d1565b60405180910390a150505050506000600660146101000a81548160ff02191690831515021790555050565b600081836130f691906145fa565b905092915050565b6000818361310c9190614419565b905092915050565b505050565b505050565b6000600267ffffffffffffffff81111561313b5761313a614654565b5b6040519080825280602002602001820160405280156131695781602001602082028036833780820191505090505b509050308160008151811061318157613180614683565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613228573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061324c91906146c7565b816001815181106132605761325f614683565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050816132c730600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611e9b565b10156132fd576132fc30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600019612103565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016133619594939291906147ed565b600060405180830381600087803b15801561337b57600080fd5b505af115801561338f573d6000803e3d6000fd5b505050505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806133e36115c9565b426040518863ffffffff1660e01b815260040161340596959493929190614847565b60606040518083038185885af1158015613423573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061344891906148bd565b5050505050565b6000819050919050565b6134628161344f565b82525050565b600060208201905061347d6000830184613459565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134bd5780820151818401526020810190506134a2565b838111156134cc576000848401525b50505050565b6000601f19601f8301169050919050565b60006134ee82613483565b6134f8818561348e565b935061350881856020860161349f565b613511816134d2565b840191505092915050565b6000602082019050818103600083015261353681846134e3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061356e82613543565b9050919050565b61357e81613563565b811461358957600080fd5b50565b60008135905061359b81613575565b92915050565b6135aa8161344f565b81146135b557600080fd5b50565b6000813590506135c7816135a1565b92915050565b600080604083850312156135e4576135e361353e565b5b60006135f28582860161358c565b9250506020613603858286016135b8565b9150509250929050565b60008115159050919050565b6136228161360d565b82525050565b600060208201905061363d6000830184613619565b92915050565b60008060006060848603121561365c5761365b61353e565b5b600061366a868287016135b8565b935050602061367b868287016135b8565b925050604061368c868287016135b8565b9150509250925092565b6000819050919050565b60006136bb6136b66136b184613543565b613696565b613543565b9050919050565b60006136cd826136a0565b9050919050565b60006136df826136c2565b9050919050565b6136ef816136d4565b82525050565b600060208201905061370a60008301846136e6565b92915050565b600061371b82613543565b9050919050565b61372b81613710565b811461373657600080fd5b50565b60008135905061374881613722565b92915050565b6000602082840312156137645761376361353e565b5b600061377284828501613739565b91505092915050565b6000806000606084860312156137945761379361353e565b5b60006137a28682870161358c565b93505060206137b38682870161358c565b92505060406137c4868287016135b8565b9150509250925092565b600060ff82169050919050565b6137e4816137ce565b82525050565b60006020820190506137ff60008301846137db565b92915050565b60006020828403121561381b5761381a61353e565b5b60006138298482850161358c565b91505092915050565b61383b81613563565b82525050565b60006020820190506138566000830184613832565b92915050565b6000602082840312156138725761387161353e565b5b6000613880848285016135b8565b91505092915050565b6138928161360d565b811461389d57600080fd5b50565b6000813590506138af81613889565b92915050565b600080604083850312156138cc576138cb61353e565b5b60006138da8582860161358c565b92505060206138eb858286016138a0565b9150509250929050565b60006020828403121561390b5761390a61353e565b5b6000613919848285016138a0565b91505092915050565b600080604083850312156139395761393861353e565b5b60006139478582860161358c565b92505060206139588582860161358c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139a957607f821691505b6020821081036139bc576139bb613962565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139f860208361348e565b9150613a03826139c2565b602082019050919050565b60006020820190508181036000830152613a27816139eb565b9050919050565b7f746f74616c2070657263656e74616765206d75737420626520657175616c207460008201527f6f20313030000000000000000000000000000000000000000000000000000000602082015250565b6000613a8a60258361348e565b9150613a9582613a2e565b604082019050919050565b60006020820190508181036000830152613ab981613a7d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613b1c60288361348e565b9150613b2782613ac0565b604082019050919050565b60006020820190508181036000830152613b4b81613b0f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b8c8261344f565b9150613b978361344f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bcc57613bcb613b52565b5b828201905092915050565b7f46656520746f6f20686967680000000000000000000000000000000000000000600082015250565b6000613c0d600c8361348e565b9150613c1882613bd7565b602082019050919050565b60006020820190508181036000830152613c3c81613c00565b9050919050565b7f76616c756520697320746f6f206c6f7700000000000000000000000000000000600082015250565b6000613c7960108361348e565b9150613c8482613c43565b602082019050919050565b60006020820190508181036000830152613ca881613c6c565b9050919050565b7f4b436f696e3a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b6000613d0b602a8361348e565b9150613d1682613caf565b604082019050919050565b60006020820190508181036000830152613d3a81613cfe565b9050919050565b7f4b436f696e3a205468652050616e63616b655377617020706169722063616e6e60008201527f6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b60208201527f65744d616b657250616972730000000000000000000000000000000000000000604082015250565b6000613dc3604c8361348e565b9150613dce82613d41565b606082019050919050565b60006020820190508181036000830152613df281613db6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613e5560258361348e565b9150613e6082613df9565b604082019050919050565b60006020820190508181036000830152613e8481613e48565b9050919050565b7f4b436f696e3a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b6000613ee760318361348e565b9150613ef282613e8b565b604082019050919050565b60006020820190508181036000830152613f1681613eda565b9050919050565b7f76616c756520746f6f2068696768000000000000000000000000000000000000600082015250565b6000613f53600e8361348e565b9150613f5e82613f1d565b602082019050919050565b60006020820190508181036000830152613f8281613f46565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fe560268361348e565b9150613ff082613f89565b604082019050919050565b6000602082019050818103600083015261401481613fd8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061407760248361348e565b91506140828261401b565b604082019050919050565b600060208201905081810360008301526140a68161406a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061410960228361348e565b9150614114826140ad565b604082019050919050565b60006020820190508181036000830152614138816140fc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061419b60258361348e565b91506141a68261413f565b604082019050919050565b600060208201905081810360008301526141ca8161418e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061422d60238361348e565b9150614238826141d1565b604082019050919050565b6000602082019050818103600083015261425c81614220565b9050919050565b7f616d6f756e74206578636565647320746865206d61784275795472616e73616360008201527f74696f6e416d6f756e742e000000000000000000000000000000000000000000602082015250565b60006142bf602b8361348e565b91506142ca82614263565b604082019050919050565b600060208201905081810360008301526142ee816142b2565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e742e00000000000000000000000000000000000000000000000000000000602082015250565b600061435160248361348e565b915061435c826142f5565b604082019050919050565b6000602082019050818103600083015261438081614344565b9050919050565b7f616d6f756e74206578636565647320746865206d617853656c6c5472616e736160008201527f6374696f6e416d6f756e742e0000000000000000000000000000000000000000602082015250565b60006143e3602c8361348e565b91506143ee82614387565b604082019050919050565b60006020820190508181036000830152614412816143d6565b9050919050565b60006144248261344f565b915061442f8361344f565b92508282101561444257614441613b52565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006144878261344f565b91506144928361344f565b9250826144a2576144a161444d565b5b828204905092915050565b7f4b436f696e3a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b6000614509603f8361348e565b9150614514826144ad565b604082019050919050565b60006020820190508181036000830152614538816144fc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061459b60268361348e565b91506145a68261453f565b604082019050919050565b600060208201905081810360008301526145ca8161458e565b9050919050565b60006040820190506145e66000830185613459565b6145f36020830184613459565b9392505050565b60006146058261344f565b91506146108361344f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561464957614648613b52565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506146c181613575565b92915050565b6000602082840312156146dd576146dc61353e565b5b60006146eb848285016146b2565b91505092915050565b6000819050919050565b600061471961471461470f846146f4565b613696565b61344f565b9050919050565b614729816146fe565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61476481613563565b82525050565b6000614776838361475b565b60208301905092915050565b6000602082019050919050565b600061479a8261472f565b6147a4818561473a565b93506147af8361474b565b8060005b838110156147e05781516147c7888261476a565b97506147d283614782565b9250506001810190506147b3565b5085935050505092915050565b600060a0820190506148026000830188613459565b61480f6020830187614720565b8181036040830152614821818661478f565b90506148306060830185613832565b61483d6080830184613459565b9695505050505050565b600060c08201905061485c6000830189613832565b6148696020830188613459565b6148766040830187614720565b6148836060830186614720565b6148906080830185613832565b61489d60a0830184613459565b979650505050505050565b6000815190506148b7816135a1565b92915050565b6000806000606084860312156148d6576148d561353e565b5b60006148e4868287016148a8565b93505060206148f5868287016148a8565b9250506040614906868287016148a8565b915050925092509256fea26469706673582212202b60b5416bcfec58f56ad69b93b047819d140290f0b3a152d98abcf25b46bac164736f6c634300080d0033

Deployed Bytecode Sourcemap

39845:12175:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40155:69;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5621:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7795:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51153:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39923:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6744:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40510:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50483:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8447:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6585:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9351:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41495:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39971:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40058:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44475:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50592:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40231:67;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49892:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50950:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43243:314;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40471:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6916:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17195:94;;;;;;;;;;;;;:::i;:::-;;50355:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40612:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16542:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51826:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5841:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43875:264;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51559:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10070:414;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40108:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7257:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40750:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50768:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50127:219;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41430:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43566:298;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44611:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40823:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7496:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40305:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51670:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40369:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17445:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40896:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40579:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40155:69;;;;:::o;5621:100::-;5675:13;5708:5;5701:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5621:100;:::o;7795:169::-;7878:4;7895:39;7904:12;:10;:12::i;:::-;7918:7;7927:6;7895:8;:39::i;:::-;7952:4;7945:11;;7795:169;;;;:::o;51153:397::-;16774:12;:10;:12::i;:::-;16763:23;;:7;:5;:7::i;:::-;:23;;;16755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51366:3:::1;51305:57;51350:11;51305:40;51327:17;51305;:21;;:40;;;;:::i;:::-;:44;;:57;;;;:::i;:::-;:64;51297:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;51441:17;51422:16;:36;;;;51488:17;51469:16;:36;;;;51529:11;51516:10;:24;;;;51153:397:::0;;;:::o;39923:41::-;;;;;;;;;;;;;:::o;6744:108::-;6805:7;6832:12;;6825:19;;6744:108;:::o;40510:37::-;;;;:::o;50483:100::-;16774:12;:10;:12::i;:::-;16763:23;;:7;:5;:7::i;:::-;:23;;;16755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50569:6:::1;50557:9;;:18;;;;;;;;;;;;;;;;;;50483:100:::0;:::o;8447:494::-;8587:4;8604:36;8614:6;8622:9;8633:6;8604:9;:36::i;:::-;8654:24;8681:11;:19;8693:6;8681:19;;;;;;;;;;;;;;;:33;8701:12;:10;:12::i;:::-;8681:33;;;;;;;;;;;;;;;;8654:60;;8753:6;8733:16;:26;;8725:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;8840:57;8849:6;8857:12;:10;:12::i;:::-;8890:6;8871:16;:25;8840:8;:57::i;:::-;8929:4;8922:11;;;8447:494;;;;;:::o;6585:93::-;6643:5;6668:2;6661:9;;6585:93;:::o;9351:215::-;9439:4;9456:80;9465:12;:10;:12::i;:::-;9479:7;9525:10;9488:11;:25;9500:12;:10;:12::i;:::-;9488:25;;;;;;;;;;;;;;;:34;9514:7;9488:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9456:8;:80::i;:::-;9554:4;9547:11;;9351:215;;;;:::o;41495:51::-;;;;;;;;;;;;;;;;;:::o;39971:38::-;;;:::o;40058:40::-;;;;;;;;;;;;;:::o;44475:125::-;44540:4;44564:19;:28;44584:7;44564:28;;;;;;;;;;;;;;;;;;;;;;;;;44557:35;;44475:125;;;:::o;50592:168::-;16774:12;:10;:12::i;:::-;16763:23;;:7;:5;:7::i;:::-;:23;;;16755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50685:13:::1;50670:12;:28;;;;50733:2;50717:12;;:18;;50709:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;50592:168:::0;:::o;40231:67::-;;;;:::o;49892:224::-;16774:12;:10;:12::i;:::-;16763:23;;:7;:5;:7::i;:::-;:23;;;16755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50004:16:::1;49977:24;:43;;;;50064:23;50082:4;50064:13;:11;:13::i;:::-;:17;;:23;;;;:::i;:::-;50039:24;;:48;50031:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49892:224:::0;:::o;50950:194::-;16774:12;:10;:12::i;:::-;16763:23;;:7;:5;:7::i;:::-;:23;;;16755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51059:18:::1;51039:17;:38;;;;51117:2;51096:17;;:23;;51088:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;50950:194:::0;:::o;43243:314::-;16774:12;:10;:12::i;:::-;16763:23;;:7;:5;:7::i;:::-;:23;;;16755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43352:15:::1;;;;;;;;;;;43330:38;;:10;:38;;::::0;43322:93:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43473:15;;;;;;;;;;;43431:59;;43453:10;43431:59;;;;;;;;;;;;43538:10;43501:15;;:48;;;;;;;;;;;;;;;;;;43243:314:::0;:::o;40471:32::-;;;;:::o;6916:127::-;6990:7;7017:9;:18;7027:7;7017:18;;;;;;;;;;;;;;;;7010:25;;6916:127;;;:::o;17195:94::-;16774:12;:10;:12::i;:::-;16763:23;;:7;:5;:7::i;:::-;:23;;;16755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17260:21:::1;17278:1;17260:9;:21::i;:::-;17195:94::o:0;50355:119::-;16774:12;:10;:12::i;:::-;16763:23;;:7;:5;:7::i;:::-;:23;;;16755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50456:10:::1;50435:18;:31;;;;50355:119:::0;:::o;40612:70::-;;;;;;;;;;;;;:::o;16542:87::-;16588:7;16615:6;;;;;;;;;;;16608:13;;16542:87;:::o;51826:188::-;16774:12;:10;:12::i;:::-;16763:23;;:7;:5;:7::i;:::-;:23;;;16755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51919:9:::1;51902:14;:26;;;;51962:23;51980:4;51962:13;:11;:13::i;:::-;:17;;:23;;;;:::i;:::-;51947:14;;:38;51939:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51826:188:::0;:::o;5841:104::-;5897:13;5930:7;5923:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5841:104;:::o;43875:264::-;16774:12;:10;:12::i;:::-;16763:23;;:7;:5;:7::i;:::-;:23;;;16755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43982:13:::1;43974:21;;:4;:21;;::::0;43966:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;44090:41;44119:4;44125:5;44090:28;:41::i;:::-;43875:264:::0;;:::o;51559:102::-;16774:12;:10;:12::i;:::-;16763:23;;:7;:5;:7::i;:::-;:23;;;16755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51648:5:::1;51627:18;;:26;;;;;;;;;;;;;;;;;;51559:102:::0;:::o;10070:414::-;10163:4;10180:24;10207:11;:25;10219:12;:10;:12::i;:::-;10207:25;;;;;;;;;;;;;;;:34;10233:7;10207:34;;;;;;;;;;;;;;;;10180:61;;10280:15;10260:16;:35;;10252:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10373:67;10382:12;:10;:12::i;:::-;10396:7;10424:15;10405:16;:34;10373:8;:67::i;:::-;10472:4;10465:11;;;10070:414;;;;:::o;40108:37::-;;;;;;;;;;;;;:::o;7257:175::-;7343:4;7360:42;7370:12;:10;:12::i;:::-;7384:9;7395:6;7360:9;:42::i;:::-;7420:4;7413:11;;7257:175;;;;:::o;40750:36::-;;;;:::o;50768:173::-;16774:12;:10;:12::i;:::-;16763:23;;:7;:5;:7::i;:::-;:23;;;16755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50864:14:::1;50848:13;:30;;;;50914:2;50897:13;;:19;;50889:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;50768:173:::0;:::o;50127:219::-;16774:12;:10;:12::i;:::-;16763:23;;:7;:5;:7::i;:::-;:23;;;16755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50236:15:::1;50210:23;:41;;;;50294:23;50312:4;50294:13;:11;:13::i;:::-;:17;;:23;;;;:::i;:::-;50270;;:47;50262:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;50127:219:::0;:::o;41430:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;43566:298::-;16774:12;:10;:12::i;:::-;16763:23;;:7;:5;:7::i;:::-;:23;;;16755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43691:8:::1;43659:40;;:19;:28;43679:7;43659:28;;;;;;;;;;;;;;;;;;;;;;;;;:40;;::::0;43651:102:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43795:8;43764:19;:28;43784:7;43764:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;43838:7;43822:34;;;43847:8;43822:34;;;;;;:::i;:::-;;;;;;;;43566:298:::0;;:::o;44611:171::-;16774:12;:10;:12::i;:::-;16763:23;;:7;:5;:7::i;:::-;:23;;;16755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44712:8:::1;44688:21;;:32;;;;;;;;;;;;;;;;;;44736:38;44765:8;44736:38;;;;;;:::i;:::-;;;;;;;;44611:171:::0;:::o;40823:36::-;;;;:::o;7496:151::-;7585:7;7612:11;:18;7624:5;7612:18;;;;;;;;;;;;;;;:27;7631:7;7612:27;;;;;;;;;;;;;;;;7605:34;;7496:151;;;;:::o;40305:57::-;;;;:::o;51670:147::-;16774:12;:10;:12::i;:::-;16763:23;;:7;:5;:7::i;:::-;:23;;;16755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51760:1:::1;51748:8;:13;;51740:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;51801:8;51791:7;:18;;;;51670:147:::0;:::o;40369:53::-;;;;:::o;17445:192::-;16774:12;:10;:12::i;:::-;16763:23;;:7;:5;:7::i;:::-;:23;;;16755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17554:1:::1;17534:22;;:8;:22;;::::0;17526:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;17610:19;17620:8;17610:9;:19::i;:::-;17445:192:::0;:::o;40896:30::-;;;;:::o;40579:26::-;;;;:::o;114:103::-;167:7;199:10;192:17;;114:103;:::o;13785:381::-;13938:1;13921:19;;:5;:19;;;13913:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14019:1;14000:21;;:7;:21;;;13992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14104:6;14074:11;:18;14086:5;14074:18;;;;;;;;;;;;;;;:27;14093:7;14074:27;;;;;;;;;;;;;;;:36;;;;14142:7;14126:32;;14135:5;14126:32;;;14151:6;14126:32;;;;;;:::i;:::-;;;;;;;;13785:381;;;:::o;27719:98::-;27777:7;27808:1;27804;:5;;;;:::i;:::-;27797:12;;27719:98;;;;:::o;44791:2629::-;44910:1;44894:18;;:4;:18;;;44886:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44987:1;44973:16;;:2;:16;;;44965:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;45056:1;45046:6;:11;45043:92;;45074:28;45090:4;45096:2;45100:1;45074:15;:28::i;:::-;45117:7;;45043:92;45157:25;:31;45183:4;45157:31;;;;;;;;;;;;;;;;;;;;;;;;;:63;;;;;45194:19;:25;45214:4;45194:25;;;;;;;;;;;;;;;;;;;;;;;;;45193:26;45157:63;:93;;;;;45226:19;:23;45246:2;45226:23;;;;;;;;;;;;;;;;;;;;;;;;;45225:24;45157:93;45154:456;;;45285:23;;45275:6;:33;;45267:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;45371:32;45406:13;45416:2;45406:9;:13::i;:::-;45371:48;;45479:14;;45469:6;45442:24;:33;;;;:::i;:::-;:51;;45434:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;45570:15;45548;:19;45564:2;45548:19;;;;;;;;;;;;;;;:37;;;;45252:358;45154:456;45626:25;:29;45652:2;45626:29;;;;;;;;;;;;;;;;;;;;;;;;;:61;;;;;45661:19;:25;45681:4;45661:25;;;;;;;;;;;;;;;;;;;;;;;;;45660:26;45626:61;:91;;;;;45693:19;:23;45713:2;45693:23;;;;;;;;;;;;;;;;;;;;;;;;;45692:24;45626:91;45623:214;;;45752:24;;45742:6;:34;;45734:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;45623:214;45859:28;45890:24;45908:4;45890:9;:24::i;:::-;45859:55;;45934:24;45985:18;;45961:20;:42;;45934:69;;46040:19;:53;;;;;46077:16;;;;;;;;;;;46076:17;46040:53;:99;;;;;46110:25;:29;46136:2;46110:29;;;;;;;;;;;;;;;;;;;;;;;;;46040:99;:137;;;;;46156:21;;;;;;;;;;;46040:137;46023:285;;;46227:18;;46204:41;;46260:36;46275:20;46260:14;:36::i;:::-;46023:285;46321:12;46348:17;46470:19;:25;46490:4;46470:25;;;;;;;;;;;;;;;;;;;;;;;;;46469:26;:54;;;;;46500:19;:23;46520:2;46500:23;;;;;;;;;;;;;;;;;;;;;;;;;46499:24;46469:54;46466:897;;;46540:18;46561:12;;46540:33;;46595:25;:29;46621:2;46595:29;;;;;;;;;;;;;;;;;;;;;;;;;46591:374;;;46647:12;46678:15;:21;46694:4;46678:21;;;;;;;;;;;;;;;;46662:15;:37;;;;:::i;:::-;46647:52;;46721:18;;;;;;;;;;;:38;;;;;46751:8;46743:4;:16;;46721:38;46718:232;;;46797:17;;46784:30;;46718:232;;;46861:18;;;;;;;;;;;46857:93;;46917:13;;46904:26;;46857:93;46718:232;46626:339;46591:374;46989:31;47016:3;46989:22;47000:10;46989:6;:10;;:22;;;;:::i;:::-;:26;;:31;;;;:::i;:::-;46982:38;;47047:28;47071:3;47047:19;47058:7;;47047:6;:10;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;47035:40;;47100:1;47093:4;:8;47090:90;;;47122:42;47138:4;47152;47159;47122:15;:42::i;:::-;47090:90;47212:1;47200:9;:13;47197:97;;;47234:44;47250:4;47256:10;;;;;;;;;;;47268:9;47234:15;:44::i;:::-;47197:97;47320:31;47331:19;47340:9;47331:4;:8;;:19;;;;:::i;:::-;47320:6;:10;;:31;;;;:::i;:::-;47311:40;;46525:838;46466:897;47376:33;47392:4;47398:2;47402:6;47376:15;:33::i;:::-;44875:2545;;;;44791:2629;;;;:::o;28859:98::-;28917:7;28948:1;28944;:5;;;;:::i;:::-;28937:12;;28859:98;;;;:::o;17646:173::-;17702:16;17721:6;;;;;;;;;;;17702:25;;17747:8;17738:6;;:17;;;;;;;;;;;;;;;;;;17802:8;17771:40;;17792:8;17771:40;;;;;;;;;;;;17691:128;17646:173;:::o;44148:316::-;44274:5;44239:40;;:25;:31;44265:4;44239:31;;;;;;;;;;;;;;;;;;;;;;;;;:40;;;44231:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;44392:5;44358:25;:31;44384:4;44358:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;44450:5;44416:40;;44444:4;44416:40;;;;;;;;;;;;44148:316;;:::o;10975:737::-;11133:1;11115:20;;:6;:20;;;11107:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11217:1;11196:23;;:9;:23;;;11188:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11273:47;11294:6;11302:9;11313:6;11273:20;:47::i;:::-;11334:21;11358:9;:17;11368:6;11358:17;;;;;;;;;;;;;;;;11334:41;;11411:6;11394:13;:23;;11386:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11532:6;11516:13;:22;11496:9;:17;11506:6;11496:17;;;;;;;;;;;;;;;:42;;;;11584:6;11560:9;:20;11570:9;11560:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;11626:9;11609:35;;11618:6;11609:35;;;11637:6;11609:35;;;;;;:::i;:::-;;;;;;;;11658:46;11678:6;11686:9;11697:6;11658:19;:46::i;:::-;11096:616;10975:737;;;:::o;47430:1350::-;42111:4;42092:16;;:23;;;;;;;;;;;;;;;;;;47515:26:::1;47544:51;47591:3;47544:42;47569:16;;47544:20;:24;;:42;;;;:::i;:::-;:46;;:51;;;;:::i;:::-;47515:80;;47664:12;47679:25;47702:1;47679:18;:22;;:25;;;;:::i;:::-;47664:40;;47715:17;47735:28;47758:4;47735:18;:22;;:28;;;;:::i;:::-;47715:48;;48039:22;48064:21;48039:46;;48128:22;48145:4;48128:16;:22::i;:::-;48279:18;48300:41;48326:14;48300:21;:25;;:41;;;;:::i;:::-;48279:62;;48389:35;48402:9;48413:10;48389:12;:35::i;:::-;48492:62;48509:44;48534:18;48509:20;:24;;:44;;;;:::i;:::-;48492:16;:62::i;:::-;48565:15;;;;;;;;;;;:24;;:107;48590:81;48638:32;48659:10;;48638:16;;:20;;:32;;;;:::i;:::-;48590:43;48616:16;;48590:21;:25;;:43;;;;:::i;:::-;:47;;:81;;;;:::i;:::-;48565:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48683:9;;;;;;;;;;;:18;;:41;48702:21;48683:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48740:32;48755:4;48761:10;48740:32;;;;;;;:::i;:::-;;;;;;;;47504:1276;;;;;42157:5:::0;42138:16;;:24;;;;;;;;;;;;;;;;;;47430:1350;:::o;28459:98::-;28517:7;28548:1;28544;:5;;;;:::i;:::-;28537:12;;28459:98;;;;:::o;28101:::-;28159:7;28190:1;28186;:5;;;;:::i;:::-;28179:12;;28101:98;;;;:::o;14767:125::-;;;;:::o;15497:124::-;;;;:::o;48789:696::-;48918:21;48956:1;48942:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48918:40;;48987:4;48969;48974:1;48969:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;49013:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49003:4;49008:1;49003:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;49105:11;49052:50;49070:4;49085:15;;;;;;;;;;;49052:9;:50::i;:::-;:64;49049:156;;;49131:62;49148:4;49163:15;;;;;;;;;;;49190:1;49181:11;49131:8;:62::i;:::-;49049:156;49244:15;;;;;;;;;;;:66;;;49325:11;49351:1;49395:4;49422;49442:15;49244:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48844:641;48789:696;:::o;49494:389::-;49614:15;;;;;;;;;;;:31;;;49653:9;49686:4;49706:11;49732:1;49775;49818:7;:5;:7::i;:::-;49840:15;49614:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;49494:389;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:99::-;494:6;528:5;522:12;512:22;;442:99;;;:::o;547:169::-;631:11;665:6;660:3;653:19;705:4;700:3;696:14;681:29;;547:169;;;;:::o;722:307::-;790:1;800:113;814:6;811:1;808:13;800:113;;;899:1;894:3;890:11;884:18;880:1;875:3;871:11;864:39;836:2;833:1;829:10;824:15;;800:113;;;931:6;928:1;925:13;922:101;;;1011:1;1002:6;997:3;993:16;986:27;922:101;771:258;722:307;;;:::o;1035:102::-;1076:6;1127:2;1123:7;1118:2;1111:5;1107:14;1103:28;1093:38;;1035:102;;;:::o;1143:364::-;1231:3;1259:39;1292:5;1259:39;:::i;:::-;1314:71;1378:6;1373:3;1314:71;:::i;:::-;1307:78;;1394:52;1439:6;1434:3;1427:4;1420:5;1416:16;1394:52;:::i;:::-;1471:29;1493:6;1471:29;:::i;:::-;1466:3;1462:39;1455:46;;1235:272;1143:364;;;;:::o;1513:313::-;1626:4;1664:2;1653:9;1649:18;1641:26;;1713:9;1707:4;1703:20;1699:1;1688:9;1684:17;1677:47;1741:78;1814:4;1805:6;1741:78;:::i;:::-;1733:86;;1513:313;;;;:::o;1913:117::-;2022:1;2019;2012:12;2159:126;2196:7;2236:42;2229:5;2225:54;2214:65;;2159:126;;;:::o;2291:96::-;2328:7;2357:24;2375:5;2357:24;:::i;:::-;2346:35;;2291:96;;;:::o;2393:122::-;2466:24;2484:5;2466:24;:::i;:::-;2459:5;2456:35;2446:63;;2505:1;2502;2495:12;2446:63;2393:122;:::o;2521:139::-;2567:5;2605:6;2592:20;2583:29;;2621:33;2648:5;2621:33;:::i;:::-;2521:139;;;;:::o;2666:122::-;2739:24;2757:5;2739:24;:::i;:::-;2732:5;2729:35;2719:63;;2778:1;2775;2768:12;2719:63;2666:122;:::o;2794:139::-;2840:5;2878:6;2865:20;2856:29;;2894:33;2921:5;2894:33;:::i;:::-;2794:139;;;;:::o;2939:474::-;3007:6;3015;3064:2;3052:9;3043:7;3039:23;3035:32;3032:119;;;3070:79;;:::i;:::-;3032:119;3190:1;3215:53;3260:7;3251:6;3240:9;3236:22;3215:53;:::i;:::-;3205:63;;3161:117;3317:2;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3288:118;2939:474;;;;;:::o;3419:90::-;3453:7;3496:5;3489:13;3482:21;3471:32;;3419:90;;;:::o;3515:109::-;3596:21;3611:5;3596:21;:::i;:::-;3591:3;3584:34;3515:109;;:::o;3630:210::-;3717:4;3755:2;3744:9;3740:18;3732:26;;3768:65;3830:1;3819:9;3815:17;3806:6;3768:65;:::i;:::-;3630:210;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:60::-;4499:3;4520:5;4513:12;;4471:60;;;:::o;4537:142::-;4587:9;4620:53;4638:34;4647:24;4665:5;4647:24;:::i;:::-;4638:34;:::i;:::-;4620:53;:::i;:::-;4607:66;;4537:142;;;:::o;4685:126::-;4735:9;4768:37;4799:5;4768:37;:::i;:::-;4755:50;;4685:126;;;:::o;4817:153::-;4894:9;4927:37;4958:5;4927:37;:::i;:::-;4914:50;;4817:153;;;:::o;4976:185::-;5090:64;5148:5;5090:64;:::i;:::-;5085:3;5078:77;4976:185;;:::o;5167:276::-;5287:4;5325:2;5314:9;5310:18;5302:26;;5338:98;5433:1;5422:9;5418:17;5409:6;5338:98;:::i;:::-;5167:276;;;;:::o;5449:104::-;5494:7;5523:24;5541:5;5523:24;:::i;:::-;5512:35;;5449:104;;;:::o;5559:138::-;5640:32;5666:5;5640:32;:::i;:::-;5633:5;5630:43;5620:71;;5687:1;5684;5677:12;5620:71;5559:138;:::o;5703:155::-;5757:5;5795:6;5782:20;5773:29;;5811:41;5846:5;5811:41;:::i;:::-;5703:155;;;;:::o;5864:345::-;5931:6;5980:2;5968:9;5959:7;5955:23;5951:32;5948:119;;;5986:79;;:::i;:::-;5948:119;6106:1;6131:61;6184:7;6175:6;6164:9;6160:22;6131:61;:::i;:::-;6121:71;;6077:125;5864:345;;;;:::o;6215:619::-;6292:6;6300;6308;6357:2;6345:9;6336:7;6332:23;6328:32;6325:119;;;6363:79;;:::i;:::-;6325:119;6483:1;6508:53;6553:7;6544:6;6533:9;6529:22;6508:53;:::i;:::-;6498:63;;6454:117;6610:2;6636:53;6681:7;6672:6;6661:9;6657:22;6636:53;:::i;:::-;6626:63;;6581:118;6738:2;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6709:118;6215:619;;;;;:::o;6840:86::-;6875:7;6915:4;6908:5;6904:16;6893:27;;6840:86;;;:::o;6932:112::-;7015:22;7031:5;7015:22;:::i;:::-;7010:3;7003:35;6932:112;;:::o;7050:214::-;7139:4;7177:2;7166:9;7162:18;7154:26;;7190:67;7254:1;7243:9;7239:17;7230:6;7190:67;:::i;:::-;7050:214;;;;:::o;7270:329::-;7329:6;7378:2;7366:9;7357:7;7353:23;7349:32;7346:119;;;7384:79;;:::i;:::-;7346:119;7504:1;7529:53;7574:7;7565:6;7554:9;7550:22;7529:53;:::i;:::-;7519:63;;7475:117;7270:329;;;;:::o;7605:118::-;7692:24;7710:5;7692:24;:::i;:::-;7687:3;7680:37;7605:118;;:::o;7729:222::-;7822:4;7860:2;7849:9;7845:18;7837:26;;7873:71;7941:1;7930:9;7926:17;7917:6;7873:71;:::i;:::-;7729:222;;;;:::o;7957:329::-;8016:6;8065:2;8053:9;8044:7;8040:23;8036:32;8033:119;;;8071:79;;:::i;:::-;8033:119;8191:1;8216:53;8261:7;8252:6;8241:9;8237:22;8216:53;:::i;:::-;8206:63;;8162:117;7957:329;;;;:::o;8292:116::-;8362:21;8377:5;8362:21;:::i;:::-;8355:5;8352:32;8342:60;;8398:1;8395;8388:12;8342:60;8292:116;:::o;8414:133::-;8457:5;8495:6;8482:20;8473:29;;8511:30;8535:5;8511:30;:::i;:::-;8414:133;;;;:::o;8553:468::-;8618:6;8626;8675:2;8663:9;8654:7;8650:23;8646:32;8643:119;;;8681:79;;:::i;:::-;8643:119;8801:1;8826:53;8871:7;8862:6;8851:9;8847:22;8826:53;:::i;:::-;8816:63;;8772:117;8928:2;8954:50;8996:7;8987:6;8976:9;8972:22;8954:50;:::i;:::-;8944:60;;8899:115;8553:468;;;;;:::o;9027:323::-;9083:6;9132:2;9120:9;9111:7;9107:23;9103:32;9100:119;;;9138:79;;:::i;:::-;9100:119;9258:1;9283:50;9325:7;9316:6;9305:9;9301:22;9283:50;:::i;:::-;9273:60;;9229:114;9027:323;;;;:::o;9356:474::-;9424:6;9432;9481:2;9469:9;9460:7;9456:23;9452:32;9449:119;;;9487:79;;:::i;:::-;9449:119;9607:1;9632:53;9677:7;9668:6;9657:9;9653:22;9632:53;:::i;:::-;9622:63;;9578:117;9734:2;9760:53;9805:7;9796:6;9785:9;9781:22;9760:53;:::i;:::-;9750:63;;9705:118;9356:474;;;;;:::o;9836:180::-;9884:77;9881:1;9874:88;9981:4;9978:1;9971:15;10005:4;10002:1;9995:15;10022:320;10066:6;10103:1;10097:4;10093:12;10083:22;;10150:1;10144:4;10140:12;10171:18;10161:81;;10227:4;10219:6;10215:17;10205:27;;10161:81;10289:2;10281:6;10278:14;10258:18;10255:38;10252:84;;10308:18;;:::i;:::-;10252:84;10073:269;10022:320;;;:::o;10348:182::-;10488:34;10484:1;10476:6;10472:14;10465:58;10348:182;:::o;10536:366::-;10678:3;10699:67;10763:2;10758:3;10699:67;:::i;:::-;10692:74;;10775:93;10864:3;10775:93;:::i;:::-;10893:2;10888:3;10884:12;10877:19;;10536:366;;;:::o;10908:419::-;11074:4;11112:2;11101:9;11097:18;11089:26;;11161:9;11155:4;11151:20;11147:1;11136:9;11132:17;11125:47;11189:131;11315:4;11189:131;:::i;:::-;11181:139;;10908:419;;;:::o;11333:224::-;11473:34;11469:1;11461:6;11457:14;11450:58;11542:7;11537:2;11529:6;11525:15;11518:32;11333:224;:::o;11563:366::-;11705:3;11726:67;11790:2;11785:3;11726:67;:::i;:::-;11719:74;;11802:93;11891:3;11802:93;:::i;:::-;11920:2;11915:3;11911:12;11904:19;;11563:366;;;:::o;11935:419::-;12101:4;12139:2;12128:9;12124:18;12116:26;;12188:9;12182:4;12178:20;12174:1;12163:9;12159:17;12152:47;12216:131;12342:4;12216:131;:::i;:::-;12208:139;;11935:419;;;:::o;12360:227::-;12500:34;12496:1;12488:6;12484:14;12477:58;12569:10;12564:2;12556:6;12552:15;12545:35;12360:227;:::o;12593:366::-;12735:3;12756:67;12820:2;12815:3;12756:67;:::i;:::-;12749:74;;12832:93;12921:3;12832:93;:::i;:::-;12950:2;12945:3;12941:12;12934:19;;12593:366;;;:::o;12965:419::-;13131:4;13169:2;13158:9;13154:18;13146:26;;13218:9;13212:4;13208:20;13204:1;13193:9;13189:17;13182:47;13246:131;13372:4;13246:131;:::i;:::-;13238:139;;12965:419;;;:::o;13390:180::-;13438:77;13435:1;13428:88;13535:4;13532:1;13525:15;13559:4;13556:1;13549:15;13576:305;13616:3;13635:20;13653:1;13635:20;:::i;:::-;13630:25;;13669:20;13687:1;13669:20;:::i;:::-;13664:25;;13823:1;13755:66;13751:74;13748:1;13745:81;13742:107;;;13829:18;;:::i;:::-;13742:107;13873:1;13870;13866:9;13859:16;;13576:305;;;;:::o;13887:162::-;14027:14;14023:1;14015:6;14011:14;14004:38;13887:162;:::o;14055:366::-;14197:3;14218:67;14282:2;14277:3;14218:67;:::i;:::-;14211:74;;14294:93;14383:3;14294:93;:::i;:::-;14412:2;14407:3;14403:12;14396:19;;14055:366;;;:::o;14427:419::-;14593:4;14631:2;14620:9;14616:18;14608:26;;14680:9;14674:4;14670:20;14666:1;14655:9;14651:17;14644:47;14708:131;14834:4;14708:131;:::i;:::-;14700:139;;14427:419;;;:::o;14852:166::-;14992:18;14988:1;14980:6;14976:14;14969:42;14852:166;:::o;15024:366::-;15166:3;15187:67;15251:2;15246:3;15187:67;:::i;:::-;15180:74;;15263:93;15352:3;15263:93;:::i;:::-;15381:2;15376:3;15372:12;15365:19;;15024:366;;;:::o;15396:419::-;15562:4;15600:2;15589:9;15585:18;15577:26;;15649:9;15643:4;15639:20;15635:1;15624:9;15620:17;15613:47;15677:131;15803:4;15677:131;:::i;:::-;15669:139;;15396:419;;;:::o;15821:229::-;15961:34;15957:1;15949:6;15945:14;15938:58;16030:12;16025:2;16017:6;16013:15;16006:37;15821:229;:::o;16056:366::-;16198:3;16219:67;16283:2;16278:3;16219:67;:::i;:::-;16212:74;;16295:93;16384:3;16295:93;:::i;:::-;16413:2;16408:3;16404:12;16397:19;;16056:366;;;:::o;16428:419::-;16594:4;16632:2;16621:9;16617:18;16609:26;;16681:9;16675:4;16671:20;16667:1;16656:9;16652:17;16645:47;16709:131;16835:4;16709:131;:::i;:::-;16701:139;;16428:419;;;:::o;16853:300::-;16993:34;16989:1;16981:6;16977:14;16970:58;17062:34;17057:2;17049:6;17045:15;17038:59;17131:14;17126:2;17118:6;17114:15;17107:39;16853:300;:::o;17159:366::-;17301:3;17322:67;17386:2;17381:3;17322:67;:::i;:::-;17315:74;;17398:93;17487:3;17398:93;:::i;:::-;17516:2;17511:3;17507:12;17500:19;;17159:366;;;:::o;17531:419::-;17697:4;17735:2;17724:9;17720:18;17712:26;;17784:9;17778:4;17774:20;17770:1;17759:9;17755:17;17748:47;17812:131;17938:4;17812:131;:::i;:::-;17804:139;;17531:419;;;:::o;17956:224::-;18096:34;18092:1;18084:6;18080:14;18073:58;18165:7;18160:2;18152:6;18148:15;18141:32;17956:224;:::o;18186:366::-;18328:3;18349:67;18413:2;18408:3;18349:67;:::i;:::-;18342:74;;18425:93;18514:3;18425:93;:::i;:::-;18543:2;18538:3;18534:12;18527:19;;18186:366;;;:::o;18558:419::-;18724:4;18762:2;18751:9;18747:18;18739:26;;18811:9;18805:4;18801:20;18797:1;18786:9;18782:17;18775:47;18839:131;18965:4;18839:131;:::i;:::-;18831:139;;18558:419;;;:::o;18983:236::-;19123:34;19119:1;19111:6;19107:14;19100:58;19192:19;19187:2;19179:6;19175:15;19168:44;18983:236;:::o;19225:366::-;19367:3;19388:67;19452:2;19447:3;19388:67;:::i;:::-;19381:74;;19464:93;19553:3;19464:93;:::i;:::-;19582:2;19577:3;19573:12;19566:19;;19225:366;;;:::o;19597:419::-;19763:4;19801:2;19790:9;19786:18;19778:26;;19850:9;19844:4;19840:20;19836:1;19825:9;19821:17;19814:47;19878:131;20004:4;19878:131;:::i;:::-;19870:139;;19597:419;;;:::o;20022:164::-;20162:16;20158:1;20150:6;20146:14;20139:40;20022:164;:::o;20192:366::-;20334:3;20355:67;20419:2;20414:3;20355:67;:::i;:::-;20348:74;;20431:93;20520:3;20431:93;:::i;:::-;20549:2;20544:3;20540:12;20533:19;;20192:366;;;:::o;20564:419::-;20730:4;20768:2;20757:9;20753:18;20745:26;;20817:9;20811:4;20807:20;20803:1;20792:9;20788:17;20781:47;20845:131;20971:4;20845:131;:::i;:::-;20837:139;;20564:419;;;:::o;20989:225::-;21129:34;21125:1;21117:6;21113:14;21106:58;21198:8;21193:2;21185:6;21181:15;21174:33;20989:225;:::o;21220:366::-;21362:3;21383:67;21447:2;21442:3;21383:67;:::i;:::-;21376:74;;21459:93;21548:3;21459:93;:::i;:::-;21577:2;21572:3;21568:12;21561:19;;21220:366;;;:::o;21592:419::-;21758:4;21796:2;21785:9;21781:18;21773:26;;21845:9;21839:4;21835:20;21831:1;21820:9;21816:17;21809:47;21873:131;21999:4;21873:131;:::i;:::-;21865:139;;21592:419;;;:::o;22017:223::-;22157:34;22153:1;22145:6;22141:14;22134:58;22226:6;22221:2;22213:6;22209:15;22202:31;22017:223;:::o;22246:366::-;22388:3;22409:67;22473:2;22468:3;22409:67;:::i;:::-;22402:74;;22485:93;22574:3;22485:93;:::i;:::-;22603:2;22598:3;22594:12;22587:19;;22246:366;;;:::o;22618:419::-;22784:4;22822:2;22811:9;22807:18;22799:26;;22871:9;22865:4;22861:20;22857:1;22846:9;22842:17;22835:47;22899:131;23025:4;22899:131;:::i;:::-;22891:139;;22618:419;;;:::o;23043:221::-;23183:34;23179:1;23171:6;23167:14;23160:58;23252:4;23247:2;23239:6;23235:15;23228:29;23043:221;:::o;23270:366::-;23412:3;23433:67;23497:2;23492:3;23433:67;:::i;:::-;23426:74;;23509:93;23598:3;23509:93;:::i;:::-;23627:2;23622:3;23618:12;23611:19;;23270:366;;;:::o;23642:419::-;23808:4;23846:2;23835:9;23831:18;23823:26;;23895:9;23889:4;23885:20;23881:1;23870:9;23866:17;23859:47;23923:131;24049:4;23923:131;:::i;:::-;23915:139;;23642:419;;;:::o;24067:224::-;24207:34;24203:1;24195:6;24191:14;24184:58;24276:7;24271:2;24263:6;24259:15;24252:32;24067:224;:::o;24297:366::-;24439:3;24460:67;24524:2;24519:3;24460:67;:::i;:::-;24453:74;;24536:93;24625:3;24536:93;:::i;:::-;24654:2;24649:3;24645:12;24638:19;;24297:366;;;:::o;24669:419::-;24835:4;24873:2;24862:9;24858:18;24850:26;;24922:9;24916:4;24912:20;24908:1;24897:9;24893:17;24886:47;24950:131;25076:4;24950:131;:::i;:::-;24942:139;;24669:419;;;:::o;25094:222::-;25234:34;25230:1;25222:6;25218:14;25211:58;25303:5;25298:2;25290:6;25286:15;25279:30;25094:222;:::o;25322:366::-;25464:3;25485:67;25549:2;25544:3;25485:67;:::i;:::-;25478:74;;25561:93;25650:3;25561:93;:::i;:::-;25679:2;25674:3;25670:12;25663:19;;25322:366;;;:::o;25694:419::-;25860:4;25898:2;25887:9;25883:18;25875:26;;25947:9;25941:4;25937:20;25933:1;25922:9;25918:17;25911:47;25975:131;26101:4;25975:131;:::i;:::-;25967:139;;25694:419;;;:::o;26119:230::-;26259:34;26255:1;26247:6;26243:14;26236:58;26328:13;26323:2;26315:6;26311:15;26304:38;26119:230;:::o;26355:366::-;26497:3;26518:67;26582:2;26577:3;26518:67;:::i;:::-;26511:74;;26594:93;26683:3;26594:93;:::i;:::-;26712:2;26707:3;26703:12;26696:19;;26355:366;;;:::o;26727:419::-;26893:4;26931:2;26920:9;26916:18;26908:26;;26980:9;26974:4;26970:20;26966:1;26955:9;26951:17;26944:47;27008:131;27134:4;27008:131;:::i;:::-;27000:139;;26727:419;;;:::o;27152:223::-;27292:34;27288:1;27280:6;27276:14;27269:58;27361:6;27356:2;27348:6;27344:15;27337:31;27152:223;:::o;27381:366::-;27523:3;27544:67;27608:2;27603:3;27544:67;:::i;:::-;27537:74;;27620:93;27709:3;27620:93;:::i;:::-;27738:2;27733:3;27729:12;27722:19;;27381:366;;;:::o;27753:419::-;27919:4;27957:2;27946:9;27942:18;27934:26;;28006:9;28000:4;27996:20;27992:1;27981:9;27977:17;27970:47;28034:131;28160:4;28034:131;:::i;:::-;28026:139;;27753:419;;;:::o;28178:231::-;28318:34;28314:1;28306:6;28302:14;28295:58;28387:14;28382:2;28374:6;28370:15;28363:39;28178:231;:::o;28415:366::-;28557:3;28578:67;28642:2;28637:3;28578:67;:::i;:::-;28571:74;;28654:93;28743:3;28654:93;:::i;:::-;28772:2;28767:3;28763:12;28756:19;;28415:366;;;:::o;28787:419::-;28953:4;28991:2;28980:9;28976:18;28968:26;;29040:9;29034:4;29030:20;29026:1;29015:9;29011:17;29004:47;29068:131;29194:4;29068:131;:::i;:::-;29060:139;;28787:419;;;:::o;29212:191::-;29252:4;29272:20;29290:1;29272:20;:::i;:::-;29267:25;;29306:20;29324:1;29306:20;:::i;:::-;29301:25;;29345:1;29342;29339:8;29336:34;;;29350:18;;:::i;:::-;29336:34;29395:1;29392;29388:9;29380:17;;29212:191;;;;:::o;29409:180::-;29457:77;29454:1;29447:88;29554:4;29551:1;29544:15;29578:4;29575:1;29568:15;29595:185;29635:1;29652:20;29670:1;29652:20;:::i;:::-;29647:25;;29686:20;29704:1;29686:20;:::i;:::-;29681:25;;29725:1;29715:35;;29730:18;;:::i;:::-;29715:35;29772:1;29769;29765:9;29760:14;;29595:185;;;;:::o;29786:250::-;29926:34;29922:1;29914:6;29910:14;29903:58;29995:33;29990:2;29982:6;29978:15;29971:58;29786:250;:::o;30042:366::-;30184:3;30205:67;30269:2;30264:3;30205:67;:::i;:::-;30198:74;;30281:93;30370:3;30281:93;:::i;:::-;30399:2;30394:3;30390:12;30383:19;;30042:366;;;:::o;30414:419::-;30580:4;30618:2;30607:9;30603:18;30595:26;;30667:9;30661:4;30657:20;30653:1;30642:9;30638:17;30631:47;30695:131;30821:4;30695:131;:::i;:::-;30687:139;;30414:419;;;:::o;30839:225::-;30979:34;30975:1;30967:6;30963:14;30956:58;31048:8;31043:2;31035:6;31031:15;31024:33;30839:225;:::o;31070:366::-;31212:3;31233:67;31297:2;31292:3;31233:67;:::i;:::-;31226:74;;31309:93;31398:3;31309:93;:::i;:::-;31427:2;31422:3;31418:12;31411:19;;31070:366;;;:::o;31442:419::-;31608:4;31646:2;31635:9;31631:18;31623:26;;31695:9;31689:4;31685:20;31681:1;31670:9;31666:17;31659:47;31723:131;31849:4;31723:131;:::i;:::-;31715:139;;31442:419;;;:::o;31867:332::-;31988:4;32026:2;32015:9;32011:18;32003:26;;32039:71;32107:1;32096:9;32092:17;32083:6;32039:71;:::i;:::-;32120:72;32188:2;32177:9;32173:18;32164:6;32120:72;:::i;:::-;31867:332;;;;;:::o;32205:348::-;32245:7;32268:20;32286:1;32268:20;:::i;:::-;32263:25;;32302:20;32320:1;32302:20;:::i;:::-;32297:25;;32490:1;32422:66;32418:74;32415:1;32412:81;32407:1;32400:9;32393:17;32389:105;32386:131;;;32497:18;;:::i;:::-;32386:131;32545:1;32542;32538:9;32527:20;;32205:348;;;;:::o;32559:180::-;32607:77;32604:1;32597:88;32704:4;32701:1;32694:15;32728:4;32725:1;32718:15;32745:180;32793:77;32790:1;32783:88;32890:4;32887:1;32880:15;32914:4;32911:1;32904:15;32931:143;32988:5;33019:6;33013:13;33004:22;;33035:33;33062:5;33035:33;:::i;:::-;32931:143;;;;:::o;33080:351::-;33150:6;33199:2;33187:9;33178:7;33174:23;33170:32;33167:119;;;33205:79;;:::i;:::-;33167:119;33325:1;33350:64;33406:7;33397:6;33386:9;33382:22;33350:64;:::i;:::-;33340:74;;33296:128;33080:351;;;;:::o;33437:85::-;33482:7;33511:5;33500:16;;33437:85;;;:::o;33528:158::-;33586:9;33619:61;33637:42;33646:32;33672:5;33646:32;:::i;:::-;33637:42;:::i;:::-;33619:61;:::i;:::-;33606:74;;33528:158;;;:::o;33692:147::-;33787:45;33826:5;33787:45;:::i;:::-;33782:3;33775:58;33692:147;;:::o;33845:114::-;33912:6;33946:5;33940:12;33930:22;;33845:114;;;:::o;33965:184::-;34064:11;34098:6;34093:3;34086:19;34138:4;34133:3;34129:14;34114:29;;33965:184;;;;:::o;34155:132::-;34222:4;34245:3;34237:11;;34275:4;34270:3;34266:14;34258:22;;34155:132;;;:::o;34293:108::-;34370:24;34388:5;34370:24;:::i;:::-;34365:3;34358:37;34293:108;;:::o;34407:179::-;34476:10;34497:46;34539:3;34531:6;34497:46;:::i;:::-;34575:4;34570:3;34566:14;34552:28;;34407:179;;;;:::o;34592:113::-;34662:4;34694;34689:3;34685:14;34677:22;;34592:113;;;:::o;34741:732::-;34860:3;34889:54;34937:5;34889:54;:::i;:::-;34959:86;35038:6;35033:3;34959:86;:::i;:::-;34952:93;;35069:56;35119:5;35069:56;:::i;:::-;35148:7;35179:1;35164:284;35189:6;35186:1;35183:13;35164:284;;;35265:6;35259:13;35292:63;35351:3;35336:13;35292:63;:::i;:::-;35285:70;;35378:60;35431:6;35378:60;:::i;:::-;35368:70;;35224:224;35211:1;35208;35204:9;35199:14;;35164:284;;;35168:14;35464:3;35457:10;;34865:608;;;34741:732;;;;:::o;35479:831::-;35742:4;35780:3;35769:9;35765:19;35757:27;;35794:71;35862:1;35851:9;35847:17;35838:6;35794:71;:::i;:::-;35875:80;35951:2;35940:9;35936:18;35927:6;35875:80;:::i;:::-;36002:9;35996:4;35992:20;35987:2;35976:9;35972:18;35965:48;36030:108;36133:4;36124:6;36030:108;:::i;:::-;36022:116;;36148:72;36216:2;36205:9;36201:18;36192:6;36148:72;:::i;:::-;36230:73;36298:3;36287:9;36283:19;36274:6;36230:73;:::i;:::-;35479:831;;;;;;;;:::o;36316:807::-;36565:4;36603:3;36592:9;36588:19;36580:27;;36617:71;36685:1;36674:9;36670:17;36661:6;36617:71;:::i;:::-;36698:72;36766:2;36755:9;36751:18;36742:6;36698:72;:::i;:::-;36780:80;36856:2;36845:9;36841:18;36832:6;36780:80;:::i;:::-;36870;36946:2;36935:9;36931:18;36922:6;36870:80;:::i;:::-;36960:73;37028:3;37017:9;37013:19;37004:6;36960:73;:::i;:::-;37043;37111:3;37100:9;37096:19;37087:6;37043:73;:::i;:::-;36316:807;;;;;;;;;:::o;37129:143::-;37186:5;37217:6;37211:13;37202:22;;37233:33;37260:5;37233:33;:::i;:::-;37129:143;;;;:::o;37278:663::-;37366:6;37374;37382;37431:2;37419:9;37410:7;37406:23;37402:32;37399:119;;;37437:79;;:::i;:::-;37399:119;37557:1;37582:64;37638:7;37629:6;37618:9;37614:22;37582:64;:::i;:::-;37572:74;;37528:128;37695:2;37721:64;37777:7;37768:6;37757:9;37753:22;37721:64;:::i;:::-;37711:74;;37666:129;37834:2;37860:64;37916:7;37907:6;37896:9;37892:22;37860:64;:::i;:::-;37850:74;;37805:129;37278:663;;;;;:::o

Swarm Source

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