
    1-Phl                        d dl ZddlmZmZ ddlmZ g dZ ej                    Z	e	
                    d  ej                    D                        e	
                    ddd	ee         eej                 d
           d Zd Zd*dZd Zd Zd Z ej        d          	 d+ddd            Zd Zd,dZd-dZd.dZd Zd/dZd Zd Zd0d!Zd1d"Zd2d%Z 	 	 	 	 d3d)Z!dS )4    N   )dtype_rangedtype_limits)utils)	histogramcumulative_distributionequalize_histrescale_intensityadjust_gamma
adjust_logadjust_sigmoidc              #   .   K   | ]\  }}|j         |fV  d S N)__name__).0dlimitss      Y/var/www/html/test/jupyter/venv/lib/python3.11/site-packages/skimage/exposure/exposure.py	<genexpr>r      s-      MMIAvAJ'MMMMMM    )r   i  )r   i  )r   i?  )uint10uint12uint14boolfloatc                     |dk     re|}||z
  }t          j        t          j        |          t          j        |                    }| j        |k    r|                     |          } | |z
  } | S )z:Offset the array to get the lowest value at 0 if negative.r   )nppromote_typesmin_scalar_typedtypeastype)arrlow_boundaryhigh_boundaryoffset	dyn_rangeoffset_dtypes         r   _offset_arrayr(      sw    a!L0	'y))2+=l+K+K
 
 9$$**\**CFlJr   c                    |dvrt          d|           |dk    r}t          |                                                     t          j                            }t          |                                                     t          j                            }n|dk    rt          | d          \  }}t	          j        ||dz             }|S )z1Compute bin centers for bincount-based histogram.imager    -Incorrect value for `source_range` argument: r+   r    Fclip_negative   )	
ValueErrorintminr!   r   int64maxr   arange)r+   source_range	image_min	image_maxbin_centerss        r   _bincount_histogram_centersr:   /   s    ---WWWXXXw		**284455			**284455				 	 +EGGG	9)Iy1}55Kr   c                 (   |t          | |          }|d         |d         }}t          | ||          } t          j        |                                 |t          |d          z
  dz             }|dk    rt          |d          }||d         }||fS )ad  
    Efficient histogram calculation for an image of integers.

    This function is significantly more efficient than np.histogram but
    works only on images of integers. It is based on np.bincount.

    Parameters
    ----------
    image : array
        Input image.
    source_range : string
        'image' determines the range from the input image.
        'dtype' determines the range from the expected range of the images
        of that data type.

    Returns
    -------
    hist : array
        The values of the histogram.
    bin_centers : array
        The values at the center of the bins.
    Nr   r/   )	minlengthr+   )r:   r(   r   bincountravelr2   r4   )r+   r6   r9   r7   r8   histidxs          r   _bincount_histogramrB   <   s    . 1%FF&q>;r?yI%I66E;u{{}}	C	1<M<M0MPQ0QRRRDw)QCDDzr   c                    |Y|\  }}||k    rt          d          t          j        |          rt          j        |          st          d| d| d          nw| j        dk    rd\  }}nf|                                 |                                 }}t          j        |          rt          j        |          st          d| d| d          ||k    r
|d	z
  }|d	z   }||fS )
aU  Determine the outer bin edges to use for `numpy.histogram`.

    These are obtained from either the image or hist_range.

    Parameters
    ----------
    image : ndarray
        Image for which the histogram is to be computed.
    hist_range: 2-tuple of int or None
        Range of values covered by the histogram bins. If None, the minimum
        and maximum values of `image` are used.

    Returns
    -------
    first_edge, last_edge : int
        The range spanned by the histogram bins.

    Notes
    -----
    This function is adapted from ``np.lib.histograms._get_outer_edges``.
    Nz4max must be larger than min in hist_range parameter.zsupplied hist_range of [z, z] is not finiter   )r   r/   zautodetected hist_range of [      ?)r0   r   isfinitesizer2   r4   )r+   
hist_range
first_edge	last_edges       r   _get_outer_edgesrJ   ^   s2   ,  *
I	!!STTTJ'' 	BK	,B,B 	W:WWWWW  	 
q $
II %		UYY[[I
J'' 	BK	,B,B 	z  Y      Y#%
O	y  r   c                    t          | |          \  }}t          j        |||           }t          j        |t          j                  rt          j        |t
                    }t          j        |||dz   d|          }|S )a  Computes histogram bins for use with `numpy.histogram`.

    Parameters
    ----------
    image : ndarray
        Image for which the histogram is to be computed.
    nbins : int
        The number of bins.
    hist_range: 2-tuple of int
        Range of values covered by the histogram bins.

    Returns
    -------
    bin_edges : ndarray
        The histogram bin edges.

    Notes
    -----
    This function is a simplified version of
    ``np.lib.histograms._get_bin_edges`` that only supports uniform bins.
    r/   T)endpointr    )rJ   r   result_type
issubdtypeintegerr   linspace)r+   nbinsrG   rH   rI   bin_type	bin_edgess          r   _get_bin_edgesrT      s    , -UJ??J	 ~j)U;;H	}Xrz** 3>(E22 Iuqy4x  I r   c                 l    |dk    rd }n*|dk    rt          | d          }nt          d|           |S )Nr+   r    Fr-   r,   )r   r0   )r+   r6   rG   s      r   _get_numpy_hist_rangerV      sP    w

		 	 !%u===

WWWXXXr   F)multichannel_output   r+   )channel_axisc                N   | j         }t          |          dk    r"|d         dk     r|t          j        d           ||d         }g }t	          j        | j        t          j                  rt          | |          }n!t          | |          }	t          | ||	          }t          |          D ]4}
t          | d|
f         |||          \  }}|                    |           5t	          j        |          }t	          j        |d          }nt          | |||          \  }}||fS )	a  Return histogram of image.

    Unlike `numpy.histogram`, this function returns the centers of bins and
    does not rebin integer arrays. For integer arrays, each integer value has
    its own bin, which improves speed and intensity-resolution.

    If `channel_axis` is not set, the histogram is computed on the flattened
    image. For color or multichannel images, set ``channel_axis`` to use a
    common binning for all channels. Alternatively, one may apply the function
    separately on each channel to obtain a histogram for each color channel
    with separate binning.

    Parameters
    ----------
    image : array
        Input image.
    nbins : int, optional
        Number of bins used to calculate histogram. This value is ignored for
        integer arrays.
    source_range : string, optional
        'image' (default) determines the range from the input image.
        'dtype' determines the range from the expected range of the images
        of that data type.
    normalize : bool, optional
        If True, normalize the histogram by the sum of its values.
    channel_axis : int or None, optional
        If None, the image is assumed to be a grayscale (single channel) image.
        Otherwise, this parameter indicates which axis of the array corresponds
        to channels.

    Returns
    -------
    hist : array
        The values of the histogram. When ``channel_axis`` is not None, hist
        will be a 2D array where the first axis corresponds to channels.
    bin_centers : array
        The values at the center of the bins.

    See Also
    --------
    cumulative_distribution

    Examples
    --------
    >>> from skimage import data, exposure, img_as_float
    >>> image = img_as_float(data.camera())
    >>> np.histogram(image, bins=2)
    (array([ 93585, 168559]), array([0. , 0.5, 1. ]))
    >>> exposure.histogram(image, nbins=2)
    (array([ 93585, 168559]), array([0.25, 0.75]))
       r<      NzThis might be a color image. The histogram will be computed on the flattened image. You can instead apply this function to each color channel, or set channel_axis..r   )axis)shapelenr   warnr   rN   r    rO   r:   rV   rT   range
_histogramappendasarraystack)r+   rQ   r6   	normalizerY   shchannelsr@   binsrG   chanhbcr9   s                 r   r   r      s4   n 
B
2ww!||2

|';
	
 	
 	
 b6 =bj11 	<.ulCCDD /ulCCJ!%
;;D(OO 	 	DuS$Y/|YOOEArKKNNNNjnnx1%%%&ue\9MMkr   c                    |                                  } t          j        | j        t          j                  r3t          |t          j                  r|nd}t          | ||          \  }}nBt          | |          }t          j	        | ||          \  }}|dd         |dd         z   dz  }|r|t          j
        |          z  }||fS )a  

    Parameters
    ----------
    image : ndarray
        Image for which the histogram is to be computed.
    bins : int or ndarray
        The number of histogram bins. For images with integer dtype, an array
        containing the bin centers can also be provided. For images with
        floating point dtype, this can be an array of bin_edges for use by
        ``np.histogram``.
    source_range : string, optional
        'image' (default) determines the range from the input image.
        'dtype' determines the range from the expected range of the images
        of that data type.
    normalize : bool, optional
        If True, normalize the histogram by the sum of its values.
    N)ri   ra   r<   r/   g       @)flattenr   rN   r    rO   
isinstancendarrayrB   rV   r   sum)r+   ri   r6   rf   r9   r@   rG   rS   s           r   rb   rb     s    ( MMOOE	}U["*-- =(rz::Ddd/|[QQkk*5,??
,u4zJJJi "~	!""5< #bfTll"r   c                     t          | |          \  }}|                                }|t          |d                   z  }t          j        | j                  }|                    |d          }||fS )a  Return cumulative distribution function (cdf) for the given image.

    Parameters
    ----------
    image : array
        Image array.
    nbins : int, optional
        Number of bins for image histogram.

    Returns
    -------
    img_cdf : array
        Values of cumulative distribution function.
    bin_centers : array
        Centers of bins.

    See Also
    --------
    histogram

    References
    ----------
    .. [1] https://en.wikipedia.org/wiki/Cumulative_distribution_function

    Examples
    --------
    >>> from skimage import data, exposure, img_as_float
    >>> image = img_as_float(data.camera())
    >>> hi = exposure.histogram(image)
    >>> cdf = exposure.cumulative_distribution(image)
    >>> all(cdf[0] == np.cumsum(hi[0])/float(image.size))
    True
    r<   Fcopy)r   cumsumr   r   _supported_float_typer    r!   )r+   rQ   r@   r9   img_cdf	cdf_dtypes         r   r   r   :  sp    D "%//D+kkmmGgbk***G +EK88InnYUn33GKr   c                 \   |5t          j        |t                    }t          | |         |          \  }}nt          | |          \  }}t          j        | j        ||          }|                    | j                  }|                    t          j
        | j                  d          S )a\  Return image after histogram equalization.

    Parameters
    ----------
    image : array
        Image array.
    nbins : int, optional
        Number of bins for image histogram. Note: this argument is
        ignored for integer images, for which each integer is its own
        bin.
    mask : ndarray of bools or 0s and 1s, optional
        Array of same shape as `image`. Only points at which mask == True
        are used for the equalization, which is applied to the whole image.

    Returns
    -------
    out : float array
        Image array after histogram equalization.

    Notes
    -----
    This function is adapted from [1]_ with the author's permission.

    References
    ----------
    .. [1] http://www.janeriksolem.net/histogram-equalization-with-python-and.html
    .. [2] https://en.wikipedia.org/wiki/Histogram_equalization

    N)r    Frs   )r   arrayr   r   interpflatreshaper^   r!   r   rv   r    )r+   rQ   maskcdfr9   outs         r   r	   r	   g  s    < xD)))25;FF[[25%@@[
)EJS
1
1C
++ek
"
"C ::e1%+>>U:KKKr   c                     |dk    r| j         j        }|dk    r)t          j        |           }t          j        |           }n#|t
          v rt
          |         \  }}|rd}n|\  }}||fS )af  Return image intensity range (min, max) based on desired value type.

    Parameters
    ----------
    image : array
        Input image.
    range_values : str or 2-tuple, optional
        The image intensity range is configured by this parameter.
        The possible values for this parameter are enumerated below.

        'image'
            Return image min/max as the range.
        'dtype'
            Return min/max of the image's dtype as the range.
        dtype-name
            Return intensity range based on desired `dtype`. Must be valid key
            in `DTYPE_RANGE`. Note: `image` is ignored for this range type.
        2-tuple
            Return `range_values` as min/max intensities. Note that there's no
            reason to use this function if you just want to specify the
            intensity range explicitly. This option is included for functions
            that use `intensity_range` to support all desired range types.

    clip_negative : bool, optional
        If True, clip the negative range (i.e. return 0 for min intensity)
        even if the image dtype allows negative values.
    r    r+   r   )r    typer   r2   r4   DTYPE_RANGE)r+   range_valuesr.   i_mini_maxs        r   intensity_ranger     sz    8 w{'wuu		$	$"<0u 	E#u%<r   c                 R   t          |           t          t          t          j        fv rt          j        |          S t          |           t           k    r| S | t          v r6	 t          j        |           j         S # t          $ r t          j
        cY S w xY wt          d|  d          )a  Determine the output dtype for rescale_intensity.

    The dtype is determined according to the following rules:
    - if ``dtype_or_range`` is a dtype, that is the output dtype.
    - if ``dtype_or_range`` is a dtype string, that is the dtype used, unless
      it is not a NumPy data type (e.g. 'uint12' for 12-bit unsigned integers),
      in which case the data type that can contain it will be used
      (e.g. uint16 in this case).
    - if ``dtype_or_range`` is a pair of values, the output data type will be
      ``_supported_float_type(image_dtype)``. This preserves float32 output for
      float32 inputs.

    Parameters
    ----------
    dtype_or_range : type, string, or 2-tuple of int/float
        The desired range for the output, expressed as either a NumPy dtype or
        as a (min, max) pair of numbers.
    image_dtype : np.dtype
        The input image dtype.

    Returns
    -------
    out_dtype : type
        The data type appropriate for the desired output.
    zZIncorrect value for out_range, should be a valid image data type or a pair of values, got .)r   listtupler   rp   r   rv   r   r    	TypeErroruint16r0   )dtype_or_rangeimage_dtypes     r   _output_dtyper     s    4 NeRZ888*;777Nt##$$	8N++00 	 	 	9	 ?-;? ? ?
 
 	
s   !A: :BBr    c           	      t   |dv r t          | j        j        | j                  }nt          || j                  }t          t          t          | |                    \  }}t          t          t          | ||dk                        \  }}t          j        t          j        ||||g                    rt          j
        dd           t          j        | ||          } ||k    r)| |z
  ||z
  z  } | ||z
  z  |z                       |          S t          j        | ||                              |          S )a  Return image after stretching or shrinking its intensity levels.

    The desired intensity range of the input and output, `in_range` and
    `out_range` respectively, are used to stretch or shrink the intensity range
    of the input image. See examples below.

    Parameters
    ----------
    image : array
        Image array.
    in_range, out_range : str or 2-tuple, optional
        Min and max intensity values of input and output image.
        The possible values for this parameter are enumerated below.

        'image'
            Use image min/max as the intensity range.
        'dtype'
            Use min/max of the image's dtype as the intensity range.
        dtype-name
            Use intensity range based on desired `dtype`. Must be valid key
            in `DTYPE_RANGE`.
        2-tuple
            Use `range_values` as explicit min/max intensities.

    Returns
    -------
    out : array
        Image array after rescaling its intensity. This image is the same dtype
        as the input image.

    Notes
    -----
    .. versionchanged:: 0.17
        The dtype of the output array has changed to match the input dtype, or
        float if the output range is specified by a pair of values.

    See Also
    --------
    equalize_hist

    Examples
    --------
    By default, the min/max intensities of the input image are stretched to
    the limits allowed by the image's dtype, since `in_range` defaults to
    'image' and `out_range` defaults to 'dtype':

    >>> image = np.array([51, 102, 153], dtype=np.uint8)
    >>> rescale_intensity(image)
    array([  0, 127, 255], dtype=uint8)

    It's easy to accidentally convert an image dtype from uint8 to float:

    >>> 1.0 * image
    array([ 51., 102., 153.])

    Use `rescale_intensity` to rescale to the proper range for float dtypes:

    >>> image_float = 1.0 * image
    >>> rescale_intensity(image_float)
    array([0. , 0.5, 1. ])

    To maintain the low contrast of the original, use the `in_range` parameter:

    >>> rescale_intensity(image_float, in_range=(0, 255))
    array([0.2, 0.4, 0.6])

    If the min/max value of `in_range` is more/less than the min/max image
    intensity, then the intensity levels are clipped:

    >>> rescale_intensity(image_float, in_range=(0, 102))
    array([0.5, 1. , 1. ])

    If you have an image with signed integers but want to rescale the image to
    just the positive range, use the `out_range` parameter. In that case, the
    output dtype will be float:

    >>> image = np.array([-10, 0, 10], dtype=np.int8)
    >>> rescale_intensity(image, out_range=(0, 127))
    array([  0. ,  63.5, 127. ])

    To get the desired range with a specific dtype, use ``.astype()``:

    >>> rescale_intensity(image, out_range=(0, 127)).astype(np.int8)
    array([  0,  63, 127], dtype=int8)

    If the input image is constant, the output will be clipped directly to the
    output range:
    >>> image = np.array([130, 130, 130], dtype=np.int32)
    >>> rescale_intensity(image, out_range=(0, 127)).astype(np.int32)
    array([127, 127, 127], dtype=int32)
    )r    r+   r   r-   zOne or more intensity levels are NaN. Rescaling will broadcast NaN to the full image. Provide intensity levels yourself to avoid this. E.g. with np.nanmin(image), np.nanmax(image).r   )
stacklevel)r   r    r   mapr   r   r   anyisnanr   r`   clipr!   )r+   in_range	out_range	out_dtypeiminimaxominomaxs           r   r
   r
     sA   x &&&!%+"2EK@@		!)U[99	UOE8<<==JD$ui	KKK JD$ 
vbhdD$/0011 

H 		
 	
 	
 	
 GE4&&Et||$+.%,44Y???wudD))00;;;r   c                 T    t          j        | dk               rt          d          d S )Nr   zxImage Correction methods work correctly only on images with non-negative values. Use skimage.exposure.rescale_intensity.)r   r   r0   )r+   s    r   _assert_non_negativer   b  s9    	veai 
2
 
 	

 
r   c                     d|z  t          j        ddd          |z  z  }t          j        t          j        |          d                              d          }||          S )z-LUT based implementation of gamma adjustment.   r   r/   rX   uint8)r   rP   minimumrintr!   )r+   gammagainluts       r   _adjust_gamma_u8r   k  sT    
*Aq#..%7
8C
*RWS\\3
'
'
.
.w
7
7Cu:r   r/   c                 \   |dk     rt          d          | j        j        }|t          j        u rt          | ||          }njt          |            t          t          | d          d         t          | d          d         z
            }| |z  |z  |z  |z  	                    |          }|S )a  Performs Gamma Correction on the input image.

    Also known as Power Law Transform.
    This function transforms the input image pixelwise according to the
    equation ``O = I**gamma`` after scaling each pixel to the range 0 to 1.

    Parameters
    ----------
    image : ndarray
        Input image.
    gamma : float, optional
        Non negative real number. Default value is 1.
    gain : float, optional
        The constant multiplier. Default value is 1.

    Returns
    -------
    out : ndarray
        Gamma corrected output image.

    See Also
    --------
    adjust_log

    Notes
    -----
    For gamma greater than 1, the histogram will shift towards left and
    the output image will be darker than the input image.

    For gamma less than 1, the histogram will shift towards right and
    the output image will be brighter than the input image.

    References
    ----------
    .. [1] https://en.wikipedia.org/wiki/Gamma_correction

    Examples
    --------
    >>> from skimage import data, exposure, img_as_float
    >>> image = img_as_float(data.moon())
    >>> gamma_corrected = exposure.adjust_gamma(image, 2)
    >>> # Output is darker for gamma > 1
    >>> image.mean() > gamma_corrected.mean()
    True
    r   z+Gamma should be a non-negative real number.Tr/   )
r0   r    r   r   r   r   r   r   r   r!   )r+   r   r   r    r   scales         r   r   r   r  s    \ qyyFGGGKEueT22U###l5$//2\%5N5Nq5QQRR5(E1D8@@GGJr   c                 R   t          |            | j        j        }t          t	          | d          d         t	          | d          d         z
            }|rd| |z  z  dz
  |z  |z  } ||          S t          j        d| |z  z             |z  |z  }|                    |          S )aQ  Performs Logarithmic correction on the input image.

    This function transforms the input image pixelwise according to the
    equation ``O = gain*log(1 + I)`` after scaling each pixel to the range
    0 to 1. For inverse logarithmic correction, the equation is
    ``O = gain*(2**I - 1)``.

    Parameters
    ----------
    image : ndarray
        Input image.
    gain : float, optional
        The constant multiplier. Default value is 1.
    inv : float, optional
        If True, it performs inverse logarithmic correction,
        else correction will be logarithmic. Defaults to False.

    Returns
    -------
    out : ndarray
        Logarithm corrected output image.

    See Also
    --------
    adjust_gamma

    References
    ----------
    .. [1] http://www.ece.ucsb.edu/Faculty/Manjunath/courses/ece178W03/EnhancePart1.pdf

    Tr/   r   r   )r   r    r   r   r   r   log2r!   )r+   r   invr    r   r   s         r   r   r     s    @ KE,ud++A.eT1J1J11MMNNE
 UU]#a'5047uSzz
'!eem#
$
$u
,t
3C::er   rD   
   c           	         t          |            | j        j        }t          t	          | d          d         t	          | d          d         z
            }|r4dddt          j        ||| |z  z
  z            z   z  z
  |z  } ||          S ddt          j        ||| |z  z
  z            z   z  |z  }|                    |          S )a"  Performs Sigmoid Correction on the input image.

    Also known as Contrast Adjustment.
    This function transforms the input image pixelwise according to the
    equation ``O = 1/(1 + exp*(gain*(cutoff - I)))`` after scaling each pixel
    to the range 0 to 1.

    Parameters
    ----------
    image : ndarray
        Input image.
    cutoff : float, optional
        Cutoff of the sigmoid function that shifts the characteristic curve
        in horizontal direction. Default value is 0.5.
    gain : float, optional
        The constant multiplier in exponential's power of sigmoid function.
        Default value is 10.
    inv : bool, optional
        If True, returns the negative sigmoid correction. Defaults to False.

    Returns
    -------
    out : ndarray
        Sigmoid corrected output image.

    See Also
    --------
    adjust_gamma

    References
    ----------
    .. [1] Gustav J. Braun, "Image Lightness Rescaling Using Sigmoidal Contrast
           Enhancement Functions",
           http://markfairchild.org/PDFs/PAP07.pdf

    Tr/   r   )r   r    r   r   r   r   expr!   )r+   cutoffr   r   r    r   r   s          r   r   r     s    J KE,ud++A.eT1J1J11MMNNE
 1BF46EEM+A#BCCCDDMuSzzBF46EEM#9:;;;<
EC::er   皙?c   linearc                    t          j        |           } | j        t          k    r1|                                 dk    o|                                 dk     S | j        dk    r@ddlm}m	} | j
        d         dk    r ||           } | j
        d         dk    r ||           } t          | d          }t          j        | ||g          }|d         |d         z
  |d         |d         z
  z  }	|	|k     S )	a6  Determine if an image is low contrast.

    Parameters
    ----------
    image : array-like
        The image under test.
    fraction_threshold : float, optional
        The low contrast fraction threshold. An image is considered low-
        contrast when its range of brightness spans less than this
        fraction of its data type's full range. [1]_
    lower_percentile : float, optional
        Disregard values below this percentile when computing image contrast.
    upper_percentile : float, optional
        Disregard values above this percentile when computing image contrast.
    method : str, optional
        The contrast determination method.  Right now the only available
        option is "linear".

    Returns
    -------
    out : bool
        True when the image is determined to be low contrast.

    Notes
    -----
    For boolean images, this function returns False only if all values are
    the same (the method, threshold, and percentile arguments are ignored).

    References
    ----------
    .. [1] https://scikit-image.org/docs/dev/user_guide/data_types.html

    Examples
    --------
    >>> image = np.linspace(0, 0.04, 100)
    >>> is_low_contrast(image)
    True
    >>> image[-1] = 1
    >>> is_low_contrast(image)
    True
    >>> is_low_contrast(image, upper_percentile=100)
    False
    r/   r   r[   r   )rgb2grayrgba2rgbr\   Fr-   )r   
asanyarrayr    r   r4   r2   ndimcolorr   r   r^   r   
percentile)
r+   fraction_thresholdlower_percentileupper_percentilemethodr   r   dlimitsr   ratios
             r   is_low_contrastr     s   d M%  E{dYY[[A%=EIIKK1,<>>zQ........;q>QHUOOE;q>QHUOOE5666G]5#35E"FGGFAY"wqzGAJ'>?E%%%r   r   )rX   r+   F)rX   )rX   N)r+   Fr*   )r/   r/   )r/   F)rD   r   F)r   r/   r   r   )"numpyr   
util.dtyper   r   _sharedr   __all__rt   r   updateitemsr   float64r(   r:   rB   rJ   rT   rV   channel_as_last_axisr   rb   r   r	   r   r   r
   r   r   r   r   r   r    r   r   <module>r      s       2 2 2 2 2 2 2 2         k     MM9J9J9L9LMMM M M M      D!RZ(      
 
 
   D.! .! .!b" " "J   6666;UMQU U U U 76Up     F*  *  *  * Z'L 'L 'L 'LT( ( ( (V,
 ,
 ,
^t< t< t< t<n
 
 
  < < < <~) ) ) )X. . . .f C& C& C& C& C& C&r   