o
    oh ^                     @   s\  d Z ddlmZ ddlmZ ddlmZmZmZ ddl	m
Z
mZmZ ddlmZ ddlmZ ddlmZ dd	lmZ dd
lmZmZmZmZ ddlmZmZmZmZ ddlm Z m!Z!m"Z" ddl#m$Z$m%Z% ddl&m'Z' ddl(m)Z) ddl*m+Z+ G dd deZ,G dd deZ-G dd deZ.G dd deZ/G dd deZ0G dd deZ1edd Z2dS ) z$ Riemann zeta and related function.     )Add)cacheit)ArgumentIndexError
expand_mulFunction)piIInteger)Eq)S)Dummy)sympify)	bernoulli	factorialgenocchiharmonic)re
unpolarifyAbs
polar_lift)log	exp_polarexp)ceilingfloor)sqrt)	Piecewise)Polyc                   @   s:   e Zd ZdZdd ZdddZdd Zd	d
 Zdd ZdS )lerchphia^  
    Lerch transcendent (Lerch phi function).

    Explanation
    ===========

    For $\operatorname{Re}(a) > 0$, $|z| < 1$ and $s \in \mathbb{C}$, the
    Lerch transcendent is defined as

    .. math :: \Phi(z, s, a) = \sum_{n=0}^\infty \frac{z^n}{(n + a)^s},

    where the standard branch of the argument is used for $n + a$,
    and by analytic continuation for other values of the parameters.

    A commonly used related function is the Lerch zeta function, defined by

    .. math:: L(q, s, a) = \Phi(e^{2\pi i q}, s, a).

    **Analytic Continuation and Branching Behavior**

    It can be shown that

    .. math:: \Phi(z, s, a) = z\Phi(z, s, a+1) + a^{-s}.

    This provides the analytic continuation to $\operatorname{Re}(a) \le 0$.

    Assume now $\operatorname{Re}(a) > 0$. The integral representation

    .. math:: \Phi_0(z, s, a) = \int_0^\infty \frac{t^{s-1} e^{-at}}{1 - ze^{-t}}
                                \frac{\mathrm{d}t}{\Gamma(s)}

    provides an analytic continuation to $\mathbb{C} - [1, \infty)$.
    Finally, for $x \in (1, \infty)$ we find

    .. math:: \lim_{\epsilon \to 0^+} \Phi_0(x + i\epsilon, s, a)
             -\lim_{\epsilon \to 0^+} \Phi_0(x - i\epsilon, s, a)
             = \frac{2\pi i \log^{s-1}{x}}{x^a \Gamma(s)},

    using the standard branch for both $\log{x}$ and
    $\log{\log{x}}$ (a branch of $\log{\log{x}}$ is needed to
    evaluate $\log{x}^{s-1}$).
    This concludes the analytic continuation. The Lerch transcendent is thus
    branched at $z \in \{0, 1, \infty\}$ and
    $a \in \mathbb{Z}_{\le 0}$. For fixed $z, a$ outside these
    branch points, it is an entire function of $s$.

    Examples
    ========

    The Lerch transcendent is a fairly general function, for this reason it does
    not automatically evaluate to simpler functions. Use ``expand_func()`` to
    achieve this.

    If $z=1$, the Lerch transcendent reduces to the Hurwitz zeta function:

    >>> from sympy import lerchphi, expand_func
    >>> from sympy.abc import z, s, a
    >>> expand_func(lerchphi(1, s, a))
    zeta(s, a)

    More generally, if $z$ is a root of unity, the Lerch transcendent
    reduces to a sum of Hurwitz zeta functions:

    >>> expand_func(lerchphi(-1, s, a))
    zeta(s, a/2)/2**s - zeta(s, a/2 + 1/2)/2**s

    If $a=1$, the Lerch transcendent reduces to the polylogarithm:

    >>> expand_func(lerchphi(z, s, 1))
    polylog(s, z)/z

    More generally, if $a$ is rational, the Lerch transcendent reduces
    to a sum of polylogarithms:

    >>> from sympy import S
    >>> expand_func(lerchphi(z, s, S(1)/2))
    2**(s - 1)*(polylog(s, sqrt(z))/sqrt(z) -
                polylog(s, sqrt(z)*exp_polar(I*pi))/sqrt(z))
    >>> expand_func(lerchphi(z, s, S(3)/2))
    -2**s/z + 2**(s - 1)*(polylog(s, sqrt(z))/sqrt(z) -
                          polylog(s, sqrt(z)*exp_polar(I*pi))/sqrt(z))/z

    The derivatives with respect to $z$ and $a$ can be computed in
    closed form:

    >>> lerchphi(z, s, a).diff(z)
    (-a*lerchphi(z, s, a) + lerchphi(z, s - 1, a))/z
    >>> lerchphi(z, s, a).diff(a)
    -s*lerchphi(z, s + 1, a)

    See Also
    ========

    polylog, zeta

    References
    ==========

    .. [1] Bateman, H.; Erdelyi, A. (1953), Higher Transcendental Functions,
           Vol. I, New York: McGraw-Hill. Section 1.11.
    .. [2] https://dlmf.nist.gov/25.14
    .. [3] https://en.wikipedia.org/wiki/Lerch_transcendent

    c                    s  | j \ dkrt S jrIdkrItd}t|    |dd|  }tj}t D ]}||| 7 }||	| }q3|
|S  jrtj}tj} dkr|t  krbd8  8    }t fddtD  }n# dkrt  d  7   }t fddtD  }t j jg\}tdt t  }	d  }
t|	}g }tD ]%}t|	| |
 ttrۈjdi |||| |
 |   q||d   t|   S ttrj d tt  jsdtt fv radkrtddg\n2tkr-tdd	g\n$t kr<tdd	g\nj d dt t  }t|j|jg\t fd
dtD  S t S )N   r   tc                    s&   g | ]}|    |   qS  r!   .0kanszr!   z/var/www/html/construction_image-detection-poc/venv/lib/python3.10/site-packages/sympy/functions/special/zeta_functions.py
<listcomp>   s   & z.lerchphi._eval_expand_func.<locals>.<listcomp>c                    s,   g | ]}d  |   | d    qS r   r!   r"   r%   r!   r*   r+      s   ,       c                    sB   g | ]}t d t t |     t|    qS )r-   )r   r   r   zetar"   )r&   pqr(   r!   r*   r+      s    :r!   )argsr0   
is_Integerr   r   r   Zeroreversed
all_coeffsdiffsubsis_RationalOner   r   ranger1   r2   r   r   r   r   polylog
isinstance_eval_expand_funcappendr   r   )selfhintsr    startrescaddmulmzetrootup_zetaddargsr$   argr!   )r&   r'   r1   r2   r(   r)   r*   r?      sf   

" 
4

zlerchphi._eval_expand_funcr   c                 C   sZ   | j \}}}|dkr| t||d | S |dkr+t||d ||t|||  | S t)N   r   )r3   r   r   )rA   argindexr)   r(   r&   r!   r!   r*   fdiff   s   $zlerchphi.fdiffc                 C   s   |   }||r|S | S N)r?   has)rA   targetrD   r!   r!   r*   _eval_rewrite_helper   s   
zlerchphi._eval_rewrite_helperc                 K   
   |  tS rQ   )rT   r0   rA   r)   r(   r&   kwargsr!   r!   r*   _eval_rewrite_as_zeta      
zlerchphi._eval_rewrite_as_zetac                 K   rU   rQ   )rT   r=   rV   r!   r!   r*   _eval_rewrite_as_polylog   rY   z!lerchphi._eval_rewrite_as_polylogNr,   )	__name__
__module____qualname____doc__r?   rP   rT   rX   rZ   r!   r!   r!   r*   r      s    i
A	r   c                       sP   e Zd ZdZedd ZdddZdd Zd	d
 Zdd Z	d fdd	Z
  ZS )r=   a  
    Polylogarithm function.

    Explanation
    ===========

    For $|z| < 1$ and $s \in \mathbb{C}$, the polylogarithm is
    defined by

    .. math:: \operatorname{Li}_s(z) = \sum_{n=1}^\infty \frac{z^n}{n^s},

    where the standard branch of the argument is used for $n$. It admits
    an analytic continuation which is branched at $z=1$ (notably not on the
    sheet of initial definition), $z=0$ and $z=\infty$.

    The name polylogarithm comes from the fact that for $s=1$, the
    polylogarithm is related to the ordinary logarithm (see examples), and that

    .. math:: \operatorname{Li}_{s+1}(z) =
                    \int_0^z \frac{\operatorname{Li}_s(t)}{t} \mathrm{d}t.

    The polylogarithm is a special case of the Lerch transcendent:

    .. math:: \operatorname{Li}_{s}(z) = z \Phi(z, s, 1).

    Examples
    ========

    For $z \in \{0, 1, -1\}$, the polylogarithm is automatically expressed
    using other functions:

    >>> from sympy import polylog
    >>> from sympy.abc import s
    >>> polylog(s, 0)
    0
    >>> polylog(s, 1)
    zeta(s)
    >>> polylog(s, -1)
    -dirichlet_eta(s)

    If $s$ is a negative integer, $0$ or $1$, the polylogarithm can be
    expressed using elementary functions. This can be done using
    ``expand_func()``:

    >>> from sympy import expand_func
    >>> from sympy.abc import z
    >>> expand_func(polylog(1, z))
    -log(1 - z)
    >>> expand_func(polylog(0, z))
    z/(1 - z)

    The derivative with respect to $z$ can be computed in closed form:

    >>> polylog(s, z).diff(z)
    polylog(s - 1, z)/z

    The polylogarithm can be expressed in terms of the lerch transcendent:

    >>> from sympy import lerchphi
    >>> polylog(s, z).rewrite(lerchphi)
    z*lerchphi(z, s, 1)

    See Also
    ========

    zeta, lerchphi

    c                 C   s   |j r-|tju rt|S |tju rt| S |tju rtjS |dkr-t }||v r-|| S |jr3tjS |	tj}|r?t|S |du rd|tju rN|d|  S |tju r[|d| d  S |jrd|d|  S |
ttr||sut|tjkdkr~| |t|S d S d S )Nr-   Fr   T)	is_numberr   r;   r0   NegativeOnedirichlet_etar5   _dilogtableis_zeroequalsrR   r   r   r   r   )clsr(   r)   
dilogtablezoner!   r!   r*   eval$  s4   





"zpolylog.evalr   c                 C   s(   | j \}}|dkrt|d || S t)Nr-   r   )r3   r=   r   )rA   rO   r(   r)   r!   r!   r*   rP   K  s   
zpolylog.fdiffc                 K   s   |t ||d S Nr   r   )rA   r(   r)   rW   r!   r!   r*   _eval_rewrite_as_lerchphiQ  s   z!polylog._eval_rewrite_as_lerchphic                 K   sz   | j \}}|dkrtd|  S |jr8|dkr8td}|d|  }t| D ]	}||| }q&t|||S t||S )Nr   r   u)	r3   r   r4   r   r<   r8   r   r9   r=   )rA   rB   r(   r)   rl   rC   _r!   r!   r*   r?   T  s   

zpolylog._eval_expand_funcc                 C   s   | j d }|jr
dS d S )Nr   Tr3   rc   )rA   r)   r!   r!   r*   _eval_is_zero`  s   
zpolylog._eval_is_zeror   c              	      s  ddl m} | j\}}||d}|tju r%|j|dt|jr!dndd}|j	rz	|
|\}	}
W n ttfy>   |  Y S w |
jrt||
 }||| |}||||| }|tju r`|S |}|g}td|D ]}||9 }||||   qjt| | S tt| ||||S )Nr   )Order-+)dirr-   )sympy.series.orderrp   r3   r9   r   NaNlimitr   is_negativerc   leadterm
ValueErrorNotImplementedErroris_positiver   _eval_nseriesremoveOr5   r<   r@   r   superr=   )rA   xr'   logxcdirrp   nur)   z0rm   r   newnortermr(   r$   	__class__r!   r*   r|   e  s0   


zpolylog._eval_nseriesr,   )r   )r[   r\   r]   r^   classmethodrh   rP   rk   r?   ro   r|   __classcell__r!   r!   r   r*   r=      s    E

&r=   c                       sh   e Zd ZdZedddZdddZddd	Zdd
dZdd Z	dd Z
dddZd fdd	Z  ZS )r0   a
  
    Hurwitz zeta function (or Riemann zeta function).

    Explanation
    ===========

    For $\operatorname{Re}(a) > 0$ and $\operatorname{Re}(s) > 1$, this
    function is defined as

    .. math:: \zeta(s, a) = \sum_{n=0}^\infty \frac{1}{(n + a)^s},

    where the standard choice of argument for $n + a$ is used. For fixed
    $a$ not a nonpositive integer the Hurwitz zeta function admits a
    meromorphic continuation to all of $\mathbb{C}$; it is an unbranched
    function with a simple pole at $s = 1$.

    The Hurwitz zeta function is a special case of the Lerch transcendent:

    .. math:: \zeta(s, a) = \Phi(1, s, a).

    This formula defines an analytic continuation for all possible values of
    $s$ and $a$ (also $\operatorname{Re}(a) < 0$), see the documentation of
    :class:`lerchphi` for a description of the branching behavior.

    If no value is passed for $a$ a default value of $a = 1$ is assumed,
    yielding the Riemann zeta function.

    Examples
    ========

    For $a = 1$ the Hurwitz zeta function reduces to the famous Riemann
    zeta function:

    .. math:: \zeta(s, 1) = \zeta(s) = \sum_{n=1}^\infty \frac{1}{n^s}.

    >>> from sympy import zeta
    >>> from sympy.abc import s
    >>> zeta(s, 1)
    zeta(s)
    >>> zeta(s)
    zeta(s)

    The Riemann zeta function can also be expressed using the Dirichlet eta
    function:

    >>> from sympy import dirichlet_eta
    >>> zeta(s).rewrite(dirichlet_eta)
    dirichlet_eta(s)/(1 - 2**(1 - s))

    The Riemann zeta function at nonnegative even and negative integer
    values is related to the Bernoulli numbers and polynomials:

    >>> zeta(2)
    pi**2/6
    >>> zeta(4)
    pi**4/90
    >>> zeta(0)
    -1/2
    >>> zeta(-1)
    -1/12
    >>> zeta(-4)
    0

    The specific formulae are:

    .. math:: \zeta(2n) = -\frac{(2\pi i)^{2n} B_{2n}}{2(2n)!}
    .. math:: \zeta(-n,a) = -\frac{B_{n+1}(a)}{n+1}

    No closed-form expressions are known at positive odd integers, but
    numerical evaluation is possible:

    >>> zeta(3).n()
    1.20205690315959

    The derivative of $\zeta(s, a)$ with respect to $a$ can be computed:

    >>> from sympy.abc import a
    >>> zeta(s, a).diff(a)
    -s*zeta(s + 1, a)

    However the derivative with respect to $s$ has no useful closed form
    expression:

    >>> zeta(s, a).diff(s)
    Derivative(zeta(s, a), s)

    The Hurwitz zeta function can be expressed in terms of the Lerch
    transcendent, :class:`~.lerchphi`:

    >>> from sympy import lerchphi
    >>> zeta(s, a).rewrite(lerchphi)
    lerchphi(1, s, a)

    See Also
    ========

    dirichlet_eta, lerchphi, polylog

    References
    ==========

    .. [1] https://dlmf.nist.gov/25.11
    .. [2] https://en.wikipedia.org/wiki/Hurwitz_zeta_function

    Nc                 C   s*  |t ju r	| |S |t ju s|t ju rt jS |t ju rt jS |t ju r&t jS |t ju r.t jS |j}|d u r8t j}|rH|jrHtd| ||d  S |t ju ri|re|j	rgdt
 t |  t| dt|  S d S d S |r||jr||jr|| |t|d | S |jr|jr|jdu s|jdu rt jS d S d S d S )Nr   r-   F)r   r;   ru   ComplexInfinityInfinityr5   r4   is_nonpositiver   is_evenr   r   r   r{   r   
is_integer)re   r(   r&   sintr!   r!   r*   rh     s4   






&z	zeta.evalr   c                 K   sV   |dkr |j r |jr |jr dt t |  t| dt|  S td| ||d  S )Nr   r-   )r   is_nonnegativer   r   r   r   r   rA   r(   r&   rW   r!   r!   r*   _eval_rewrite_as_bernoulli  s   &zzeta._eval_rewrite_as_bernoullic                 K   s.   |dkr| S | j d }t|ddd|    S )Nr   r   r-   )r3   ra   r   r!   r!   r*   _eval_rewrite_as_dirichlet_eta  s   
z#zeta._eval_rewrite_as_dirichlet_etac                 K   s   t d||S ri   rj   r   r!   r!   r*   rk     s   zzeta._eval_rewrite_as_lerchphic                 C   s"   | j d d j}|d ur| S d S )Nr   r   rn   )rA   
arg_is_oner!   r!   r*   _eval_is_finite  s   zzeta._eval_is_finitec                 K   sn   | j d }t| j dkr| j d ntj}|jr5|jr%t|t|d | S |jr5|jdu s2|jdu r5tj	S | S )Nr   r   F)
r3   lenr   r;   r   r{   r0   r   r   ru   )rA   rB   r(   r&   r!   r!   r*   r?   #  s   

zzeta._eval_expand_funcc                 C   sH   t | jdkr| j\}}n| jd \}}|dkr"| t|d | S t)Nr-   r,   r   )r   r3   r0   r   )rA   rO   r(   r&   r!   r!   r*   rP   .  s   z
zeta.fdiffr   c                    sz   t | jdkr| j\}}n	| jtjf \}}z	||\}}W n ty*   |  Y S w |jr3|js3ttt	| 
|||S )Nr-   )r   r3   r   r;   rx   rz   rw   r{   r~   r0   _eval_as_leading_term)rA   r   r   r   r(   r&   rE   er   r!   r*   r   8  s   zzeta._eval_as_leading_termrQ   r,   )Nr   )r[   r\   r]   r^   r   rh   r   r   rk   r   r?   rP   r   r   r!   r!   r   r*   r0     s    j




r0   c                   @   s>   e Zd ZdZedddZdddZejfdd	Z	d
d Z
dS )ra   a  
    Dirichlet eta function.

    Explanation
    ===========

    For $\operatorname{Re}(s) > 0$ and $0 < x \le 1$, this function is defined as

    .. math:: \eta(s, a) = \sum_{n=0}^\infty \frac{(-1)^n}{(n+a)^s}.

    It admits a unique analytic continuation to all of $\mathbb{C}$ for any
    fixed $a$ not a nonpositive integer. It is an entire, unbranched function.

    It can be expressed using the Hurwitz zeta function as

    .. math:: \eta(s, a) = \zeta(s,a) - 2^{1-s} \zeta\left(s, \frac{a+1}{2}\right)

    and using the generalized Genocchi function as

    .. math:: \eta(s, a) = \frac{G(1-s, a)}{2(s-1)}.

    In both cases the limiting value of $\log2 - \psi(a) + \psi\left(\frac{a+1}{2}\right)$
    is used when $s = 1$.

    Examples
    ========

    >>> from sympy import dirichlet_eta, zeta
    >>> from sympy.abc import s
    >>> dirichlet_eta(s).rewrite(zeta)
    Piecewise((log(2), Eq(s, 1)), ((1 - 2**(1 - s))*zeta(s), True))

    See Also
    ========

    zeta

    References
    ==========

    .. [1] https://en.wikipedia.org/wiki/Dirichlet_eta_function
    .. [2] Peter Luschny, "An introduction to the Bernoulli function",
           https://arxiv.org/abs/2009.06743

    Nc                 C   s   |t ju r	| |S |d u r*|dkrtdS t|}|ts(ddd|   | S d S |dkrDddlm} td|| ||d d  S t||}t||d d }|tsf|tsh|dd|  |  S d S d S )Nr   r-   r   digamma)r   r;   r   r0   rR   'sympy.functions.special.gamma_functionsr   )re   r(   r&   r)   r   z1z2r!   r!   r*   rh   x  s"   

 
zdirichlet_eta.evalr   c                 K   s   ddl m} |dkr"ttdt|dfddd|   t| dfS ttd|| ||d d  t|dft||dd|  t||d d   dfS )Nr   r   r   r-   T)r   r   r   r   r
   r0   rA   r(   r&   rW   r   r!   r!   r*   rX     s   0**z#dirichlet_eta._eval_rewrite_as_zetac                 K   sV   ddl m} ttd|| ||d d  t|dftd| |d|d   dfS )Nr   r   r-   r   T)r   r   r   r   r
   r   r   r!   r!   r*   _eval_rewrite_as_genocchi  s   *z'dirichlet_eta._eval_rewrite_as_genocchic                 C   s(   t dd | jD r| t|S d S )Nc                 s   s    | ]}|j V  qd S rQ   )r_   )r#   ir!   r!   r*   	<genexpr>  s    z,dirichlet_eta._eval_evalf.<locals>.<genexpr>)allr3   rewriter0   _eval_evalf)rA   precr!   r!   r*   r     s   zdirichlet_eta._eval_evalfrQ   r,   )r[   r\   r]   r^   r   rh   rX   r   r;   r   r   r!   r!   r!   r*   ra   I  s    .
ra   c                   @   s$   e Zd ZdZedd Zdd ZdS )
riemann_xia  
    Riemann Xi function.

    Examples
    ========

    The Riemann Xi function is closely related to the Riemann zeta function.
    The zeros of Riemann Xi function are precisely the non-trivial zeros
    of the zeta function.

    >>> from sympy import riemann_xi, zeta
    >>> from sympy.abc import s
    >>> riemann_xi(s).rewrite(zeta)
    s*(s - 1)*gamma(s/2)*zeta(s)/(2*pi**(s/2))

    References
    ==========

    .. [1] https://en.wikipedia.org/wiki/Riemann_Xi_function

    c                 C   sd   ddl m} t|}|tjtjfv rtjS t|ts0||d  ||d  | dt|d    S d S Nr   )gammar   r-   )	r   r   r0   r   r5   r;   Halfr>   r   )re   r(   r   r)   r!   r!   r*   rh     s   
,zriemann_xi.evalc                 K   s<   ddl m} ||d  ||d  t| dt|d    S r   )r   r   r0   r   )rA   r(   rW   r   r!   r!   r*   rX     s   0z riemann_xi._eval_rewrite_as_zetaN)r[   r\   r]   r^   r   rh   rX   r!   r!   r!   r*   r     s
    
	r   c                   @   s   e Zd ZdZedddZdS )	stieltjesa  
    Represents Stieltjes constants, $\gamma_{k}$ that occur in
    Laurent Series expansion of the Riemann zeta function.

    Examples
    ========

    >>> from sympy import stieltjes
    >>> from sympy.abc import n, m
    >>> stieltjes(n)
    stieltjes(n)

    The zero'th stieltjes constant:

    >>> stieltjes(0)
    EulerGamma
    >>> stieltjes(0, 1)
    EulerGamma

    For generalized stieltjes constants:

    >>> stieltjes(n, m)
    stieltjes(n, m)

    Constants are only defined for integers >= 0:

    >>> stieltjes(-1)
    zoo

    References
    ==========

    .. [1] https://en.wikipedia.org/wiki/Stieltjes_constants

    Nc                 C   s   |d urt |}|tju rtjS |jr|jrtjS |jr=|tju r$tjS |dk r+tjS |js1tjS |tju r=|dv r=tjS |j	rCtjS |j
rM|dv rMtjS |jdkrUtjS d S )Nr   ri   F)r   r   ru   r4   r   r   	is_Numberr5   
EulerGammais_extended_negativerc   r   )re   r'   r&   r!   r!   r*   rh     s,   


zstieltjes.evalrQ   )r[   r\   r]   r^   r   rh   r!   r!   r!   r*   r     s    $r   c                   C   s  t jtd d tdd d  tdtd d tt td  tdd  d td  d ttdd d d d  tdd  d td  d ttdd d d  dtd d td d ttdd d d  tdd d td d ttdd d d  ttt j td d	  t t t j td d	  dt td d
 tt j  tt d td  dt td d
 tt j  tt d td  dt d tdd  d tt td d  dtd  d  tt j  iS )Nr-      r/      r      
   rN   0         `   )r   r   r   r   r	   r   r   Catalanr!   r!   r!   r*   rb     s    8400..Hrb   N)3r^   sympy.core.addr   sympy.core.cacher   sympy.core.functionr   r   r   sympy.core.numbersr   r   r	   sympy.core.relationalr
   sympy.core.singletonr   sympy.core.symbolr   sympy.core.sympifyr   %sympy.functions.combinatorial.numbersr   r   r   r   $sympy.functions.elementary.complexesr   r   r   r   &sympy.functions.elementary.exponentialr   r   r   #sympy.functions.elementary.integersr   r   (sympy.functions.elementary.miscellaneousr   $sympy.functions.elementary.piecewiser   sympy.polys.polytoolsr   r   r=   r0   ra   r   r   rb   r!   r!   r!   r*   <module>   s6     G - @S'B