ETH Price: $3,445.21 (+0.70%)
Gas: 10 Gwei

Token

Kizo Inu (KIZO)
 

Overview

Max Total Supply

1,000,000 KIZO

Holders

493

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
111.808212785697133511 KIZO

Value
$0.00
0xd9d33b1479e2c671703e56996ab0b1c3f2838752
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:
KIZOINU

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-22
*/

// SPDX-License-Identifier: Unlicensed

/*
www.kizoinu.com
www.t.me/kizoinu
*/

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 KIZOINU 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 = 1000000 * (10**18);
    uint256 public maxBuyTransactionAmount = 10000 * (10**18);
    uint256 public swapTokensAtAmount = 1000 * (10**18);
    uint256 public maxWalletToken = 10000 * (10**18);

    uint256 private buyTotalFees = 0;
    uint256 public sellTotalFees = 0;
    uint256 public earlySellTotalFee = 20;

    // auto burn fee
    uint256 public burnFee = 0;
    address public deadWallet = 0x000000000000000000000000000000000000dEaD;
    

    // distribute the collected tax percentage wise
    uint256 public liquidityPercent = 75; // 33% of total collected tax
    uint256 public marketingPercent = 15; // 34% of total collected tax
    uint256 public devPercent = 10; // 33% of total collected tax


    address payable public marketingWallet = payable(0x24f1d767ec16e8CfF97C46a08b014F6FAF84D503);
    address payable public devWallet = payable(0x4761842eB0555df3ADF154D0CB6e3e3C250f5B2f);
    
    // 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("Kizo Inu", "KIZO") {

    	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(), 1000000 * (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 setMarketingWallet(address payable wallet) public onlyOwner {
        marketingWallet = wallet;
    }

    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":"devWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":"address payable","name":"wallet","type":"address"}],"name":"setMarketingWallet","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"}]

60a06040526001600660156101000a81548160ff0219169083151502179055506001600660166101000a81548160ff02191690831515021790555069d3c21bcecceda100000060075569021e19e0c9bab2400000600855683635c9adc5dea0000060095569021e19e0c9bab2400000600a556000600b556000600c556014600d556000600e5561dead600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604b601055600f601155600a6012557324f1d767ec16e8cff97c46a08b014f6faf84d503601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734761842eb0555df3adf154d0cb6e3e3c250f5b2f601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200018e57600080fd5b506040518060400160405280600881526020017f4b697a6f20496e750000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b495a4f0000000000000000000000000000000000000000000000000000000081525081600390805190602001906200021392919062000aaa565b5080600490805190602001906200022c92919062000aaa565b5050506200024f620002436200052b60201b60201c565b6200053360201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002b6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002dc919062000bc4565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000344573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200036a919062000bc4565b6040518363ffffffff1660e01b81526004016200038992919062000c07565b6020604051808303816000875af1158015620003a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003cf919062000bc4565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000459816001620005f960201b60201c565b6200047b6200046d6200072f60201b60201c565b60016200075960201b60201c565b620004b0601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200075960201b60201c565b620004e5601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200075960201b60201c565b620004f83060016200075960201b60201c565b620005236200050c6200072f60201b60201c565b69d3c21bcecceda10000006200092860201b60201c565b505062000fbb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036200068e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006859062000cbb565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007696200052b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200078f6200072f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007df9062000d2d565b60405180910390fd5b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036200087d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008749062000dc5565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200091c919062000e04565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200099a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009919062000e71565b60405180910390fd5b620009ae6000838362000aa060201b60201c565b8060026000828254620009c2919062000ecc565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a19919062000ecc565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a80919062000f3a565b60405180910390a362000a9c6000838362000aa560201b60201c565b5050565b505050565b505050565b82805462000ab89062000f86565b90600052602060002090601f01602090048101928262000adc576000855562000b28565b82601f1062000af757805160ff191683800117855562000b28565b8280016001018555821562000b28579182015b8281111562000b2757825182559160200191906001019062000b0a565b5b50905062000b37919062000b3b565b5090565b5b8082111562000b5657600081600090555060010162000b3c565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b8c8262000b5f565b9050919050565b62000b9e8162000b7f565b811462000baa57600080fd5b50565b60008151905062000bbe8162000b93565b92915050565b60006020828403121562000bdd5762000bdc62000b5a565b5b600062000bed8482850162000bad565b91505092915050565b62000c018162000b7f565b82525050565b600060408201905062000c1e600083018562000bf6565b62000c2d602083018462000bf6565b9392505050565b600082825260208201905092915050565b7f4b436f696e3a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b600062000ca3603f8362000c34565b915062000cb08262000c45565b604082019050919050565b6000602082019050818103600083015262000cd68162000c94565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000d1560208362000c34565b915062000d228262000cdd565b602082019050919050565b6000602082019050818103600083015262000d488162000d06565b9050919050565b7f4b436f696e3a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b600062000dad60318362000c34565b915062000dba8262000d4f565b604082019050919050565b6000602082019050818103600083015262000de08162000d9e565b9050919050565b60008115159050919050565b62000dfe8162000de7565b82525050565b600060208201905062000e1b600083018462000df3565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e59601f8362000c34565b915062000e668262000e21565b602082019050919050565b6000602082019050818103600083015262000e8c8162000e4a565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ed98262000e93565b915062000ee68362000e93565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f1e5762000f1d62000e9d565b5b828201905092915050565b62000f348162000e93565b82525050565b600060208201905062000f51600083018462000f29565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f9f57607f821691505b60208210810362000fb55762000fb462000f57565b5b50919050565b608051614b3c62000fde6000396000818161102d01526119b40152614b3c6000f3fe6080604052600436106102cd5760003560e01c806375f0a87411610175578063b2f5260a116100dc578063dd62ed3e11610095578063e6c75f711161006f578063e6c75f7114610b13578063f2fde38b14610b3e578063fc3c28af14610b67578063fce589d814610b92576102d4565b8063dd62ed3e14610a82578063e2f4560514610abf578063e5c4005c14610aea576102d4565b8063b2f5260a14610976578063b3b5e0431461099f578063b62496f5146109c8578063c024666814610a05578063c49b9a8014610a2e578063d8020a1814610a57576102d4565b80639a7a23d61161012e5780639a7a23d614610854578063a26577781461087d578063a457c2d7146108a6578063a4d15b64146108e3578063a9059cbb1461090e578063b06837551461094b576102d4565b806375f0a8741461075457806385141a771461077f5780638da5cb5b146107aa5780638ea5220f146107d557806391d55f411461080057806395d89b4114610829576102d4565b806349bd5a5e116102345780635d098b38116101ed5780636a486a8e116101c75780636a486a8e146106ac57806370a08231146106d7578063715018a614610714578063750c11b61461072b576102d4565b80635d098b38146106315780636078a9b51461065a57806365b8dbc014610683576102d4565b806349bd5a5e146105215780634a74bb021461054c5780634fbee19314610577578063533f9630146105b45780635aa821a9146105dd5780635c38ffe214610608576102d4565b80631aa04b88116102865780631aa04b88146103eb5780631f53ac021461041657806323b872dd1461043f578063313ce5671461047c57806339509351146104a75780634551bbe9146104e4576102d4565b806302259e9e146102d957806306fdde0314610304578063095ea7b31461032f5780630db722c41461036c5780631694505e1461039557806318160ddd146103c0576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bbd565b6040516102fb9190613634565b60405180910390f35b34801561031057600080fd5b50610319610bc3565b60405161032691906136e8565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190613799565b610c55565b60405161036391906137f4565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e919061380f565b610c73565b005b3480156103a157600080fd5b506103aa610d70565b6040516103b791906138c1565b60405180910390f35b3480156103cc57600080fd5b506103d5610d96565b6040516103e29190613634565b60405180910390f35b3480156103f757600080fd5b50610400610da0565b60405161040d9190613634565b60405180910390f35b34801561042257600080fd5b5061043d6004803603810190610438919061391a565b610da6565b005b34801561044b57600080fd5b5061046660048036038101906104619190613947565b610e66565b60405161047391906137f4565b60405180910390f35b34801561048857600080fd5b50610491610f5e565b60405161049e91906139b6565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190613799565b610f67565b6040516104db91906137f4565b60405180910390f35b3480156104f057600080fd5b5061050b600480360381019061050691906139d1565b611013565b6040516105189190613634565b60405180910390f35b34801561052d57600080fd5b5061053661102b565b6040516105439190613a0d565b60405180910390f35b34801561055857600080fd5b5061056161104f565b60405161056e91906137f4565b60405180910390f35b34801561058357600080fd5b5061059e600480360381019061059991906139d1565b611062565b6040516105ab91906137f4565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d69190613a28565b6110b8565b005b3480156105e957600080fd5b506105f2611184565b6040516105ff9190613634565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190613a28565b61118a565b005b34801561063d57600080fd5b506106586004803603810190610653919061391a565b61126f565b005b34801561066657600080fd5b50610681600480360381019061067c9190613a28565b61132f565b005b34801561068f57600080fd5b506106aa60048036038101906106a591906139d1565b6113fb565b005b3480156106b857600080fd5b506106c16115c7565b6040516106ce9190613634565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f991906139d1565b6115cd565b60405161070b9190613634565b60405180910390f35b34801561072057600080fd5b50610729611615565b005b34801561073757600080fd5b50610752600480360381019061074d9190613a28565b61169d565b005b34801561076057600080fd5b50610769611723565b6040516107769190613a64565b60405180910390f35b34801561078b57600080fd5b50610794611749565b6040516107a19190613a0d565b60405180910390f35b3480156107b657600080fd5b506107bf61176f565b6040516107cc9190613a0d565b60405180910390f35b3480156107e157600080fd5b506107ea611799565b6040516107f79190613a64565b60405180910390f35b34801561080c57600080fd5b5061082760048036038101906108229190613a28565b6117bf565b005b34801561083557600080fd5b5061083e6118a4565b60405161084b91906136e8565b60405180910390f35b34801561086057600080fd5b5061087b60048036038101906108769190613aab565b611936565b005b34801561088957600080fd5b506108a4600480360381019061089f9190613aeb565b611a4e565b005b3480156108b257600080fd5b506108cd60048036038101906108c89190613799565b611ae7565b6040516108da91906137f4565b60405180910390f35b3480156108ef57600080fd5b506108f8611bd2565b60405161090591906137f4565b60405180910390f35b34801561091a57600080fd5b5061093560048036038101906109309190613799565b611be5565b60405161094291906137f4565b60405180910390f35b34801561095757600080fd5b50610960611c03565b60405161096d9190613634565b60405180910390f35b34801561098257600080fd5b5061099d60048036038101906109989190613a28565b611c09565b005b3480156109ab57600080fd5b506109c660048036038101906109c19190613a28565b611cd5565b005b3480156109d457600080fd5b506109ef60048036038101906109ea91906139d1565b611dba565b6040516109fc91906137f4565b60405180910390f35b348015610a1157600080fd5b50610a2c6004803603810190610a279190613aab565b611dda565b005b348015610a3a57600080fd5b50610a556004803603810190610a509190613aeb565b611f91565b005b348015610a6357600080fd5b50610a6c612061565b604051610a799190613634565b60405180910390f35b348015610a8e57600080fd5b50610aa96004803603810190610aa49190613b18565b612067565b604051610ab69190613634565b60405180910390f35b348015610acb57600080fd5b50610ad46120ee565b604051610ae19190613634565b60405180910390f35b348015610af657600080fd5b50610b116004803603810190610b0c9190613a28565b6120f4565b005b348015610b1f57600080fd5b50610b286121be565b604051610b359190613634565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b6091906139d1565b6121c4565b005b348015610b7357600080fd5b50610b7c6122bb565b604051610b899190613634565b60405180910390f35b348015610b9e57600080fd5b50610ba76122c1565b604051610bb49190613634565b60405180910390f35b60075481565b606060038054610bd290613b87565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfe90613b87565b8015610c4b5780601f10610c2057610100808354040283529160200191610c4b565b820191906000526020600020905b815481529060010190602001808311610c2e57829003601f168201915b5050505050905090565b6000610c69610c626122c7565b84846122cf565b6001905092915050565b610c7b6122c7565b73ffffffffffffffffffffffffffffffffffffffff16610c9961176f565b73ffffffffffffffffffffffffffffffffffffffff1614610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce690613c04565b60405180910390fd5b6064610d1682610d08858761249890919063ffffffff16565b61249890919063ffffffff16565b14610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d90613c96565b60405180910390fd5b826010819055508160118190555080601281905550505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600d5481565b610dae6122c7565b73ffffffffffffffffffffffffffffffffffffffff16610dcc61176f565b73ffffffffffffffffffffffffffffffffffffffff1614610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990613c04565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610e738484846124ae565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ebe6122c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3590613d28565b60405180910390fd5b610f5285610f4a6122c7565b8584036122cf565b60019150509392505050565b60006012905090565b6000611009610f746122c7565b848460016000610f826122c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110049190613d77565b6122cf565b6001905092915050565b60176020528060005260406000206000915090505481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600660159054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110c06122c7565b73ffffffffffffffffffffffffffffffffffffffff166110de61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90613c04565b60405180910390fd5b80600b81905550600a600b541115611181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117890613e19565b60405180910390fd5b50565b60085481565b6111926122c7565b73ffffffffffffffffffffffffffffffffffffffff166111b061176f565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613c04565b60405180910390fd5b806007819055506112296103e861121b610d96565b612bfc90919063ffffffff16565b6007541161126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390613e85565b60405180910390fd5b50565b6112776122c7565b73ffffffffffffffffffffffffffffffffffffffff1661129561176f565b73ffffffffffffffffffffffffffffffffffffffff16146112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e290613c04565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6113376122c7565b73ffffffffffffffffffffffffffffffffffffffff1661135561176f565b73ffffffffffffffffffffffffffffffffffffffff16146113ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a290613c04565b60405180910390fd5b80600d819055506014600d5411156113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90613e19565b60405180910390fd5b50565b6114036122c7565b73ffffffffffffffffffffffffffffffffffffffff1661142161176f565b73ffffffffffffffffffffffffffffffffffffffff1614611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e90613c04565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe90613f17565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61161d6122c7565b73ffffffffffffffffffffffffffffffffffffffff1661163b61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613c04565b60405180910390fd5b61169b6000612c12565b565b6116a56122c7565b73ffffffffffffffffffffffffffffffffffffffff166116c361176f565b73ffffffffffffffffffffffffffffffffffffffff1614611719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171090613c04565b60405180910390fd5b8060098190555050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117c76122c7565b73ffffffffffffffffffffffffffffffffffffffff166117e561176f565b73ffffffffffffffffffffffffffffffffffffffff161461183b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183290613c04565b60405180910390fd5b80600a8190555061185e6103e8611850610d96565b612bfc90919063ffffffff16565b600a54116118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890613e85565b60405180910390fd5b50565b6060600480546118b390613b87565b80601f01602080910402602001604051908101604052809291908181526020018280546118df90613b87565b801561192c5780601f106119015761010080835404028352916020019161192c565b820191906000526020600020905b81548152906001019060200180831161190f57829003601f168201915b5050505050905090565b61193e6122c7565b73ffffffffffffffffffffffffffffffffffffffff1661195c61176f565b73ffffffffffffffffffffffffffffffffffffffff16146119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a990613c04565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3790613fcf565b60405180910390fd5b611a4a8282612cd8565b5050565b611a566122c7565b73ffffffffffffffffffffffffffffffffffffffff16611a7461176f565b73ffffffffffffffffffffffffffffffffffffffff1614611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190613c04565b60405180910390fd5b80600660166101000a81548160ff02191690831515021790555050565b60008060016000611af66122c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90614061565b60405180910390fd5b611bc7611bbe6122c7565b858584036122cf565b600191505092915050565b600660169054906101000a900460ff1681565b6000611bf9611bf26122c7565b84846124ae565b6001905092915050565b60105481565b611c116122c7565b73ffffffffffffffffffffffffffffffffffffffff16611c2f61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c90613c04565b60405180910390fd5b80600c81905550600a600c541115611cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc990613e19565b60405180910390fd5b50565b611cdd6122c7565b73ffffffffffffffffffffffffffffffffffffffff16611cfb61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4890613c04565b60405180910390fd5b80600881905550611d746103e8611d66610d96565b612bfc90919063ffffffff16565b60085411611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dae90613e85565b60405180910390fd5b50565b60166020528060005260406000206000915054906101000a900460ff1681565b611de26122c7565b73ffffffffffffffffffffffffffffffffffffffff16611e0061176f565b73ffffffffffffffffffffffffffffffffffffffff1614611e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4d90613c04565b60405180910390fd5b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf906140f3565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f8591906137f4565b60405180910390a25050565b611f996122c7565b73ffffffffffffffffffffffffffffffffffffffff16611fb761176f565b73ffffffffffffffffffffffffffffffffffffffff161461200d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200490613c04565b60405180910390fd5b80600660156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405161205691906137f4565b60405180910390a150565b60115481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6120fc6122c7565b73ffffffffffffffffffffffffffffffffffffffff1661211a61176f565b73ffffffffffffffffffffffffffffffffffffffff1614612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790613c04565b60405180910390fd5b60058111156121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab9061415f565b60405180910390fd5b80600e8190555050565b600a5481565b6121cc6122c7565b73ffffffffffffffffffffffffffffffffffffffff166121ea61176f565b73ffffffffffffffffffffffffffffffffffffffff1614612240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223790613c04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a6906141f1565b60405180910390fd5b6122b881612c12565b50565b60125481565b600e5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590614283565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a490614315565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161248b9190613634565b60405180910390a3505050565b600081836124a69190613d77565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361251d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612514906143a7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361258c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258390614439565b60405180910390fd5b600081036125a5576125a083836000612e0b565b612bf7565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126485750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561269e5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561278b576008548111156126e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126df906144cb565b60405180910390fd5b60006126f3836115cd565b9050600a5482826127049190613d77565b1115612745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273c9061455d565b60405180910390fd5b42601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561282e5750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128845750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128cf576007548111156128ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c5906145ef565b60405180910390fd5b5b60006128da306115cd565b9050600060095482101590508080156129005750600660149054906101000a900460ff16155b80156129555750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561296d5750600660159054906101000a900460ff165b156129815760095491506129808261308a565b5b600080601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612a285750601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612be7576000600b549050601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b20576000601760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442612ad3919061460f565b9050600660169054906101000a900460ff168015612af45750620151808111155b15612b0357600d549150612b1e565b600660169054906101000a900460ff16612b1d57600c5491505b5b505b612b466064612b3883896132b490919063ffffffff16565b612bfc90919063ffffffff16565b9250612b706064612b62600e54896132b490919063ffffffff16565b612bfc90919063ffffffff16565b91506000831115612b8757612b86883085612e0b565b5b6000821115612bbe57612bbd88600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612e0b565b5b612be3612bd4838561249890919063ffffffff16565b876132ca90919063ffffffff16565b9550505b612bf2878787612e0b565b505050505b505050565b60008183612c0a9190614672565b905092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6190614715565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e71906143a7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee090614439565b60405180910390fd5b612ef48383836132e0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f71906147a7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461300d9190613d77565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130719190613634565b60405180910390a36130848484846132e5565b50505050565b6001600660146101000a81548160ff02191690831515021790555060006130cf60646130c1601054856132b490919063ffffffff16565b612bfc90919063ffffffff16565b905060006130e7600283612bfc90919063ffffffff16565b905060006130fe82846132ca90919063ffffffff16565b9050600047905061310e836132ea565b600061312382476132ca90919063ffffffff16565b905061312f8382613563565b61314a61314586886132ca90919063ffffffff16565b6132ea565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6131c36131a060125460115461249890919063ffffffff16565b6131b5601154476132b490919063ffffffff16565b612bfc90919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156131ee573d6000803e3d6000fd5b50601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015613257573d6000803e3d6000fd5b507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f838148684826040516132899291906147c7565b60405180910390a150505050506000600660146101000a81548160ff02191690831515021790555050565b600081836132c291906147f0565b905092915050565b600081836132d8919061460f565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156133075761330661484a565b5b6040519080825280602002602001820160405280156133355781602001602082028036833780820191505090505b509050308160008151811061334d5761334c614879565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061341891906148bd565b8160018151811061342c5761342b614879565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508161349330600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612067565b10156134c9576134c830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000196122cf565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161352d9594939291906149e3565b600060405180830381600087803b15801561354757600080fd5b505af115801561355b573d6000803e3d6000fd5b505050505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806135af61176f565b426040518863ffffffff1660e01b81526004016135d196959493929190614a3d565b60606040518083038185885af11580156135ef573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906136149190614ab3565b5050505050565b6000819050919050565b61362e8161361b565b82525050565b60006020820190506136496000830184613625565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561368957808201518184015260208101905061366e565b83811115613698576000848401525b50505050565b6000601f19601f8301169050919050565b60006136ba8261364f565b6136c4818561365a565b93506136d481856020860161366b565b6136dd8161369e565b840191505092915050565b6000602082019050818103600083015261370281846136af565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061373a8261370f565b9050919050565b61374a8161372f565b811461375557600080fd5b50565b60008135905061376781613741565b92915050565b6137768161361b565b811461378157600080fd5b50565b6000813590506137938161376d565b92915050565b600080604083850312156137b0576137af61370a565b5b60006137be85828601613758565b92505060206137cf85828601613784565b9150509250929050565b60008115159050919050565b6137ee816137d9565b82525050565b600060208201905061380960008301846137e5565b92915050565b6000806000606084860312156138285761382761370a565b5b600061383686828701613784565b935050602061384786828701613784565b925050604061385886828701613784565b9150509250925092565b6000819050919050565b600061388761388261387d8461370f565b613862565b61370f565b9050919050565b60006138998261386c565b9050919050565b60006138ab8261388e565b9050919050565b6138bb816138a0565b82525050565b60006020820190506138d660008301846138b2565b92915050565b60006138e78261370f565b9050919050565b6138f7816138dc565b811461390257600080fd5b50565b600081359050613914816138ee565b92915050565b6000602082840312156139305761392f61370a565b5b600061393e84828501613905565b91505092915050565b6000806000606084860312156139605761395f61370a565b5b600061396e86828701613758565b935050602061397f86828701613758565b925050604061399086828701613784565b9150509250925092565b600060ff82169050919050565b6139b08161399a565b82525050565b60006020820190506139cb60008301846139a7565b92915050565b6000602082840312156139e7576139e661370a565b5b60006139f584828501613758565b91505092915050565b613a078161372f565b82525050565b6000602082019050613a2260008301846139fe565b92915050565b600060208284031215613a3e57613a3d61370a565b5b6000613a4c84828501613784565b91505092915050565b613a5e816138dc565b82525050565b6000602082019050613a796000830184613a55565b92915050565b613a88816137d9565b8114613a9357600080fd5b50565b600081359050613aa581613a7f565b92915050565b60008060408385031215613ac257613ac161370a565b5b6000613ad085828601613758565b9250506020613ae185828601613a96565b9150509250929050565b600060208284031215613b0157613b0061370a565b5b6000613b0f84828501613a96565b91505092915050565b60008060408385031215613b2f57613b2e61370a565b5b6000613b3d85828601613758565b9250506020613b4e85828601613758565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b9f57607f821691505b602082108103613bb257613bb1613b58565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bee60208361365a565b9150613bf982613bb8565b602082019050919050565b60006020820190508181036000830152613c1d81613be1565b9050919050565b7f746f74616c2070657263656e74616765206d75737420626520657175616c207460008201527f6f20313030000000000000000000000000000000000000000000000000000000602082015250565b6000613c8060258361365a565b9150613c8b82613c24565b604082019050919050565b60006020820190508181036000830152613caf81613c73565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613d1260288361365a565b9150613d1d82613cb6565b604082019050919050565b60006020820190508181036000830152613d4181613d05565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d828261361b565b9150613d8d8361361b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dc257613dc1613d48565b5b828201905092915050565b7f46656520746f6f20686967680000000000000000000000000000000000000000600082015250565b6000613e03600c8361365a565b9150613e0e82613dcd565b602082019050919050565b60006020820190508181036000830152613e3281613df6565b9050919050565b7f76616c756520697320746f6f206c6f7700000000000000000000000000000000600082015250565b6000613e6f60108361365a565b9150613e7a82613e39565b602082019050919050565b60006020820190508181036000830152613e9e81613e62565b9050919050565b7f4b436f696e3a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b6000613f01602a8361365a565b9150613f0c82613ea5565b604082019050919050565b60006020820190508181036000830152613f3081613ef4565b9050919050565b7f4b436f696e3a205468652050616e63616b655377617020706169722063616e6e60008201527f6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b60208201527f65744d616b657250616972730000000000000000000000000000000000000000604082015250565b6000613fb9604c8361365a565b9150613fc482613f37565b606082019050919050565b60006020820190508181036000830152613fe881613fac565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061404b60258361365a565b915061405682613fef565b604082019050919050565b6000602082019050818103600083015261407a8161403e565b9050919050565b7f4b436f696e3a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b60006140dd60318361365a565b91506140e882614081565b604082019050919050565b6000602082019050818103600083015261410c816140d0565b9050919050565b7f76616c756520746f6f2068696768000000000000000000000000000000000000600082015250565b6000614149600e8361365a565b915061415482614113565b602082019050919050565b600060208201905081810360008301526141788161413c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006141db60268361365a565b91506141e68261417f565b604082019050919050565b6000602082019050818103600083015261420a816141ce565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061426d60248361365a565b915061427882614211565b604082019050919050565b6000602082019050818103600083015261429c81614260565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006142ff60228361365a565b915061430a826142a3565b604082019050919050565b6000602082019050818103600083015261432e816142f2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061439160258361365a565b915061439c82614335565b604082019050919050565b600060208201905081810360008301526143c081614384565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061442360238361365a565b915061442e826143c7565b604082019050919050565b6000602082019050818103600083015261445281614416565b9050919050565b7f616d6f756e74206578636565647320746865206d61784275795472616e73616360008201527f74696f6e416d6f756e742e000000000000000000000000000000000000000000602082015250565b60006144b5602b8361365a565b91506144c082614459565b604082019050919050565b600060208201905081810360008301526144e4816144a8565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e742e00000000000000000000000000000000000000000000000000000000602082015250565b600061454760248361365a565b9150614552826144eb565b604082019050919050565b600060208201905081810360008301526145768161453a565b9050919050565b7f616d6f756e74206578636565647320746865206d617853656c6c5472616e736160008201527f6374696f6e416d6f756e742e0000000000000000000000000000000000000000602082015250565b60006145d9602c8361365a565b91506145e48261457d565b604082019050919050565b60006020820190508181036000830152614608816145cc565b9050919050565b600061461a8261361b565b91506146258361361b565b92508282101561463857614637613d48565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061467d8261361b565b91506146888361361b565b92508261469857614697614643565b5b828204905092915050565b7f4b436f696e3a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b60006146ff603f8361365a565b915061470a826146a3565b604082019050919050565b6000602082019050818103600083015261472e816146f2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061479160268361365a565b915061479c82614735565b604082019050919050565b600060208201905081810360008301526147c081614784565b9050919050565b60006040820190506147dc6000830185613625565b6147e96020830184613625565b9392505050565b60006147fb8261361b565b91506148068361361b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561483f5761483e613d48565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506148b781613741565b92915050565b6000602082840312156148d3576148d261370a565b5b60006148e1848285016148a8565b91505092915050565b6000819050919050565b600061490f61490a614905846148ea565b613862565b61361b565b9050919050565b61491f816148f4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61495a8161372f565b82525050565b600061496c8383614951565b60208301905092915050565b6000602082019050919050565b600061499082614925565b61499a8185614930565b93506149a583614941565b8060005b838110156149d65781516149bd8882614960565b97506149c883614978565b9250506001810190506149a9565b5085935050505092915050565b600060a0820190506149f86000830188613625565b614a056020830187614916565b8181036040830152614a178186614985565b9050614a2660608301856139fe565b614a336080830184613625565b9695505050505050565b600060c082019050614a5260008301896139fe565b614a5f6020830188613625565b614a6c6040830187614916565b614a796060830186614916565b614a8660808301856139fe565b614a9360a0830184613625565b979650505050505050565b600081519050614aad8161376d565b92915050565b600080600060608486031215614acc57614acb61370a565b5b6000614ada86828701614a9e565b9350506020614aeb86828701614a9e565b9250506040614afc86828701614a9e565b915050925092509256fea2646970667358221220d58edd45d9eee63edfccdfcb0ac4bb9edb5cf426cfc90c2d8dd6e71fc6e0590664736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102cd5760003560e01c806375f0a87411610175578063b2f5260a116100dc578063dd62ed3e11610095578063e6c75f711161006f578063e6c75f7114610b13578063f2fde38b14610b3e578063fc3c28af14610b67578063fce589d814610b92576102d4565b8063dd62ed3e14610a82578063e2f4560514610abf578063e5c4005c14610aea576102d4565b8063b2f5260a14610976578063b3b5e0431461099f578063b62496f5146109c8578063c024666814610a05578063c49b9a8014610a2e578063d8020a1814610a57576102d4565b80639a7a23d61161012e5780639a7a23d614610854578063a26577781461087d578063a457c2d7146108a6578063a4d15b64146108e3578063a9059cbb1461090e578063b06837551461094b576102d4565b806375f0a8741461075457806385141a771461077f5780638da5cb5b146107aa5780638ea5220f146107d557806391d55f411461080057806395d89b4114610829576102d4565b806349bd5a5e116102345780635d098b38116101ed5780636a486a8e116101c75780636a486a8e146106ac57806370a08231146106d7578063715018a614610714578063750c11b61461072b576102d4565b80635d098b38146106315780636078a9b51461065a57806365b8dbc014610683576102d4565b806349bd5a5e146105215780634a74bb021461054c5780634fbee19314610577578063533f9630146105b45780635aa821a9146105dd5780635c38ffe214610608576102d4565b80631aa04b88116102865780631aa04b88146103eb5780631f53ac021461041657806323b872dd1461043f578063313ce5671461047c57806339509351146104a75780634551bbe9146104e4576102d4565b806302259e9e146102d957806306fdde0314610304578063095ea7b31461032f5780630db722c41461036c5780631694505e1461039557806318160ddd146103c0576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bbd565b6040516102fb9190613634565b60405180910390f35b34801561031057600080fd5b50610319610bc3565b60405161032691906136e8565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190613799565b610c55565b60405161036391906137f4565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e919061380f565b610c73565b005b3480156103a157600080fd5b506103aa610d70565b6040516103b791906138c1565b60405180910390f35b3480156103cc57600080fd5b506103d5610d96565b6040516103e29190613634565b60405180910390f35b3480156103f757600080fd5b50610400610da0565b60405161040d9190613634565b60405180910390f35b34801561042257600080fd5b5061043d6004803603810190610438919061391a565b610da6565b005b34801561044b57600080fd5b5061046660048036038101906104619190613947565b610e66565b60405161047391906137f4565b60405180910390f35b34801561048857600080fd5b50610491610f5e565b60405161049e91906139b6565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190613799565b610f67565b6040516104db91906137f4565b60405180910390f35b3480156104f057600080fd5b5061050b600480360381019061050691906139d1565b611013565b6040516105189190613634565b60405180910390f35b34801561052d57600080fd5b5061053661102b565b6040516105439190613a0d565b60405180910390f35b34801561055857600080fd5b5061056161104f565b60405161056e91906137f4565b60405180910390f35b34801561058357600080fd5b5061059e600480360381019061059991906139d1565b611062565b6040516105ab91906137f4565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d69190613a28565b6110b8565b005b3480156105e957600080fd5b506105f2611184565b6040516105ff9190613634565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190613a28565b61118a565b005b34801561063d57600080fd5b506106586004803603810190610653919061391a565b61126f565b005b34801561066657600080fd5b50610681600480360381019061067c9190613a28565b61132f565b005b34801561068f57600080fd5b506106aa60048036038101906106a591906139d1565b6113fb565b005b3480156106b857600080fd5b506106c16115c7565b6040516106ce9190613634565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f991906139d1565b6115cd565b60405161070b9190613634565b60405180910390f35b34801561072057600080fd5b50610729611615565b005b34801561073757600080fd5b50610752600480360381019061074d9190613a28565b61169d565b005b34801561076057600080fd5b50610769611723565b6040516107769190613a64565b60405180910390f35b34801561078b57600080fd5b50610794611749565b6040516107a19190613a0d565b60405180910390f35b3480156107b657600080fd5b506107bf61176f565b6040516107cc9190613a0d565b60405180910390f35b3480156107e157600080fd5b506107ea611799565b6040516107f79190613a64565b60405180910390f35b34801561080c57600080fd5b5061082760048036038101906108229190613a28565b6117bf565b005b34801561083557600080fd5b5061083e6118a4565b60405161084b91906136e8565b60405180910390f35b34801561086057600080fd5b5061087b60048036038101906108769190613aab565b611936565b005b34801561088957600080fd5b506108a4600480360381019061089f9190613aeb565b611a4e565b005b3480156108b257600080fd5b506108cd60048036038101906108c89190613799565b611ae7565b6040516108da91906137f4565b60405180910390f35b3480156108ef57600080fd5b506108f8611bd2565b60405161090591906137f4565b60405180910390f35b34801561091a57600080fd5b5061093560048036038101906109309190613799565b611be5565b60405161094291906137f4565b60405180910390f35b34801561095757600080fd5b50610960611c03565b60405161096d9190613634565b60405180910390f35b34801561098257600080fd5b5061099d60048036038101906109989190613a28565b611c09565b005b3480156109ab57600080fd5b506109c660048036038101906109c19190613a28565b611cd5565b005b3480156109d457600080fd5b506109ef60048036038101906109ea91906139d1565b611dba565b6040516109fc91906137f4565b60405180910390f35b348015610a1157600080fd5b50610a2c6004803603810190610a279190613aab565b611dda565b005b348015610a3a57600080fd5b50610a556004803603810190610a509190613aeb565b611f91565b005b348015610a6357600080fd5b50610a6c612061565b604051610a799190613634565b60405180910390f35b348015610a8e57600080fd5b50610aa96004803603810190610aa49190613b18565b612067565b604051610ab69190613634565b60405180910390f35b348015610acb57600080fd5b50610ad46120ee565b604051610ae19190613634565b60405180910390f35b348015610af657600080fd5b50610b116004803603810190610b0c9190613a28565b6120f4565b005b348015610b1f57600080fd5b50610b286121be565b604051610b359190613634565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b6091906139d1565b6121c4565b005b348015610b7357600080fd5b50610b7c6122bb565b604051610b899190613634565b60405180910390f35b348015610b9e57600080fd5b50610ba76122c1565b604051610bb49190613634565b60405180910390f35b60075481565b606060038054610bd290613b87565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfe90613b87565b8015610c4b5780601f10610c2057610100808354040283529160200191610c4b565b820191906000526020600020905b815481529060010190602001808311610c2e57829003601f168201915b5050505050905090565b6000610c69610c626122c7565b84846122cf565b6001905092915050565b610c7b6122c7565b73ffffffffffffffffffffffffffffffffffffffff16610c9961176f565b73ffffffffffffffffffffffffffffffffffffffff1614610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce690613c04565b60405180910390fd5b6064610d1682610d08858761249890919063ffffffff16565b61249890919063ffffffff16565b14610d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4d90613c96565b60405180910390fd5b826010819055508160118190555080601281905550505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600d5481565b610dae6122c7565b73ffffffffffffffffffffffffffffffffffffffff16610dcc61176f565b73ffffffffffffffffffffffffffffffffffffffff1614610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990613c04565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610e738484846124ae565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ebe6122c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3590613d28565b60405180910390fd5b610f5285610f4a6122c7565b8584036122cf565b60019150509392505050565b60006012905090565b6000611009610f746122c7565b848460016000610f826122c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110049190613d77565b6122cf565b6001905092915050565b60176020528060005260406000206000915090505481565b7f000000000000000000000000a1acce84bab309ba739ed24e07535caa93b8c48c81565b600660159054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110c06122c7565b73ffffffffffffffffffffffffffffffffffffffff166110de61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90613c04565b60405180910390fd5b80600b81905550600a600b541115611181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117890613e19565b60405180910390fd5b50565b60085481565b6111926122c7565b73ffffffffffffffffffffffffffffffffffffffff166111b061176f565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613c04565b60405180910390fd5b806007819055506112296103e861121b610d96565b612bfc90919063ffffffff16565b6007541161126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390613e85565b60405180910390fd5b50565b6112776122c7565b73ffffffffffffffffffffffffffffffffffffffff1661129561176f565b73ffffffffffffffffffffffffffffffffffffffff16146112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e290613c04565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6113376122c7565b73ffffffffffffffffffffffffffffffffffffffff1661135561176f565b73ffffffffffffffffffffffffffffffffffffffff16146113ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a290613c04565b60405180910390fd5b80600d819055506014600d5411156113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90613e19565b60405180910390fd5b50565b6114036122c7565b73ffffffffffffffffffffffffffffffffffffffff1661142161176f565b73ffffffffffffffffffffffffffffffffffffffff1614611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e90613c04565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe90613f17565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61161d6122c7565b73ffffffffffffffffffffffffffffffffffffffff1661163b61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168890613c04565b60405180910390fd5b61169b6000612c12565b565b6116a56122c7565b73ffffffffffffffffffffffffffffffffffffffff166116c361176f565b73ffffffffffffffffffffffffffffffffffffffff1614611719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171090613c04565b60405180910390fd5b8060098190555050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117c76122c7565b73ffffffffffffffffffffffffffffffffffffffff166117e561176f565b73ffffffffffffffffffffffffffffffffffffffff161461183b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183290613c04565b60405180910390fd5b80600a8190555061185e6103e8611850610d96565b612bfc90919063ffffffff16565b600a54116118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890613e85565b60405180910390fd5b50565b6060600480546118b390613b87565b80601f01602080910402602001604051908101604052809291908181526020018280546118df90613b87565b801561192c5780601f106119015761010080835404028352916020019161192c565b820191906000526020600020905b81548152906001019060200180831161190f57829003601f168201915b5050505050905090565b61193e6122c7565b73ffffffffffffffffffffffffffffffffffffffff1661195c61176f565b73ffffffffffffffffffffffffffffffffffffffff16146119b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a990613c04565b60405180910390fd5b7f000000000000000000000000a1acce84bab309ba739ed24e07535caa93b8c48c73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3790613fcf565b60405180910390fd5b611a4a8282612cd8565b5050565b611a566122c7565b73ffffffffffffffffffffffffffffffffffffffff16611a7461176f565b73ffffffffffffffffffffffffffffffffffffffff1614611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190613c04565b60405180910390fd5b80600660166101000a81548160ff02191690831515021790555050565b60008060016000611af66122c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611bb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611baa90614061565b60405180910390fd5b611bc7611bbe6122c7565b858584036122cf565b600191505092915050565b600660169054906101000a900460ff1681565b6000611bf9611bf26122c7565b84846124ae565b6001905092915050565b60105481565b611c116122c7565b73ffffffffffffffffffffffffffffffffffffffff16611c2f61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c90613c04565b60405180910390fd5b80600c81905550600a600c541115611cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc990613e19565b60405180910390fd5b50565b611cdd6122c7565b73ffffffffffffffffffffffffffffffffffffffff16611cfb61176f565b73ffffffffffffffffffffffffffffffffffffffff1614611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4890613c04565b60405180910390fd5b80600881905550611d746103e8611d66610d96565b612bfc90919063ffffffff16565b60085411611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dae90613e85565b60405180910390fd5b50565b60166020528060005260406000206000915054906101000a900460ff1681565b611de26122c7565b73ffffffffffffffffffffffffffffffffffffffff16611e0061176f565b73ffffffffffffffffffffffffffffffffffffffff1614611e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4d90613c04565b60405180910390fd5b801515601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf906140f3565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f8591906137f4565b60405180910390a25050565b611f996122c7565b73ffffffffffffffffffffffffffffffffffffffff16611fb761176f565b73ffffffffffffffffffffffffffffffffffffffff161461200d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200490613c04565b60405180910390fd5b80600660156101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1598160405161205691906137f4565b60405180910390a150565b60115481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6120fc6122c7565b73ffffffffffffffffffffffffffffffffffffffff1661211a61176f565b73ffffffffffffffffffffffffffffffffffffffff1614612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790613c04565b60405180910390fd5b60058111156121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab9061415f565b60405180910390fd5b80600e8190555050565b600a5481565b6121cc6122c7565b73ffffffffffffffffffffffffffffffffffffffff166121ea61176f565b73ffffffffffffffffffffffffffffffffffffffff1614612240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223790613c04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a6906141f1565b60405180910390fd5b6122b881612c12565b50565b60125481565b600e5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590614283565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a490614315565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161248b9190613634565b60405180910390a3505050565b600081836124a69190613d77565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361251d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612514906143a7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361258c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258390614439565b60405180910390fd5b600081036125a5576125a083836000612e0b565b612bf7565b601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126485750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561269e5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561278b576008548111156126e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126df906144cb565b60405180910390fd5b60006126f3836115cd565b9050600a5482826127049190613d77565b1115612745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273c9061455d565b60405180910390fd5b42601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561282e5750601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128845750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128cf576007548111156128ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c5906145ef565b60405180910390fd5b5b60006128da306115cd565b9050600060095482101590508080156129005750600660149054906101000a900460ff16155b80156129555750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561296d5750600660159054906101000a900460ff165b156129815760095491506129808261308a565b5b600080601560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015612a285750601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612be7576000600b549050601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612b20576000601760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442612ad3919061460f565b9050600660169054906101000a900460ff168015612af45750620151808111155b15612b0357600d549150612b1e565b600660169054906101000a900460ff16612b1d57600c5491505b5b505b612b466064612b3883896132b490919063ffffffff16565b612bfc90919063ffffffff16565b9250612b706064612b62600e54896132b490919063ffffffff16565b612bfc90919063ffffffff16565b91506000831115612b8757612b86883085612e0b565b5b6000821115612bbe57612bbd88600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612e0b565b5b612be3612bd4838561249890919063ffffffff16565b876132ca90919063ffffffff16565b9550505b612bf2878787612e0b565b505050505b505050565b60008183612c0a9190614672565b905092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6190614715565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e71906143a7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee090614439565b60405180910390fd5b612ef48383836132e0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f71906147a7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461300d9190613d77565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130719190613634565b60405180910390a36130848484846132e5565b50505050565b6001600660146101000a81548160ff02191690831515021790555060006130cf60646130c1601054856132b490919063ffffffff16565b612bfc90919063ffffffff16565b905060006130e7600283612bfc90919063ffffffff16565b905060006130fe82846132ca90919063ffffffff16565b9050600047905061310e836132ea565b600061312382476132ca90919063ffffffff16565b905061312f8382613563565b61314a61314586886132ca90919063ffffffff16565b6132ea565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6131c36131a060125460115461249890919063ffffffff16565b6131b5601154476132b490919063ffffffff16565b612bfc90919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156131ee573d6000803e3d6000fd5b50601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015613257573d6000803e3d6000fd5b507f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f838148684826040516132899291906147c7565b60405180910390a150505050506000600660146101000a81548160ff02191690831515021790555050565b600081836132c291906147f0565b905092915050565b600081836132d8919061460f565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156133075761330661484a565b5b6040519080825280602002602001820160405280156133355781602001602082028036833780820191505090505b509050308160008151811061334d5761334c614879565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061341891906148bd565b8160018151811061342c5761342b614879565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508161349330600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612067565b10156134c9576134c830600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000196122cf565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161352d9594939291906149e3565b600060405180830381600087803b15801561354757600080fd5b505af115801561355b573d6000803e3d6000fd5b505050505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806135af61176f565b426040518863ffffffff1660e01b81526004016135d196959493929190614a3d565b60606040518083038185885af11580156135ef573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906136149190614ab3565b5050505050565b6000819050919050565b61362e8161361b565b82525050565b60006020820190506136496000830184613625565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561368957808201518184015260208101905061366e565b83811115613698576000848401525b50505050565b6000601f19601f8301169050919050565b60006136ba8261364f565b6136c4818561365a565b93506136d481856020860161366b565b6136dd8161369e565b840191505092915050565b6000602082019050818103600083015261370281846136af565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061373a8261370f565b9050919050565b61374a8161372f565b811461375557600080fd5b50565b60008135905061376781613741565b92915050565b6137768161361b565b811461378157600080fd5b50565b6000813590506137938161376d565b92915050565b600080604083850312156137b0576137af61370a565b5b60006137be85828601613758565b92505060206137cf85828601613784565b9150509250929050565b60008115159050919050565b6137ee816137d9565b82525050565b600060208201905061380960008301846137e5565b92915050565b6000806000606084860312156138285761382761370a565b5b600061383686828701613784565b935050602061384786828701613784565b925050604061385886828701613784565b9150509250925092565b6000819050919050565b600061388761388261387d8461370f565b613862565b61370f565b9050919050565b60006138998261386c565b9050919050565b60006138ab8261388e565b9050919050565b6138bb816138a0565b82525050565b60006020820190506138d660008301846138b2565b92915050565b60006138e78261370f565b9050919050565b6138f7816138dc565b811461390257600080fd5b50565b600081359050613914816138ee565b92915050565b6000602082840312156139305761392f61370a565b5b600061393e84828501613905565b91505092915050565b6000806000606084860312156139605761395f61370a565b5b600061396e86828701613758565b935050602061397f86828701613758565b925050604061399086828701613784565b9150509250925092565b600060ff82169050919050565b6139b08161399a565b82525050565b60006020820190506139cb60008301846139a7565b92915050565b6000602082840312156139e7576139e661370a565b5b60006139f584828501613758565b91505092915050565b613a078161372f565b82525050565b6000602082019050613a2260008301846139fe565b92915050565b600060208284031215613a3e57613a3d61370a565b5b6000613a4c84828501613784565b91505092915050565b613a5e816138dc565b82525050565b6000602082019050613a796000830184613a55565b92915050565b613a88816137d9565b8114613a9357600080fd5b50565b600081359050613aa581613a7f565b92915050565b60008060408385031215613ac257613ac161370a565b5b6000613ad085828601613758565b9250506020613ae185828601613a96565b9150509250929050565b600060208284031215613b0157613b0061370a565b5b6000613b0f84828501613a96565b91505092915050565b60008060408385031215613b2f57613b2e61370a565b5b6000613b3d85828601613758565b9250506020613b4e85828601613758565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613b9f57607f821691505b602082108103613bb257613bb1613b58565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bee60208361365a565b9150613bf982613bb8565b602082019050919050565b60006020820190508181036000830152613c1d81613be1565b9050919050565b7f746f74616c2070657263656e74616765206d75737420626520657175616c207460008201527f6f20313030000000000000000000000000000000000000000000000000000000602082015250565b6000613c8060258361365a565b9150613c8b82613c24565b604082019050919050565b60006020820190508181036000830152613caf81613c73565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613d1260288361365a565b9150613d1d82613cb6565b604082019050919050565b60006020820190508181036000830152613d4181613d05565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d828261361b565b9150613d8d8361361b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dc257613dc1613d48565b5b828201905092915050565b7f46656520746f6f20686967680000000000000000000000000000000000000000600082015250565b6000613e03600c8361365a565b9150613e0e82613dcd565b602082019050919050565b60006020820190508181036000830152613e3281613df6565b9050919050565b7f76616c756520697320746f6f206c6f7700000000000000000000000000000000600082015250565b6000613e6f60108361365a565b9150613e7a82613e39565b602082019050919050565b60006020820190508181036000830152613e9e81613e62565b9050919050565b7f4b436f696e3a2054686520726f7574657220616c72656164792068617320746860008201527f6174206164647265737300000000000000000000000000000000000000000000602082015250565b6000613f01602a8361365a565b9150613f0c82613ea5565b604082019050919050565b60006020820190508181036000830152613f3081613ef4565b9050919050565b7f4b436f696e3a205468652050616e63616b655377617020706169722063616e6e60008201527f6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b60208201527f65744d616b657250616972730000000000000000000000000000000000000000604082015250565b6000613fb9604c8361365a565b9150613fc482613f37565b606082019050919050565b60006020820190508181036000830152613fe881613fac565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061404b60258361365a565b915061405682613fef565b604082019050919050565b6000602082019050818103600083015261407a8161403e565b9050919050565b7f4b436f696e3a204163636f756e7420697320616c72656164792074686520766160008201527f6c7565206f6620276578636c7564656427000000000000000000000000000000602082015250565b60006140dd60318361365a565b91506140e882614081565b604082019050919050565b6000602082019050818103600083015261410c816140d0565b9050919050565b7f76616c756520746f6f2068696768000000000000000000000000000000000000600082015250565b6000614149600e8361365a565b915061415482614113565b602082019050919050565b600060208201905081810360008301526141788161413c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006141db60268361365a565b91506141e68261417f565b604082019050919050565b6000602082019050818103600083015261420a816141ce565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061426d60248361365a565b915061427882614211565b604082019050919050565b6000602082019050818103600083015261429c81614260565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006142ff60228361365a565b915061430a826142a3565b604082019050919050565b6000602082019050818103600083015261432e816142f2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061439160258361365a565b915061439c82614335565b604082019050919050565b600060208201905081810360008301526143c081614384565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061442360238361365a565b915061442e826143c7565b604082019050919050565b6000602082019050818103600083015261445281614416565b9050919050565b7f616d6f756e74206578636565647320746865206d61784275795472616e73616360008201527f74696f6e416d6f756e742e000000000000000000000000000000000000000000602082015250565b60006144b5602b8361365a565b91506144c082614459565b604082019050919050565b600060208201905081810360008301526144e4816144a8565b9050919050565b7f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f60008201527f756e742e00000000000000000000000000000000000000000000000000000000602082015250565b600061454760248361365a565b9150614552826144eb565b604082019050919050565b600060208201905081810360008301526145768161453a565b9050919050565b7f616d6f756e74206578636565647320746865206d617853656c6c5472616e736160008201527f6374696f6e416d6f756e742e0000000000000000000000000000000000000000602082015250565b60006145d9602c8361365a565b91506145e48261457d565b604082019050919050565b60006020820190508181036000830152614608816145cc565b9050919050565b600061461a8261361b565b91506146258361361b565b92508282101561463857614637613d48565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061467d8261361b565b91506146888361361b565b92508261469857614697614643565b5b828204905092915050565b7f4b436f696e3a204175746f6d61746564206d61726b6574206d616b657220706160008201527f697220697320616c72656164792073657420746f20746861742076616c756500602082015250565b60006146ff603f8361365a565b915061470a826146a3565b604082019050919050565b6000602082019050818103600083015261472e816146f2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061479160268361365a565b915061479c82614735565b604082019050919050565b600060208201905081810360008301526147c081614784565b9050919050565b60006040820190506147dc6000830185613625565b6147e96020830184613625565b9392505050565b60006147fb8261361b565b91506148068361361b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561483f5761483e613d48565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506148b781613741565b92915050565b6000602082840312156148d3576148d261370a565b5b60006148e1848285016148a8565b91505092915050565b6000819050919050565b600061490f61490a614905846148ea565b613862565b61361b565b9050919050565b61491f816148f4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61495a8161372f565b82525050565b600061496c8383614951565b60208301905092915050565b6000602082019050919050565b600061499082614925565b61499a8185614930565b93506149a583614941565b8060005b838110156149d65781516149bd8882614960565b97506149c883614978565b9250506001810190506149a9565b5085935050505092915050565b600060a0820190506149f86000830188613625565b614a056020830187614916565b8181036040830152614a178186614985565b9050614a2660608301856139fe565b614a336080830184613625565b9695505050505050565b600060c082019050614a5260008301896139fe565b614a5f6020830188613625565b614a6c6040830187614916565b614a796060830186614916565b614a8660808301856139fe565b614a9360a0830184613625565b979650505050505050565b600081519050614aad8161376d565b92915050565b600080600060608486031215614acc57614acb61370a565b5b6000614ada86828701614a9e565b9350506020614aeb86828701614a9e565b9250506040614afc86828701614a9e565b915050925092509256fea2646970667358221220d58edd45d9eee63edfccdfcb0ac4bb9edb5cf426cfc90c2d8dd6e71fc6e0590664736f6c634300080d0033

Deployed Bytecode Sourcemap

39784:12207:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40089:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5640:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7807:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51129:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39861:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6760:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40413:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50463:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8458:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6602:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9359:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41396:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39909:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39994:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44345:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50571:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40156:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49753:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50343:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50927:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43117:314;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40374:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6931:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17177:94;;;;;;;;;;;;;:::i;:::-;;50216:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40869:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40514:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16526:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40968:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51799:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5859:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43747:263;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51534:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10077:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40043:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7271:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40652:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50746:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49989:219;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41331:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43439:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44481:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40725:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7509:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40220:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51644:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40278:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17426:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40798:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40481:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40089:60;;;;:::o;5640:100::-;5694:13;5727:5;5720:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5640:100;:::o;7807:169::-;7890:4;7907:39;7916:12;:10;:12::i;:::-;7930:7;7939:6;7907:8;:39::i;:::-;7964:4;7957:11;;7807:169;;;;:::o;51129:397::-;16757:12;:10;:12::i;:::-;16746:23;;:7;:5;:7::i;:::-;:23;;;16738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51342:3:::1;51281:57;51326:11;51281:40;51303:17;51281;:21;;:40;;;;:::i;:::-;:44;;:57;;;;:::i;:::-;:64;51273:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;51417:17;51398:16;:36;;;;51464:17;51445:16;:36;;;;51505:11;51492:10;:24;;;;51129:397:::0;;;:::o;39861:41::-;;;;;;;;;;;;;:::o;6760:108::-;6821:7;6848:12;;6841:19;;6760:108;:::o;40413:37::-;;;;:::o;50463:100::-;16757:12;:10;:12::i;:::-;16746:23;;:7;:5;:7::i;:::-;:23;;;16738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50549:6:::1;50537:9;;:18;;;;;;;;;;;;;;;;;;50463:100:::0;:::o;8458:492::-;8598:4;8615:36;8625:6;8633:9;8644:6;8615:9;:36::i;:::-;8664:24;8691:11;:19;8703:6;8691:19;;;;;;;;;;;;;;;:33;8711:12;:10;:12::i;:::-;8691:33;;;;;;;;;;;;;;;;8664:60;;8763:6;8743:16;:26;;8735:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;8850:57;8859:6;8867:12;:10;:12::i;:::-;8900:6;8881:16;:25;8850:8;:57::i;:::-;8938:4;8931:11;;;8458:492;;;;;:::o;6602:93::-;6660:5;6685:2;6678:9;;6602:93;:::o;9359:215::-;9447:4;9464:80;9473:12;:10;:12::i;:::-;9487:7;9533:10;9496:11;:25;9508:12;:10;:12::i;:::-;9496:25;;;;;;;;;;;;;;;:34;9522:7;9496:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9464:8;:80::i;:::-;9562:4;9555:11;;9359:215;;;;:::o;41396:51::-;;;;;;;;;;;;;;;;;:::o;39909:38::-;;;:::o;39994:40::-;;;;;;;;;;;;;:::o;44345:125::-;44410:4;44434:19;:28;44454:7;44434:28;;;;;;;;;;;;;;;;;;;;;;;;;44427:35;;44345:125;;;:::o;50571:168::-;16757:12;:10;:12::i;:::-;16746:23;;:7;:5;:7::i;:::-;:23;;;16738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50664:13:::1;50649:12;:28;;;;50712:2;50696:12;;:18;;50688:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;50571:168:::0;:::o;40156:57::-;;;;:::o;49753:224::-;16757:12;:10;:12::i;:::-;16746:23;;:7;:5;:7::i;:::-;:23;;;16738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49865:16:::1;49838:24;:43;;;;49925:23;49943:4;49925:13;:11;:13::i;:::-;:17;;:23;;;;:::i;:::-;49900:24;;:48;49892:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49753:224:::0;:::o;50343:112::-;16757:12;:10;:12::i;:::-;16746:23;;:7;:5;:7::i;:::-;:23;;;16738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50441:6:::1;50423:15;;:24;;;;;;;;;;;;;;;;;;50343:112:::0;:::o;50927:194::-;16757:12;:10;:12::i;:::-;16746:23;;:7;:5;:7::i;:::-;:23;;;16738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51036:18:::1;51016:17;:38;;;;51094:2;51073:17;;:23;;51065:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;50927:194:::0;:::o;43117:314::-;16757:12;:10;:12::i;:::-;16746:23;;:7;:5;:7::i;:::-;:23;;;16738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43226:15:::1;;;;;;;;;;;43204:38;;:10;:38;;::::0;43196:93:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43347:15;;;;;;;;;;;43305:59;;43327:10;43305:59;;;;;;;;;;;;43412:10;43375:15;;:48;;;;;;;;;;;;;;;;;;43117:314:::0;:::o;40374:32::-;;;;:::o;6931:127::-;7005:7;7032:9;:18;7042:7;7032:18;;;;;;;;;;;;;;;;7025:25;;6931:127;;;:::o;17177:94::-;16757:12;:10;:12::i;:::-;16746:23;;:7;:5;:7::i;:::-;:23;;;16738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17242:21:::1;17260:1;17242:9;:21::i;:::-;17177:94::o:0;50216:119::-;16757:12;:10;:12::i;:::-;16746:23;;:7;:5;:7::i;:::-;:23;;;16738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50317:10:::1;50296:18;:31;;;;50216:119:::0;:::o;40869:92::-;;;;;;;;;;;;;:::o;40514:70::-;;;;;;;;;;;;;:::o;16526:87::-;16572:7;16599:6;;;;;;;;;;;16592:13;;16526:87;:::o;40968:86::-;;;;;;;;;;;;;:::o;51799:187::-;16757:12;:10;:12::i;:::-;16746:23;;:7;:5;:7::i;:::-;:23;;;16738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51892:9:::1;51875:14;:26;;;;51935:23;51953:4;51935:13;:11;:13::i;:::-;:17;;:23;;;;:::i;:::-;51920:14;;:38;51912:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51799:187:::0;:::o;5859:104::-;5915:13;5948:7;5941:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5859:104;:::o;43747:263::-;16757:12;:10;:12::i;:::-;16746:23;;:7;:5;:7::i;:::-;:23;;;16738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43854:13:::1;43846:21;;:4;:21;;::::0;43838:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43961:41;43990:4;43996:5;43961:28;:41::i;:::-;43747:263:::0;;:::o;51534:102::-;16757:12;:10;:12::i;:::-;16746:23;;:7;:5;:7::i;:::-;:23;;;16738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51623:5:::1;51602:18;;:26;;;;;;;;;;;;;;;;;;51534:102:::0;:::o;10077:413::-;10170:4;10187:24;10214:11;:25;10226:12;:10;:12::i;:::-;10214:25;;;;;;;;;;;;;;;:34;10240:7;10214:34;;;;;;;;;;;;;;;;10187:61;;10287:15;10267:16;:35;;10259:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10380:67;10389:12;:10;:12::i;:::-;10403:7;10431:15;10412:16;:34;10380:8;:67::i;:::-;10478:4;10471:11;;;10077:413;;;;:::o;40043:37::-;;;;;;;;;;;;;:::o;7271:175::-;7357:4;7374:42;7384:12;:10;:12::i;:::-;7398:9;7409:6;7374:9;:42::i;:::-;7434:4;7427:11;;7271:175;;;;:::o;40652:36::-;;;;:::o;50746:173::-;16757:12;:10;:12::i;:::-;16746:23;;:7;:5;:7::i;:::-;:23;;;16738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50842:14:::1;50826:13;:30;;;;50892:2;50875:13;;:19;;50867:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;50746:173:::0;:::o;49989:219::-;16757:12;:10;:12::i;:::-;16746:23;;:7;:5;:7::i;:::-;:23;;;16738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50098:15:::1;50072:23;:41;;;;50156:23;50174:4;50156:13;:11;:13::i;:::-;:17;;:23;;;;:::i;:::-;50132;;:47;50124:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;49989:219:::0;:::o;41331:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;43439:297::-;16757:12;:10;:12::i;:::-;16746:23;;:7;:5;:7::i;:::-;:23;;;16738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43564:8:::1;43532:40;;:19;:28;43552:7;43532:28;;;;;;;;;;;;;;;;;;;;;;;;;:40;;::::0;43524:102:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43668:8;43637:19;:28;43657:7;43637:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;43710:7;43694:34;;;43719:8;43694:34;;;;;;:::i;:::-;;;;;;;;43439:297:::0;;:::o;44481:171::-;16757:12;:10;:12::i;:::-;16746:23;;:7;:5;:7::i;:::-;:23;;;16738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44582:8:::1;44558:21;;:32;;;;;;;;;;;;;;;;;;44606:38;44635:8;44606:38;;;;;;:::i;:::-;;;;;;;;44481:171:::0;:::o;40725:36::-;;;;:::o;7509:151::-;7598:7;7625:11;:18;7637:5;7625:18;;;;;;;;;;;;;;;:27;7644:7;7625:27;;;;;;;;;;;;;;;;7618:34;;7509:151;;;;:::o;40220:51::-;;;;:::o;51644:147::-;16757:12;:10;:12::i;:::-;16746:23;;:7;:5;:7::i;:::-;:23;;;16738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51734:1:::1;51722:8;:13;;51714:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;51775:8;51765:7;:18;;;;51644:147:::0;:::o;40278:48::-;;;;:::o;17426:192::-;16757:12;:10;:12::i;:::-;16746:23;;:7;:5;:7::i;:::-;:23;;;16738:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17535:1:::1;17515:22;;:8;:22;;::::0;17507:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;17591:19;17601:8;17591:9;:19::i;:::-;17426:192:::0;:::o;40798:30::-;;;;:::o;40481:26::-;;;;:::o;149:104::-;202:7;235:10;228:17;;149:104;:::o;13776:380::-;13929:1;13912:19;;:5;:19;;;13904:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14010:1;13991:21;;:7;:21;;;13983:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14094:6;14064:11;:18;14076:5;14064:18;;;;;;;;;;;;;;;:27;14083:7;14064:27;;;;;;;;;;;;;;;:36;;;;14132:7;14116:32;;14125:5;14116:32;;;14141:6;14116:32;;;;;;:::i;:::-;;;;;;;;13776:380;;;:::o;27680:98::-;27738:7;27769:1;27765;:5;;;;:::i;:::-;27758:12;;27680:98;;;;:::o;44660:2624::-;44780:1;44764:18;;:4;:18;;;44756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44857:1;44843:16;;:2;:16;;;44835:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;44925:1;44915:6;:11;44912:93;;44944:28;44960:4;44966:2;44970:1;44944:15;:28::i;:::-;44987:7;;44912:93;45028:25;:31;45054:4;45028:31;;;;;;;;;;;;;;;;;;;;;;;;;:63;;;;;45065:19;:25;45085:4;45065:25;;;;;;;;;;;;;;;;;;;;;;;;;45064:26;45028:63;:93;;;;;45097:19;:23;45117:2;45097:23;;;;;;;;;;;;;;;;;;;;;;;;;45096:24;45028:93;45025:457;;;45156:23;;45146:6;:33;;45138:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;45242:32;45277:13;45287:2;45277:9;:13::i;:::-;45242:48;;45350:14;;45340:6;45313:24;:33;;;;:::i;:::-;:51;;45305:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;45441:15;45419;:19;45435:2;45419:19;;;;;;;;;;;;;;;:37;;;;45123:359;45025:457;45497:25;:29;45523:2;45497:29;;;;;;;;;;;;;;;;;;;;;;;;;:61;;;;;45532:19;:25;45552:4;45532:25;;;;;;;;;;;;;;;;;;;;;;;;;45531:26;45497:61;:91;;;;;45564:19;:23;45584:2;45564:23;;;;;;;;;;;;;;;;;;;;;;;;;45563:24;45497:91;45494:214;;;45623:24;;45613:6;:34;;45605:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;45494:214;45727:28;45758:24;45776:4;45758:9;:24::i;:::-;45727:55;;45803:24;45854:18;;45830:20;:42;;45803:69;;45909:19;:53;;;;;45946:16;;;;;;;;;;;45945:17;45909:53;:99;;;;;45979:25;:29;46005:2;45979:29;;;;;;;;;;;;;;;;;;;;;;;;;45909:99;:138;;;;;46026:21;;;;;;;;;;;45909:138;45892:286;;;46097:18;;46074:41;;46130:36;46145:20;46130:14;:36::i;:::-;45892:286;46190:12;46217:17;46339:19;:25;46359:4;46339:25;;;;;;;;;;;;;;;;;;;;;;;;;46338:26;:54;;;;;46369:19;:23;46389:2;46369:23;;;;;;;;;;;;;;;;;;;;;;;;;46368:24;46338:54;46335:894;;;46409:18;46430:12;;46409:33;;46463:25;:29;46489:2;46463:29;;;;;;;;;;;;;;;;;;;;;;;;;46459:375;;;46516:12;46547:15;:21;46563:4;46547:21;;;;;;;;;;;;;;;;46531:15;:37;;;;:::i;:::-;46516:52;;46590:18;;;;;;;;;;;:38;;;;;46620:8;46612:4;:16;;46590:38;46587:232;;;46666:17;;46653:30;;46587:232;;;46730:18;;;;;;;;;;;46726:93;;46786:13;;46773:26;;46726:93;46587:232;46494:340;46459:375;46857:31;46884:3;46857:22;46868:10;46857:6;:10;;:22;;;;:::i;:::-;:26;;:31;;;;:::i;:::-;46850:38;;46915:28;46939:3;46915:19;46926:7;;46915:6;:10;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;46903:40;;46968:1;46961:4;:8;46958:90;;;46990:42;47006:4;47020;47027;46990:15;:42::i;:::-;46958:90;47079:1;47067:9;:13;47064:97;;;47101:44;47117:4;47123:10;;;;;;;;;;;47135:9;47101:15;:44::i;:::-;47064:97;47186:31;47197:19;47206:9;47197:4;:8;;:19;;;;:::i;:::-;47186:6;:10;;:31;;;;:::i;:::-;47177:40;;46394:835;46335:894;47241:33;47257:4;47263:2;47267:6;47241:15;:33::i;:::-;44745:2539;;;;44660:2624;;;;:::o;28817:98::-;28875:7;28906:1;28902;:5;;;;:::i;:::-;28895:12;;28817:98;;;;:::o;17626:173::-;17682:16;17701:6;;;;;;;;;;;17682:25;;17727:8;17718:6;;:17;;;;;;;;;;;;;;;;;;17782:8;17751:40;;17772:8;17751:40;;;;;;;;;;;;17671:128;17626:173;:::o;44018:315::-;44144:5;44109:40;;:25;:31;44135:4;44109:31;;;;;;;;;;;;;;;;;;;;;;;;;:40;;;44101:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;44262:5;44228:25;:31;44254:4;44228:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;44319:5;44285:40;;44313:4;44285:40;;;;;;;;;;;;44018:315;;:::o;10980:733::-;11138:1;11120:20;;:6;:20;;;11112:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11222:1;11201:23;;:9;:23;;;11193:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11277:47;11298:6;11306:9;11317:6;11277:20;:47::i;:::-;11337:21;11361:9;:17;11371:6;11361:17;;;;;;;;;;;;;;;;11337:41;;11414:6;11397:13;:23;;11389:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11535:6;11519:13;:22;11499:9;:17;11509:6;11499:17;;;;;;;;;;;;;;;:42;;;;11587:6;11563:9;:20;11573:9;11563:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;11628:9;11611:35;;11620:6;11611:35;;;11639:6;11611:35;;;;;;:::i;:::-;;;;;;;;11659:46;11679:6;11687:9;11698:6;11659:19;:46::i;:::-;11101:612;10980:733;;;:::o;47293:1351::-;42005:4;41986:16;;:23;;;;;;;;;;;;;;;;;;47378:26:::1;47407:51;47454:3;47407:42;47432:16;;47407:20;:24;;:42;;;;:::i;:::-;:46;;:51;;;;:::i;:::-;47378:80;;47527:12;47542:25;47565:1;47542:18;:22;;:25;;;;:::i;:::-;47527:40;;47578:17;47598:28;47621:4;47598:18;:22;;:28;;;;:::i;:::-;47578:48;;47902:22;47927:21;47902:46;;47991:22;48008:4;47991:16;:22::i;:::-;48142:18;48163:41;48189:14;48163:21;:25;;:41;;;;:::i;:::-;48142:62;;48252:35;48265:9;48276:10;48252:12;:35::i;:::-;48355:62;48372:44;48397:18;48372:20;:24;;:44;;;;:::i;:::-;48355:16;:62::i;:::-;48428:15;;;;;;;;;;;:24;;:107;48453:81;48501:32;48522:10;;48501:16;;:20;;:32;;;;:::i;:::-;48453:43;48479:16;;48453:21;:25;;:43;;;;:::i;:::-;:47;;:81;;;;:::i;:::-;48428:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48546:9;;;;;;;;;;;:18;;:41;48565:21;48546:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48603:32;48618:4;48624:10;48603:32;;;;;;;:::i;:::-;;;;;;;;47367:1277;;;;;42051:5:::0;42032:16;;:24;;;;;;;;;;;;;;;;;;47293:1351;:::o;28418:98::-;28476:7;28507:1;28503;:5;;;;:::i;:::-;28496:12;;28418:98;;;;:::o;28061:::-;28119:7;28150:1;28146;:5;;;;:::i;:::-;28139:12;;28061:98;;;;:::o;14756:125::-;;;;:::o;15485:124::-;;;;:::o;48652:694::-;48780:21;48818:1;48804:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48780:40;;48849:4;48831;48836:1;48831:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;48875:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48865:4;48870:1;48865:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;48966:11;48913:50;48931:4;48946:15;;;;;;;;;;;48913:9;:50::i;:::-;:64;48910:156;;;48992:62;49009:4;49024:15;;;;;;;;;;;49051:1;49042:11;48992:8;:62::i;:::-;48910:156;49104:15;;;;;;;;;;;:66;;;49185:11;49211:1;49255:4;49282;49302:15;49104:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48707:639;48652:694;:::o;49354:391::-;49475:15;;;;;;;;;;;:31;;;49514:9;49547:4;49567:11;49593:1;49636;49679:7;:5;:7::i;:::-;49701:15;49475:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;49354:391;;:::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:142::-;8395:32;8421:5;8395:32;:::i;:::-;8390:3;8383:45;8292:142;;:::o;8440:254::-;8549:4;8587:2;8576:9;8572:18;8564:26;;8600:87;8684:1;8673:9;8669:17;8660:6;8600:87;:::i;:::-;8440:254;;;;:::o;8700:116::-;8770:21;8785:5;8770:21;:::i;:::-;8763:5;8760:32;8750:60;;8806:1;8803;8796:12;8750:60;8700:116;:::o;8822:133::-;8865:5;8903:6;8890:20;8881:29;;8919:30;8943:5;8919:30;:::i;:::-;8822:133;;;;:::o;8961:468::-;9026:6;9034;9083:2;9071:9;9062:7;9058:23;9054:32;9051:119;;;9089:79;;:::i;:::-;9051:119;9209:1;9234:53;9279:7;9270:6;9259:9;9255:22;9234:53;:::i;:::-;9224:63;;9180:117;9336:2;9362:50;9404:7;9395:6;9384:9;9380:22;9362:50;:::i;:::-;9352:60;;9307:115;8961:468;;;;;:::o;9435:323::-;9491:6;9540:2;9528:9;9519:7;9515:23;9511:32;9508:119;;;9546:79;;:::i;:::-;9508:119;9666:1;9691:50;9733:7;9724:6;9713:9;9709:22;9691:50;:::i;:::-;9681:60;;9637:114;9435:323;;;;:::o;9764:474::-;9832:6;9840;9889:2;9877:9;9868:7;9864:23;9860:32;9857:119;;;9895:79;;:::i;:::-;9857:119;10015:1;10040:53;10085:7;10076:6;10065:9;10061:22;10040:53;:::i;:::-;10030:63;;9986:117;10142:2;10168:53;10213:7;10204:6;10193:9;10189:22;10168:53;:::i;:::-;10158:63;;10113:118;9764:474;;;;;:::o;10244:180::-;10292:77;10289:1;10282:88;10389:4;10386:1;10379:15;10413:4;10410:1;10403:15;10430:320;10474:6;10511:1;10505:4;10501:12;10491:22;;10558:1;10552:4;10548:12;10579:18;10569:81;;10635:4;10627:6;10623:17;10613:27;;10569:81;10697:2;10689:6;10686:14;10666:18;10663:38;10660:84;;10716:18;;:::i;:::-;10660:84;10481:269;10430:320;;;:::o;10756:182::-;10896:34;10892:1;10884:6;10880:14;10873:58;10756:182;:::o;10944:366::-;11086:3;11107:67;11171:2;11166:3;11107:67;:::i;:::-;11100:74;;11183:93;11272:3;11183:93;:::i;:::-;11301:2;11296:3;11292:12;11285:19;;10944:366;;;:::o;11316:419::-;11482:4;11520:2;11509:9;11505:18;11497:26;;11569:9;11563:4;11559:20;11555:1;11544:9;11540:17;11533:47;11597:131;11723:4;11597:131;:::i;:::-;11589:139;;11316:419;;;:::o;11741:224::-;11881:34;11877:1;11869:6;11865:14;11858:58;11950:7;11945:2;11937:6;11933:15;11926:32;11741:224;:::o;11971:366::-;12113:3;12134:67;12198:2;12193:3;12134:67;:::i;:::-;12127:74;;12210:93;12299:3;12210:93;:::i;:::-;12328:2;12323:3;12319:12;12312:19;;11971:366;;;:::o;12343:419::-;12509:4;12547:2;12536:9;12532:18;12524:26;;12596:9;12590:4;12586:20;12582:1;12571:9;12567:17;12560:47;12624:131;12750:4;12624:131;:::i;:::-;12616:139;;12343:419;;;:::o;12768:227::-;12908:34;12904:1;12896:6;12892:14;12885:58;12977:10;12972:2;12964:6;12960:15;12953:35;12768:227;:::o;13001:366::-;13143:3;13164:67;13228:2;13223:3;13164:67;:::i;:::-;13157:74;;13240:93;13329:3;13240:93;:::i;:::-;13358:2;13353:3;13349:12;13342:19;;13001:366;;;:::o;13373:419::-;13539:4;13577:2;13566:9;13562:18;13554:26;;13626:9;13620:4;13616:20;13612:1;13601:9;13597:17;13590:47;13654:131;13780:4;13654:131;:::i;:::-;13646:139;;13373:419;;;:::o;13798:180::-;13846:77;13843:1;13836:88;13943:4;13940:1;13933:15;13967:4;13964:1;13957:15;13984:305;14024:3;14043:20;14061:1;14043:20;:::i;:::-;14038:25;;14077:20;14095:1;14077:20;:::i;:::-;14072:25;;14231:1;14163:66;14159:74;14156:1;14153:81;14150:107;;;14237:18;;:::i;:::-;14150:107;14281:1;14278;14274:9;14267:16;;13984:305;;;;:::o;14295:162::-;14435:14;14431:1;14423:6;14419:14;14412:38;14295:162;:::o;14463:366::-;14605:3;14626:67;14690:2;14685:3;14626:67;:::i;:::-;14619:74;;14702:93;14791:3;14702:93;:::i;:::-;14820:2;14815:3;14811:12;14804:19;;14463:366;;;:::o;14835:419::-;15001:4;15039:2;15028:9;15024:18;15016:26;;15088:9;15082:4;15078:20;15074:1;15063:9;15059:17;15052:47;15116:131;15242:4;15116:131;:::i;:::-;15108:139;;14835:419;;;:::o;15260:166::-;15400:18;15396:1;15388:6;15384:14;15377:42;15260:166;:::o;15432:366::-;15574:3;15595:67;15659:2;15654:3;15595:67;:::i;:::-;15588:74;;15671:93;15760:3;15671:93;:::i;:::-;15789:2;15784:3;15780:12;15773:19;;15432:366;;;:::o;15804:419::-;15970:4;16008:2;15997:9;15993:18;15985:26;;16057:9;16051:4;16047:20;16043:1;16032:9;16028:17;16021:47;16085:131;16211:4;16085:131;:::i;:::-;16077:139;;15804:419;;;:::o;16229:229::-;16369:34;16365:1;16357:6;16353:14;16346:58;16438:12;16433:2;16425:6;16421:15;16414:37;16229:229;:::o;16464:366::-;16606:3;16627:67;16691:2;16686:3;16627:67;:::i;:::-;16620:74;;16703:93;16792:3;16703:93;:::i;:::-;16821:2;16816:3;16812:12;16805:19;;16464:366;;;:::o;16836:419::-;17002:4;17040:2;17029:9;17025:18;17017:26;;17089:9;17083:4;17079:20;17075:1;17064:9;17060:17;17053:47;17117:131;17243:4;17117:131;:::i;:::-;17109:139;;16836:419;;;:::o;17261:300::-;17401:34;17397:1;17389:6;17385:14;17378:58;17470:34;17465:2;17457:6;17453:15;17446:59;17539:14;17534:2;17526:6;17522:15;17515:39;17261:300;:::o;17567:366::-;17709:3;17730:67;17794:2;17789:3;17730:67;:::i;:::-;17723:74;;17806:93;17895:3;17806:93;:::i;:::-;17924:2;17919:3;17915:12;17908:19;;17567:366;;;:::o;17939:419::-;18105:4;18143:2;18132:9;18128:18;18120:26;;18192:9;18186:4;18182:20;18178:1;18167:9;18163:17;18156:47;18220:131;18346:4;18220:131;:::i;:::-;18212:139;;17939:419;;;:::o;18364:224::-;18504:34;18500:1;18492:6;18488:14;18481:58;18573:7;18568:2;18560:6;18556:15;18549:32;18364:224;:::o;18594:366::-;18736:3;18757:67;18821:2;18816:3;18757:67;:::i;:::-;18750:74;;18833:93;18922:3;18833:93;:::i;:::-;18951:2;18946:3;18942:12;18935:19;;18594:366;;;:::o;18966:419::-;19132:4;19170:2;19159:9;19155:18;19147:26;;19219:9;19213:4;19209:20;19205:1;19194:9;19190:17;19183:47;19247:131;19373:4;19247:131;:::i;:::-;19239:139;;18966:419;;;:::o;19391:236::-;19531:34;19527:1;19519:6;19515:14;19508:58;19600:19;19595:2;19587:6;19583:15;19576:44;19391:236;:::o;19633:366::-;19775:3;19796:67;19860:2;19855:3;19796:67;:::i;:::-;19789:74;;19872:93;19961:3;19872:93;:::i;:::-;19990:2;19985:3;19981:12;19974:19;;19633:366;;;:::o;20005:419::-;20171:4;20209:2;20198:9;20194:18;20186:26;;20258:9;20252:4;20248:20;20244:1;20233:9;20229:17;20222:47;20286:131;20412:4;20286:131;:::i;:::-;20278:139;;20005:419;;;:::o;20430:164::-;20570:16;20566:1;20558:6;20554:14;20547:40;20430:164;:::o;20600:366::-;20742:3;20763:67;20827:2;20822:3;20763:67;:::i;:::-;20756:74;;20839:93;20928:3;20839:93;:::i;:::-;20957:2;20952:3;20948:12;20941:19;;20600:366;;;:::o;20972:419::-;21138:4;21176:2;21165:9;21161:18;21153:26;;21225:9;21219:4;21215:20;21211:1;21200:9;21196:17;21189:47;21253:131;21379:4;21253:131;:::i;:::-;21245:139;;20972:419;;;:::o;21397:225::-;21537:34;21533:1;21525:6;21521:14;21514:58;21606:8;21601:2;21593:6;21589:15;21582:33;21397:225;:::o;21628:366::-;21770:3;21791:67;21855:2;21850:3;21791:67;:::i;:::-;21784:74;;21867:93;21956:3;21867:93;:::i;:::-;21985:2;21980:3;21976:12;21969:19;;21628:366;;;:::o;22000:419::-;22166:4;22204:2;22193:9;22189:18;22181:26;;22253:9;22247:4;22243:20;22239:1;22228:9;22224:17;22217:47;22281:131;22407:4;22281:131;:::i;:::-;22273:139;;22000:419;;;:::o;22425:223::-;22565:34;22561:1;22553:6;22549:14;22542:58;22634:6;22629:2;22621:6;22617:15;22610:31;22425:223;:::o;22654:366::-;22796:3;22817:67;22881:2;22876:3;22817:67;:::i;:::-;22810:74;;22893:93;22982:3;22893:93;:::i;:::-;23011:2;23006:3;23002:12;22995:19;;22654:366;;;:::o;23026:419::-;23192:4;23230:2;23219:9;23215:18;23207:26;;23279:9;23273:4;23269:20;23265:1;23254:9;23250:17;23243:47;23307:131;23433:4;23307:131;:::i;:::-;23299:139;;23026:419;;;:::o;23451:221::-;23591:34;23587:1;23579:6;23575:14;23568:58;23660:4;23655:2;23647:6;23643:15;23636:29;23451:221;:::o;23678:366::-;23820:3;23841:67;23905:2;23900:3;23841:67;:::i;:::-;23834:74;;23917:93;24006:3;23917:93;:::i;:::-;24035:2;24030:3;24026:12;24019:19;;23678:366;;;:::o;24050:419::-;24216:4;24254:2;24243:9;24239:18;24231:26;;24303:9;24297:4;24293:20;24289:1;24278:9;24274:17;24267:47;24331:131;24457:4;24331:131;:::i;:::-;24323:139;;24050:419;;;:::o;24475:224::-;24615:34;24611:1;24603:6;24599:14;24592:58;24684:7;24679:2;24671:6;24667:15;24660:32;24475:224;:::o;24705:366::-;24847:3;24868:67;24932:2;24927:3;24868:67;:::i;:::-;24861:74;;24944:93;25033:3;24944:93;:::i;:::-;25062:2;25057:3;25053:12;25046:19;;24705:366;;;:::o;25077:419::-;25243:4;25281:2;25270:9;25266:18;25258:26;;25330:9;25324:4;25320:20;25316:1;25305:9;25301:17;25294:47;25358:131;25484:4;25358:131;:::i;:::-;25350:139;;25077:419;;;:::o;25502:222::-;25642:34;25638:1;25630:6;25626:14;25619:58;25711:5;25706:2;25698:6;25694:15;25687:30;25502:222;:::o;25730:366::-;25872:3;25893:67;25957:2;25952:3;25893:67;:::i;:::-;25886:74;;25969:93;26058:3;25969:93;:::i;:::-;26087:2;26082:3;26078:12;26071:19;;25730:366;;;:::o;26102:419::-;26268:4;26306:2;26295:9;26291:18;26283:26;;26355:9;26349:4;26345:20;26341:1;26330:9;26326:17;26319:47;26383:131;26509:4;26383:131;:::i;:::-;26375:139;;26102:419;;;:::o;26527:230::-;26667:34;26663:1;26655:6;26651:14;26644:58;26736:13;26731:2;26723:6;26719:15;26712:38;26527:230;:::o;26763:366::-;26905:3;26926:67;26990:2;26985:3;26926:67;:::i;:::-;26919:74;;27002:93;27091:3;27002:93;:::i;:::-;27120:2;27115:3;27111:12;27104:19;;26763:366;;;:::o;27135:419::-;27301:4;27339:2;27328:9;27324:18;27316:26;;27388:9;27382:4;27378:20;27374:1;27363:9;27359:17;27352:47;27416:131;27542:4;27416:131;:::i;:::-;27408:139;;27135:419;;;:::o;27560:223::-;27700:34;27696:1;27688:6;27684:14;27677:58;27769:6;27764:2;27756:6;27752:15;27745:31;27560:223;:::o;27789:366::-;27931:3;27952:67;28016:2;28011:3;27952:67;:::i;:::-;27945:74;;28028:93;28117:3;28028:93;:::i;:::-;28146:2;28141:3;28137:12;28130:19;;27789:366;;;:::o;28161:419::-;28327:4;28365:2;28354:9;28350:18;28342:26;;28414:9;28408:4;28404:20;28400:1;28389:9;28385:17;28378:47;28442:131;28568:4;28442:131;:::i;:::-;28434:139;;28161:419;;;:::o;28586:231::-;28726:34;28722:1;28714:6;28710:14;28703:58;28795:14;28790:2;28782:6;28778:15;28771:39;28586:231;:::o;28823:366::-;28965:3;28986:67;29050:2;29045:3;28986:67;:::i;:::-;28979:74;;29062:93;29151:3;29062:93;:::i;:::-;29180:2;29175:3;29171:12;29164:19;;28823:366;;;:::o;29195:419::-;29361:4;29399:2;29388:9;29384:18;29376:26;;29448:9;29442:4;29438:20;29434:1;29423:9;29419:17;29412:47;29476:131;29602:4;29476:131;:::i;:::-;29468:139;;29195:419;;;:::o;29620:191::-;29660:4;29680:20;29698:1;29680:20;:::i;:::-;29675:25;;29714:20;29732:1;29714:20;:::i;:::-;29709:25;;29753:1;29750;29747:8;29744:34;;;29758:18;;:::i;:::-;29744:34;29803:1;29800;29796:9;29788:17;;29620:191;;;;:::o;29817:180::-;29865:77;29862:1;29855:88;29962:4;29959:1;29952:15;29986:4;29983:1;29976:15;30003:185;30043:1;30060:20;30078:1;30060:20;:::i;:::-;30055:25;;30094:20;30112:1;30094:20;:::i;:::-;30089:25;;30133:1;30123:35;;30138:18;;:::i;:::-;30123:35;30180:1;30177;30173:9;30168:14;;30003:185;;;;:::o;30194:250::-;30334:34;30330:1;30322:6;30318:14;30311:58;30403:33;30398:2;30390:6;30386:15;30379:58;30194:250;:::o;30450:366::-;30592:3;30613:67;30677:2;30672:3;30613:67;:::i;:::-;30606:74;;30689:93;30778:3;30689:93;:::i;:::-;30807:2;30802:3;30798:12;30791:19;;30450:366;;;:::o;30822:419::-;30988:4;31026:2;31015:9;31011:18;31003:26;;31075:9;31069:4;31065:20;31061:1;31050:9;31046:17;31039:47;31103:131;31229:4;31103:131;:::i;:::-;31095:139;;30822:419;;;:::o;31247:225::-;31387:34;31383:1;31375:6;31371:14;31364:58;31456:8;31451:2;31443:6;31439:15;31432:33;31247:225;:::o;31478:366::-;31620:3;31641:67;31705:2;31700:3;31641:67;:::i;:::-;31634:74;;31717:93;31806:3;31717:93;:::i;:::-;31835:2;31830:3;31826:12;31819:19;;31478:366;;;:::o;31850:419::-;32016:4;32054:2;32043:9;32039:18;32031:26;;32103:9;32097:4;32093:20;32089:1;32078:9;32074:17;32067:47;32131:131;32257:4;32131:131;:::i;:::-;32123:139;;31850:419;;;:::o;32275:332::-;32396:4;32434:2;32423:9;32419:18;32411:26;;32447:71;32515:1;32504:9;32500:17;32491:6;32447:71;:::i;:::-;32528:72;32596:2;32585:9;32581:18;32572:6;32528:72;:::i;:::-;32275:332;;;;;:::o;32613:348::-;32653:7;32676:20;32694:1;32676:20;:::i;:::-;32671:25;;32710:20;32728:1;32710:20;:::i;:::-;32705:25;;32898:1;32830:66;32826:74;32823:1;32820:81;32815:1;32808:9;32801:17;32797:105;32794:131;;;32905:18;;:::i;:::-;32794:131;32953:1;32950;32946:9;32935:20;;32613:348;;;;:::o;32967:180::-;33015:77;33012:1;33005:88;33112:4;33109:1;33102:15;33136:4;33133:1;33126:15;33153:180;33201:77;33198:1;33191:88;33298:4;33295:1;33288:15;33322:4;33319:1;33312:15;33339:143;33396:5;33427:6;33421:13;33412:22;;33443:33;33470:5;33443:33;:::i;:::-;33339:143;;;;:::o;33488:351::-;33558:6;33607:2;33595:9;33586:7;33582:23;33578:32;33575:119;;;33613:79;;:::i;:::-;33575:119;33733:1;33758:64;33814:7;33805:6;33794:9;33790:22;33758:64;:::i;:::-;33748:74;;33704:128;33488:351;;;;:::o;33845:85::-;33890:7;33919:5;33908:16;;33845:85;;;:::o;33936:158::-;33994:9;34027:61;34045:42;34054:32;34080:5;34054:32;:::i;:::-;34045:42;:::i;:::-;34027:61;:::i;:::-;34014:74;;33936:158;;;:::o;34100:147::-;34195:45;34234:5;34195:45;:::i;:::-;34190:3;34183:58;34100:147;;:::o;34253:114::-;34320:6;34354:5;34348:12;34338:22;;34253:114;;;:::o;34373:184::-;34472:11;34506:6;34501:3;34494:19;34546:4;34541:3;34537:14;34522:29;;34373:184;;;;:::o;34563:132::-;34630:4;34653:3;34645:11;;34683:4;34678:3;34674:14;34666:22;;34563:132;;;:::o;34701:108::-;34778:24;34796:5;34778:24;:::i;:::-;34773:3;34766:37;34701:108;;:::o;34815:179::-;34884:10;34905:46;34947:3;34939:6;34905:46;:::i;:::-;34983:4;34978:3;34974:14;34960:28;;34815:179;;;;:::o;35000:113::-;35070:4;35102;35097:3;35093:14;35085:22;;35000:113;;;:::o;35149:732::-;35268:3;35297:54;35345:5;35297:54;:::i;:::-;35367:86;35446:6;35441:3;35367:86;:::i;:::-;35360:93;;35477:56;35527:5;35477:56;:::i;:::-;35556:7;35587:1;35572:284;35597:6;35594:1;35591:13;35572:284;;;35673:6;35667:13;35700:63;35759:3;35744:13;35700:63;:::i;:::-;35693:70;;35786:60;35839:6;35786:60;:::i;:::-;35776:70;;35632:224;35619:1;35616;35612:9;35607:14;;35572:284;;;35576:14;35872:3;35865:10;;35273:608;;;35149:732;;;;:::o;35887:831::-;36150:4;36188:3;36177:9;36173:19;36165:27;;36202:71;36270:1;36259:9;36255:17;36246:6;36202:71;:::i;:::-;36283:80;36359:2;36348:9;36344:18;36335:6;36283:80;:::i;:::-;36410:9;36404:4;36400:20;36395:2;36384:9;36380:18;36373:48;36438:108;36541:4;36532:6;36438:108;:::i;:::-;36430:116;;36556:72;36624:2;36613:9;36609:18;36600:6;36556:72;:::i;:::-;36638:73;36706:3;36695:9;36691:19;36682:6;36638:73;:::i;:::-;35887:831;;;;;;;;:::o;36724:807::-;36973:4;37011:3;37000:9;36996:19;36988:27;;37025:71;37093:1;37082:9;37078:17;37069:6;37025:71;:::i;:::-;37106:72;37174:2;37163:9;37159:18;37150:6;37106:72;:::i;:::-;37188:80;37264:2;37253:9;37249:18;37240:6;37188:80;:::i;:::-;37278;37354:2;37343:9;37339:18;37330:6;37278:80;:::i;:::-;37368:73;37436:3;37425:9;37421:19;37412:6;37368:73;:::i;:::-;37451;37519:3;37508:9;37504:19;37495:6;37451:73;:::i;:::-;36724:807;;;;;;;;;:::o;37537:143::-;37594:5;37625:6;37619:13;37610:22;;37641:33;37668:5;37641:33;:::i;:::-;37537:143;;;;:::o;37686:663::-;37774:6;37782;37790;37839:2;37827:9;37818:7;37814:23;37810:32;37807:119;;;37845:79;;:::i;:::-;37807:119;37965:1;37990:64;38046:7;38037:6;38026:9;38022:22;37990:64;:::i;:::-;37980:74;;37936:128;38103:2;38129:64;38185:7;38176:6;38165:9;38161:22;38129:64;:::i;:::-;38119:74;;38074:129;38242:2;38268:64;38324:7;38315:6;38304:9;38300:22;38268:64;:::i;:::-;38258:74;;38213:129;37686:663;;;;;:::o

Swarm Source

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