
    <|hld                        d Z ddlZddlmZ ddlmZ ddlmZ ddl	Z	ddl
Zej                  xZZej                  xZZddlmZ ddlmZ ddlmZ g Zg d	Zd
dgZddgZej7                  d       ej8                  Z eed      rej>                  Zej7                  d       n G d de       Zej7                  d       eeez   ez   z  Zd Z!ddl"Z#e#jH                  jJ                   e&       d<    e'd      jP                   e&       d<   d  e&       d<    G d de%      Z) G d de*      Z+ G d de+      Z, G d de+      Z- G d d
e+      Z. G d  d!e.      Z/ G d" de*      Z0d# Z1 e1        dd$l2m3Z3  e3 e4       d%       y)&al  
Synchronized queues.

The :mod:`gevent.queue` module implements multi-producer, multi-consumer queues
that work across greenlets, with the API similar to the classes found in the
standard :mod:`Queue` and :class:`multiprocessing <multiprocessing.Queue>` modules.

The classes in this module implement the iterator protocol. Iterating
over a queue means repeatedly calling :meth:`get <Queue.get>` until
:meth:`get <Queue.get>` returns ``StopIteration`` (specifically that
class, not an instance or subclass).

    >>> import gevent.queue
    >>> queue = gevent.queue.Queue()
    >>> queue.put(1)
    >>> queue.put(2)
    >>> queue.put(StopIteration)
    >>> for item in queue:
    ...    print(item)
    1
    2

.. versionchanged:: 1.0
       ``Queue(0)`` now means queue of infinite size, not a channel. A :exc:`DeprecationWarning`
       will be issued with this argument.
    N)heappush)heappop)heapify)Timeout)get_hub_noargs)InvalidSwitchError)QueuePriorityQueue	LifoQueueJoinableQueueChannelEmptyFullSimpleQueueShutDownc                       e Zd ZdZy)r   zE
        gevent extension for Python versions less than 3.13
        N)__name__
__module____qualname____doc__     K/var/www/html/test/engine/venv/lib/python3.12/site-packages/gevent/queue.pyr   r   @   s    	r   c                 F    	 | j                  |       y # t        $ r Y y w xY wN)remove
ValueError)deqitems     r   _safe_remover    M   s%    

4 s    	  Waitergreenlet
getcurrentc                       y r   r   r   r   r   <lambda>r%   X   s    r   greenlet_initc                       e Zd ZdZd Zd Zy)
ItemWaiter)r   queuec                 J    t         j                  |        || _        || _        y r   )r!   __init__r   r)   )selfr   r)   s      r   r+   zItemWaiter.__init__a   s    	
r   c                     | j                   j                  | j                         d | _         d | _        | j                  |       S r   )r)   _putr   switchr,   s    r   put_and_switchzItemWaiter.put_and_switchf   s3    

		"
	{{4  r   N)r   r   r   	__slots__r+   r1   r   r   r   r(   r(   Z   s    I

!r   r(   c                       e Zd ZdZdZd!dZed        Zej                  d        Zd Z	d"dZ
d	 Zd
 Zd Zd Zd Zd Zd Zd Zd Zd Zd Zd#dZd Zd Zd#dZd Zd#dZd Zd Zd Zd Zd Z d$dZ!d  Z"y)%r	   a  
    Create a queue object with a given maximum size.

    If *maxsize* is less than or equal to zero or ``None``, the queue
    size is infinite.

    Queues have a ``len`` equal to the number of items in them (the :meth:`qsize`),
    but in a boolean context they are always True.

    .. versionchanged:: 1.1b3
       Queues now support :func:`len`; it behaves the same as :meth:`qsize`.
    .. versionchanged:: 1.1b3
       Multiple greenlets that block on a call to :meth:`put` for a full queue
       will now be awakened to put their items into the queue in the order in which
       they arrived. Likewise, multiple greenlets that block on a call to :meth:`get` for
       an empty queue will now receive items in the order in which they blocked. An
       implementation quirk under CPython *usually* ensured this was roughly the case
       previously anyway, but that wasn't the case for PyPy.
    .. versionchanged:: 24.10.1
       Implement the ``shutdown`` methods from Python 3.13.
    )_maxsizegettersputtershub_event_unlockr)   __weakref__is_shutdownNc                 8   |(|dk  r#|dk(  rdd l }|j                  dt        |       d }||nd| _        t	        j
                         | _        t	        j
                         | _        t               | _	        d | _
        | j                  |      | _        d| _        y )Nr   zJQueue(0) now equivalent to Queue(None); if you want a channel, use Channel)
stacklevelF)warningswarnDeprecationWarningr4   collectionsdequer5   r6   get_hubr7   r8   _create_queuer)   r:   )r,   maxsizeitems_warn_depthr>   s        r   r+   zQueue.__init__   s    7a<!|`&*  , G#*#6B #((*"((*9!''.
 r   c                 <    | j                   dkD  r| j                   S d S Nr   r4   r0   s    r   rE   zQueue.maxsize   s     $ 1t}};t;r   c                 0    ||dk  rd| _         y || _         y )Nr   r=   rJ   )r,   nvs     r   rE   zQueue.maxsize   s     :qDMDMr   c                 N     t        |       | j                  | j                        S r   )typerE   r)   r0   s    r   copyz
Queue.copy   s    tDz$,,

33r   c                 ,    t        j                  |      S r   )rA   rB   r,   rF   s     r   rD   zQueue._create_queue   s      ''r   c                 6    | j                   j                         S r   )r)   popleftr0   s    r   _getz
Queue._get   s    zz!!##r   c                      | j                   d   S rI   r)   r0   s    r   _peekzQueue._peek   s    zz!}r   c                 :    | j                   j                  |       y r   )r)   appendr,   r   s     r   r.   z
Queue._put   s    

$r   c                 ~    dt        |       j                  dt        t        |             | j	                         dS )N< at >rN   r   hexid_formatr0   s    r   __repr__zQueue.__repr__   s'    !%d!4!4c"T(mT\\^TTr   c                 T    dt        |       j                  | j                         dS )Nr\   r^   rN   r   rb   r0   s    r   __str__zQueue.__str__   s    :..??r   c                    g }| j                   |j                  d| j                          t        | dd       r|j                  d| j                         | j                  r'|j                  dt        | j                        z         | j                  r'|j                  dt        | j                        z         |rddj                  |      z   S y)Nzmaxsize=r)   zqueue=zgetters[%s]zputters[%s]  )rE   rY   getattrr)   r5   lenr6   joinr,   results     r   rb   zQueue._format   s    <<#MM$,,9:4$'MM

56<<MM-#dll*;;<<<MM-#dll*;;<&)))r   c                 ,    t        | j                        S )zReturn the size of the queue.)rk   r)   r0   s    r   qsizezQueue.qsize   s    4::r   c                 "    | j                         S )z
        Return the size of the queue. This is the same as :meth:`qsize`.

        .. versionadded: 1.1b3

            Previously, getting len() of a queue would raise a TypeError.
        rp   r0   s    r   __len__zQueue.__len__   s     zz|r   c                      y)z
        A queue object is always True.

        .. versionadded: 1.1b3

           Now that queues support len(), they need to implement ``__bool__``
           to return True for backwards compatibility.
        Tr   r0   s    r   __bool__zQueue.__bool__   s     r   c                 $    | j                          S )z;Return ``True`` if the queue is empty, ``False`` otherwise.rr   r0   s    r   emptyzQueue.empty   s    ::<r   c                 ^    | j                   dkD  xr | j                         | j                   k\  S )zkReturn ``True`` if the queue is full, ``False`` otherwise.

        ``Queue(None)`` is never full.
        r   )r4   rp   r0   s    r   fullz
Queue.full   s'    
 }}q BTZZ\T]]%BBr   c                    | j                   rt        | j                  dk(  s| j                         | j                  k  rB|r||dk  rt	        d      | j                  |       | j                  r| j                          y| j                  t               u r| j                  r| j                         r| j                         | j                  k\  re| j                  j                         }|j                  |       | j                  r.| j                         r| j                         | j                  k\  re| j                         | j                  k  r| j                  |       yt        |rt        ||       }| j                  j                  |       t!        j"                  |t              }	 | j                  r| j                          |j%                         }||urt'        d|      	 |j)                          t+        | j                  |       yt        # |j)                          t+        | j                  |       w xY w)a  
        Put an item into the queue.

        If optional arg *block* is true and *timeout* is ``None`` (the default),
        block if necessary until a free slot is available. If *timeout* is
        a positive number, it blocks at most *timeout* seconds and raises
        the :class:`Full` exception if no free slot was available within that time.
        Otherwise (*block* is false), put an item on the queue if a free slot
        is immediately available, else raise the :class:`Full` exception (*timeout*
        is ignored in that case).

        ... versionchanged:: 24.10.1
           Now raises a ``ValueError`` for a negative *timeout* in the cases
           that CPython does.
        r=   Nr   ''timeout' must be a non-negative numberzInvalid switch into Queue.put: )r:   r   r4   rp   r   r.   r5   _schedule_unlockr7   r#   rS   r/   r   r(   r6   rY   r   _start_new_or_dummygetr   cancelr    r,   r   blocktimeoutgetterwaiterrn   s          r   putz	Queue.put  s     N==B$**,"> ,1 !JKKIIdO||%%'88z|# ,,4::<DJJLDMM4Q--/f% ,,4::<DJJLDMM4Q zz|dmm+		$Jd+FLL'11'4@G3<<))+',TZ-]^^ (  T\\62
	  T\\62s   .>H (Ic                 (    | j                  |d       y)zPut an item into the queue without blocking.

        Only enqueue the item if a free slot is immediately available.
        Otherwise raise the :class:`Full` exception.
        FNr   rZ   s     r   
put_nowaitzQueue.put_nowait9  s     	ur   c                    | j                   rt        |r||dk  rt        d      | j                  t	               u r^| j
                  rL| j
                  j                         j                          | j                         r |       S | j
                  rLt        |st        t               }t        j                  |t              }	 | j                  j                  |       | j
                  r| j                          |j!                         }||urt#        d|       |       |j%                          t'        | j                  |       S # |j%                          t'        | j                  |       w xY w)Nr   r{   zInvalid switch into Queue.get: )r:   r   r   r7   r#   r6   rS   r1   rp   r   r!   r   r}   r5   rY   r|   r~   r   r   r    )r,   methodr   r   r   rn   s         r   __get_or_peekzQueue.__get_or_peekA  s&    NW(Wq[FGG88z|# ,, $$&557::<!8O ,, K K--gu=
	/LL'||%%'ZZ\FV#(PV)YZZ8NNv. NNv.s   AE (E6c                     | j                         r,| j                  r| j                          | j                         S | j	                  | j                  ||      S )a  
        Remove and return an item from the queue.

        If optional args *block* is true and *timeout* is ``None`` (the default),
        block if necessary until an item is available. If *timeout* is a positive number,
        it blocks at most *timeout* seconds and raises the :class:`Empty` exception
        if no item was available within that time. Otherwise (*block* is false), return
        an item if one is immediately available, else raise the :class:`Empty` exception
        (*timeout* is ignored in that case).
        )rp   r6   r|   rT   _Queue__get_or_peekr,   r   r   s      r   r~   z	Queue.getq  sE     ::<||%%'99;!!$))UG<<r   c                 $    | j                  d      S )zRemove and return an item from the queue without blocking.

        Only get an item if one is immediately available. Otherwise
        raise the :class:`Empty` exception.
        Fr~   r0   s    r   
get_nowaitzQueue.get_nowait  s     xxr   c                 |    | j                         r| j                         S | j                  | j                  ||      S )a  Return an item from the queue without removing it.

        If optional args *block* is true and *timeout* is ``None`` (the default),
        block if necessary until an item is available. If *timeout* is a positive number,
        it blocks at most *timeout* seconds and raises the :class:`Empty` exception
        if no item was available within that time. Otherwise (*block* is false), return
        an item if one is immediately available, else raise the :class:`Empty` exception
        (*timeout* is ignored in that case).
        )rp   rW   r   r   s      r   peekz
Queue.peek  s4     ::< ::<!!$**eW==r   c                 $    | j                  d      S )zReturn an item from the queue without blocking.

        Only return an item if one is immediately available. Otherwise
        raise the :class:`Empty` exception.
        F)r   r0   s    r   peek_nowaitzQueue.peek_nowait  s     yyr   c                    	 d}| j                   ru| j                  dk(  s| j                         | j                  k  rId}	 | j                   j                         }| j	                  |j
                         |j                  |       | j                  r=| j                         r-d}| j                  j                         }|j                  |       |sy #   j                  t        j                           Y rxY w)NTFr=   )r6   r4   rp   rS   r.   r   r/   throwsysexc_infor5   )r,   repeatputterr   s       r   _unlockzQueue._unlock  s    F||"!4

t}}8T*!\\113FIIfkk* MM&)||

--/f%! 2 FLL#,,.1s   5C #C7c                     | j                   s5| j                  j                  j                  | j                        | _         y y r   r8   r7   looprun_callbackr   r0   s    r   r|   zQueue._schedule_unlock  /    !!!%!;!;DLL!ID "r   c                     | S r   r   r0   s    r   __iter__zQueue.__iter__      r   c                 :    | j                         }|t        u r||S r   r~   StopIterationrm   s     r   __next__zQueue.__next__      ]"Lr   c                 n   d| _         |r| j                          t        | j                        }t        | j                        }| j                  j                          | j                  j                          ||z   D ]6  }| j                  j                  j                  |j                  t               8 y)a  
        "Shut-down the queue, making queue gets and puts raise
        `ShutDown`.

        By default, gets will only raise once the queue is empty. Set
        *immediate* to True to make gets raise immediately instead.

        All blocked callers of `put` and `get` will be unblocked.

        In joinable queues, if *immediate*, a task is marked as done
        for each item remaining in the queue, which may unblock
        callers of `join`.
        TN)r:   _drain_for_immediate_shutdownlistr5   r6   clearr7   r   r   r   r   )r,   	immediater5   r6   r   s        r   shutdownzQueue.shutdown  s      ..0t||$t||$' 	?FHHMM&&v||X>	?r   c                 h    | j                         r"| j                          | j                         r!y y r   )rp   r~   r0   s    r   r   z#Queue._drain_for_immediate_shutdown  s    jjlHHJ jjlr   )Nr      r   TN)F)#r   r   r   r   r2   r+   propertyrE   setterrO   rD   rT   rW   r.   rc   rf   rb   rp   rs   ru   rw   ry   r   r   r   r~   r   r   r   r   r|   r   r   r   r   r   r   r   r	   r	   l   s    ,	I!< < < ^^ 4($ U@		 C6p./`=$>" &J?0r   r	   c                        e Zd ZdZddZddZy)UnboundQueuer   Nc                 Z    |t        d      t        j                  | ||       d | _        y )NzUnboundQueue has no maxsize)r   r	   r+   r6   )r,   rE   rF   s      r   r+   zUnboundQueue.__init__  s+    :;;tWe,r   c                 `    | j                  |       | j                  r| j                          y y r   )r.   r5   r|   )r,   r   r   r   s       r   r   zUnboundQueue.put  s%    		$<<!!# r   )Nr   r   )r   r   r   r2   r+   r   r   r   r   r   r     s     I$r   r   c                   (    e Zd ZdZdZddZd Zd Zy)r
   a  A subclass of :class:`Queue` that retrieves entries in priority order (lowest first).

    Entries are typically tuples of the form: ``(priority number, data)``.

    .. versionchanged:: 1.2a1
       Any *items* given to the constructor will now be passed through
       :func:`heapq.heapify` to ensure the invariants of this class hold.
       Previously it was just assumed that they were already a heap.
    r   c                 2    t        |      }t        |       |S r   )r   _heapify)r,   rF   qs      r   rD   zPriorityQueue._create_queue  s    Kr   c                 0    t        | j                  |       y r   )	_heappushr)   rZ   s     r   r.   zPriorityQueue._put  s    $**d#r   c                 ,    t        | j                        S r   )_heappopr)   r0   s    r   rT   zPriorityQueue._get  s    

##r   Nr   )r   r   r   r   r2   rD   r.   rT   r   r   r   r
   r
     s     I
$$r   r
   c                   H    e Zd ZdZdZddZd Zd Zd Zd Z	d	 Z
dd
Zd Zy)r   zl
    A subclass of :class:`Queue` that additionally has
    :meth:`task_done` and :meth:`join` methods.
    )_condunfinished_tasksNc                 $   t         j                  | ||d       ddlm}  |       | _        | j                  j                          |r|| _        n|rt        |      | _        nd| _        | j                  r| j                  j                          yy)z

        .. versionchanged:: 1.1a1
           If *unfinished_tasks* is not given, then all the given *items*
           (if any) will be considered unfinished.

           )rG   r   )EventN)	r	   r+   gevent.eventr   r   setr   rk   r   )r,   rE   rF   r   r   s        r   r+   zJoinableQueue.__init__  sr     	tWe;&W


$4D!$'JD!$%D!  JJ !r   c                 d     t        |       | j                  | j                  | j                        S r   )rN   rE   r)   r   r0   s    r   rO   zJoinableQueue.copy.  s%    tDz$,,

D4I4IJJr   c                     t         j                  |       }| j                  r|d| j                  d| j                  z  }|S )Nz tasks=z _cond=)r	   rb   r   r   rm   s     r   rb   zJoinableQueue._format1  s7    t$  d.C.CTZZPPFr   c                 P    t         j                  | |       | j                          y r   )r	   r.   _did_put_taskrZ   s     r   r.   zJoinableQueue._put7  s    

4r   c                 b    | xj                   dz  c_         | j                  j                          y )N   )r   r   r   r0   s    r   r   zJoinableQueue._did_put_task;  s#    "

r   c                     | j                   dk  rt        d      | xj                   dz  c_         | j                   dk(  r| j                  j                          yy)aY  Indicate that a formerly enqueued task is complete. Used by queue consumer threads.
        For each :meth:`get <Queue.get>` used to fetch a task, a subsequent call to :meth:`task_done` tells the queue
        that the processing on the task is complete.

        If a :meth:`join` is currently blocking, it will resume when all items have been processed
        (meaning that a :meth:`task_done` call was received for every item that had been
        :meth:`put <Queue.put>` into the queue).

        Raises a :exc:`ValueError` if called more times than there were items placed in the queue.
        r   z!task_done() called too many timesr   N)r   r   r   r   r0   s    r   	task_donezJoinableQueue.task_done?  sP       A%@AA"  A%JJNN &r   c                 :    | j                   j                  |      S )a  
        Block until all items in the queue have been gotten and processed.

        The count of unfinished tasks goes up whenever an item is added to the queue.
        The count goes down whenever a consumer thread calls :meth:`task_done` to indicate
        that the item was retrieved and all work on it is complete. When the count of
        unfinished tasks drops to zero, :meth:`join` unblocks.

        :param float timeout: If not ``None``, then wait no more than this time in seconds
            for all tasks to finish.
        :return: ``True`` if all tasks have finished; if ``timeout`` was given and expired before
            all tasks finished, ``False``.

        .. versionchanged:: 1.1a1
           Add the *timeout* parameter.
        )r   )r   wait)r,   r   s     r   rl   zJoinableQueue.joinP  s    " zzw//r   c                     | j                         r2| j                          | j                          | j                         r1y y r   )rp   r~   r   r0   s    r   r   z+JoinableQueue._drain_for_immediate_shutdownc  s)    jjlHHJNN jjlr   )Nr   Nr   )r   r   r   r   r2   r+   rO   rb   r.   r   r   rl   r   r   r   r   r   r     s7    
I
0K"0&r   c                   .    e Zd ZdZdZddZd Zd Zd Zy)	r   z
    A subclass of :class:`JoinableQueue` that retrieves most recently added entries first.

    .. versionchanged:: 24.10.1
       Now extends :class:`JoinableQueue` instead of just :class:`Queue`.

    r   c                     t        |      S r   )r   rQ   s     r   rD   zLifoQueue._create_queues  s    E{r   c                 Z    | j                   j                  |       | j                          y r   )r)   rY   r   rZ   s     r   r.   zLifoQueue._putv  s     

$r   c                 6    | j                   j                         S r   )r)   popr0   s    r   rT   zLifoQueue._getz  s    zz~~r   c                      | j                   d   S )Nr=   rV   r0   s    r   rW   zLifoQueue._peek}  s    zz"~r   Nr   )	r   r   r   r   r2   rD   r.   rT   rW   r   r   r   r   r   i  s"     I r   r   c                       e Zd ZdZddZd Zd Zd Zed        Z	d Z
d Zd	 ZddZd ZddZd Zd Zd Zd Zd ZeZy
)r   )r5   r6   r7   r8   r9   c                     |dk7  rt        d      t        j                         | _        t        j                         | _        t               | _        d | _        y )Nr   zChannels have a maxsize of 1)r   rA   rB   r5   r6   rC   r7   r8   )r,   rE   s     r   r+   zChannel.__init__  sF    a<;<<"((*"((*9!r   c                     dt        |       j                  dt        t        |             d| j	                         dS )Nr\   r]   rh   r^   r_   r0   s    r   rc   zChannel.__repr__  s'    "&t*"5"5s2d8}dllnUUr   c                 V    dt        |       j                  d| j                         dS )Nr\   rh   r^   re   r0   s    r   rf   zChannel.__str__  s     J//@@r   c                     d}| j                   r|dt        | j                         z  z  }| j                  r|dt        | j                        z  z  }|S )Nri   z getters[%s]z putters[%s])r5   rk   r6   rm   s     r   rb   zChannel._format  sJ    <<ns4<<'888F<<ns4<<'888Fr   c                 X    t        | j                        t        | j                        z
  S r   )rk   r6   r5   r0   s    r   balancezChannel.balance  s    4<< 3t||#444r   c                      yrI   r   r0   s    r   rp   zChannel.qsize  s    r   c                      yNTr   r0   s    r   rw   zChannel.empty      r   c                      yr   r   r0   s    r   ry   zChannel.full  r   r   Nc                 <   | j                   t               u r>| j                  r,| j                  j                         }|j	                  |       y t
        |sd}t               }||f}| j                  j                  |       t        j                  |t
              }	 | j                  r| j                          |j                         }||urt        d|      	 |j                          y #  t        | j                  |        xY w# |j                          w xY w)Nr   z!Invalid switch into Channel.put: )r7   r#   r5   rS   r/   r   r!   r6   rY   r   r}   r|   r~   r   r    r   r   s          r   r   zChannel.put  s    88z|#||--/d#JGf~D!--gt<
	||%%'ZZ\FV#(RX)[\\ $ NN		t,NNs   >C- -DD	 	Dc                 (    | j                  |d       y NFr   rZ   s     r   r   zChannel.put_nowait  s    ur   c                 P   | j                   t               u r[| j                  rO| j                  j                         \  }}| j                   j                  j                  |j                  |       |S |sd}t               }t        j                  |t              }	 | j                  j                  |       | j                  r| j                          |j                         |j                          S #  | j                  j!                  |        xY w# |j                          w xY wrI   )r7   r#   r6   rS   r   r   r/   r!   r   r}   r   r5   rY   r|   r~   closer   )r,   r   r   r   r   r   s         r   r~   zChannel.get  s    88z|#||#||335f**6==&AG--gu=		LL'||%%'::<
 MMO		LL'MMOs   AC2 2DD D%c                 $    | j                  d      S r   r   r0   s    r   r   zChannel.get_nowait  s    xxr   c                    | j                   r| j                  rt| j                  j                         }| j                   j                         \  }}|j                  |       |j                  |       | j                   r| j                  rry y y y r   )r6   r5   rS   r/   )r,   r   r   r   s       r   r   zChannel._unlock  sd    llt||\\))+F<<//1LD&MM$MM&!	 llt||l|lr   c                     | j                   s5| j                  j                  j                  | j                        | _         y y r   r   r0   s    r   r|   zChannel._schedule_unlock  r   r   c                     | S r   r   r0   s    r   r   zChannel.__iter__  r   r   c                 :    | j                         }|t        u r||S r   r   rm   s     r   r   zChannel.__next__  r   r   )r   r   )r   r   r   r2   r+   rc   rf   rb   r   r   rp   rw   ry   r   r   r~   r   r   r|   r   r   nextr   r   r   r   r     sr    I"VA 5 56."J Dr   c                      t                y r   )r&   r   r   r   _initr     s    Or   )import_c_accelzgevent._queue)5r   r   heapqr   r   r   r   r   r   rA   r)   	__queue__r   _Fullr   _Emptygevent.timeoutr   gevent._hub_localr   rC   gevent.exceptionsr   __all____implements____extensions____imports__rY   _PySimpleQueuer   hasattrr   	Exceptionr    gevent._waitergevent_waiterr!   locals
__import__r#   r(   objectr	   r   r
   r   r   r   r   gevent._utilr   globalsr   r   r   <module>r     s  8  ' % %   ~~    " 7 0
8!9- }  &&
9j!!!Hz"9  *% N^+k9 : ^^** #J/:: ( ! !$rF rh$5 $$$E $2[E [| 0zf zx  ( wy/ *r   