Martini CG - Combined angle-torsion potentials
authorngoga <n.goga@rug.nl>
Tue, 25 Feb 2014 16:27:29 +0000 (17:27 +0100)
committerGerrit Code Review <gerrit@gerrit.gromacs.org>
Thu, 6 Mar 2014 06:48:46 +0000 (07:48 +0100)
- Potential important for Martini
- Most Important diffence: bondfree.c
- Rest of files: definition of types
- Different MD groups want to have it
- Avoid the numerical instabilities
of having three beads in a row and
therefore an undefined dihedral
angle. This might not happen easily
at the atomistic level, but for coarse-grain
models this is a real pain.
- Paper at
http://md.chem.rug.nl/~monica/Bulacu_Marrink_2013.pdf

Adopted new tpx_version scheme.

Paper published.
Change-Id: I8ed470c464d843eb0218c87aeea3a44c3a1f64f8

17 files changed:
manual/forcefield.tex
manual/monster.bib
manual/plots/fig-02.eps [new file with mode: 0644]
manual/plots/fig-04.eps [new file with mode: 0755]
manual/topology.tex
src/gromacs/fileio/tpxio.c
src/gromacs/gmxana/gmx_mk_angndx.c
src/gromacs/gmxlib/bondfree.c
src/gromacs/gmxlib/ifunc.c
src/gromacs/gmxlib/restcbt.c [new file with mode: 0644]
src/gromacs/gmxlib/restcbt.h [new file with mode: 0644]
src/gromacs/gmxlib/topsort.c
src/gromacs/gmxlib/txtdump.c
src/gromacs/gmxpreprocess/convparm.c
src/gromacs/gmxpreprocess/topdirs.c
src/gromacs/legacyheaders/bondf.h
src/gromacs/legacyheaders/types/idef.h

index 7fe2cd02934f6000d21ee3d950dff9c0e76f8d0c..7b5cb6ce6842b39527f1ce6372f0ae10b225dc54 100644 (file)
@@ -566,6 +566,7 @@ In the \gromosv{96} force field a simplified function is used to represent angle
 vibrations:
 \beq
 V_a(\tijk) = \half k^{\theta}_{ijk}\left(\cos(\tijk) - \cos(\tijk^0)\right)^2
+\label{eq:G96angle}
 \eeq
 where 
 \beq
@@ -584,6 +585,56 @@ and the differences at 300 K are on the order of 0.1 to 0.2\%.
 {\bf Note} that in the input in topology files, angles are given in degrees and
 force constants in kJ/mol.
 
+\subsection{Restricted bending potential}
+\label{subsec:ReB}
+The restricted bending (ReB) potential~\cite{MonicaGoga2013} prevents the bending angle $\theta$
+from reaching the $180^{\circ}$ value. In this way, the numerical instabilities
+due to the calculation of the torsion angle and potential are eliminated when
+performing coarse-grained molecular dynamics simulations.
+
+To systematically hinder the bending angles from reaching the $180^{\circ}$ value,
+the bending potential \ref{eq:G96angle} is divided by a $\sin^2\theta$ factor:
+%
+\beq
+V_{\rm ReB}(\theta_i) = \frac{1}{2} k_{\theta} \frac{(\cos\theta_i - \cos\theta_0)^2}{\sin^2\theta_i}.
+\label{eq:ReB}
+\eeq
+%
+Figure ~\figref{ReB} shows the comparison between the ReB potential, \ref{eq:ReB},
+and the standard one \ref{eq:G96angle}.
+%
+\begin{figure}
+\centerline{\includegraphics[width=10cm]{plots/fig-02}}
+\vspace*{8pt}
+\caption{Bending angle potentials: cosine harmonic (solid black line), angle harmonic
+(dashed black line) and restricted bending (red) with the same bending constant
+$k_{\theta}=85$ kJ mol$^{-1}$ and equilibrium angle $\theta_0=130^{\circ}$.
+The orange line represents the sum of a cosine harmonic ($k =50$ kJ mol$^{-1}$)
+with a restricted bending ($k =25$ kJ mol$^{-1}$) potential, both with $\theta_0=130^{\circ}$.}
+\label{fig:ReB}
+\end{figure}
+%
+The wall of the ReB potential is very repulsive in the region close to $180^{\circ}$ and,
+as a result, the bending angles are kept within a safe interval, far from instabilities.
+The power $2$ of $\sin\theta_i$ in the denominator has been chosen to guarantee this behavior
+and allows an elegant differentiation:
+%
+\beq
+F_{\rm ReB}(\theta_i) = \frac{2k_{\theta}}{\sin^4\theta_i}(\cos\theta_i - \cos\theta_0) (1 - \cos\theta_i\cos\theta_0) \frac{\partial \cos\theta_i}{\partial \vec r_{k}}.
+\label{eq:diff_ReB}
+\eeq
+%
+Due to its construction, the restricted bending potential cannot be used for equilibrium
+$\theta_0$ values too close to $0^{\circ}$ or $180^{\circ}$ (from experience, at least $10^{\circ}$
+difference is recommended). It is very important that, in the starting configuration,
+all the bending angles have to be in the safe interval to avoid initial instabilities.
+This bending potential can be used in combination with any form of torsion potential.
+It will always prevent three consecutive particles from becoming collinear and,
+as a result, any torsion potential will remain free of singularities.
+It can be also added to a standard bending potential to affect the angle around $180^{\circ}$,
+but to keep its original form around the minimum (see the orange curve in \figref{ReB}).
+
+
 \subsection{Urey-Bradley potential}
 \label{subsec:Urey-Bradley}
 The \swapindex{Urey-Bradley bond-angle}{vibration} between a triplet
@@ -811,6 +862,96 @@ to compute Fourier dihedrals (see above), because this is more efficient.\\
 \noindent{\bf Note:} Mind the conversion from {\emph kcal mol$^{-1}$} for 
 literature OPLS parameters to {\bf kJ mol$^{-1}$} in {\gromacs}.\\
 
+\subsubsection{Proper dihedrals: Restricted torsion potential}
+\label{subsec:ReT}
+In a manner very similar to the restricted bending potential (see \ref{subsec:ReB}),
+a restricted torsion/dihedral potential is introduced:
+%
+\beq
+V_{\rm ReT}(\phi_i) = \frac{1}{2} k_{\phi} \frac{(\cos\phi_i - \cos\phi_0)^2}{\sin^2\phi_i}
+\label{eq:ReT}
+\eeq
+%
+with the advantages of being a function of $\cos\phi$ (no problems taking the derivative of $\sin\phi$)
+and of keeping the torsion angle at only one minimum value. In this case, the factor $\sin^2\phi$ does
+not allow the dihedral angle to move from the [$-180^{\circ}$:0] to [0:$180^{\circ}$] interval, i.e. it cannot have maxima both at $-\phi_0$ and $+\phi_0$ maxima, but only one of them.
+For this reason, all the dihedral angles of the starting configuration should have their values in the
+desired angles interval and the the equilibrium $\phi_0$ value should not be too close to the interval limits
+(as for the restricted bending potential, described in \ref{subsec:ReB}, at least $10^{\circ}$ difference is recommended).
+
+\subsubsection{Proper dihedrals: Combined bending-torsion potential}
+\label{subsec:CBT}
+When the four particles forming the dihedral angle become collinear (this situation will never happen in
+atomistic simulations, but it can occur in coarse-grained simulations) the calculation of the
+torsion angle and potential leads to numerical instabilities.
+One way to avoid this is to use the restricted bending potential (see \ref{subsec:ReB})
+that prevents the dihedral
+from reaching the $180^{\circ}$ value.
+
+Another way is to disregard any effects of the dihedral becoming ill-defined,
+keeping the dihedral force and potential calculation continuous in entire angle range
+by coupling the torsion potential (in a cosine form) with the bending potentials of the
+adjacent bending angles in a unique expression:
+%
+\beq
+V_{\rm CBT}(\theta_{i-1}, \theta_i, \phi_i) = k_{\phi} \sin^3\theta_{i-1} \sin^3\theta_{i} \sum_{n=0}^4 { a_n \cos^n\phi_i}.
+\label{eq:CBT}
+\eeq
+%
+This combined bending-torsion (CBT) potential has been proposed by~\cite{BulacuGiessen2005}
+for polymer melt simulations and is extensively described in~\cite{MonicaGoga2013}.
+
+This potential has two main advantages:
+\begin{itemize}
+\item
+it does not only depend on the dihedral angle $\phi_i$ (between the $i-2$, $i-1$, $i$ and $i+1$ beads)
+but also on the bending angles $\theta_{i-1}$ and $\theta_i$ defined from three adjacent beads
+($i-2$, $i-1$ and $i$, and $i-1$, $i$ and $i+1$, respectively).
+The two $\sin^3\theta$ pre-factors, tentatively suggested by~\cite{ScottScheragator1966} and theoretically
+discussed by~\cite{PaulingBond}, cancel the torsion potential and force when either of the two bending angles
+approaches the value of $180^\circ$.
+\item
+its dependence on $\phi_i$ is expressed through a polynomial in $\cos\phi_i$ that avoids the singularities in
+$\phi=0^\circ$ or $180^\circ$ in calculating the torsional force.
+\end{itemize}
+
+These two  properties make the CBT potential well-behaved for MD simulations with weak constraints
+on the bending angles or even for steered / non-equilibrium MD in which the bending and torsion angles suffer major
+modifications.
+When using the CBT potential, the bending potentials for the adjacent $\theta_{i-1}$ and $\theta_i$ may have any form.
+It is also possible to leave out the two angle bending terms ($\theta_{i-1}$ and $\theta_{i}$) completely.
+\figref{CBT} illustrates the difference between a torsion potential with and without the $\sin^{3}\theta$ factors
+(blue and gray curves, respectively).
+%
+\begin{figure}
+\centerline{\includegraphics[width=10cm]{plots/fig-04}}
+\caption{Blue: surface plot of the combined bending-torsion potential
+(\ref{eq:CBT} with $k = 10$ kJ mol$^{-1}$, $a_0=2.41$, $a_1=-2.95$, $a_2=0.36$, $a_3=1.33$)
+when, for simplicity, the bending angles behave the same ($\theta_1=\theta_2=\theta$).
+Gray: the same torsion potential without the $\sin^{3}\theta$ terms (Ryckaert-Bellemans type).
+$\phi$ is the dihedral angle.}
+\label{fig:CBT}
+\end{figure}
+%
+Additionally, the derivative of $V_{CBT}$ with respect to the Cartesian variables is straightforward:
+%
+\begin{equation}
+\frac{\partial V_{\rm CBT}(\theta_{i-1},\theta_i,\phi_i)} {\partial \vec r_{l}} = \frac{\partial V_{\rm CBT}}{\partial \theta_{i-1}} \frac{\partial \theta_{i-1}}{\partial \vec r_{l}} +
+                                                                                  \frac{\partial V_{\rm CBT}}{\partial \theta_{i  }} \frac{\partial \theta_{i  }}{\partial \vec r_{l}} +
+                                                                                  \frac{\partial V_{\rm CBT}}{\partial \phi_{i    }} \frac{\partial \phi_{i    }}{\partial \vec r_{l}}
+\label{eq:force_cbt}
+\end{equation}
+%
+The CBT is based on a cosine form without multiplicity, so it can only be symmetrical around $0^{\circ}$.
+To obtain an asymmetrical dihedral angle distribution (e.g. only one maximum in [$-180^{\circ}$:$180^{\circ}$] interval),
+a standard torsion potential such as harmonic angle  or  periodic cosine potentials should be used instead of a CBT potential.
+However, these two forms have the inconveniences of the force derivation ($1/\sin\phi$) and of the alignment of beads
+($\theta_i$ or $\theta_{i-1} = 0^{\circ}, 180^{\circ}$).
+Coupling such non-$\cos\phi$ potentials with $\sin^3\theta$ factors does not improve simulation stability since there are
+cases in which $\theta$ and $\phi$ are simultaneously $180^{\circ}$. The integration at this step would be possible
+(due to the cancelling of the torsion potential) but the next step would be singular
+($\theta$ is not $180^{\circ}$ and $\phi$ is very close to $180^{\circ}$).
+
 %\ifthenelse{\equal{\gmxlite}{1}}{}{
 \subsection{Tabulated bonded interaction functions\index{tabulated bonded interaction function}}
 \label{subsec:tabulatedinteraction}
@@ -2618,10 +2759,10 @@ in reciprocal space is determined by {\tt lj-pme-comb-rule}. If the
 current force field uses Lorentz-Berthelot combination rules, it is
 possible to set {\tt lj-pme-comb-rule = geometric} in order to gain a
 significant increase in performance for a small loss in accuracy. The
-details of this approximation can be found in the section above. The
-implementation of LJ-PME is supported with both cut-off schemes, but
-not free energy calculations. These features will be added in upcoming
-releases.
+details of this approximation can be found in the section above.  The
+implementation of LJ-PME is currently unsupported together with the
+Verlet cut-off scheme and/or free energy calculations. These features
+will be added in upcoming releases
 %} % Brace matches ifthenelse test for gmxlite
 
 \section{Force field\index{force field}}
index 873130aa830acf497d63d39e5b7d2f60a95a51ef..ab67fd6ad5235a7fe22290b202c568d42e014188 100644 (file)
@@ -8604,6 +8604,69 @@ doi = {10.1063/1.463137}
   year      = 2011
 }
 
+@Book{PaulingBond,
+  author =  {L. Pauling},
+  title =   {The nature of chemical bond},
+  publisher =  {Cornell University Press},
+  year =  1960,
+  address = {Ithaca and New York}
+}
+
+@Article{ScottScheragator1966,
+  author = {Scott,R. A. and  Scheraga,H.A.},
+  title =   {Conformational analysis of macromolecules},
+  journal = {J. Chem. Phys.},
+  volume = {44},
+  pages = {3054--3069},
+  year = {1966}
+}
+
+@Article{BulacuGiessen2005,
+  author = {Bulacu, Monica and van der Giessen, Erik},
+  title = {Effect of bending and torsion rigidity on self-diffusion in polymer melts: A molecular-dynamics study},
+  journal = {JCTC},
+  volume = {9},
+  number = {8},
+  pages = {3282--3292},
+  year = {2013}
+}
+
+
+@Article{MonicaGoga2013,
+  author =  {Bulacu, M. and Goga, N. and Zhao, W. and Rossi, G. and  Monticelli, L. and  Periole, X. and Tieleman, D.P. and Marrink, S.J. },
+  title = {Improved angle potentials for coarse-grained molecular dynamics simulations},
+  journal = {J. Chem. Phys.},
+  volume = {123},
+  number = {11},
+  year = {2005}
+}
+
+@Article{BulacuGiessen2009,
+  author = {Bulacu, Monica and van der Giessen, Erik},
+  title = {Forced reptation revealed by chain pull-out simulations},
+  journal = {J. Chem. Phys.},
+  volume = {131},
+  number = {6},
+  year = {2009}
+}
+
+@Article{BulacuGiessen2011,
+  author = {Bulacu, Monica and van der Giessen, Erik},
+  title = {Effects of pulling velocity and temperature revealed in polymer pull-out simulations},
+  journal = {EPL},
+  volume = {93},
+  number = {6},
+  year = {2011}
+}
+
+@Article{Duin2001,
+  author = {van Duin, A.C.T. and Dasgupta, S. and Lorant, F. and Goddard, W.A.},
+  journal = {J. Phys. Chem. A},
+  volume = {105},
+  pages = {9396--9409},
+  year = {2001}
+}
+
 @Article{Basconi2013,
 title = {Effects of Temperature Control Algorithms on Transport Properties and Kinetics in Molecular Dynamics Simulations},
 author = {Joseph E. Basconi and Michael R. Shirts},
diff --git a/manual/plots/fig-02.eps b/manual/plots/fig-02.eps
new file mode 100644 (file)
index 0000000..f33207e
--- /dev/null
@@ -0,0 +1,2831 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: GIMP PostScript file plugin V 1.17 by Peter Kirchgessner
+%%Title: fig-02.eps
+%%CreationDate: Tue Dec 24 16:32:42 2013
+%%DocumentData: Clean7Bit
+%%LanguageLevel: 2
+%%Pages: 1
+%%BoundingBox: 14 14 715 535
+%%EndComments
+%%BeginProlog
+% Use own dictionary to avoid conflicts
+10 dict begin
+%%EndProlog
+%%Page: 1 1
+% Translate for offset
+14.173228346456694 14.173228346456694 translate
+% Translate to begin of first scanline
+0 520.55578736111227 translate
+700.55433070866138 -520.55578736111227 scale
+% Image geometry
+973 723 8
+% Transformation matrix
+[ 973 0 0 723 0 0 ]
+% Strings to hold RGB-samples per scanline
+/rstr 973 string def
+/gstr 973 string def
+/bstr 973 string def
+{currentfile /ASCII85Decode filter /RunLengthDecode filter rstr readstring pop}
+{currentfile /ASCII85Decode filter /RunLengthDecode filter gstr readstring pop}
+{currentfile /ASCII85Decode filter /RunLengthDecode filter bstr readstring pop}
+true 3
+%%BeginData:       154637 ASCII Bytes
+colorimage
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+[/U++qZ$KoJcC<$JcC<$JcC<$NW4M~>
+[/U++qZ$KoJcC<$JcC<$JcC<$NW4M~>
+[/U++qZ$KoJcC<$JcC<$JcC<$NW4M~>
+[K$7,qu?Zrs8W*!JcC<$JcC<$JcC<$NrOV~>
+[K$7,qu?Zrs8W*!JcC<$JcC<$JcC<$NrOV~>
+[K$7,qu?Zrs8W*!JcC<$JcC<$JcC<$NrOV~>
+[f?=,r;ZcsrVultJcC<$JcC<$JcC<$O8j_~>
+[f?=,r;ZcsrVultJcC<$JcC<$JcC<$O8j_~>
+[f?=,r;ZcsrVultJcC<$JcC<$JcC<$O8j_~>
+\,QO1rr<&ss8N)ts8N(Ms+13$s+13$s+132s*t~>
+\,QO1rr<&ss8N)ts8N(Ms+13$s+13$s+132s*t~>
+\,QO1rr<&ss8N)ts8N(Ms+13$s+13$s+132s*t~>
+\Gl[3s8N'!rVultqu?ZrJcC<$JcC<$JcC<$OT0h~>
+\Gl[3s8N'!rVultqu?ZrJcC<$JcC<$JcC<$OT0h~>
+\Gl[3s8N'!rVultqu?ZrJcC<$JcC<$JcC<$OT0h~>
+\Gl[3s8N'!rVultqu?ZrJcC<$JcC<$JcC<$OT0h~>
+\Gl[3s8N'!rVultqu?ZrJcC<$JcC<$JcC<$OT0h~>
+\Gl[3s8N'!rVultqu?ZrJcC<$JcC<$JcC<$OT0h~>
+\c2X0rr;uurVultqu?ZrJcC<$JcC<$JcC<$OT0h~>
+\c2X0rr;uurVultqu?ZrJcC<$JcC<$JcC<$OT0h~>
+\c2X0rr;uurVultqu?ZrJcC<$JcC<$JcC<$OT0h~>
+])Ma1rVultrVultqu?ZrWrE&!JcC<$JcC<$JcC<$kl6/~>
+])Ma1rVultrVultqu?ZrWrE&!JcC<$JcC<$JcC<$kl6/~>
+])Ma1rVultrVultqu?ZrWrE&!JcC<$JcC<$JcC<$kl6/~>
+]Dhj2r;ZcsrVultqu?Zrq>Z!GJH16$JH16$JH2hQli2J~>
+]Dhj2r;ZcsrVultqu?Zrq>Z!GJH16$JH16$JH2hQli2J~>
+]Dhj2r;ZcsrVultqu?Zrq>Z!GJH16$JH16$JH2hQli2J~>
+]Dhj2r;ZcsrVultqu?Zrq>UEphu<ZVhZ!QUrVucqmJm%`hZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QU
+hu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+li2J~>
+]Dhj2r;ZcsrVultqu?Zrq>UEphu<ZVl2U[Xqu6WrrVucqp&Fpirr;iqhZ!QUhu<ZVhu<ZVhZ!QU
+hu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVq#C6lm/I%c
+lMpdYqu6WrhZ!QUhu<ZVli2J~>
+]Dhj2r;ZcsrVultqu?Zrq>UEphu<ZVl2UY]qu6WrrVucqp&Fpirr;iqhZ!QUhu<ZVhu<ZVhZ!QU
+hu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVq#C6lm/I%c
+lMpb^qu6WrhZ!QUhu<ZVli2J~>
+]`7[*s8W*!qu?Zrq>UEphu<ZVhZ!QUrVucqmJm%`hZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+hZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVli2J~>
+]`7[*s8W*!qu?Zrq>UEphu<ZVl2U[Xqu6WrrVucqp&Fpirr;iqhZ!QUhu<ZVhu<ZVhZ!QUhu<ZV
+hZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVq#C6lm/I%clMpdY
+qu6WrhZ!QUhu<ZVli2J~>
+]`7[*s8W*!qu?Zrq>UEphu<ZVl2UY]qu6WrrVucqp&Fpirr;iqhZ!QUhu<ZVhu<ZVhZ!QUhu<ZV
+hZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVq#C6lm/I%clMpb^
+qu6WrhZ!QUhu<ZVli2J~>
+]`7[*s8W*!qu?Zrq>UEphu<ZVhZ!QUr;Z]qmJm%`hZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+hZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVli2J~>
+]`7[*s8W*!qu?Zrq>UEphu<ZVl2U[Xqu6Wrr;Z]qo`+jirr;iqhZ!QUhu<ZVhu<ZVhZ!QUhu<ZV
+hZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVq#C9mli-qblMpdY
+qu6WrhZ!QUhu<ZVli2J~>
+]`7[*s8W*!qu?Zrq>UEphu<ZVl2UY]qu6Wrr;Z]qo`+jirr;iqhZ!QUhu<ZVhu<ZVhZ!QUhu<ZV
+hZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVq#C9mli-qblMpb^
+qu6WrhZ!QUhu<ZVli2J~>
+[K$7,r;Q`squ6Wrq#:<ohu<ZVhZ!QUr;ZZpmJm(ahZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+hZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVli2J~>
+[K$7,r;Q`squ6Wrq#:<ohu<ZVkl:RWr;Q`sr;ZZpp&Fpirr;lrhZ!QUhu<ZVhu<ZVhZ!QUhu<ZV
+hZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVq#C9mli-qblMpdY
+qu6WrhZ!QUhu<ZVli2J~>
+[K$7,r;Q`squ6Wrq#:<ohu<ZVkl:P\r;Q`sr;ZZpp&Fpirr;lrhZ!QUhu<ZVhu<ZVhZ!QUhu<ZV
+hZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVq#C9mli-qblMpb^
+qu6WrhZ!QUhu<ZVli2J~>
+[K$7,r;ZcsrVultq#:<ohu<ZVhZ!QUr;ZZpmJm(ahZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+hZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVli2J~>
+[K$7,r;ZcsrVultq#:<ohu<ZVkl:RWr;Q`sr;ZZpp&Fpirr;lrhZ!QUhu<ZVhu<ZVhZ!QUhu<ZV
+hZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVq#C9mli-qblMpdY
+qu6WrhZ!QUhu<ZVli2J~>
+[K$7,r;ZcsrVultq#:<ohu<ZVkl:P\r;Q`sr;ZZpp&Fpirr;lrhZ!QUhu<ZVhu<ZVhZ!QUhu<ZV
+hZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVq#C9mli-qblMpb^
+qu6WrhZ!QUhu<ZVli2J~>
+[K$7,qu?Zrs8W*!p\t3nhu<ZVhZ!QUqu?TpmJm(ahZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+hZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVli2J~>
+[K$7,qu?Zrs8W*!p\t3nhu<ZVkl:RWr;Q`squ?Tpp&Fpirr;lrhZ!QUhu<ZVhu<ZVhZ!QUhu<ZV
+hZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVq#C9mli-qblMpdY
+qu6WrhZ!QUhu<ZVli2J~>
+[K$7,qu?Zrs8W*!p\t3nhu<ZVkl:P\r;Q`squ?Tpp&Fpirr;lrhZ!QUhu<ZVhu<ZVhZ!QUhu<ZV
+hZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVq#C9mli-qblMpb^
+qu6WrhZ!QUhu<ZVli2J~>
+[K$7,qZ$KopAY*mhu<ZVhZ!QUqu?QomJm(ahu<ZVhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QU
+hu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVli2J~>
+[K$7,qZ$KopAY*mhu<ZVkPtLWr;Q`squ?Qop&FsjrVucqhu<ZVhu<ZVhu<ZVhZ!QUhu<ZVhZ!QU
+hu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVq#C9mli-qblMpgZqYpNq
+hZ!QUhu<ZVli2J~>
+[K$7,qZ$KopAY*mhu<ZVkPtJ\r;Q`squ?Qop&FsjrVucqhu<ZVhu<ZVhu<ZVhZ!QUhu<ZVhZ!QU
+hu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVq#C9mli-qblMpe_qYpNq
+hZ!QUhu<ZVli2J~>
+Sc8Zihu<ZVhZ!QUqu?QomJm(ahu<ZVhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZV
+hZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVli2J~>
+Sc8Zihu<ZVkPtIVrVlitqu?Qop&Fpirr;lrhu<ZVhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QU
+hu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVq#C9mli-qblMpgZqYpNqhZ!QUhu<ZV
+li2J~>
+Sc8Zihu<ZVkPtG[rVlitqu?Qop&Fpirr;lrhu<ZVhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QU
+hu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVq#C9mli-qblMpe_qYpNqhZ!QUhu<ZV
+li2J~>
+Sc8Zi]Dhj2qZ$Hnmf31bhu<ZV]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhj2
+li2J~>
+Sc8Zi`;fb3rVlitqZ$HnpAb$jrr;lrhu<ZV]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2
+q>^?me,TBCqYpNq]Dhj2li2J~>
+Sc8Zi`;f`8rVlitqZ$HnpAb$jrr;lrhu<ZV]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2
+q>^?me,T@HqYpNq]Dhj2li2J~>
+Sc8Zi]Dhj2qZ$HnmJm(ai;WcW]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhj2
+li2J~>
+Sc8Zi_uK\3rVlitqZ$Hnp&FsjrVucqi;WcW]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2
+q>^?me,TBCqYpNq]Dhj2li2J~>
+Sc8Zi_uKZ8rVlitqZ$Hnp&FsjrVucqi;WcW]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2
+q>^?me,T@HqYpNq]Dhj2li2J~>
+Sc8Zi]Dhj2qZ$HnmJm(ai;WcW]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhj2
+li2J~>
+Sc8Zi_uKY2rr2ruqZ$Hnp&Fpirr;lri;WcW]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2
+q>^?me,TBCqYpNq]Dhj2li2J~>
+Sc8Zi_uKW7rr2ruqZ$Hnp&Fpirr;lri;WcW]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2
+q>^?me,T@HqYpNq]Dhj2li2J~>
+Sc8Zi]Dhj2q>^?mmf31bi;WcW]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhj2
+li2J~>
+Sc8Zi_uKY2rr2ruq>^?mpAb$jrr;lri;WcW]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2
+q>^?me,TBCqYpNq]Dhj2li2J~>
+Sc8Zi_uKW7rr2ruq>^?mpAb$jrr;lri;WcW]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2
+q>^?me,T@HqYpNq]Dhj2li2J~>
+Sc8Zi]Dhj2q>^?mmJm(aiVrlX]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhj2
+li2J~>
+Sc8Zi_Z0S2rr2ruq>^?mpAb$jrVucqiVrlX]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2
+q>^?me,TBCqYpNq]Dhj2li2J~>
+Sc8Zi_Z0Q7rr2ruq>^?mpAb$jrVucqiVrlX]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2
+q>^?me,T@HqYpNq]Dhj2li2J~>
+Sc8Zi]Dhj2q>^?mmJm(aiVrlX]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhj2
+li2J~>
+Sc8Zi_Z0P1s8N'!q>^?mp&FsjrVucqiVrlX]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2
+q>^Bne,T?BqYpNq]Dhj2li2J~>
+Sc8Zi_Z0N6s8N'!q>^?mp&FsjrVucqiVrlX]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2
+q>^Bne,T=GqYpNq]Dhj2li2J~>
+Sc8Zi]Dhj2q#C6lmf31biVrlX]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhj2
+li2J~>
+Sc8Zi_Z0P1s8N'!q#C6lpAb$jrr;lriVrlX]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2
+q>^Bne,T?BqYpNq]Dhj2li2J~>
+Sc8Zi_Z0N6s8N'!q#C6lpAb$jrr;lriVrlX]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2
+q>^Bne,T=GqYpNq]Dhj2li2J~>
+Sc8Zi]Dhj2q#C6lmJm(air8uY]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhj2
+li2J~>
+Sc8Zi_>jJ1s8N'!q#C6lpAb$jrVucqir8uY]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2
+q>^Bne,T?BqYpNq]Dhj2li2J~>
+Sc8Zi_>jH6s8N'!q#C6lpAb$jrVucqir8uY]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2
+q>^Bne,T=GqYpNq]Dhj2li2J~>
+Sc8Zi]Dhj2q#C6lmJm(air8uY]`.s3]Dhj2]Dhj2]Dhj2]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhj2
+li2J~>
+Sc8Zi_>jG0!WN/ps82ljs82lqs82lVrr<&3rr<&2rr<&2rr<&2rr<&2rr<&2rr<&3rr<&2rr<&p
+s8;rHs88_irr<&2rr<&bs*t~>
+Sc8Zi_>jE5!WN/ps82ljs82lqs82lVrr<&3rr<&2rr<&2rr<&2rr<&2rr<&2rr<&3rr<&2rr<&p
+s8;rHs82lnrr<&2rr<&bs*t~>
+Sc8ZiYlFV$mf34cJcC<$JcC<$JcD;@!!)?bJ,~>
+Sc8Zi_>jG0p&FpipAb'krVufrJcC<$JcC<$UAt/le,T?BZi:"*li2J~>
+Sc8Zi_>jE5p&FpipAb'krVufrJcC<$JcC<$UAt/le,T=GZi:"*li2J~>
+Sc8ZiYlFV$JcC<$JcC<$JcCK)!!)?bJ,~>
+Sc8Zi_#OA0p&FpipAb$jJcC<$JcC<$S,`Eee,T?BZi:"*li2J~>
+Sc8Zi_#O?5p&FpipAb$jJcC<$JcC<$S,`Eee,T=GZi:"*li2J~>
+Sc8ZiYQ+P$JcC<$JcC<$JcCK)!!)?bJ,~>
+Sc8Zi_#O>/p&FsjpAb$jJcC<$JcC<$SH&Kee,TBCZMsn)li2J~>
+Sc8Zi_#O<4p&FsjpAb$jJcC<$JcC<$SH&Kee,T@HZMsn)li2J~>
+Sc8ZiYQ+M#JcC<$JcC<$JcCN*!!)?bJ,~>
+Sc8Zi_#O>/p&Fpip](-kJcC<$JcC<$SH&Kee,TBCZMsn)li2J~>
+Sc8Zi_#O<4p&Fpip](-kJcC<$JcC<$SH&Kee,T@HZMsn)li2J~>
+Sc8ZiYQ+M#JcC<$JcC<$JcCN*!!)?bJ,~>
+Sc8Zi^]48/p&FpipAb'kJcC<$JcC<$SH&Kee,TBCZMsn)li2J~>
+Sc8Zi^]464p&FpipAb'kJcC<$JcC<$SH&Kee,T@HZMsn)li2J~>
+Sc8ZiY5eG#JcC<$JcC<$JcCN*!!)?bJ,~>
+Sc8Zi^]45.p&FsjpAb$jJcC<$JcC<$ScATfe,TBCZMsn)li2J~>
+Sc8Zi^]433p&FsjpAb$jJcC<$JcC<$ScATfe,T@HZMsn)li2J~>
+Sc8ZiY5eD"JcC<$JcC<$JcCQ+!!)?bJ,~>
+Sc8Zi^]45.p&Fpip](-kJcC<$JcC<$ScATfe,TBCZMsn)li2J~>
+Sc8Zi^]433p&Fpip](-kJcC<$JcC<$ScATfe,T@HZMsn)li2J~>
+Sc8ZiY5eD"JcC<$JcC<$JcCQ+!!)?bJ,~>
+Sc8Zi^An/.p&FpipAb'kJcC<$JcC<$ScAWgdf99BZMsn)li2J~>
+Sc8Zi^An-3p&FpipAb'kJcC<$JcC<$ScAWgdf97GZMsn)li2J~>
+Sc8ZiXoJ;!JcC<$JcC<$JcCT,!!)?bJ,~>
+Sc8Zi^An,-p&Fpip](-kJcC<$JcC<$T)\`hdf99BZMsn)li2J~>
+Sc8Zi^An*2p&Fpip](-kJcC<$JcC<$T)\`hdf97GZMsn)li2J~>
+Sc8ZiXoJ;!JcC<$JcC<$JcCT,!!)?bJ,~>
+Sc8Zi^An,-p&Fpip](-kJcC<$JcC<$T)\`he,T?BZMsn)li2J~>
+Sc8Zi^An*2p&Fpip](-kJcC<$JcC<$T)\`he,T=GZMsn)li2J~>
+Sc8ZiXoJ;!l2L_`JcC<$JcC<$JcDJE!!)?bJ,~>
+Sc8Zi^&S&-p&Fpip](-kq#:<oJcC<$JcC<$W;lere,T?BZMsn)li2J~>
+Sc8Zi^&S$2p&Fpip](-kq#:<oJcC<$JcC<$W;lere,T=GZMsn)li2J~>
+Sc8ZiXT/1umJm+bJcC<$JcC<$JcDJE!!)?bJ,~>
+Sc8Zi^&S#,p&Fpip](0lqu?TpJcC<$JcC<$W;lere,T?BZMsn)li2J~>
+Sc8Zi^&S!1p&Fpip](0lqu?TpJcC<$JcC<$W;lere,T=GZMsn)li2J~>
+Sc8ZiXT/1umJm+bJcC<$JcC<$JcDJE!!)?bJ,~>
+Sc8Zi^&S#,p&Fpip](-kr;Z]qJcC<$JcC<$W;lere,T?BZMsn)li2J~>
+Sc8Zi^&S!1p&Fpip](-kr;Z]qJcC<$JcC<$W;lere,T=GZMsn)li2J~>
+Sc8ZiXT/1umJm(aJcC<$JcC<$JcDMF!!)?bJ,~>
+Sc8Zi^&S#,p&Fpip](-kr;ZZpJcC<$JcC<$WrMtse,T?BZMsn)li2J~>
+Sc8Zi^&S!1p&Fpip](-kr;ZZpJcC<$JcC<$WrMtse,T=GZMsn)li2J~>
+Sc8ZiX8i(tmf31bJcC<$JcC<$JcDMF!!)?bJ,~>
+Sc8Zi]`7o+p&Fpiq#C6lr;ZZpJcC<$JcC<$WrMtse,T?BZMsn)li2J~>
+Sc8Zi]`7m0p&Fpiq#C6lr;ZZpJcC<$JcC<$WrMtse,T=GZMsn)li2J~>
+Sc8ZiX8i(tmJm+bJcC<$JcC<$JcDMF!!)?bJ,~>
+Sc8Zi]`7o+p&Fpip](0lqu?TpJcC<$JcC<$WrMtse,TBCZ2Xe(li2J~>
+Sc8Zi]`7m0p&Fpip](0lqu?TpJcC<$JcC<$WrMtse,T@HZ2Xe(li2J~>
+Sc8ZiWrN"tmJm(aJcC<$JcC<$JcDPG!!)?bJ,~>
+Sc8Zi]Dqi+o`+jip](-kr;ZZpJcC<$JcC<$X8i(te,TBCZ2Xe(li2J~>
+Sc8Zi]Dqg0o`+jip](-kr;ZZpJcC<$JcC<$X8i(te,T@HZ2Xe(li2J~>
+Sc8ZiWrMtsmf31bJcC<$JcC<$JcDPG!!)?bJ,~>
+Sc8Zi]Dqf*p&Fpiq#C6lr;ZZpJcC<$JcC<$X8i(te,TBCZ2Xe(li2J~>
+Sc8Zi]Dqd/p&Fpiq#C6lr;ZZpJcC<$JcC<$X8i(te,T@HZ2Xe(li2J~>
+Sc8ZiWrMtsmJm+bJcC<$JcC<$JcDPG!!)?bJ,~>
+Sc8Zi]Dqf*p&Fpip](0lqu?TpJcC<$JcC<$X8i+udf99BZ2Xe(li2J~>
+Sc8Zi]Dqd/p&Fpip](0lqu?TpJcC<$JcC<$X8i+udf97GZ2Xe(li2J~>
+ScAHbZ2ab&mJm(aJcC<$JcC<$JcDkPp]0X[J,~>
+ScAHb_Z0S2o`+jip](0lqu?QoJcC<$JcC<$XT/5!df99B\c;F)li2J~>
+ScAHb_Z0Q7o`+jip](0lqu?QoJcC<$JcC<$XT/5!df97G\c;F)li2J~>
+Sc8ZiWW2krmf31bJcC<$JcC<$JcDSH!!)?bJ,~>
+Sc8Zi])V])p&Fpiq#C6lr;ZZpJcC<$JcC<$XT/5!df99BZ2Xe(li2J~>
+Sc8Zi])V[.p&Fpiq#C6lr;ZZpJcC<$JcC<$XT/5!df97GZ2Xe(li2J~>
+Sc8ZiWW2krmJm+bJcC<$JcC<$JcDSH!!)?bJ,~>
+Sc8Zi])V])p&Fpiq#C6lqu?TpJcC<$JcC<$XT/5!df99BZ2Xe(li2J~>
+Sc8Zi])V[.p&Fpiq#C6lqu?TpJcC<$JcC<$XT/5!df97GZ2Xe(li2J~>
+Sc8ZiW;lbqmf31bJcC<$JcC<$JcDVI!!)?bJ,~>
+Sc8Zi\c;W)o`+ghq#C9mqu?QoJcC<$JcC<$XoJ>"e,T?BZ2Xe(li2J~>
+Sc8Zi\c;U.o`+ghq#C9mqu?QoJcC<$JcC<$XoJ>"e,T=GZ2Xe(li2J~>
+Sc8ZiW;lbqmf31bJcC<$JcC<$JcDVI!!)?bJ,~>
+Sc8Zi\c;T(p&Fpiq#C6lr;ZZpJcC<$JcC<$XoJ>"e,T?BZ2Xe(li2J~>
+Sc8Zi\c;R-p&Fpiq#C6lr;ZZpJcC<$JcC<$XoJ>"e,T=GZ2Xe(li2J~>
+Sc8ZiW;lbqmJm+bJcC<$JcC<$JcDVI!!)?bJ,~>
+Sc8Zi\c;T(p&Fpiq#C6lqu?TpJcC<$JcC<$Y5eD"e,T?BZ2Xe(li2J~>
+Sc8Zi\c;R-p&Fpiq#C6lqu?TpJcC<$JcC<$Y5eD"e,T=GZ2Xe(li2J~>
+Sc8ZiVuQYpmf31bJcC<$JcC<$JcDYJ!!)?bJ,~>
+Sc8Zi\GuN(o`+ghq>^?mqu?QoJcC<$JcC<$YQ+M#e,T?BZ2Xe(li2J~>
+Sc8Zi\GuL-o`+ghq>^?mqu?QoJcC<$JcC<$YQ+M#e,T=GZ2Xe(li2J~>
+Sc8ZiVuQYpmf31bJcC<$JcC<$JcDYJ!!)?bJ,~>
+Sc8Zi\GuK'p&Fpiq#C9mqu?QoJcC<$JcC<$YQ+M#e,T?BZ2Xe(li2J~>
+Sc8Zi\GuI,p&Fpiq#C9mqu?QoJcC<$JcC<$YQ+M#e,T=GZ2Xe(li2J~>
+Sc8ZiVuQYpmJm(aJcC<$JcC<$JcD\K!!)?bJ,~>
+Sc8Zi\GuK'p&Fpiq#C6lqu?QoJcC<$JcC<$YlFV$e,T?BZ2Xe(li2J~>
+Sc8Zi\GuI,p&Fpiq#C6lqu?QoJcC<$JcC<$YlFV$e,T=GZ2Xe(li2J~>
+Sc8ZiVZ6Pomf31bJcC<$JcC<$JcD\K!!)?bJ,~>
+Sc8Zi\,ZE'o`+ghq>^?mqu?QoJcC<$JcC<$YlFV$e,TBCYl=\'li2J~>
+Sc8Zi\,ZC,o`+ghq>^?mqu?QoJcC<$JcC<$YlFV$e,T@HYl=\'li2J~>
+Sc8ZiVZ6Pomf34cJcC<$JcC<$JcDYJ!!)?bJ,~>
+Sc8Zi\,ZB&p&Fpiq>^?mqu?TpJcC<$JcC<$YQ+P$df99BYl=\'li2J~>
+Sc8Zi\,Z@+p&Fpiq>^?mqu?TpJcC<$JcC<$YQ+P$df97GYl=\'li2J~>
+Sc8ZiV>pJoJcC<$JcC<$JcCi3!!)?bJ,~>
+Sc8Zi\,ZB&o`+jiq#C9mJcC<$JcC<$V>pJodf99BYl=\'li2J~>
+Sc8Zi\,Z@+o`+jiq#C9mJcC<$JcC<$V>pJodf97GYl=\'li2J~>
+Sc8ZiV>pGnJcC<$JcC<$JcCl4!!)?bJ,~>
+Sc8Zi[f?<&o`+ghq>^?mJcC<$JcC<$VZ6Spdf99BYl=\'li2J~>
+Sc8Zi[f?:+o`+ghq>^?mJcC<$JcC<$VZ6Spdf97GYl=\'li2J~>
+Sc8ZiV>pGnJcC<$JcC<$JcCl4!!)?bJ,~>
+Sc8Zi[f?9%p&Fpiq>^?mJcC<$JcC<$VZ6Spdf99BYl=\'li2J~>
+Sc8Zi[f?7*p&Fpiq>^?mJcC<$JcC<$VZ6Spdf97GYl=\'li2J~>
+Sc8ZiV#U>mJcC<$JcC<$JcCo5!!)?bJ,~>
+Sc8Zi[f?9%o`+ghq>^BnJcC<$JcC<$VZ6Spdf99BYl=\'li2J~>
+Sc8Zi[f?7*o`+ghq>^BnJcC<$JcC<$VZ6Spdf97GYl=\'li2J~>
+Sc8ZiV#U>mJcC<$JcC<$JcCo5!!)?bJ,~>
+Sc8Zi[K$3%o`+ghq>^?mJcC<$JcC<$VuQ\qdf99BYl=\'li2J~>
+Sc8Zi[K$1*o`+ghq>^?mJcC<$JcC<$VuQ\qdf97GYl=\'li2J~>
+Sc8ZiV#U>mJcC<$JcC<$JcCo5!!)?bJ,~>
+Sc8Zi[K$0$p&Fpiq>^?mJcC<$JcC<$W;lbqe,T?BYl=\'li2J~>
+Sc8Zi[K$.)p&Fpiq>^?mJcC<$JcC<$W;lbqe,T=GYl=\'li2J~>
+Sc8ZiU]:5lJcC<$JcC<$JcCr6!!)?bJ,~>
+Sc8Zi[K$0$o`+ghqZ$HnJcC<$JcC<$W;lbqe,T?BYl=\'li2J~>
+Sc8Zi[K$.)o`+ghqZ$HnJcC<$JcC<$W;lbqe,T=GYl=\'li2J~>
+Sc8ZiU]:5lJcC<$JcC<$JcCr6!!)?bJ,~>
+Sc8Zi[/^*$o`+ghq>^BnJcC<$JcC<$W;lbqe,T?BYl=\'li2J~>
+Sc8Zi[/^()o`+ghq>^BnJcC<$JcC<$W;lbqe,T=GYl=\'li2J~>
+Sc8ZiU]:5lJcC<$JcC<$JcCr6!!)?bJ,~>
+Sc8Zi[/^'#p&Fpiq>^?mJcC<$JcC<$WW2kre,T?BYl=\'li2J~>
+Sc8Zi[/^%(p&Fpiq>^?mJcC<$JcC<$WW2kre,T=GYl=\'li2J~>
+Sc8ZiUAt,klMghaJcC<$JcC<$JcDhO!!)?bJ,~>
+Sc8Zi[/^'#o`+ghqZ$HnpAY*mJcC<$JcC<$[K$.)e,T?BYl=\'li2J~>
+Sc8Zi[/^%(o`+ghqZ$HnpAY*mJcC<$JcC<$[K$.)e,T=GYl=\'li2J~>
+Sc8ZiUAt,kmJm+bJcC<$JcC<$JcDhO!!)?bJ,~>
+Sc8ZiZiC!#o`+ghq>^Bnq>^BnJcC<$JcC<$[K$1*df96AYl=\'li2J~>
+Sc8ZiZiBt(o`+ghq>^Bnq>^BnJcC<$JcC<$[K$1*df94FYl=\'li2J~>
+Sc8ZiU&Y&kmJm+bJcC<$JcC<$JcDhO!!)?bJ,~>
+Sc8ZiZiBs"o`+jiq>^?mqZ$KoJcC<$JcC<$[K$1*df99BYQ"S&li2J~>
+Sc8ZiZiBq'o`+jiq>^?mqZ$KoJcC<$JcC<$[K$1*df97GYQ"S&li2J~>
+Sc8ZiU&Y#jmf31bJcC<$JcC<$JcDkP!!)?bJ,~>
+Sc8ZiZiBs"o`+ghqZ$HnqZ$HnJcC<$JcC<$[f?:+df99BYQ"S&li2J~>
+Sc8ZiZiBq'o`+ghqZ$HnqZ$HnJcC<$JcC<$[f?:+df97GYQ"S&li2J~>
+Sc8ZiU&Y#jmf31bJcC<$JcC<$JcDkP!!)?bJ,~>
+Sc8ZiZN'm"o`+ghqZ$HnqZ$HnJcC<$JcC<$[f?:+df99BYQ"S&li2J~>
+Sc8ZiZN'k'o`+ghqZ$HnqZ$HnJcC<$JcC<$[f?:+df97GYQ"S&li2J~>
+Sc8ZiT`=rjmJm+bJcC<$JcC<$JcDkP!!)?bJ,~>
+Sc8ZiZN'j!o`+jiq>^Bnq>^BnJcC<$JcC<$[f?:+df99BYQ"S&li2J~>
+Sc8ZiZN'h&o`+jiq>^Bnq>^BnJcC<$JcC<$[f?:+df97GYQ"S&li2J~>
+Sc8ZiT`=oimf31bJcC<$JcC<$JcDnQ!!)?bJ,~>
+Sc8ZiZN'j!o`+ghqZ$HnqZ$HnJcC<$JcC<$\GuI,df99BYQ"S&li2J~>
+Sc8ZiZN'h&o`+ghqZ$HnqZ$HnJcC<$JcC<$\GuI,df97GYQ"S&li2J~>
+Sc8ZiT`=oimf31bJcC<$JcC<$JcDnQ!!)?bJ,~>
+Sc8ZiZ2ad!o`+ghqZ$HnqZ$HnJcC<$JcC<$\GuI,df99BYQ"S&li2J~>
+Sc8ZiZ2ab&o`+ghqZ$HnqZ$HnJcC<$JcC<$\GuI,df97GYQ"S&li2J~>
+Sc8ZiTE"fhmf34cJcC<$JcC<$JcDnQ!!)?bJ,~>
+Sc8ZiZ2a`uo`+ghqZ$Koq>^BnJcC<$JcC<$\GuI,df99BYQ"S&li2J~>
+Sc8ZiZ2a_%o`+ghqZ$Koq>^BnJcC<$JcC<$\GuI,df97GYQ"S&li2J~>
+Sc8ZiTE"fhmf31bJcC<$JcC<$JcDqR!!)?bJ,~>
+Sc8ZiZ2a`uo`+ghqZ$HnqZ$HnJcC<$JcC<$\c;R-e,T?BYQ"S&li2J~>
+Sc8ZiZ2a_%o`+ghqZ$HnqZ$HnJcC<$JcC<$\c;R-e,T=GYQ"S&li2J~>
+\,ZC,q>^<lq>UEpTE"fhmf31bJcC<$JcC<$JcDqR!!)?bJ,~>
+\,ZC,q>^<lq>UEpYlFWtp&FpiqZ$HnqZ$HnJcC<$JcC<$\c;R-e,T?BYQ"S&li2J~>
+\,ZC,q>^<lq>UEpYlFV$p&FpiqZ$HnqZ$HnJcC<$JcC<$\c;R-e,T=GYQ"S&li2J~>
+\c;[0rr;uuqu?Kmq>UEpT)\]gmf31bJcC<$JcC<$JcDtS!!)?bJ,~>
+\c;[0rr;uuqu?Kmq>UEpYlFWto`+ghqu?Qoq>^?mJcC<$JcC<$])V[.e,T?BYQ"S&li2J~>
+\c;[0rr;uuqu?Kmq>UEpYlFV$o`+ghqu?Qoq>^?mJcC<$JcC<$])V[.e,T=GYQ"S&li2J~>
+])Ma1qu?Zrr;Q`soD\djT)\]gmf31bJcC<$ir8uYJcC<$JcF*s!!)?bJ,~>
+])Ma1qu?Zrr;Q`soD\djYlFWto`+ghqZ$Koq>^?mJcC<$ir8uYJcC<$gAh*Odf96AYQ"S&li2J~>
+])Ma1qu?Zrr;Q`soD\djYlFV$o`+ghqZ$Koq>^?mJcC<$ir8uYJcC<$gAh*Odf94FYQ"S&li2J~>
+])Ma1qu?Zrr;Q`soD\djScAWgmf31bJcDkPqZ-Zr!!)0]rrCsVr;a2(rr@WMJcDDC!!)?bJ,~>
+])Ma1qu?Zrr;Q`soD\djYQ+Nso`+jiqZ$HnqZ$HnJcDkPqZ-Zr!!)0]rrCsVr;a2(rr@WMWrN"t
+df96AYQ"S&li2J~>
+])Ma1qu?Zrr;Q`soD\djYQ+M#o`+jiqZ$HnqZ$HnJcDkPqZ-Zr!!)0]rrCsVr;a2(rr@WMWrN"t
+df94FYQ"S&li2J~>
+ZiC%*rVuiso`"mkScATfmf31bJcDtSrW)lrrW)*\rrCmTrrBD*rr@WMJcDDC!!)?bJ,~>
+ZiC%*rVuiso`"mkYQ+Nso`+ghqu?Qoq>^?mJcDtSrW)lrrW)*\rrCmTrrBD*rr@WMWrN"tdf96A
+YQ"S&li2J~>
+ZiC%*rVuiso`"mkYQ+M#o`+ghqu?Qoq>^?mJcDtSrW)lrrW)*\rrCmTrrBD*rr@WMWrN"tdf94F
+YQ"S&li2J~>
+[/^.+r;ZZppAY*mScATfmf31bJcE%UrW)corrD3]rrCmTrrBD*rr@WMJcDDC!!)?bJ,~>
+[/^.+r;ZZppAY*mYQ+Nso`+ghqZ$Koq>^?mJcE%UrW)corrD3]rrCmTrrBD*rr@WMWrN"tdf99B
+Y5\J%li2J~>
+[/^.+r;ZZppAY*mYQ+M#o`+ghqZ$Koq>^?mJcE%UrW)corrD3]rrCmTrrBD*rr@WMWrN"tdf97G
+Y5\J%li2J~>
+[Jp4,p](0lq#:<oSH&Nfmf31bJcE%UrrDfn!!'h7rr@WMJcC<$d/O(Gli2J~>
+[Jp4,p](0lq#:<oY5eEro`+jiqZ$HnqZ$HnJcE%UrrDfn!!'h7rr@WMJcFI(r;b:GrM?[s!!)?b
+J,~>
+[Jp4,p](0lq#:<oY5eD"o`+jiqZ$HnqZ$HnJcE%UrrDfn!!'h7rr@WMJcFI(r;b:Gr;a##!!)?b
+J,~>
+\,Z@+q#C<nq#Bd_XoJ;!mf31bJcE+WrW)]m!!'h7rr@WMJcC<$iW&?Hli2J~>
+\,Z@+q#C<nq#Bd_^]45.o`+ghqu?Qoq>^?mJcE+WrW)]m!!'h7rr@WMJcFL)quG1FrM@:/mf;\R
+J,~>
+\,Z@+q#C<nq#Bd_^]433o`+ghqu?Qoq>^?mJcE+WrW)]m!!'h7rr@WMJcFL)quG1Fr;aV4mf;\R
+J,~>
+[/^+*q#C<nq>UEpSH&Kemf31bJcE+WrrDQgquHQmquHZprrE#trr<'!quHTnr;cNjrrE*!r;c]o
+r;c]o"9AK%!!)ut!W`9#r;cltquHTnquHWorr<'!quHWorrDrrquD<JJcDhO!!)?bJ,~>
+[/^+*q#C<nq>UEpY5eEro`+ghqu?Qoq>^?mJcE+WrrDQgquHQmquHZprrE#trr<'!quHTnr;cNj
+rrE*!r;c]or;c]o"9AK%!!)ut!W`9#r;cltquHTnquHWorr<'!quHWorrDrrquD<J\,Z@+df99B
+Y5\J%li2J~>
+[/^+*q#C<nq>UEpY5eD"o`+ghqu?Qoq>^?mJcE+WrrDQgquHQmquHZprrE#trr<'!quHTnr;cNj
+rrE*!r;c]or;c]o"9AK%!!)ut!W`9#r;cltquHTnquHWorr<'!quHWorrDrrquD<J\,Z@+df97G
+Y5\J%li2J~>
+ZiC%*p](6nq>UEpS,`Bdmf37dJcE+WrW)Kg!!)utrrDusrW)rt!!*#ur;cltqZ-ZrrW)osrrE&u
+rrDcmr;cltrW)lr!!*#urW)uur;ZitpAk6nr;cisrrDrr!!)utrrE&uqZ-ZrrW)rtr;ccqrrE&u
+rr@WMJcDkP!!)?bJ,~>
+ZiC%*p](6nq>UEpXoJ<qo`+ghqu?Tpq#C<nJcE+WrW)Kg!!)utrrDusrW)rt!!*#ur;cltqZ-Zr
+rW)osrrE&urrDcmr;cltrW)lr!!*#urW)uur;ZitpAk6nr;cisrrDrr!!)utrrE&uqZ-ZrrW)rt
+r;ccqrrE&urr@WM\GuI,df99BY5\J%li2J~>
+ZiC%*p](6nq>UEpXoJ;!o`+ghqu?Tpq#C<nJcE+WrW)Kg!!)utrrDusrW)rt!!*#ur;cltqZ-Zr
+rW)osrrE&urrDcmr;cltrW)lr!!*#urW)uur;ZitpAk6nr;cisrrDrr!!)utrrE&uqZ-ZrrW)rt
+r;ccqrrE&urr@WM\GuI,df97GY5\J%li2J~>
+ZiC%*p](6nq>UEpS,`BdJcD>ArW)NhrrDusrrE#trrE#t!!)rsrrE#trrDusrrE#t!!)rsrrDfn
+rrDusrrE#trrE#trrE#trW)iqrrDusrrDusrrE#trrDusrrE#trrDusrrDusrrE#trrE#trr@WM
+JcDkP!!)?bJ,~>
+ZiC%*p](6nq>UEpXoJ<qo`+ghqu?QoJcD_LrW)NhrrDusrrE#trrE#t!!)rsrrE#trrDusrrE#t
+!!)rsrrDfnrrDusrrE#trrE#trrE#trW)iqrrDusrrDusrrE#trrDusrrE#trrDusrrDusrrE#t
+rrE#trr@WM\GuI,df99BY5\J%li2J~>
+ZiC%*p](6nq>UEpXoJ;!o`+ghqu?QoJcD_LrW)NhrrDusrrE#trrE#t!!)rsrrE#trrDusrrE#t
+!!)rsrrDfnrrDusrrE#trrE#trrE#trW)iqrrDusrrDusrrE#trrDusrrE#trrDusrrDusrrE#t
+rrE#trr@WM\GuI,df97GY5\J%li2J~>
+ZiC%*p](6nq>UEpS,`BdJcFd1c2d>5rW)QirrDrrrW)rtrrDfnrrE#trrDusrrE&urrDusrrDfn
+rrDusrrE#trrE#trrE#trrDoqrrDusrrDusrrE&urrDrrrW)rtrrDusrrDusrrE#t!!)or!!%TM
+JcDkP!!)?bJ,~>
+ZiC%*p](6nq>UEpXT/6qo`+ghqu?QoJcG0<c2d>5rW)QirrDrrrW)rtrrDfnrrE#trrDusrrE&u
+rrDusrrDfnrrDusrrE#trrE#trrE#trrDoqrrDusrrDusrrE&urrDrrrW)rtrrDusrrDusrrE#t
+!!)or!!%TM\GuI,df99BY5\J%li2J~>
+ZiC%*p](6nq>UEpXT/5!o`+ghqu?QoJcG0<c2d>5rW)QirrDrrrW)rtrrDfnrrE#trrDusrrE&u
+rrDusrrDfnrrDusrrE#trrE#trrE#trrDoqrrDusrrDusrrE&urrDrrrW)rtrrDusrrDusrrE#t
+!!)or!!%TM\GuI,df97GY5\J%li2J~>
+ZiC%*p](6nq>UEpRfE9cJcFg2c2d>5rW)QirrDoqrrE&urW)`nrrE#trrDusrrE&upAk!grrDus
+rrDiorW)osrrDoqrrDusrrDusrrE&urrDoqrrE&urrDusrrDusrrE&urr@WMJcDVI!!)?bJ,~>
+ZiC%*p](6nq>UEpXT/3po`+ghqu?TpJcG0<c2d>5rW)QirrDoqrrE&urW)`nrrE#trrDusrrE&u
+pAk!grrDusrrDiorW)osrrDoqrrDusrrDusrrE&urrDoqrrE&urrDusrrDusrrE&urr@WMZ2a_%
+e,T?BY5\J%li2J~>
+ZiC%*p](6nq>UEpXT/1uo`+ghqu?TpJcG0<c2d>5rW)QirrDoqrrE&urW)`nrrE#trrDusrrE&u
+pAk!grrDusrrDiorW)osrrDoqrrDusrrDusrrE&urrDoqrrE&urrDusrrDusrrE&urr@WMZ2a_%
+e,T=GY5\J%li2J~>
+[/^.+p](6nq#:<oRfE9cJcFg2c2d>5rW)QirrDoqrrE#tr;c]orrE#trrDusrrE&urrDQgrrDus
+rrDoqrr<-#!!)utrrDoqrrDusrrDusrrE&urrDoqrrE&urrDusrrDusrrE&urr@WMJcDVI!!)?b
+J,~>
+[/^.+p](6nq#:<oXT/3po`+ghqu?QoJcG3=c2d>5rW)QirrDoqrrE#tr;c]orrE#trrDusrrE&u
+rrDQgrrDusrrDoqrr<-#!!)utrrDoqrrDusrrDusrrE&urrDoqrrE&urrDusrrDusrrE&urr@WM
+Z2ab&df96AY5\J%li2J~>
+[/^.+p](6nq#:<oXT/1uo`+ghqu?QoJcG3=c2d>5rW)QirrDoqrrE#tr;c]orrE#trrDusrrE&u
+rrDQgrrDusrrDoqrr<-#!!)utrrDoqrrDusrrDusrrE&urrDoqrrE&urrDusrrDusrrE&urr@WM
+Z2ab&df94FY5\J%li2J~>
+])Vd1rr;uur;Zcsrr;uup\t3nRK*3cJcFg2c2d>5rW)QirrDoqrrDrrr;ccqrrE#trrDusrrE&u
+rrDQgrrDusrrDusrrE&urrE#trrDoqrrDusrrDusrrE&urrDoqrrE&urrDusrrDusrrE&urr@WM
+JcDVI!!)?bJ,~>
+])Vd1rr;uur;Zcsrr;uup\t3nX8i-poDeahqu?QoJcG3=c2d>5rW)QirrDoqrrDrrr;ccqrrE#t
+rrDusrrE&urrDQgrrDusrrDusrrE&urrE#trrDoqrrDusrrDusrrE&urrDoqrrE&urrDusrrDus
+rrE&urr@WMZ2ab&df96AY5\J%li2J~>
+])Vd1rr;uur;Zcsrr;uup\t3nX8i+uoDeahqu?QoJcG3=c2d>5rW)QirrDoqrrDrrr;ccqrrE#t
+rrDusrrE&urrDQgrrDusrrDusrrE&urrE#trrDoqrrDusrrDusrrE&urrDoqrrE&urrDusrrDus
+rrE&urr@WMZ2ab&df94FY5\J%li2J~>
+])V[.qZ$Hnp&>!lRK*0bJcDABrW)TjrrDoqrrDlprW)osrrE#trrDusrrE&urrDQgrrDusrrE#t
+!!)rsrrE#trrDoqrrDusrrDusrrE&urrDoqrrE&urrDusrrDusrrE&urr@WMJcDVI!!)?bJ,~>
+])V[.qZ$Hnp&>!lX8i*oo`+ghr;ZZpJcD_LrW)TjrrDoqrrDlprW)osrrE#trrDusrrE&urrDQg
+rrDusrrE#t!!)rsrrE#trrDoqrrDusrrDusrrE&urrDoqrrE&urrDusrrDusrrE&urr@WMZ2ab&
+df96AY5\J%li2J~>
+])V[.qZ$Hnp&>!lX8i(to`+ghr;ZZpJcD_LrW)TjrrDoqrrDlprW)osrrE#trrDusrrE&urrDQg
+rrDusrrE#t!!)rsrrE#trrDoqrrDusrrDusrrE&urrDoqrrE&urrDusrrDusrrE&urr@WMZ2ab&
+df94FY5\J%li2J~>
+Sc8ZiRK*0bJcDABrW)TjrW)iq!!)ut!!)rsrrE#trrE#trrDusrrE&urW)iq!!)forrDusrrE&u
+rrDusrrE#trrDoqrrDusrrDusrrE&urW)iq!!)utrrDusrrDusrrE&urW)iq!!%TMJcDnQ!!)?b
+J,~>
+Sc8ZiX8i*oo`+ghqu?TpJcD_LrW)TjrW)iq!!)ut!!)rsrrE#trrE#trrDusrrE&urW)iq!!)fo
+rrDusrrE&urrDusrrE#trrDoqrrDusrrDusrrE&urW)iq!!)utrrDusrrDusrrE&urW)iq!!%TM
+\c;U.df96AY5\J%li2J~>
+Sc8ZiX8i(to`+ghqu?TpJcD_LrW)TjrW)iq!!)ut!!)rsrrE#trrE#trrDusrrE&urW)iq!!)fo
+rrDusrrE&urrDusrrE#trrDoqrrDusrrDusrrE&urW)iq!!)utrrDusrrDusrrE&urW)iq!!%TM
+\c;U.df94FY5\J%li2J~>
+Sc8ZiR/d'aJcDABrW)`n!!*#urrDusrrE#t!!)rsrrE#trrE#trrDusrrE&ur;cfr!!)cnrrDus
+rrE&urW)rtrW)osrrDoqrrDusrrDusrrE#trrDusrrE#trrDusrrDusrrE#trW)os!!%TMJcDkP
+!!)?bJ,~>
+Sc8ZiWrN!no`+ghr;ZZpJcD_LrW)`n!!*#urrDusrrE#t!!)rsrrE#trrE#trrDusrrE&ur;cfr
+!!)cnrrDusrrE&urW)rtrW)osrrDoqrrDusrrDusrrE#trrDusrrE#trrDusrrDusrrE#trW)os
+!!%TM\GuL-df96AY5\J%li2J~>
+Sc8ZiWrMtso`+ghr;ZZpJcD_LrW)`n!!*#urrDusrrE#t!!)rsrrE#trrE#trrDusrrE&ur;cfr
+!!)cnrrDusrrE&urW)rtrW)osrrDoqrrDusrrDusrrE#trrDusrrE#trrDusrrDusrrE#trW)os
+!!%TM\GuL-df94FY5\J%li2J~>
+Sc8ZiR/d'aJcD>Ar;ccqrrDusrrE&urrDusrrE&urrDusrrE#trrDusrrE#tq>g6hrrDusrrE&u
+p](Kt!<<'!!;c`q!;uls!;uls!;uls!<3#u!;uls!;uls!;uls!<)ro!.k0$s/c5#!:0Z8~>
+Sc8ZiWrN!no`+ghr;ZZpJcD\Kr;ccqrrDusrrE&urrDusrrE&urrDusrrE#trrDusrrE#tq>g6h
+rrDusrrE&up](Kt!<<'!!;c`q!;uls!;uls!;uls!<3#u!;uls!;uls!;uls!<)ro!.k0[s82lF
+s8Adrrr<&bs*t~>
+Sc8ZiWrMtso`+ghr;ZZpJcD\Kr;ccqrrDusrrE&urrDusrrE&urrDusrrE#trrDusrrE#tq>g6h
+rrDusrrE&up](Kt!<<'!!;c`q!;uls!;uls!;uls!<3#u!;uls!;uls!;uls!<)ro!.k0[s82lF
+s8;r"rr<&bs*t~>
+Sc8ZiR/d'alMghaJcE+Wq>g?kquHWoqZ-WqoDemkqZ-WqquHKkqZ$WrqZ-Zrr;cltrVuruqZ-Wq
+qZ$WrqZ-ZrquH]qquH]qqZ$WroDnjir;_EKJcDeN!!)?bJ,~>
+Sc8ZiWrN!no`+ghqu?Tpo`"mkJcE+Wq>g?kquHWoqZ-WqoDemkqZ-WqquHKkqZ$WrqZ-Zrr;clt
+rVuruqZ-WqqZ$WrqZ-ZrquH]qquH]qqZ$WroDnjir;_EK\,Z@+df99BXoAA$li2J~>
+Sc8ZiWrMtso`+ghqu?Tpo`"mkJcE+Wq>g?kquHWoqZ-WqoDemkqZ-WqquHKkqZ$WrqZ-Zrr;clt
+rVuruqZ-WqqZ$WrqZ-ZrquH]qquH]qqZ$WroDnjir;_EK\,Z@+df97GXoAA$li2J~>
+Sc8ZiQiHs`mf34cJcC<$JcC<$JcE1Y!!)?bJ,~>
+Sc8ZiWW2mmo`+ghr;ZZpq#C9mJcC<$JcC<$_Z0N6df99BXoAA$li2J~>
+Sc8ZiWW2kro`+ghr;ZZpq#C9mJcC<$JcC<$_Z0N6df97GXoAA$li2J~>
+Sc8ZiQiHs`mf31bJcC<$JcC<$JcE4Z!!)?bJ,~>
+Sc8ZiWW2mmo`+ghr;ZZpq#C6lJcC<$JcC<$_uKW7df99BXoAA$li2J~>
+Sc8ZiWW2kro`+ghr;ZZpq#C6lJcC<$JcC<$_uKW7df97GXoAA$li2J~>
+Sc8ZiQN-m`mf31bJcC<$JcC<$JcE4Z!!)?bJ,~>
+Sc8ZiWW2mmoDeahr;ZZpq#C6lJcC<$JcC<$_uKW7df99BXoAA$li2J~>
+Sc8ZiWW2kroDeahr;ZZpq#C6lJcC<$JcC<$_uKW7df97GXoAA$li2J~>
+Sc8ZiQN-j_n,N:cJcC<$JcC<$JcE4Z!!)?bJ,~>
+Sc8ZiW;ldlo`+ghr;ZZpq>^?mJcC<$JcC<$_uKW7df99BXoAA$li2J~>
+Sc8ZiW;lbqo`+ghr;ZZpq>^?mJcC<$JcC<$_uKW7df97GXoAA$li2J~>
+Sc8ZiQN-j_mf31bJcC<$JcC<$JcE7[!!)?bJ,~>
+Sc8ZiW;ldlo`+ghr;ZZpq#C6lJcC<$JcC<$`;fc9dJs0AXoAA$li2J~>
+Sc8ZiW;lbqo`+ghr;ZZpq#C6lJcC<$JcC<$`;fc9dJs.FXoAA$li2J~>
+Sc8ZiQ2ga^n,N:cJcC<$JcC<$JcE7[!!)?bJ,~>
+Sc8ZiW;ldloDe^grVucqq#C6lJcC<$JcC<$`;fc9df96AXoAA$li2J~>
+Sc8ZiW;lbqoDe^grVucqq#C6lJcC<$JcC<$`;fc9df94FXoAA$li2J~>
+Sc8ZiQ2ga^mf34cJcC<$JcC<$JcE7[!!)?bJ,~>
+Sc8ZiVuQ[ko`+ghr;Z]qp](0lJcC<$JcC<$`;fc9df96AXoAA$li2J~>
+Sc8ZiVuQYpo`+ghr;Z]qp](0lJcC<$JcC<$`;fc9df94FXoAA$li2J~>
+Sc8ZiQ2ga^mf31bJcC<$JcC<$JcE:\!!)?bJ,~>
+Sc8ZiVuQ[ko`+ghr;ZZpq#C6lJcC<$JcC<$`W,l:df96AXoAA$li2J~>
+Sc8ZiVuQYpo`+ghr;ZZpq#C6lJcC<$JcC<$`W,l:df94FXoAA$li2J~>
+lMp&Jc2RbDPlLX]n,N:cJcC<$JcC<$JcE:\!!)?bJ,~>
+lMp&Jc2RbDVZ6UkoDe^grVucqq#C6lJcC<$JcC<$`W,l:df96AXoAA$li2J~>
+lMp&Jc2RbDVZ6SpoDe^grVucqq#C6lJcC<$JcC<$`W,l:df94FXoAA$li2J~>
+lMp&Jc2RbDPlLX]mf31bJcC<$JcC<$JcE=]!!)?bJ,~>
+lMp&Jc2RbDVZ6Rjo`+ghr;Z]qp](-kJcC<$JcC<$a8c&;df96AXoAA$li2J~>
+lMp&Jc2RbDVZ6Poo`+ghr;Z]qp](-kJcC<$JcC<$a8c&;df94FXoAA$li2J~>
+lMp&Jc2RbDPQ1R]mf31bJcC<$JcC<$JcE=]!!)?bJ,~>
+lMp&Jc2RbDVZ6RjoDeahr;ZZpq#C6lJcC<$JcC<$a8c&;df96AXoAA$li2J~>
+lMp&Jc2RbDVZ6PooDeahr;ZZpq#C6lJcC<$JcC<$a8c&;df94FXoAA$li2J~>
+lMghalMghac2RbDPQ1O\n,N:cJcC<$JcC<$JcE=]!!)?bJ,~>
+lMghalMghac2RbDV>pLjoDe^grVucqq#C6lJcC<$JcC<$a8c&;df96AXoAA$li2J~>
+lMghalMghac2RbDV>pJooDe^grVucqq#C6lJcC<$JcC<$a8c&;df94FXoAA$li2J~>
+lMghalMghac2RbDPQ1O\mf31bJcC<$JcC<$JcE@^!!)?bJ,~>
+lMghalMghac2RbDV>pIio`+ghr;Z]qp](-kJcC<$JcC<$aT)/<df99BXT&8#li2J~>
+lMghalMghac2RbDV>pGno`+ghr;Z]qp](-kJcC<$JcC<$aT)/<df97GXT&8#li2J~>
+lMghalMghac2RbDP5kF[n,N:cJcC<$JcC<$JcE@^!!)?bJ,~>
+lMghalMghac2RbDV>pIioDe^grVucqq#C6lJcC<$JcC<$aT)/<df99BXT&8#li2J~>
+lMghalMghac2RbDV>pGnoDe^grVucqq#C6lJcC<$JcC<$aT)/<df97GXT&8#li2J~>
+lMghalMghac2RbDP5kF[n,N:cJcC<$JcC<$JcE@^!!)?bJ,~>
+lMghalMghac2RbDV#UCioDe^grVucqq#C6lJcC<$JcC<$aT)2=dJs0AXT&8#li2J~>
+lMghalMghac2RbDV#UAnoDe^grVucqq#C6lJcC<$JcC<$aT)2=dJs.FXT&8#li2J~>
+Sc8ZiP5kF[mf31bJcC<$JcC<$JcEC_!!)?bJ,~>
+Sc8ZiV#U@ho`+ghrVucqp](-kJcC<$JcC<$aoD;>dJs0AXT&8#li2J~>
+Sc8ZiV#U>mo`+ghrVucqp](-kJcC<$JcC<$aoD;>dJs.FXT&8#li2J~>
+Sc8ZiOoP=Zn,N:cJcC<$JcC<$JcEC_!!)?bJ,~>
+Sc8ZiV#U@hoDe^grVucqq#C6lJcC<$JcC<$aoD;>dJs0AXT&8#li2J~>
+Sc8ZiV#U>moDe^grVucqq#C6lJcC<$JcC<$aoD;>dJs.FXT&8#li2J~>
+Sc8ZiOoP=Zmf34cJcC<$JcC<$JcEC_!!)?bJ,~>
+Sc8ZiU]:7go`+ghrVucqp](0lJcC<$JcC<$aoD;>dJs0AXT&8#li2J~>
+Sc8ZiU]:5lo`+ghrVucqp](0lJcC<$JcC<$aoD;>dJs.FXT&8#li2J~>
+lMgha[Jp4,OT57Zmf37dJcC<$JcC<$JcE@^!!)?bJ,~>
+lMgha[Jp4,U]:7goDeahrVucqp](3mJcC<$JcC<$aT)2=df96AXT&8#li2J~>
+lMgha[Jp4,U]:5loDeahrVucqp](3mJcC<$JcC<$aT)2=df94FXT&8#li2J~>
+lMgha[Jp4,OT54YJcC<$JcC<$JcDVI!!)?bJ,~>
+lMgha[Jp4,U]:7goDe^grVufrJcC<$JcC<$]`7m0df96AXT&8#li2J~>
+lMgha[Jp4,U]:5loDe^grVufrJcC<$JcC<$]`7m0df94FXT&8#li2J~>
+p]'gb[Jp4,OT54YJcC<$JcC<$JcDVI!!)?bJ,~>
+p]'gb[Jp4,UAt.fo`+ghrVucqJcC<$JcC<$^&S!1df96AXT&8#li2J~>
+p]'gb[Jp4,UAt,ko`+ghrVucqJcC<$JcC<$^&S!1df94FXT&8#li2J~>
+p]'gb[Jp4,O8o+XJcC<$JcC<$JcDYJ!!)?bJ,~>
+p]'gb[Jp4,UAt.foDe^grr;lrJcC<$JcC<$^&S!1df96AXT&8#li2J~>
+p]'gb[Jp4,UAt,koDe^grr;lrJcC<$JcC<$^&S!1df94FXT&8#li2J~>
+p\t3np&>!l[Jp4,O8o+XJcC<$JcC<$JcDYJ!!)?bJ,~>
+p\t3np&>!l[Jp4,U&Y(foDe^grVufrJcC<$JcC<$^&S!1df96AXT&8#li2J~>
+p\t3np&>!l[Jp4,U&Y&koDe^grVufrJcC<$JcC<$^&S!1df94FXT&8#li2J~>
+pAY*mpAY*m[Jp4,O8o+XJcC<$JcC<$JcDYJ!!)?bJ,~>
+pAY*mpAY*m[Jp4,U&Y%eo`+ghrVucqJcC<$JcC<$^An-3dJs-@XT&8#li2J~>
+pAY*mpAY*m[Jp4,U&Y#jo`+ghrVucqJcC<$JcC<$^An-3dJs+EXT&8#li2J~>
+pAY*mWW)quNrT"WJcC<$JcC<$JcD\K!!)?bJ,~>
+pAY*mWW)quU&Y%eoDe^grr;lrJcC<$JcC<$^An-3dJs-@XT&8#li2J~>
+pAY*mWW)quU&Y#joDe^grr;lrJcC<$JcC<$^An-3dJs+EXT&8#li2J~>
+ScAHbQN-j_JcC<$JcC<$JcDtSp]0X[J,~>
+ScAHbW;ldlo`+ghrVufrJcC<$JcC<$^An-3dJs0AZiBe#li2J~>
+ScAHbW;lbqo`+ghrVufrJcC<$JcC<$^An-3dJs.FZiBe#li2J~>
+Sc8ZiNW8qWJcC<$JcC<$JcD\K!!)?bJ,~>
+Sc8ZiT`=qdoDeahrVucqJcC<$JcC<$^]464dJs0AX8`/"li2J~>
+Sc8ZiT`=oioDeahrVucqJcC<$JcC<$^]464dJs.FX8`/"li2J~>
+Sc8ZiNW8nVJcC<$JcC<$JcD_L!!)?bJ,~>
+Sc8ZiT`=qdoDe^grr;lrJcC<$JcC<$_#O<4dJs0AX8`/"li2J~>
+Sc8ZiT`=oioDe^grr;lrJcC<$JcC<$_#O<4dJs.FX8`/"li2J~>
+Sc8ZiNW8nVm/R(cJcC<$JcC<$JcEOc!!)?bJ,~>
+Sc8ZiTE"hco`+ghrr;lro`+pkJcC<$JcC<$ci<nCdJs0AX8`/"li2J~>
+Sc8ZiTE"fho`+ghrr;lro`+pkJcC<$JcC<$ci<nCdJs.FX8`/"li2J~>
+mf*7eZ2Xe(N;reUn,N:cJcC<$JcC<$JcERd!!)?bJ,~>
+mf*7eZ2Xe(TE"hcoDe^grr;lrp](-kJcC<$JcC<$d/X"DdJs0AX8`/"li2J~>
+mf*7eZ2Xe(TE"fhoDe^grr;lrp](-kJcC<$JcC<$d/X"DdJs.FX8`/"li2J~>
+mf*7eZ2Xe(N;reUn,N:cJcC<$JcC<$JcERd!!)?bJ,~>
+mf*7eZ2Xe(T)\bcoDe^grr;lrp](-kJcC<$JcC<$d/X"DdJs0AX8`/"li2J~>
+mf*7eZ2Xe(T)\`hoDe^grr;lrp](-kJcC<$JcC<$d/X"DdJs.FX8`/"li2J~>
+mf*7eZ2Xe(N;reUmf31bJcD#8!!)<a!!%TMJcC<$a8Z,>li2J~>
+mf*7eZ2Xe(T)\_bo`+ghrr;lrpAb$jJcD#8!!)<a!!%TMJcF=$quG1Fr2$Io!!)?bJ,~>
+mf*7eZ2Xe(T)\]go`+ghrr;lrpAb$jJcD#8!!)<a!!%TMJcF=$quG1FquEet!!)?bJ,~>
+mf*7eZ2Xe(MuW\Tn,N:cJcEF`!!(mUquH-ar;a2(rr@WMJcD):!!)?bJ,~>
+mf*7eZ2Xe(T)\_boDe^grr;ospAb$jJcEF`!!(mUquH-ar;a2(rr@WMVZ6SpdJs-@X8`/"li2J~>
+mf*7eZ2Xe(T)\]goDe^grr;ospAb$jJcEF`!!(mUquH-ar;a2(rr@WMVZ6SpdJs+EX8`/"li2J~>
+mf*7eZ2Xe(MuW\Tn,N:cJcEIarrCgRrrDBbrrBD*rr@WMJcD):!!)?bJ,~>
+mf*7eZ2Xe(ScAVao`+ghrr;lrp](-kJcEIarrCgRrrDBbrrBD*rr@WMVZ6SpdJs-@X8`/"li2J~>
+mf*7eZ2Xe(ScATfo`+ghrr;lrp](-kJcEIarrCgRrrDBbrrBD*rr@WMVZ6SpdJs+EX8`/"li2J~>
+Sc8ZiMZ<VTmf31bJcELbrW(aRrrDBbrrBD*rr@WMJcD):!!)?bJ,~>
+Sc8ZiScAVaoDeahrr;lrpAb$jJcELbrW(aRrrDBbrrBD*rr@WMVZ6SpdJs-@X8`/"li2J~>
+Sc8ZiScATfoDeahrr;lrpAb$jJcELbrW(aRrrDBbrrBD*rr@WMVZ6SpdJs+EX8`/"li2J~>
+fDbgNaSu5?MZ<SSn,N:cJcEOc!s&?$!8RVS!:0[b!.k0$s+13jrr<&bs*t~>
+fDbgNaSu5?ScAVaoDe^grr;ospAb$jJcEOc!s&?$!8RVS!:0[b!.k0$s475K!7CiEV5sUr!:0Z8~>
+fDbgNaSu5?ScATfoDe^grr;ospAb$jJcEOc!s&?$!8RVS!:0[b!.k0$s475K!7CiE!3?,"!:0Z8~>
+fDbgNaSu5?MZ<SSn,N:cJcEOc!<E0!!8[\T!:0[b!.k0$s+13jrr<&bs*t~>
+fDbgNaSu5?SH&M`o`+ghrr;lrp](-kJcEOc!<E0!!8[\T!:0[b!.k0$s4@;K!7CiEV5sUr!:0Z8~>
+fDbgNaSu5?SH&Keo`+ghrr;lrp](-kJcEOc!<E0!!8[\T!:0[b!.k0$s4@;K!7CiE!3?,"!:0Z8~>
+li6;OaSu5?M?!JRn,N:cJcERd"9AK%!!)forr<'!quHTnr;cZnrrDrrr;cNjrrE*!r;cZnr;c`p
+"9AK%!!)ut!W`9#r;cltquHTnquHWorr<'!quHWorrDoqquD<JJcDPG!!)?bJ,~>
+li6;OaSu5?SH&M`oDe^gs8VuspAb$jJcERd"9AK%!!)forr<'!quHTnr;cZnrrDrrr;cNjrrE*!
+r;cZnr;c`p"9AK%!!)ut!W`9#r;cltquHTnquHWorr<'!quHWorrDoqquD<J[/^%(dJs-@X8`/"
+li2J~>
+li6;OaSu5?SH&KeoDe^gs8VuspAb$jJcERd"9AK%!!)forr<'!quHTnr;cZnrrDrrr;cNjrrE*!
+r;cZnr;c`p"9AK%!!)ut!W`9#r;cltquHTnquHWorr<'!quHWorrDoqquD<J[/^%(dJs+EX8`/"
+li2J~>
+li6;OaSu5?M?!JRn,N:cJcEUe!!*#urW)iqqZ-ZrrW)lrrrE&ur;cfrrrE#trrE&urrDcmr;clt
+rW)iq!!*#urVurur;ZitpAk6nr;cisrrDrr!!)utrrE&uqZ-ZrrW)rtr;c`prrE&urr@WMJcDSH
+!!)?bJ,~>
+li6;OaSu5?SH&M`oDe^grr;ospAb$jJcEUe!!*#urW)iqqZ-ZrrW)lrrrE&ur;cfrrrE#trrE&u
+rrDcmr;cltrW)iq!!*#urVurur;ZitpAk6nr;cisrrDrr!!)utrrE&uqZ-ZrrW)rtr;c`prrE&u
+rr@WM[K$.)dJs0AWrE&!li2J~>
+li6;OaSu5?SH&KeoDe^grr;ospAb$jJcEUe!!*#urW)iqqZ-ZrrW)lrrrE&ur;cfrrrE#trrE&u
+rrDcmr;cltrW)iq!!*#urVurur;ZitpAk6nr;cisrrDrr!!)utrrE&uqZ-ZrrW)rtr;c`prrE&u
+rr@WM[K$.)dJs.FWrE&!li2J~>
+lMp5OaSu5?M?!JRmf31bJcEXf!!)utrrDlprrDusrrE#trrE#trrDrrrrE#t!!)rsrrDfnrrDus
+rrDusrrE#trrE&urW)iqrrDusrrDusrrE#trrDusrrE#trrDusrrDusrrDusrrE#trr@WMJcDSH
+!!)?bJ,~>
+lMp5OaSu5?S,`D_o`+ghrr;lrpAb$jJcEXf!!)utrrDlprrDusrrE#trrE#trrDrrrrE#t!!)rs
+rrDfnrrDusrrDusrrE#trrE&urW)iqrrDusrrDusrrE#trrDusrrE#trrDusrrDusrrDusrrE#t
+rr@WM[K$.)dJs0AWrE&!li2J~>
+lMp5OaSu5?S,`Bdo`+ghrr;lrpAb$jJcEXf!!)utrrDlprrDusrrE#trrE#trrDrrrrE#t!!)rs
+rrDfnrrDusrrDusrrE#trrE&urW)iqrrDusrrDusrrE#trrDusrrE#trrDusrrDusrrDusrrE#t
+rr@WM[K$.)dJs.FWrE&!li2J~>
+lMghan,E@faSu5?M#[AQn,N:cJcE[g!!)rsrW)fprrDusrrE#trrDusrrDusrrE&urrDusrrDfn
+rrDusrrDusrrE#trrE&urrDoqrrDusrrDusrrE&urrDrrrW)rtrrDusrrDusrrDus!!)or!!%TM
+JcDSH!!)?bJ,~>
+lMghan,E@faSu5?S,`D_oDe^gs8VuspAb$jJcE[g!!)rsrW)fprrDusrrE#trrDusrrDusrrE&u
+rrDusrrDfnrrDusrrDusrrE#trrE&urrDoqrrDusrrDusrrE&urrDrrrW)rtrrDusrrDusrrDus
+!!)or!!%TM[K$1*d/X'@WrE&!li2J~>
+lMghan,E@faSu5?S,`BdoDe^gs8VuspAb$jJcE[g!!)rsrW)fprrDusrrE#trrDusrrDusrrE&u
+rrDusrrDfnrrDusrrDusrrE#trrE&urrDoqrrDusrrDusrrE&urrDrrrW)rtrrDusrrDusrrDus
+!!)or!!%TM[K$1*d/X%EWrE&!li2J~>
+lMghan,E@faSu5?M#[AQn,N:cNW8DHpAaL[lMghar;Z`rqZ$Qqr;ZcsrVultr;Zcsr;Zcsrr;]m
+q#C?or;Zcsp](3mrr;uuqZ$Qqr;Zcsr;Zcsrr;uuqZ$Qqrr;uur;Zcsr;ZcsrVultJcC<$T)Scj
+li2J~>
+lMghan,E@faSu5?RfE>_oDe^gs8VuspAb$jNW8DHpAaL[lMghar;Z`rqZ$Qqr;ZcsrVultr;Zcs
+r;Zcsrr;]mq#C?or;Zcsp](3mrr;uuqZ$Qqr;Zcsr;Zcsrr;uuqZ$Qqrr;uur;Zcsr;ZcsrVult
+JcDnQr;b4ErM?Oo!!)?bJ,~>
+lMghan,E@faSu5?RfE<doDe^gs8VuspAb$jNW8DHpAaL[lMghar;Z`rqZ$Qqr;ZcsrVultr;Zcs
+r;Zcsrr;]mq#C?or;Zcsp](3mrr;uuqZ$Qqr;Zcsr;Zcsrr;uuqZ$Qqrr;uur;Zcsr;ZcsrVult
+JcDnQr;b4Er;`kt!!)?bJ,~>
+Sc8ZiL]@8Pn,N:cNrSMIpAaL[li6YYqu?Zrr;ZcsrVuisrVultr;Zcsrr;uunGiLgr;Zcsq>^Hp
+!ri6#rr;uuqZ$Qqr;Zcsr;Zcsrr;uuqZ$Qqrr;uur;Zcsr;ZcsrVultJcC<$T)Scjli2J~>
+Sc8ZiRfE;^oDe^gs8VuspAb$jNrSMIpAaL[li6YYqu?Zrr;ZcsrVuisrVultr;Zcsrr;uunGiLg
+r;Zcsq>^Hp!ri6#rr;uuqZ$Qqr;Zcsr;Zcsrr;uuqZ$Qqrr;uur;Zcsr;ZcsrVultJcDnQr;b4E
+rM?Oo!!)?bJ,~>
+Sc8ZiRfE9coDe^gs8VuspAb$jNrSMIpAaL[li6YYqu?Zrr;ZcsrVuisrVultr;Zcsrr;uunGiLg
+r;Zcsq>^Hp!ri6#rr;uuqZ$Qqr;Zcsr;Zcsrr;uuqZ$Qqrr;uur;Zcsr;ZcsrVultJcDnQr;b4E
+r;`kt!!)?bJ,~>
+Sc8ZiL]@8Pn,N:cNrSMIpAaL[li-qbqZ$Npqu?Zrr;Zcsr;Zcsrr;uuqu?Zrrr;uunGiLgr;Zcs
+qu?Zrrr;uurr;uuqZ$Qqr;Zcsr;Zcsrr;uuqZ$Qqrr;uur;Zcsr;ZcsrVultJcC<$T)Scjli2J~>
+Sc8ZiRfE;^oDe^gs8VuspAb$jNrSMIpAaL[li-qbqZ$Npqu?Zrr;Zcsr;Zcsrr;uuqu?Zrrr;uu
+nGiLgr;Zcsqu?Zrrr;uurr;uuqZ$Qqr;Zcsr;Zcsrr;uuqZ$Qqrr;uur;Zcsr;ZcsrVultJcDnQ
+r;b4ErM?Oo!!)?bJ,~>
+Sc8ZiRfE9coDe^gs8VuspAb$jNrSMIpAaL[li-qbqZ$Npqu?Zrr;Zcsr;Zcsrr;uuqu?Zrrr;uu
+nGiLgr;Zcsqu?Zrrr;uurr;uuqZ$Qqr;Zcsr;Zcsrr;uuqZ$Qqrr;uur;Zcsr;ZcsrVultJcDnQ
+r;b4Er;`kt!!)?bJ,~>
+i;`ZS`;]f;L]@8Pn,N:cNrSMIpAaL[m/R(cq>^Hpqu?Zrr;Zcsqu?QoqZ$Qqrr;uunGiLgr;Zcs
+r;Q`sr;Zcsrr;uuqZ$Qqr;Zcsr;Zcsrr;uuqZ$Qqrr;uur;Zcsr;ZcsrVultJcC<$T)Scjli2J~>
+i;`ZS`;]f;RK*2]o`+ghs8VuspAb$jNrSMIpAaL[m/R(cq>^Hpqu?Zrr;Zcsqu?QoqZ$Qqrr;uu
+nGiLgr;Zcsr;Q`sr;Zcsrr;uuqZ$Qqr;Zcsr;Zcsrr;uuqZ$Qqrr;uur;Zcsr;ZcsrVultJcDqR
+quG+DrM?Oo!!)?bJ,~>
+i;`ZS`;]f;RK*0bo`+ghs8VuspAb$jNrSMIpAaL[m/R(cq>^Hpqu?Zrr;Zcsqu?QoqZ$Qqrr;uu
+nGiLgr;Zcsr;Q`sr;Zcsrr;uuqZ$Qqr;Zcsr;Zcsrr;uuqZ$Qqrr;uur;Zcsr;ZcsrVultJcDqR
+quG+Dr;`kt!!)?bJ,~>
+irAcR`W#o<LB%/On,N:cJcEgk!!)forW)lrrrDusrrDrr!!)`mrrE&urW)iq!!)forrDusrrE#t
+rrDusrrE&urrDoqrrDusrrDusrrE&urW)iq!!)utrrDusrrDusrrE#trW)iq!!%TMJcDVI!!)?b
+J,~>
+irAcR`W#o<RK*2]oDe^gs8VuspAb$jJcEgk!!)forW)lrrrDusrrDrr!!)`mrrE&urW)iq!!)fo
+rrDusrrE#trrDusrrE&urrDoqrrDusrrDusrrE&urW)iq!!)utrrDusrrDusrrE#trW)iq!!%TM
+\,Z@+dJs-@WrE&!li2J~>
+irAcR`W#o<RK*0boDe^gs8VuspAb$jJcEgk!!)forW)lrrrDusrrDrr!!)`mrrE&urW)iq!!)fo
+rrDusrrE#trrDusrrE&urrDoqrrDusrrDusrrE&urW)iq!!)utrrDusrrDusrrE#trW)iq!!%TM
+\,Z@+dJs+EWrE&!li2J~>
+j8\fQ`r?#=LB%/On,N:cJcEjlrrDfnrrDusrrDusrrDus!!)]lrrE&ur;cfr!!)cnrrDusrrE#t
+rW)rtrW)rtrrDoqrrDusrrDusrrE#trrDusrrE#trrDusrrDusrrDusrW)os!!%TMJcDSH!!)?b
+J,~>
+j8\fQ`r?#=RK*2]oDe^gs8VuspAb$jJcEjlrrDfnrrDusrrDusrrDus!!)]lrrE&ur;cfr!!)cn
+rrDusrrE#trW)rtrW)rtrrDoqrrDusrrDusrrE#trrDusrrE#trrDusrrDusrrDusrW)os!!%TM
+[f?7*dJs-@WrE&!li2J~>
+j8\fQ`r?#=RK*0boDe^gs8VuspAb$jJcEjlrrDfnrrDusrrDusrrDus!!)]lrrE&ur;cfr!!)cn
+rrDusrrE#trW)rtrW)rtrrDoqrrDusrrDusrrE#trrDusrrE#trrDusrrDusrrDusrW)os!!%TM
+[f?7*dJs+EWrE&!li2J~>
+j8])YqZ$Qqa8Z,>L&_)Omf*7eJcEairrDfnrW)osrrDusrrE#tqZ-HlrrE#tq>g6hrrDusrrE#t
+p](Hs!<3$!qZ$Qqr;Zcsr;Zcsr;Zcsrr;uur;Zcsr;Zcsr;Zcsr;ZTnJcC<$V#LDpli2J~>
+j8])YqZ$Qqa8Z,>R/d)\oDeahs8Vusp&>!lJcEairrDfnrW)osrrDusrrE#tqZ-HlrrE#tq>g6h
+rrDusrrE#tp](Hs!<3$!qZ$Qqr;Zcsr;Zcsr;Zcsrr;uur;Zcsr;Zcsr;Zcsr;ZTnJcE.XquG.E
+r2$Fn!!)?bJ,~>
+j8])YqZ$Qqa8Z,>R/d'aoDeahs8Vusp&>!lJcEairrDfnrW)osrrDusrrE#tqZ-HlrrE#tq>g6h
+rrDusrrE#tp](Hs!<3$!qZ$Qqr;Zcsr;Zcsr;Zcsrr;uur;Zcsr;Zcsr;Zcsr;ZTnJcE.XquG.E
+quEbs!!)?bJ,~>
+jT#2Zq#C?oaSu5?L&_&NJcE.XqZ-NnqZ$WrqZ$WrqZ-Zrp]1<nqZ-WqquHKkqZ$WrqZ-Wqr;clt
+p]1<nqZ$WrqZ-ZrquH]qquH]qqZ$WroDnghr;_EKJcDMF!!)?bJ,~>
+jT#2Zq#C?oaSu5?R/d)\oDe^gs8VusJcEC_qZ-NnqZ$WrqZ$WrqZ-Zrp]1<nqZ-WqquHKkqZ$Wr
+qZ-Wqr;cltp]1<nqZ$WrqZ-ZrquH]qquH]qqZ$WroDnghr;_EK[/^()d/X$?WrE&!li2J~>
+jT#2Zq#C?oaSu5?R/d'aoDe^gs8VusJcEC_qZ-NnqZ$WrqZ$WrqZ-Zrp]1<nqZ-WqquHKkqZ$Wr
+qZ-Wqr;cltp]1<nqZ$WrqZ-ZrquH]qquH]qqZ$WroDnghr;_EK[/^()d/X"DWrE&!li2J~>
+jT#5[pAY*maSu5?L&_&NJcCo5!!)rsrW%NLJcC<$WW)quli2J~>
+jT#5[pAY*maSu5?QiI#\oDe^gs8VusJcD/<!!)rsrW%NLJcE=]r;b4Er2$Fn!!)?bJ,~>
+jT#5[pAY*maSu5?QiI!aoDe^gs8VusJcD/<!!)rsrW%NLJcE=]r;b4EquEbs!!)?bJ,~>
+jSo2[p&>!laSu5?K`CrMJcCu7!!)ip!!%TMJcC<$WW)quli2J~>
+jSo2[p&>!laSu5?QiHu[oDe^g!<;rsJcD2=!!)ip!!%TMJcE=]r;b4ErM?Ln!!)?bJ,~>
+jSo2[p&>!laSu5?QiHs`oDe^g!<;rsJcD2=!!)ip!!%TMJcE=]r;b4Er;`hs!!)?bJ,~>
+jSo2[p&>!laSu5?K`CrMJcD#8rrDlp!!%TMJcC<$WW)quli2J~>
+jSo2[p&>!laSu5?QiHu[oDe^gs8VusJcD8?rrDlp!!%TMJcE=]r;b4ErM?Ln!!)?bJ,~>
+jSo2[p&>!laSu5?QiHs`oDe^gs8VusJcD8?rrDlp!!%TMJcE=]r;b4Er;`hs!!)?bJ,~>
+jSo2[pAb-maSu5?K`CrMJcD#8rrDoq!!%TMJcC<$W;chtli2J~>
+jSo2[pAb-maSu5?QN-lZo`+ghs8VusJcD8?rrDoq!!%TMJcE=]quG+DrM?Ln!!)?bJ,~>
+jSo2[pAb-maSu5?QN-j_o`+ghs8VusJcD8?rrDoq!!%TMJcE=]quG+Dr;`hs!!)?bJ,~>
+jT#5[q#C<naSu5?KE(iLJcD&9rW)lrrr@WMJcC<$W;chtli2J~>
+jT#5[q#C<naSu5?QN-lZoDe^g!<;rsJcD8?rW)lrrr@WMJcE=]quG+DrM?Ln!!)?bJ,~>
+jT#5[q#C<naSu5?QN-j_oDe^g!<;rsJcD8?rW)lrrr@WMJcE=]quG+Dr;`hs!!)?bJ,~>
+j8],Zqu?TpirArWq>^BnpAY*mKE(iLJcCu7qZ)3IJcC<$VZ-Vrli2J~>
+j8],Zqu?TpirArWq>^BnpAY*mQ2gfZoDe^gs8W#tJcD2=qZ)3IJcE7[quG+DrM?Ln!!)?bJ,~>
+j8],Zqu?TpirArWq>^BnpAY*mQ2gd_oDe^gs8W#tJcD2=qZ)3IJcE7[quG+Dr;`hs!!)?bJ,~>
+j8\fQj8],Zrr;uuqu?Zrs8W*!p\t3nK)bcLJcC<$JcC<$JcE(V!!)?bJ,~>
+j8\fQj8],Zrr;uuqu?Zrs8W*!p\t3nQ2gcYoDeahs8VusJcC<$JcC<$bl@S@dJs-@WW)quli2J~>
+j8\fQj8],Zrr;uuqu?Zrs8W*!p\t3nQ2ga^oDeahs8VusJcC<$JcC<$bl@S@dJs+EWW)quli2J~>
+irAcRj8T)Zqu?ZrrVultrVultq#:<oK)b`KJcC<$JcC<$JcE+W!!)?bJ,~>
+irAcRj8T)Zqu?ZrrVultrVultq#:<oQ2gcYoDe^g!<;rsJcC<$JcC<$bl@S@dJs-@WW)quli2J~>
+irAcRj8T)Zqu?ZrrVultrVultq#:<oQ2ga^oDe^g!<;rsJcC<$JcC<$bl@S@dJs+EWW)quli2J~>
+i;`ZSir8uYqu?ZrrVultrVultq#:<oK)b`KmJm.cJcC<$JcC<$JcEpn!!)?bJ,~>
+i;`ZSir8uYqu?ZrrVultrVultq#:<oPlLZXo`+ghs8W#toDediJcC<$JcC<$h>dERd/X$?WW)qu
+li2J~>
+i;`ZSir8uYqu?ZrrVultrVultq#:<oPlLX]o`+ghs8W#toDediJcC<$JcC<$h>dERd/X"DWW)qu
+li2J~>
+[/^.+rr;uuqu?Zrq>UEpJcGWJn,N:cJcC<$JcC<$JcEso!!)?bJ,~>
+[/^.+rr;uuqu?Zrq>UEpPlLZXoDe^g!<;rsp&FpiJcC<$JcC<$hZ*NSd/X$?WW)quli2J~>
+[/^.+rr;uuqu?Zrq>UEpPlLX]oDe^g!<;rsp&FpiJcC<$JcC<$hZ*NSd/X"DWW)quli2J~>
+fDbgNi;`fWrVultqu?Zrq>UEpJcGWJn,N:cJcC<$JcC<$JcEso!!)?bJ,~>
+fDbgNi;`fWrVultqu?Zrq>UEpPlLZXoDe^g!<;rsp&FpiJcC<$JcC<$hZ*NSd/X'@W;chtli2J~>
+fDbgNi;`fWrVultqu?Zrq>UEpPlLX]oDe^g!<;rsp&FpiJcC<$JcC<$hZ*NSd/X%EW;chtli2J~>
+fDbgNiVrlXqu?Zrqu?Zrq>UEpJc>`Mr;c9cr;_EKJcC<$JcC<$bl7YCli2J~>
+fDbgNiVrlXqu?Zrqu?Zrq>UEpPQ1QWoDeahs8W#to`+jiJcC<$JcC<$hZ*NSd/X'@W;chtli2J~>
+fDbgNiVrlXqu?Zrqu?Zrq>UEpPQ1O\oDeahs8W#to`+jiJcC<$JcC<$hZ*NSd/X%EW;chtli2J~>
+irAZOj8]#WrVultqu?Zrq>UEpJc>`MquH3cquD<JJcC<$JcC<$c2RbDli2J~>
+irAZOj8]#WrVultqu?Zrq>UEpPQ1QWoDe^g!<;rsp&FpiJcC<$JcC<$i;`]Td/X'@W;chtli2J~>
+irAZOj8]#WrVultqu?Zrq>UEpPQ1O\oDe^g!<;rsp&FpiJcC<$JcC<$i;`]Td/X%EW;chtli2J~>
+j8\`Oi;`cVrr;uuqu?Zrq>]m`OoP=Zn,N:cJcC<$JcC<$JcFU,mf;\RJ,~>
+j8\`Oi;`cVrr;uuqu?Zrq>]m`U]:7go`+gh!<;rsp&FpiJcC<$JcC<$i;`]Td/X'@\c;*uli2J~>
+j8\`Oi;`cVrr;uuqu?Zrq>]m`U]:5lo`+gh!<;rsp&FpiJcC<$JcC<$i;`]Td/X%E\c;*uli2J~>
+jT"fOhuE]Vrr;uuqu?Zrq>UEpJcGcMquH3cquD<JJcC<$JcC<$cMmkEli2J~>
+jT"fOhuE]Vrr;uuqu?Zrq>UEpP5kHVoDe^g!<;uto`+ghJcC<$JcC<$iW&fUd/X'@W;chtli2J~>
+jT"fOhuE]Vrr;uuqu?Zrq>UEpP5kF[oDe^g!<;uto`+ghJcC<$JcC<$iW&fUd/X%EW;chtli2J~>
+jT#5[pAY*mhuE]Vrr;uuqu?Zrq>UEpJcGcMquH3cquD<JJcC<$JcC<$cMmkEli2J~>
+jT#5[pAY*mhuE]Vrr;uuqu?Zrq>UEpP5kHVoDe^g!<;rsp&FpiJcC<$JcC<$iW&fUdJs-@W;cht
+li2J~>
+jT#5[pAY*mhuE]Vrr;uuqu?Zrq>UEpP5kF[oDe^g!<;rsp&FpiJcC<$JcC<$iW&fUdJs+EW;cht
+li2J~>
+jSo2[p&>!lhuE]Vrr;uuqu?Zrq>UEpJcG`Lr;c<dquD<JJcC<$JcC<$cMmkEli2J~>
+jSo2[p&>!lhuE]Vrr;uuqu?Zrq>UEpOoP?UoDeah!<;rsp&FpiJcC<$JcC<$iW&iVd/X$?W;cht
+li2J~>
+jSo2[p&>!lhuE]Vrr;uuqu?Zrq>UEpOoP=ZoDeah!<;rsp&FpiJcC<$JcC<$iW&iVd/X"DW;cht
+li2J~>
+jSo2[df9=IrVlitqu6Wrq#:<oJcG`LquH3cquD<JJcC<$JcC<$ci3tFli2J~>
+jSo2[df9=IrVlitqu6Wrq#:<oOoP?UoDe^g!<;uto`+ghJcC<$JcC<$irArWd/X$?W;chtli2J~>
+jSo2[df9=IrVlitqu6Wrq#:<oOoP=ZoDe^g!<;uto`+ghJcC<$JcC<$irArWd/X"DW;chtli2J~>
+j8T)ZpAY*mi;`fWr;ZcsrVultq#:<oJcG`LquH3cquD<JJcC<$JcC<$ci3tFli2J~>
+j8T)ZpAY*mi;`fWr;ZcsrVultq#:<oOT59UoDe^g!<;rsp&FpiJcC<$JcC<$irArWd/X$?W;cht
+li2J~>
+j8T)ZpAY*mi;`fWr;ZcsrVultq#:<oOT57ZoDe^g!<;rsp&FpiJcC<$JcC<$irArWd/X"DW;cht
+li2J~>
+j8T)ZpAY*mk5YG]rr;uuqZ$Qqs8W*!p\t3nJcG]KquH3cquD<JJcC<$JcC<$d/O(Gli2J~>
+j8T)ZpAY*mk5YG]rr;uuqZ$Qqs8W*!p\t3nOT56ToDeObo`+ghJcC<$JcC<$j8]&Xd/X'@VuH_s
+li2J~>
+j8T)ZpAY*mk5YG]rr;uuqZ$Qqs8W*!p\t3nOT54YoDeObo`+ghJcC<$JcC<$j8]&Xd/X%EVuH_s
+li2J~>
+irAZOk5Y>Zp](0lpAY*mJcG]KquH3cquD<JJcC<$JcC<$d/O(Gli2J~>
+irAZOk5Y>Zp](0lpAY*mOT56ToDe^g!<;uto`+ghJcC<$JcC<$jT#,Xd/X'@VuH_sli2J~>
+irAZOk5Y>Zp](0lpAY*mOT54YoDe^g!<;uto`+ghJcC<$JcC<$jT#,Xd/X%EVuH_sli2J~>
+j8\`OaSu5?JcG]KquH3cquD<JJcC<$JcC<$d/O(Gli2J~>
+j8\`OaSu5?O8o-So`+gh!<;rsp&FpiJcC<$JcC<$jT#,Xd/X'@VuH_sli2J~>
+j8\`OaSu5?O8o+Xo`+gh!<;rsp&FpiJcC<$JcC<$jT#,Xd/X%EVuH_sli2J~>
+jT"fOaSu5?JcGZJquH3cquD<JJcC<$JcC<$j8],Znc&Rhli2J~>
+jT"fOaSu5?O8o-SoDeObo`+ghJcC<$JcC<$jo>5Yd/X'@\c;[0nc&Rhli2J~>
+jT"fOaSu5?O8o+XoDeObo`+ghJcC<$JcC<$jo>5Yd/X%E\c;[0nc&Rhli2J~>
+jT#5[pAY*maSu5?JcGZJquH3cquD<JJcC<$JcC<$j8]&XoD\djli2J~>
+jT#5[pAY*maSu5?O8o-SoDe^g!<;uto`+ghJcC<$JcC<$jo>5YdJs-@\c;U.oD\djli2J~>
+jT#5[pAY*maSu5?O8o+XoDe^g!<;uto`+ghJcC<$JcC<$jo>5YdJs+E\c;U.oD\djli2J~>
+jSo2[p&>!laSu5?JcGWIquH3cr;_EKJcC<$JcC<$jT#,XoD\djli2J~>
+jSo2[p&>!laSu5?NrT$RoDeObo`+jiJcC<$JcC<$jo>5YdJs-@])V[.oD\djli2J~>
+jSo2[p&>!laSu5?NrT"WoDeObo`+jiJcC<$JcC<$jo>5YdJs+E])V[.oD\djli2J~>
+jSo2[]Dhj2JcGWIquH3cquD<JJcC<$JcC<$jo>5YoD\djli2J~>
+jSo2[]Dhj2NrT$RoDeObo`+ghJcC<$JcC<$k5YA[d/X$?])V[.oD\djli2J~>
+jSo2[]Dhj2NrT"WoDeObo`+ghJcC<$JcC<$k5YA[d/X"D])V[.oD\djli2J~>
+jSo2[]Dhj2JcGWIquH3cr;_EKJcC<$JcC<$jo>5Yo)A[ili2J~>
+jSo2[]Dhj2NW8pQo`+gh!<;uto`+jiJcC<$JcC<$jo>8Zd/X$?]Dqd/o)A[ili2J~>
+jSo2[]Dhj2NW8nVo`+gh!<;uto`+jiJcC<$JcC<$jo>8Zd/X"D]Dqd/o)A[ili2J~>
+j8T)ZpAY*maSu5?JcGTHquD<JJcC<$JcC<$d/X"Do)A[ili2J~>
+j8T)ZpAY*maSu5?NW8pQoDeObJcC<$JcC<$ec5RJd/X$?]Dqd/o)A[ili2J~>
+j8T)ZpAY*maSu5?NW8nVoDeObJcC<$JcC<$ec5RJd/X"D]Dqd/o)A[ili2J~>
+ir8uYp\t3naSu5?JcGTHquD<JJcC<$JcC<$d/X"Do)A[ili2J~>
+ir8uYp\t3naSu5?NW8pQoDeObJcC<$JcC<$ec5RJd/X'@])V[.o)A[ili2J~>
+ir8uYp\t3naSu5?NW8nVoDeObJcC<$JcC<$ec5RJd/X%E])V[.o)A[ili2J~>
+jT"fOaSu5?JcGQGquD<JJcC<$JcC<$df94Fnc&Rhli2J~>
+jT"fOaSu5?N;rgPoDeRcJcC<$JcC<$f)PXJd/X'@]Dqd/nc&Rhli2J~>
+jT"fOaSu5?N;reUoDeRcJcC<$JcC<$f)PXJd/X%E]Dqd/nc&Rhli2J~>
+jT"fOaSu5?JcGQGquD<JJcC<$JcC<$ci="Fnc&Rhli2J~>
+jT"fOaSu5?N;rgPoDeObJcC<$JcC<$fDkaKd/X'@\GuR/nc&Rhli2J~>
+jT"fOaSu5?N;reUoDeObJcC<$JcC<$fDkaKd/X%E\GuR/nc&Rhli2J~>
+j8\`OaSu5?JcGQGquD<JJcC<$JcC<$^&J'4li2J~>
+j8\`OaSu5?MuWaPoDeObJcC<$JcC<$fDkaKd/X'@VZ-Vrli2J~>
+j8\`OaSu5?MuW_UoDeObJcC<$JcC<$fDkaKd/X%EVZ-Vrli2J~>
+j8T)ZpAY*maSu5?JcGNFquD<J_Z0<0n,N(]JcC<$JcDSH!!)?bJ,~>
+j8T)ZpAY*maSu5?MuW^OoDeRcJcEaip&OR]p&K[DJcE=]quG.Er2$:j!!)?bJ,~>
+j8T)ZpAY*maSu5?MuW\ToDeRcJcEaip&OR]p&K[DJcE=]quG.EquEVo!!)?bJ,~>
+fDbgNaSu5?JcGNFquD<J^]4<6r;Z`rmf3:er;Z`rJcC<$JcDYJ!!)?bJ,~>
+fDbgNaSu5?MuW^OoDeObJcE[grrDusrW)BdrrDusrW%NLJcEC_r;b4Er2$:j!!)?bJ,~>
+fDbgNaSu5?MuW\ToDeObJcE[grrDusrW)BdrrDusrW%NLJcEC_r;b4EquEVo!!)?bJ,~>
+Sc8ZiJcGKEr;_EK^]4<6qu?Wqn,NCfqu?WqJcC<$JcD\K!!)?bJ,~>
+Sc8ZiMZ<UNoDeRcJcE[grrDrrrW)EerrDrrrW%NLJcEF`r;b4Er2$:j!!)?bJ,~>
+Sc8ZiMZ<SSoDeRcJcE[grrDrrrW)EerrDrrrW%NLJcEF`r;b4EquEVo!!)?bJ,~>
+Sc8ZiJcGKEquD<J_#OE7qZ$Qqn,NCfqZ$QqJcC<$JcD\K!!)?bJ,~>
+Sc8ZiMZ<UNoDeRcJcE[grrDoqrrDNfrrDoqrr@WMJcEF`r;b4Er2$:j!!)?bJ,~>
+Sc8ZiMZ<SSoDeRcJcE[grrDoqrrDNfrrDoqrr@WMJcEF`r;b4EquEVo!!)?bJ,~>
+Sc8ZiJcGKEquH'_!!%TMfDkjNqZ$Qqn,NCfqZ$QqJcC<$JcD\K!!)?bJ,~>
+Sc8ZiM?!LMo`+XcnG`IgJcF@%rrDoqrrDNfrrDoqrr@WMJcEF`r;b4Er2$:j!!)?bJ,~>
+Sc8ZiM?!JRo`+XcnG`IgJcF@%rrDoqrrDNfrrDoqrr@WMJcEF`r;b4EquEVo!!)?bJ,~>
+Sc8ZiJcGHDr;c9cquD<Jf`1sOqZ$QqqZ$KoqZ$QqqZ$QqJcC<$JcD\K!!)?bJ,~>
+Sc8ZiM?!LMoDeRcoDe^gJcFC&rrDoqrrDoqr;c]orrDoqrr@WMJcEIaquG+DrM?@j!!)?bJ,~>
+Sc8ZiM?!JRoDeRcoDe^gJcFC&rrDoqrrDoqr;c]orrDoqrr@WMJcEIaquG+Dr;`\o!!)?bJ,~>
+Sc8ZiJcGHDquH3cquD<Jf`1sOqu?Zrqu?Zrrr;uuqu?Zrqu?ZrJcC<$JcDYJ!!)?bJ,~>
+Sc8ZiM?!LMoDeObo`+ghJcFC&rrDrrrrDrrrrE&urrDrrrrDrrrr@WMJcEF`quG+DrM?@j!!)?b
+J,~>
+Sc8ZiM?!JRoDeObo`+ghJcFC&rrDrrrrDrrrrE&urrDrrrrDrrrr@WMJcEF`quG+Dr;`\o!!)?b
+J,~>
+Sc8ZiJcGECr;c<dquD<Jf`1sOr;ZcsqYpNqr;Zcsr;ZNlJcC<$JcDVI!!)?bJ,~>
+Sc8ZiM#[CLoDeRco`+ghJcFC&rrDusrrDoq!!)rsrrDusp],mFJcEC_quG+DrM?@j!!)?bJ,~>
+Sc8ZiM#[AQoDeRco`+ghJcFC&rrDusrrDoq!!)rsrrDusp],mFJcEC_quG+Dr;`\o!!)?bJ,~>
+Sc8ZiJcGECr;c9cquD<Jg&LmKq>^Hpr;Zcsr;Zcss8VrrJcC<$JcEOcrW)9a!!)?bJ,~>
+Sc8ZiM#[CLoDeRcoDe^gT`<:;mJm"_q>^Hpr;Zcsr;Zcss8VrrJcC<$^&S!1d/X'@^An04li-qb
+li2J~>
+Sc8ZiM#[AQoDeRcoDe^gT`<:;mJm"_q>^Hpr;Zcsr;Zcss8VrrJcC<$^&S!1d/X%E^An04li-qb
+li2J~>
+Sc8ZiJcGECquH3cquD<Jg&M'Ps8W&uq>^0hrVultqZ$NpJcC<$JcEXfquH*`!!)?bJ,~>
+Sc8ZiL]@:Ko`+Xco`+ghT`<:;mJm1ds8W&uq>^0hrVultqZ$NpJcC<$^]464d/X$?^]433m/I%c
+li2J~>
+Sc8ZiL]@8Po`+Xco`+ghT`<:;mJm1ds8W&uq>^0hrVultqZ$NpJcC<$^]464d/X"D^]433m/I%c
+li2J~>
+lMgha[Jp4,JcGBBr;c9cquD<JgAh0Qrr;rtqZ$Qqp&G$lq>^HpJcC<$JcEXfquH*`!!)?bJ,~>
+lMgha[Jp4,L]@:KoDeRcoDe^gU&WC<mJm1drr;rtqZ$Qqp&G$lq>^HpJcC<$^]464d/X$?^]433
+m/I%cli2J~>
+lMgha[Jp4,L]@8PoDeRcoDe^gU&WC<mJm1drr;rtqZ$Qqp&G$lq>^HpJcC<$^]464d/X"D^]433
+m/I%cli2J~>
+lMpka[f6=-JcGBBr;c9cquD<JgAh0QrVuisqu?Zrp&G$lq>^EoJcC<$JcE[gquH*`!!)?bJ,~>
+lMpka[f6=-L]@:KoDeRcoDe^gU&WC<mJm1drVuisqu?Zrp&G$lq>^EoJcC<$_#O?5d/X$?^]433
+m/I%cli2J~>
+lMpka[f6=-L]@8PoDeRcoDe^gU&WC<mJm1drVuisqu?Zrp&G$lq>^EoJcC<$_#O?5d/X"D^]433
+m/I%cli2J~>
+lMp>R`W#o<JcG?Ar;c<dquD<JgAh0QrVufrr;Zcsp&G$lq>^EoJcC<$JcE^hquH'_!!)?bJ,~>
+lMp>R`W#o<LB%1JoDeRco`+ghJcFI(rrE#tr;ccqrrD`lrrDlprW%NLJcEOcr;b4Er2%4/quH'_
+!!)?bJ,~>
+lMp>R`W#o<LB%/OoDeRco`+ghJcFI(rrE#tr;ccqrrD`lrrDlprW%NLJcEOcr;b4EquFP4quH'_
+!!)?bJ,~>
+lMp8Pa8Z,>JcG?Ar;c9cquD<Jg].9Rr;Z]qrVuisqu6WrrVultq>^EoJcC<$JcE^hquH'_!!)?b
+J,~>
+lMp8Pa8Z,>LB%1JoDeRcoDe^gJcFL)rrDusr;cfrrW)iq!!)utrrDlprW%NLJcEOcr;b4ErM@:/
+quH'_!!)?bJ,~>
+lMp8Pa8Z,>LB%/OoDeRcoDe^gJcFL)rrDusr;cfrrW)iq!!)utrrDlprW%NLJcEOcr;b4Er;aV4
+quH'_!!)?bJ,~>
+lMp8Pa8Z,>JcG?AquH3cquD<Jg].9Rqu?Tprr;osrVlitr;ZcsqZ$NpJcC<$JcE^hquH$^!!)?b
+J,~>
+lMp8Pa8Z,>L&_(Io`+[doDe^gJcFL)rrDrrr;cisr;cfr!!)rsrrDoqrW%NLJcEOcquG+DrM@=0
+quH$^!!)?bJ,~>
+lMp8Pa8Z,>L&_&No`+[doDe^gJcFL)rrDrrr;cisr;cfr!!)rsrrDoqrW%NLJcEOcquG+Dr;aY5
+quH$^!!)?bJ,~>
+lMpkanG`IgaSu5?JcG<@r;c9cr;_EKg].9RqZ$Korr;fpqu?Zrqu?TpJcC<$JcE^hquH$^!!)?b
+J,~>
+lMpkanG`IgaSu5?L&_(IoDeRcoDeahJcFL)rrDoqr;cisq>gEmrrDrrr;_EKJcEOcquG+DrM@=0
+quH$^!!)?bJ,~>
+lMpkanG`IgaSu5?L&_&NoDeRcoDeahJcFL)rrDoqr;cisq>gEmrrDrrr;_EKJcEOcquG+Dr;aY5
+quH$^!!)?bJ,~>
+lMghan,E@faSu5?JcG<@r;c9cquD<JhuEKPr;Z]qrr;lrrVuKiJcC<$JcEXfquH$^!!)?bJ,~>
+lMghan,E@faSu5?L&_(IoDeRcoDe^gJcFX-q#L?mr;cisquH]qoDjIBJcEIaquG+DrM@=0quH$^
+!!)?bJ,~>
+lMghan,E@faSu5?L&_&NoDeRcoDe^gJcFX-q#L?mr;cisquH]qoDjIBJcEIaquG+Dr;aY5quH$^
+!!)?bJ,~>
+lMghanc/RgaSu5?JcG9?r;c<dquD<JJcC<$JcC<$q#C6ll2L_`li2J~>
+lMghanc/RgaSu5?K`CtHoDeUdoDe^gJcC<$JcC<$o)JUfd/X'@_>jE5l2L_`li2J~>
+lMghanc/RgaSu5?K`CrMoDeUdoDe^gJcC<$JcC<$o)JUfd/X%E_>jE5l2L_`li2J~>
+g&M$OaT)#8JcGQGr;c9cquD<JJcC<$JcC<$q>^?mnc/@ali2J~>
+g&M$OaT)#8N;rgPoDeRcoDe^gJcC<$JcC<$oDeahd/X$?_>jE5nc/@ali2J~>
+g&M$OaT)#8N;reUoDeRcoDe^gJcC<$JcC<$oDeahd/X"D_>jE5nc/@ali2J~>
+g&M$OaSu5?JcG9?r;c9cquD<JJcC<$JcC<$q>^Bnkl1V_li2J~>
+g&M$OaSu5?KE(kGo`+[doDe^gJcC<$JcC<$oDeahd/X$?_>jH6kl1V_li2J~>
+g&M$OaSu5?KE(iLo`+[doDe^gJcC<$JcC<$oDeahd/X"D_>jH6kl1V_li2J~>
+g&M'Pa8Z,>JcG6>r;c9cquD<JJcC<$JcC<$qu?Qokl1V_li2J~>
+g&M'Pa8Z,>KE(kGoDeRcoDe^gJcC<$JcC<$o`+jid/X$?_Z0N6kl1V_li2J~>
+g&M'Pa8Z,>KE(iLoDeRcoDe^gJcC<$JcC<$o`+jid/X"D_Z0N6kl1V_li2J~>
+fDbgNaSu5?JcG6>r;c9cquD<JJcC<$JcC<$qu?Qokl1V_li2J~>
+fDbgNaSu5?KE(kGoDeRcoDe^gJcC<$JcC<$o`+jid/X$?_Z0N6kl1V_li2J~>
+fDbgNaSu5?KE(iLoDeRcoDe^gJcC<$JcC<$o`+jid/X"D_Z0N6kl1V_li2J~>
+jSo2[p&>!laSu5?JcG3=rW)BdquD<JJcC<$JcC<$r;ZZpkPkM^li2J~>
+jSo2[p&>!laSu5?K)bbFoDeUdoDe^gJcC<$JcC<$p&Fpid/X'@_Z0N6kPkM^li2J~>
+jSo2[p&>!laSu5?K)b`KoDeUdoDe^gJcC<$JcC<$p&Fpid/X%E_Z0N6kPkM^li2J~>
+jSo2[pAb-maSu5?JcG3=r;c9crr@WMJcC<$JcC<$qZ$HnkPkM^li2J~>
+jSo2[pAb-maSu5?K)bbFoDeRcoDegjJcC<$JcC<$oDe^gd/X'@_Z0N6kPkM^li2J~>
+jSo2[pAb-maSu5?K)b`KoDeRcoDegjJcC<$JcC<$oDe^gd/X%E_Z0N6kPkM^li2J~>
+jSo2[p](3maSu5?JcG3=r;_EKJcC<$JcC<$k5Y>Zk5PD]li2J~>
+jSo2[p](3maSu5?JcGYEo`+[dJcC<$JcC<$j8]#Wd/X'@_uKW7k5PD]li2J~>
+jSo2[p](3maSu5?JcGWJo`+[dJcC<$JcC<$j8]#Wd/X%E_uKW7k5PD]li2J~>
+jT#5[q>^BnaSu5?JcG0<rW%NLJcC<$JcC<$k5Y>Zk5PD]li2J~>
+jT#5[q>^BnaSu5?JcGYEoDeUdJcC<$JcC<$j8]#Wd/X'@_uKW7k5PD]li2J~>
+jT#5[q>^BnaSu5?JcGWJoDeUdJcC<$JcC<$j8]#Wd/X%E_uKW7k5PD]li2J~>
+jT#2Zqu?QoaSu5?JcG0<r;_EKJcC<$JcC<$jo>;[k5PD]li2J~>
+jT#2Zqu?QoaSu5?JcGYEoDeRcJcC<$JcC<$jT#/Yci<s?_>jK7k5PD]li2J~>
+jT#2Zqu?QoaSu5?JcGWJoDeRcJcC<$JcC<$jT#/Yci<qD_>jK7k5PD]li2J~>
+jSo8]rrDusr;Zlu!6G0?!.k1;s8E"Ls+13$s+13$s2Y->!:0Z8~>
+jSo8]rrDusr;Zlu!6G0?!.k.Ms88_bs7lYGs+13$s+142s8;rEs88^grr<&bs*t~>
+jSo8]rrDusr;Zlu!6G0?!.k.Ms82lgs7lYGs+13$s+142s8;rEs82klrr<&bs*t~>
+jSo;^s8N)us8;r:rr<%Ms6]jc!.k0$s+13$s+13jrr<&bs*t~>
+jSo;^s8N)us8;r:rr<%MrrE)sV=X`_!.k0$s+13$s5a4Y!7:cDV5+%j!:0Z8~>
+jSo;^s8N)us8;r:rr<%MrrE)s!;$6d!.k0$s+13$s5a4Y!7:cD!2KPo!:0Z8~>
+i;WfXs8E#9rr<%Ms6]jb!.k0$s+13$s+13krr<&bs*t~>
+i;WfXs8E#9rr<%Ms8W,sV=af_!.k0$s+13$s5j:Z!7:cDV5+%j!:0Z8~>
+i;WfXs8E#9rr<%Ms8W,s!;-<d!.k0$s+13$s5j:Z!7:cD!2KPo!:0Z8~>
+huEZUr;Q`saSu5?JcG*:rW%NLJcC<$JcC<$aSu5?li2J~>
+huEZUr;Q`saSu5?JcGcMr2'#bq#H!GJcC<$JcFm4quG+Dr2$1g!!)?bJ,~>
+huEZUr;Q`saSu5?JcGcMquH?gq#H!GJcC<$JcFm4quG+DquEMl!!)?bJ,~>
+hZ!QUqu6WraSu5?JcG*:r;_EKJcC<$JcC<$ao;>@li2J~>
+hZ!QUqu6WraSu5?JcGcMr2'#bq#H!GJcC<$JcFm4quG+DrM?7g!!)?bJ,~>
+hZ!QUqu6WraSu5?JcGcMquH?gq#H!GJcC<$JcFm4quG+Dr;`Sl!!)?bJ,~>
+li6;OaSu5?JcG'9rW%NLJcC<$JcC<$ao;>@li2J~>
+li6;OaSu5?JcG`Lr2'#bq#H!GJcC<$JcFp5quG+DrM?7g!!)?bJ,~>
+li6;OaSu5?JcG`LquH?gq#H!GJcC<$JcFp5quG+Dr;`Sl!!)?bJ,~>
+li6;OaSu5?JcG'9rW)<br;_EKJcC<$JcC<$ir8uYli2J~>
+li6;OaSu5?JcG`Lr2'#bq#Ksbr;_EKJcC<$JcGWIquG+DrM?7g!!)?bJ,~>
+li6;OaSu5?JcG`LquH?gq#Ksbr;_EKJcC<$JcGWIquG+Dr;`Sl!!)?bJ,~>
+lMp5OaSu5?JcG$8rW)BdquD<JJcC<$JcC<$ir8uYli2J~>
+lMp5OaSu5?JcG]Kr2'#bq>g*dquD<JJcC<$JcGWIquG+DrM?7g!!)?bJ,~>
+lMp5OaSu5?JcG]KquH?gq>g*dquD<JJcC<$JcGWIquG+Dr;`Sl!!)?bJ,~>
+lMghan,E@faSu5?JcG$8rW)?cquD<JJcC<$JcC<$j8T)Zli2J~>
+lMghan,E@faSu5?JcG]Kr2'#bq#L!cquD<JJcC<$JcGZJr;b4Er2$.f!!)?bJ,~>
+lMghan,E@faSu5?JcG]KquH?gq#L!cquD<JJcC<$JcGZJr;b4EquEJk!!)?bJ,~>
+lMghan,E@faSu5?JcG$8rW)?cquD<JJcC<$JcCN*rrCsV!!)?bJ,~>
+lMghan,E@faSu5?JcGZJr2'&cq#L!cquD<JJcC<$JcGZJr;b4Er2%F5rrCsV!!)?bJ,~>
+lMghan,E@faSu5?JcGZJquHBhq#L!cquD<JJcC<$JcGZJr;b4EquFb:rrCsV!!)?bJ,~>
+Sc8ZiJcG!7rW)BdquD<JJcC<$JcCQ+quG^U!!)?bJ,~>
+Sc8ZiJcGZJr2'#bq#L$dquD<JJcC<$JcGZJr;b4Er2%I6quG^U!!)?bJ,~>
+Sc8ZiJcGZJquH?gq#L$dquD<JJcC<$JcGZJr;b4EquFe;quG^U!!)?bJ,~>
+lMghalMghac2RbDJcG!7rW)?cquD<JJcC<$JcCT,quG^U!!)?bJ,~>
+lMghalMghac2RbDJcGZJr2'#bq#L!cquD<JJcC<$JcG`LquG+Dr2%I6quG^U!!)?bJ,~>
+lMghalMghac2RbDJcGZJquH?gq#L!cquD<JJcC<$JcG`LquG+DquFe;quG^U!!)?bJ,~>
+lMghalMghac2RbDJcFs6rrDHdquD<JJcC<$JcCW-quG[T!!)?bJ,~>
+lMghalMghac2RbDJcGWIr2'#bq>g*dquD<JJcC<$JcG`LquG+Dr2%L7quG[T!!)?bJ,~>
+lMghalMghac2RbDJcGWIquH?gq>g*dquD<JJcC<$JcG`LquG+DquFh<quG[T!!)?bJ,~>
+lMghalMghac2RbDJcFs6rW)?cquD<JJcC<$JcCZ.quG[T!!)?bJ,~>
+lMghalMghac2RbDJcGWIr2'#bq#L!cquD<JJcC<$JcGcMquG+DrM@R7quG[T!!)?bJ,~>
+lMghalMghac2RbDJcGWIquH?gq#L!cquD<JJcC<$JcGcMquG+Dr;an<quG[T!!)?bJ,~>
+lMghalMghac2RbDJcFs6rW)?cquD<JJcC<$JcCZ.r;baT!!)?bJ,~>
+lMghalMghac2RbDJcGTHr2'&cq#L!cquD<JJcC<$JcGcMquG+DrM@R7r;baT!!)?bJ,~>
+lMghalMghac2RbDJcGTHquHBhq#L!cquD<JJcC<$JcGcMquG+Dr;an<r;baT!!)?bJ,~>
+lMp&Jc2RbDJcFp5rW)?cr;_EKJcC<$JcC]/quGXS!!)?bJ,~>
+lMp&Jc2RbDJcGTHr2'#bq#L!cr;_EKJcC<$JcGcMr;b1DrM@U8quGXS!!)?bJ,~>
+lMp&Jc2RbDJcGTHquH?gq#L!cr;_EKJcC<$JcGcMr;b1Dr;aq=quGXS!!)?bJ,~>
+lMp&Jc2RbDJcFp5rW)?cquD<JJcC<$JcC`0quGXS!!)?bJ,~>
+lMp&Jc2RbDJcGTHr2'#bq#L!cquD<JJcC<$Jc>`Mr;b1DrM@U8quGXS!!)?bJ,~>
+lMp&Jc2RbDJcGTHquH?gq#L!cquD<JJcC<$Jc>`Mr;b1Dr;aq=quGXS!!)?bJ,~>
+lMp&Jc2RbDJcFm4rrDHdquD<JJcC<$JcCc1quGUR!!)?bJ,~>
+lMp&Jc2RbDJcGQGr2'#bq>g*dquD<JJcC<$Jc>`Mr;b4Er2%O8quGUR!!)?bJ,~>
+lMp&Jc2RbDJcGQGquH?gq>g*dquD<JJcC<$Jc>`Mr;b4EquFk=quGUR!!)?bJ,~>
+Sc8ZiJcFm4rW)?cquD<JJcC<$JcCf2quGUR!!)?bJ,~>
+Sc8ZiJcGQGr2'#bq#L!cquD<JJcC<$K)b`Kd/X$?aoD8=hZ!QUli2J~>
+Sc8ZiJcGQGquH?gq#L!cquD<JJcC<$K)b`Kd/X"DaoD8=hZ!QUli2J~>
+Sc8ZiJcFm4rW)?cquD<JJcC<$JcCi3quGRQ!!)?bJ,~>
+Sc8ZiJcGNFr2'&cq#L!cquD<JJcC<$K)b`Kd/X$?b5_A>h>[HTli2J~>
+Sc8ZiJcGNFquHBhq#L!cquD<JJcC<$K)b`Kd/X"Db5_A>h>[HTli2J~>
+Sc8ZiJcFj3rW)?cquD<JJcC<$JcCl4quGRQ!!)?bJ,~>
+Sc8ZiJcGNFr2'#bq>g'cquD<JJcC<$KE(iLd/X$?b5_A>h>[HTli2J~>
+Sc8ZiJcGNFquH?gq>g'cquD<JJcC<$KE(iLd/X"Db5_A>h>[HTli2J~>
+\,ZC,q>^<lq>UEpJcFj3rW)?cquD<JRf<?fJcC<$JcGQGquGRQ!!)?bJ,~>
+\,ZC,q>^<lq>UEpJcGKEr2'&cq#L!cquD<JRf<?fJcC<$li6n`ci<p>b5_A>h>[HTli2J~>
+\,ZC,q>^<lq>UEpJcGKEquHBhq#L!cquD<JRf<?fJcC<$li6n`ci<nCb5_A>h>[HTli2J~>
+\c;L+qu?Kmq>UEpJcFg2rrDHdquD<Jjo>2Xs8N'!k5YG]huEWTZiC%*f)PFDn,N(]JcD;@quGOP
+!!)?bJ,~>
+\c;L+qu?Kmq>UEpJcGKEr2'#bq>g*dquD<Jjo>2Xs8N'!k5YG]huEWTZiC%*f)PFDn,N(]NrT%X
+ci<s?b5_A>h#@?Sli2J~>
+\c;L+qu?Kmq>UEpJcGKEquH?gq>g*dquD<Jjo>2Xs8N'!k5YG]huEWTZiC%*f)PFDn,N(]NrT%X
+ci<qDb5_A>h#@?Sli2J~>
+])Vd1rVuisr;Q`soD\djJcFg2rW)?cquD<Jkl:V^r;Z`rk5YG]h>dKTZiC%*e,TFJr;Z`rmf3:e
+r;Z`rJcDABquGOP!!)?bJ,~>
+])Vd1rVuisr;Q`soD\djJcGKEr2'#bq#L!cquD<Jkl:V^r;Z`rk5YG]h>dKTZiC%*e,TFJr;Z`r
+mf3:er;Z`rOT57Zci<s?b5_A>h#@?Sli2J~>
+])Vd1rVuisr;Q`soD\djJcGKEquH?gq#L!cquD<Jkl:V^r;Z`rk5YG]h>dKTZiC%*e,TFJr;Z`r
+mf3:er;Z`rOT57Zci<qDb5_A>h#@?Sli2J~>
+])Ma1qu?Zrr;Q`soD\djJcFd1rrDHdrW%NLkl:V^q>^Hpk5YG]h>dKTZiC%*e,TFJqu?Wqn,NCf
+qu?WqJcDGDquGLO!!)?bJ,~>
+])Ma1qu?Zrr;Q`soD\djJcGHDr2'#bq>g*drW%NLkl:V^q>^Hpk5YG]h>dKTZiC%*e,TFJqu?Wq
+n,NCfqu?WqP5kF[ci<s?bQ%J?g]%6Rli2J~>
+])Ma1qu?Zrr;Q`soD\djJcGHDquH?gq>g*drW%NLkl:V^q>^Hpk5YG]h>dKTZiC%*e,TFJqu?Wq
+n,NCfqu?WqP5kF[ci<qDbQ%J?g]%6Rli2J~>
+ZiC%*rVuiso`"mkJcFd1rr@WMdJs4Hp\t3n_#OE7KE(rOqZ$Qqn,NCfqZ$QqJcDGDquGLO!!)?b
+J,~>
+ZiC%*rVuiso`"mkJcGHDr2'#bq>c*Hf)PaMp\t3n_#OE7KE(rOqZ$Qqn,NCfqZ$QqP5kF[ci<s?
+bQ%J?g]%6Rli2J~>
+ZiC%*rVuiso`"mkJcGHDquH?gq>c*Hf)PaMp\t3n_#OE7KE(rOqZ$Qqn,NCfqZ$QqP5kF[ci<qD
+bQ%J?g]%6Rli2J~>
+ZiC%*rVucqpAY*mJcFd1rW%NLe,TCIp\t3n_#OE7Q2gjanc/UhqZ$Qqn,NCfqZ$QqJcDGDquGLO
+!!)?bJ,~>
+ZiC%*rVucqpAY*mJcGECr2'&cq#H!Gf`1pNp\t3n_#OE7Q2gjanc/UhqZ$Qqn,NCfqZ$QqP5kF[
+d/X$?bQ%J?g]%6Rli2J~>
+ZiC%*rVucqpAY*mJcGECquHBhq#H!Gf`1pNp\t3n_#OE7Q2gjanc/UhqZ$Qqn,NCfqZ$QqP5kF[
+d/X"DbQ%J?g]%6Rli2J~>
+Zi:"*q>^Bnq#:<oJcFa0rr@WMe,TFJnGiCdq>^?mr;ZcsrVult!<;rsqZ$Kop&G$ls8W#tqZ$Ko
+qYpZus8N'!rVlp!s8W#ts8VusqZ$Hnqu?Zr!<;rsqu?Zrqu?Qonc/Uhnc/UhqZ$QqqZ$KoqZ$Qq
+qZ$QqJcDGDr;bRO!!)?bJ,~>
+Zi:"*q>^Bnq#:<oJcGECr2'#bq>c*Hf`1sOnGiCdq>^?mr;ZcsrVult!<;rsqZ$Kop&G$ls8W#t
+qZ$KoqYpZus8N'!rVlp!s8W#ts8VusqZ$Hnqu?Zr!<;rsqu?Zrqu?Qonc/Uhnc/UhqZ$QqqZ$Ko
+qZ$QqqZ$QqP5kF[d/X$?bQ%M@gA_-Qli2J~>
+Zi:"*q>^Bnq#:<oJcGECquH?gq>c*Hf`1sOnGiCdq>^?mr;ZcsrVult!<;rsqZ$Kop&G$ls8W#t
+qZ$KoqYpZus8N'!rVlp!s8W#ts8VusqZ$Hnqu?Zr!<;rsqu?Zrqu?Qonc/Uhnc/UhqZ$QqqZ$Ko
+qZ$QqqZ$QqP5kF[d/X"DbQ%M@gA_-Qli2J~>
+Zi:"*q#C<nq#Bd_JcG?ArW%NLec5UKnc&RhrVultr;Z`rrr2rurr;oss8Vrrs8W&urVultrr;uu
+pAb'ks8W&ur;Q`srr;rts8W#t!<;cns8W#trr;uuqu6WrrVultrr;iqs8W&urr;osr;Zcsrr;uu
+o)J^inc/Uhqu?Zrqu?Zrrr;uuqu?Zrqu?ZrJcD;@!!)?bmf;\RJ,~>
+Zi:"*q#C<nq#Bd_L&_(Io`+afT)[*4n,N@enc&RhrVultr;Z`rrr2rurr;oss8Vrrs8W&urVult
+rr;uupAb'ks8W&ur;Q`srr;rts8W#t!<;cns8W#trr;uuqu6WrrVultrr;iqs8W&urr;osr;Zcs
+rr;uuo)J^inc/Uhqu?Zrqu?Zrrr;uuqu?Zrqu?ZrOoP@[ci<p>aSu5?li6DRli2J~>
+Zi:"*q#C<nq#Bd_L&_&No`+afT)[(9n,N@enc&RhrVultr;Z`rrr2rurr;oss8Vrrs8W&urVult
+rr;uupAb'ks8W&ur;Q`srr;rts8W#t!<;cns8W#trr;uuqu6WrrVultrr;iqs8W&urr;osr;Zcs
+rr;uuo)J^inc/Uhqu?Zrqu?Zrrr;uuqu?Zrqu?ZrOoP@[ci<nCaSu5?li6DRli2J~>
+d/X%El2L_`pAb*lq>UEpJcF^/rr@WMec5UKo)J^ir;ZcsrVultrVlitr;ZcsrVultr;ZcsrVlit
+r;Zcsp](6nr;ZcsrVultrVultrVuisqu?Zrr;Zcsr;ZcsrVultr;ZcsrVultr;Zcsr;ZcsrVult
+rVulto)J^inc/Uhr;ZcsqYpNqr;Zcsr;ZNlJcC<$o`"mkli2J~>
+d/X%El2L_`pAb*lq>UEpJcGBBr2'#bq>d/fcDC"0rW)NhrrDusrrE#trrE#t!!)rsrrE#trrDus
+rrE#t!!)rsrrDfnrrDusrrE#trrE#trrE#trW)iqrrDusrrDusrrE#trrDusrrE#trrDusrrDus
+rrE#trrE#trrDWirrDThrrDusrrDoq!!)rsrrDusp]-EUr;b1Dr2$(d!!)?bJ,~>
+d/X%El2L_`pAb*lq>UEpJcGBBquH?gq>d/fc2d>5rW)NhrrDusrrE#trrE#t!!)rsrrE#trrDus
+rrE#t!!)rsrrDfnrrDusrrE#trrE#trrE#trW)iqrrDusrrDusrrE#trrDusrrE#trrDusrrDus
+rrE#trrE#trrDWirrDThrrDusrrDoq!!)rsrrDusp]-EUr;b1DquEDi!!)?bJ,~>
+f)P^Ls8Vrrli-qbo`+pkq>UEpJcF^/rr@WMec5UKoDegjqu?Wqrr;uup](6nrVultr;Zcsrr;uu
+r;Zcsp](6nr;ZcsrVultrVultrVultqZ$Qqr;Zcsr;Zcsrr;uuqu?Wqrr;uur;Zcsr;ZcsrVlit
+qu6Wro)J^inc/Fcq>^Hpr;Zcsr;Zcss8VrrJcC<$p&>!lli2J~>
+f)P^Ls8Vrrli-qbo`+pkq>UEpJcGBBr2'#bq>d/fcDC"0rW)QirrDrrrW)rtrrDfnrrE#trrDus
+rrE&urrDusrrDfnrrDusrrE#trrE#trrE#trrDoqrrDusrrDusrrE&urrDrrrW)rtrrDusrrDus
+rrE#t!!)or!!)TirrDThq>g?krrDusrrDusrrE*!qZ)cYr;b1Dr2$(d!!)?bJ,~>
+f)P^Ls8Vrrli-qbo`+pkq>UEpJcGBBquH?gq>d/fc2d>5rW)QirrDrrrW)rtrrDfnrrE#trrDus
+rrE&urrDusrrDfnrrDusrrE#trrE#trrE#trrDoqrrDusrrDusrrE&urrDrrrW)rtrrDusrrDus
+rrE#t!!)or!!)TirrDThq>g?krrDusrrDusrrE*!qZ)cYr;b1DquEDi!!)?bJ,~>
+fDkaK!WN/us8N)ds8N)ks8N)prr<%Ms5<qW!.k1$s8E#is8N)qs8N)us8E#ns8N)ts8N)ss8N)u
+s7ZNgs8N)ss8N)os8E#ss8N)qs8N)ss8N)ss8N)us8N)qs8N)us8N)ss8N)ss8N)us8N)gs7?<c
+s8N*!s8E#os7ZNls8N)qs8E"Ls+14Err<&bs*t~>
+fDkaK!WN/us8N)ds8N)ks8N)prr<%Ms7?9gV=X``!20A;V=4H`!;$6j!;c`q!<3#t!;QTo!<)rt
+!;uls!<3#m!;QTo!;uls!;QTn!<)rt!;c`q!;uls!;uls!<3#u!;c`q!<3#u!;uls!;uls!<3#u
+!:^$\!;HNn!<<)u!;ZZh!<)rt!;c`p!0mN]!71]DV4[bf!:0Z8~>
+fDkaK!WN/us8N)ds8N)ks8N)prr<%Ms7?9g!;$6e!20A;!:Tse!;$6j!;c`q!<3#t!;QTo!<)rt
+!;uls!<3#m!;QTo!;uls!;QTn!<)rt!;c`q!;uls!;uls!<3#u!;c`q!<3#u!;uls!;uls!<3#u
+!:^$\!;HNn!<<)u!;ZZh!<)rt!;c`p!0mN]!71]D!2'8k!:0Z8~>
+f`1sOrr;uuqu6WrmJd.doDegjq>UEpJcF[.rr@WMf)P^LoDegjqZ$QqrVufrqZ$QqrVultr;Zcs
+rr;uunGiLgr;ZcsqZ$Qq!ri6#rVultqZ$Qqr;Zcsr;Zcsrr;uuqZ$Qqrr;uur;Zcsr;Zcsrr;uu
+nGi+\p](6nrr;rtqZ$Qqp&G$lq>^HpJcC<$p\t3nli2J~>
+f`1sOrr;uuqu6WrmJd.doDegjq>UEpJcG?Ar2'#bq>c*Hg].6QoDegjqZ$QqrVufrqZ$QqrVult
+r;Zcsrr;uunGiLgr;ZcsqZ$Qq!ri6#rVultqZ$Qqr;Zcsr;Zcsrr;uuqZ$Qqrr;uur;Zcsr;Zcs
+rr;uunGi+\p](6nrr;rtqZ$Qqp&G$lq>^HpPlLX]ci<s?TDnlkli2J~>
+f`1sOrr;uuqu6WrmJd.doDegjq>UEpJcG?AquH?gq>c*Hg].6QoDegjqZ$QqrVufrqZ$QqrVult
+r;Zcsrr;uunGiLgr;ZcsqZ$Qq!ri6#rVultqZ$Qqr;Zcsr;Zcsrr;uuqZ$Qqrr;uur;Zcsr;Zcs
+rr;uunGi+\p](6nrr;rtqZ$Qqp&G$lq>^HpPlLX]ci<qDTDnlkli2J~>
+f`(pOr;Q`squ6Wrmf*7eo)J^iq>UEpJcF[.rr@WMf)P^LoDegjqZ$Qqqu?Tpr;ZcsrVultr;Zcs
+rr;uunGiLgr;Zcsr;Zcsrr;uurVultqZ$Qqr;Zcsr;Zcsrr;uuqZ$Qqrr;uur;Zcsr;Zcsrr;uu
+li6tbnc/UhrVuisqu?Zrp&G$lq>^EoJcC<$q#:<oli2J~>
+f`(pOr;Q`squ6Wrmf*7eo)J^iq>UEpJcG<@r2'&cq>c*Hg].6QoDegjqZ$Qqqu?Tpr;ZcsrVult
+r;Zcsrr;uunGiLgr;Zcsr;Zcsrr;uurVultqZ$Qqr;Zcsr;Zcsrr;uuqZ$Qqrr;uur;Zcsr;Zcs
+rr;uuli6tbnc/UhrVuisqu?Zrp&G$lq>^EoQ2ga^ci<s?TDnlkli2J~>
+f`(pOr;Q`squ6Wrmf*7eo)J^iq>UEpJcG<@quHBhq>c*Hg].6QoDegjqZ$Qqqu?Tpr;ZcsrVult
+r;Zcsrr;uunGiLgr;Zcsr;Zcsrr;uurVultqZ$Qqr;Zcsr;Zcsrr;uuqZ$Qqrr;uur;Zcsr;Zcs
+rr;uuli6tbnc/UhrVuisqu?Zrp&G$lq>^EoQ2ga^ci<qDTDnlkli2J~>
+f`(pOr;Q`squ6Wrn,E@fqu6Wrq>^Hpq#:<oJcFX-rrD?arr@WMn,N@eo`+pkqZ$Qqq>^EorVult
+rVultr;Zcsrr;uunGiLgr;ZcsrVlitr;ZcsrVultqZ$Qqr;Zcsr;Zcsrr;uuqZ$Qqrr;uur;Zcs
+r;Zcsrr;uuli6tbnc/UhrVufrr;Zcsp&G$lq>^EoJcC<$q#:<oli2J~>
+f`(pOr;Q`squ6Wrn,E@fqu6Wrq>^Hpq#:<oJcG<@r2'#bq>g!arr@WMn,N@eo`+pkqZ$Qqq>^Eo
+rVultrVultr;Zcsrr;uunGiLgr;ZcsrVlitr;ZcsrVultqZ$Qqr;Zcsr;Zcsrr;uuqZ$Qqrr;uu
+r;Zcsr;Zcsrr;uuli6tbnc/UhrVufrr;Zcsp&G$lq>^EoQ2gd_cN!j>TDnlkli2J~>
+f`(pOr;Q`squ6Wrn,E@fqu6Wrq>^Hpq#:<oJcG<@quH?gq>g!arr@WMn,N@eo`+pkqZ$Qqq>^Eo
+rVultrVultr;Zcsrr;uunGiLgr;ZcsrVlitr;ZcsrVultqZ$Qqr;Zcsr;Zcsrr;uuqZ$Qqrr;uu
+r;Zcsr;Zcsrr;uuli6tbnc/UhrVufrr;Zcsp&G$lq>^EoQ2gd_cN!hCTDnlkli2J~>
+f`(pOr;Q`squ6WrnGi7`s8W*!rr;uup\t3nJcFX-rrDEcquD<JnGiIfo`+mjqu6WrrVlitr;Zcs
+rVultrVultr;Zcsrr;rtqu6Wrq#C?or;Zcsrr;uur;ZcsrVultqZ$Qqr;Zcsr;Zcsrr;rtqu6Wr
+rVultr;Zcsr;Zcsrr;rtqu6WroDegjnc/Uhr;Z]qrVuisqu6WrrVultq>^EoJcC<$q#:<oli2J~>
+f`(pOr;Q`squ6WrnGi7`s8W*!rr;uup\t3nJcG9?r2'&cq>g'cquD<JnGiIfo`+mjqu6WrrVlit
+r;ZcsrVultrVultr;Zcsrr;rtqu6Wrq#C?or;Zcsrr;uur;ZcsrVultqZ$Qqr;Zcsr;Zcsrr;rt
+qu6WrrVultr;Zcsr;Zcsrr;rtqu6WroDegjnc/Uhr;Z]qrVuisqu6WrrVultq>^EoQ2gd_ci<p>
+TDnlkli2J~>
+f`(pOr;Q`squ6WrnGi7`s8W*!rr;uup\t3nJcG9?quHBhq>g'cquD<JnGiIfo`+mjqu6WrrVlit
+r;ZcsrVultrVultr;Zcsrr;rtqu6Wrq#C?or;Zcsrr;uur;ZcsrVultqZ$Qqr;Zcsr;Zcsrr;rt
+qu6WrrVultr;Zcsr;Zcsrr;rtqu6WroDegjnc/Uhr;Z]qrVuisqu6WrrVultq>^EoQ2gd_ci<nC
+TDnlkli2J~>
+f`(pOr;Q`squ6Wrnc/@arr;lrp&>!lJcFU,rrDHdquD<Jn,N@eq#:<orr;uur;ZcsrVlitr;Zcs
+rVultrVultr;Zcsrr;osrVlitp](6nr;Zcsrr;rtrr;rtrVultqZ$Qqr;Zcsr;ZcsrVultr;Zcs
+rVultr;Zcsr;ZcsrVuisrVlito)J^inc/Uhqu?Tprr;osrVlitr;ZcsqZ$NpJcC<$p\t3nli2J~>
+f`(pOr;Q`squ6Wrnc/@arr;lrp&>!lJcG9?r2'#bq>g*dquD<Jn,N@eq#:<orr;uur;ZcsrVlit
+r;ZcsrVultrVultr;Zcsrr;osrVlitp](6nr;Zcsrr;rtrr;rtrVultqZ$Qqr;Zcsr;ZcsrVult
+r;ZcsrVultr;Zcsr;ZcsrVuisrVlito)J^inc/Uhqu?Tprr;osrVlitr;ZcsqZ$NpPlL[^ci<p>
+TDnlkli2J~>
+f`(pOr;Q`squ6Wrnc/@arr;lrp&>!lJcG9?quH?gq>g*dquD<Jn,N@eq#:<orr;uur;ZcsrVlit
+r;ZcsrVultrVultr;Zcsrr;osrVlitp](6nr;Zcsrr;rtrr;rtrVultqZ$Qqr;Zcsr;ZcsrVult
+r;ZcsrVultr;Zcsr;ZcsrVuisrVlito)J^inc/Uhqu?Tprr;osrVlitr;ZcsqZ$NpPlL[^ci<nC
+TDnlkli2J~>
+f`1OCeGfLKJcFU,rrDEcquD<Jn,N=dr;Zcsr;Zcsrr;uur;Zcsrr;uur;ZcsrVultr;ZcsrVu]o
+pAb-mr;Zcsrr;`n"oeT&rr<&qs8N)ss8N)ss8N)ss8N)us8N)ss8N)ss8N)ss8N)ts7u`cs8N)h
+s8N)qs8;rss7u`ms8N)rs8;qKs/5ks!7LlI!:0Z8~>
+f`1OCeGfLKJcG9?r2'#bq>g'cquD<Jn,N=dr;Zcsr;Zcsrr;uur;Zcsrr;uur;ZcsrVultr;Zcs
+rVu]opAb-mr;Zcsrr;`n"oeT&rr<&qs8N)ss8N)ss8N)ss8N)us8N)ss8N)ss8N)ss8N)ts7u`c
+s8N)hs8N)qs8;rss7u`ms8N)rs8;q_s82lCs88_>rr<&Irr<&bs*t~>
+f`1OCeGfLKJcG9?quH?gq>g'cquD<Jn,N=dr;Zcsr;Zcsrr;uur;Zcsrr;uur;ZcsrVultr;Zcs
+rVu]opAb-mr;Zcsrr;`n"oeT&rr<&qs8N)ss8N)ss8N)ss8N)us8N)ss8N)ss8N)ss8N)ts7u`c
+s8N)hs8N)qs8;rss7u`ms8N)rs8;q_s82lCs82lCrr<&Irr<&bs*t~>
+f`1OCeGfLKJcFU,rrDEcquD<JmJm"_q>^?mqu?Nnrr;Tj!<;orrr;lrp](*j!<;ors8W#ts8W&u
+!<;orrr;iq!<;ors8VusrVucqrVu`p!<;ZkrVufrnGiLgo`+^er;Z]qrr;lrrVuKiJcDVIquG:I
+!!)?bJ,~>
+f`1OCeGfLKJcG6>r2'&cq>g'cquD<JmJm"_q>^?mqu?Nnrr;Tj!<;orrr;lrp](*j!<;ors8W#t
+s8W&u!<;orrr;iq!<;ors8VusrVucqrVu`p!<;ZkrVufrnGiLgo`+^er;Z]qrr;lrrVuKiPQ1O\
+ci<p>d/X"Dec,ULli2J~>
+f`1OCeGfLKJcG6>quHBhq>g'cquD<JmJm"_q>^?mqu?Nnrr;Tj!<;orrr;lrp](*j!<;ors8W#t
+s8W&u!<;orrr;iq!<;ors8VusrVucqrVu`p!<;ZkrVufrnGiLgo`+^er;Z]qrr;lrrVuKiPQ1O\
+ci<nCd/X"Dec,ULli2J~>
+f`(pOp&>!leGfLKJcFR+rrDEcr;_EKJcC<$JcDDCquG:I!!)?bJ,~>
+f`(pOp&>!leGfLKJcG6>r2'#bq>g'cr;_EKJcC<$NW8nVci<s?ci<nCec,ULli2J~>
+f`(pOp&>!leGfLKJcG6>quH?gq>g'cr;_EKJcC<$NW8nVci<qDci<nCec,ULli2J~>
+f`(pOp&>!leGfLKJcFR+rrDEcquD<JJcC<$JcDGDquG:I!!)?bJ,~>
+f`(pOp&>!leGfLKJcG3=r2'&cq>g'cquD<JJcC<$NrT"Wci<s?ci<nCec,ULli2J~>
+f`(pOp&>!leGfLKJcG3=quHBhq>g'cquD<JJcC<$NrT"Wci<qDci<nCec,ULli2J~>
+f`(pOp&>!leGfLKJcFO*rrDHdquD<JJcC<$JcDJEquG7H!!)?bJ,~>
+f`(pOp&>!leGfLKJcG3=r2'#bqZ-0dquD<JJcC<$NrT%XcN!j>d/X"DeGfLKli2J~>
+f`(pOp&>!leGfLKJcG3=quH?gqZ-0dquD<JJcC<$NrT%XcN!hCd/X"DeGfLKli2J~>
+Sc8ZiJcFO*rrDEcquD<JJcC<$JcDMFquG7H!!)?bJ,~>
+Sc8ZiJcG0<r2'&cq>g'cquD<JJcC<$O8o.YcN!j>d/X"DeGfLKli2J~>
+Sc8ZiJcG0<quHBhq>g'cquD<JJcC<$O8o.YcN!hCd/X"DeGfLKli2J~>
+lMgha[Jp4,JcFL)!!)BcquD<JJcC<$JcDPGquG4G!!)?bJ,~>
+lMgha[Jp4,JcG0<r2'#bqZ-0dquD<JJcC<$O8o.YcN!j>dJs+Ee,KCJli2J~>
+lMgha[Jp4,JcG0<quH?gqZ-0dquD<JJcC<$O8o.YcN!hCdJs+Ee,KCJli2J~>
+lMgha[Jp4,JcFL)rrDEcquD<JJcC<$JcDSHquG4G!!)?bJ,~>
+lMgha[Jp4,JcG-;r2'&cq>g'cquD<JJcC<$OoP=Zci<p>dJs+Ee,KCJli2J~>
+lMgha[Jp4,JcG-;quHBhq>g'cquD<JJcC<$OoP=Zci<nCdJs+Ee,KCJli2J~>
+lMpka[f6=-JcFL)rrDEcquD<JJcC<$JcDSHquG4G!!)?bJ,~>
+lMpka[f6=-JcG-;r2'&cq>g'cquD<JJcC<$OoP=Zci<p>dJs+Ee,KCJli2J~>
+lMpka[f6=-JcG-;quHBhq>g'cquD<JJcC<$OoP=Zci<nCdJs+Ee,KCJli2J~>
+lMpe_\GlO/JcFI(rrDHdquD<JJcC<$JcDVIquG1F!!)?bJ,~>
+lMpe_\GlO/JcG-;r2'#bq>g*dquD<JJcC<$OoP=Zci<p>df94Fdf0:Ili2J~>
+lMpe_\GlO/JcG-;quH?gq>g*dquD<JJcC<$OoP=Zci<nCdf94Fdf0:Ili2J~>
+lMp\\]Dhj2JcFI(rrDEcquD<JJcC<$JcDYJquG1F!!)?bJ,~>
+lMp\\]Dhj2JcG*:r2'&cq>g'cquD<JJcC<$P5kI\cN!g=df94Fdf0:Ili2J~>
+lMp\\]Dhj2JcG*:quHBhq>g'cquD<JJcC<$P5kI\cN!eBdf94Fdf0:Ili2J~>
+lMgharVufr^&J'4JcFF'!!)BcquD<JJcC<$JcD\KquG.E!!)?bJ,~>
+lMgharVufr^&J'4JcG*:r2'#bqZ-0dquD<JJcC<$P5kI\cN!j>df94FdJj1Hli2J~>
+lMgharVufr^&J'4JcG*:quH?gqZ-0dquD<JJcC<$P5kI\cN!hCdf94FdJj1Hli2J~>
+lMghaqZ$Np^]+96JcFF'rrDEcquD<JJcC<$JcD_LquG.E!!)?bJ,~>
+lMghaqZ$Np^]+96JcG'9r2'&cq>g'cquD<JJcC<$PQ1R]cN!j>df94FdJj1Hli2J~>
+lMghaqZ$Np^]+96JcG'9quHBhq>g'cquD<JJcC<$PQ1R]cN!hCdf94FdJj1Hli2J~>
+i;``U_Z'T9JcFC&!!)BcquD<JJcC<$JcDbMquG+D!!)?bJ,~>
+i;``U_Z'T9JcG'9r2'#bqZ-0dquD<JJcC<$PlLX]cN!j>e,T=Gd/O(Gli2J~>
+i;``U_Z'T9JcG'9quH?gqZ-0dquD<JJcC<$PlLX]cN!hCe,T=Gd/O(Gli2J~>
+hZ*NS`;]f;JcFC&rrDEcquD<JJcC<$JcDeNquG+D!!)?bJ,~>
+hZ*NS`;]f;JcG$8r2'&cq>g'cquD<JJcC<$Q2ga^ci<p>e,T=Gd/O(Gli2J~>
+hZ*NS`;]f;JcG$8quHBhq>g'cquD<JJcC<$Q2ga^ci<nCe,T=Gd/O(Gli2J~>
+g].6Q`r?#=JcF@%!!)BcrW%NLJcC<$JcD_LquG+D!!)?bJ,~>
+g].6Q`r?#=JcG$8r2'#bqZ-0drW%NLJcC<$PQ1O\ci<p>e,T=Gd/O(Gli2J~>
+g].6Q`r?#=JcG$8quH?gqZ-0drW%NLJcC<$PQ1O\ci<nCe,T=Gd/O(Gli2J~>
+h>d<OaSu5?JcF@%!!)Bc!!%TMJcC<$JcD\KquG(C!!)?bJ,~>
+h>d<OaSu5?JcG$8qk`rbqZ-0d!!%TMJcC<$OoP=Zci<p>eGoFHci3tFli2J~>
+h>d<OaSu5?JcG$8qZ-9gqZ-0d!!%TMJcC<$OoP=Zci<nCeGoFHci3tFli2J~>
+huENQ`r?#=JcF@%rr@WMJcC<$JcCr6quG(C!!)?bJ,~>
+huENQ`r?#=JcG!7r2'&cq>c*HJcC<$JcGZKcN!g=eGoFHci3tFli2J~>
+huENQ`r?#=JcG!7quHBhq>c*HJcC<$JcGZKcN!eBeGoFHci3tFli2J~>
+iW&`S`;]f;JcF=$!!%TMJcC<$JcCr6r;b.C!!)?bJ,~>
+iW&`S`;]f;JcG!7r2'#bqZ)3IJcC<$JcGZKcN!j>e,T@HcMmkEli2J~>
+iW&`S`;]f;JcG!7quH?gqZ)3IJcC<$JcGZKcN!hCe,T@HcMmkEli2J~>
+lMghaqu?Km_Z'T9JcF=$rr@WMJcC<$JcCo5rrC@E!!)?bJ,~>
+lMghaqu?Km_Z'T9JcFs6r2'&cq>c*HJcC<$K)bcLcN!j>dJs4HcMmkEli2J~>
+lMghaqu?Km_Z'T9JcFs6quHBhq>c*HJcC<$K)bcLcN!hCdJs4HcMmkEli2J~>
+lMgharVu]o_#FB7JcF:#!!%TMJcC<$JcC<$h>[HTli2J~>
+lMgharVu]o_#FB7JcFs6r2'#bqZ)3IJcC<$KE(iLcN!j>SGrQhli2J~>
+lMgharVu]o_#FB7JcFs6quH?gqZ)3IJcC<$KE(iLcN!hCSGrQhli2J~>
+lMpSY^Ae05JcF:#!!%TMJcC<$JcC<$h>[HTli2J~>
+lMpSY^Ae05JcFp5r2'&cqZ)3IJcC<$KE(iLci<p>SGrQhli2J~>
+lMpSY^Ae05JcFp5quHBhqZ)3IJcC<$KE(iLci<nCSGrQhli2J~>
+lMpY[]`.s3JcF7"!!%TMJcC<$JcC<$hZ!QUli2J~>
+lMpY[]`.s3JcFp5r2'#bqZ)3IJcC<$K`CrMci<p>SGrQhli2J~>
+lMpY[]`.s3JcFp5quH?gqZ)3IJcC<$K`CrMci<nCSGrQhli2J~>
+lMp_]])Ma1JcF7"!!%TMJcC<$JcC<$hZ!QUli2J~>
+lMp_]])Ma1JcFm4r2'&cqZ)3IJcC<$K`CuNcN!g=SGrQhli2J~>
+lMp_]])Ma1JcFm4quHBhqZ)3IJcC<$K`CuNcN!eBSGrQhli2J~>
+lMpe_\GlO/JcF7"rr@WMJcC<$JcC<$hu<ZVli2J~>
+lMpe_\GlO/JcFm4r2'&cq>c*HJcC<$L&_)OcN!j>S,WHgli2J~>
+lMpe_\GlO/JcFm4quHBhq>c*HJcC<$L&_)OcN!hCS,WHgli2J~>
+lMpka[f6=-JcF4!!!)9`rr@WMJcC<$JcC<$q>UEpli2J~>
+lMpka[f6=-JcFj3r2'&cqZ-'arr@WMJcC<$RfE<dcN!j>S,WHgli2J~>
+lMpka[f6=-JcFj3quHBhqZ-'arr@WMJcC<$RfE<dcN!hCS,WHgli2J~>
+lMgha[Jp4,JcF4!rrDEcquD<JJcC<$JcC<$qYpNqli2J~>
+lMgha[Jp4,JcFj3r2'&cqZ--cquD<JJcC<$SH&KecN!j>S,WHgli2J~>
+lMgha[Jp4,JcFj3quHBhqZ--cquD<JJcC<$SH&KecN!hCS,WHgli2J~>
+lMgha[Jp4,JcF0u!!)BcquD<JJcC<$JcC<$qYpNqli2J~>
+lMgha[Jp4,JcFj3qk`rbqZ-0dquD<JJcC<$SH&Keci<p>S,WHgli2J~>
+lMgha[Jp4,JcFj3qZ-9gqZ-0dquD<JJcC<$SH&Keci<nCS,WHgli2J~>
+ScAHbJcFI(!!)?bquD<JJcC<$JcE4Z!!(=Ep]0X[J,~>
+ScAHbJcG*:r2'&cqZ--cquD<JJcC<$ScATfci<p>fDbgNcN!Y>li2J~>
+ScAHbJcG*:quHBhqZ--cquD<JJcC<$ScATfci<nCfDbgNcN!Y>li2J~>
+Sc8ZiJcF-t!!)BcquD<JJcC<$JcE7[r;aq=!!)?bJ,~>
+Sc8ZiJcFg2r2'#bqZ-0dquD<JJcC<$ScATfci<p>f`1mMaSu5?li2J~>
+Sc8ZiJcFg2quH?gqZ-0dquD<JJcC<$ScATfci<nCf`1mMaSu5?li2J~>
+Sc8ZiJcF-t!!)?bquD<JJcC<$JcE:\quFk=!!)?bJ,~>
+Sc8ZiJcFd1r2'&cqZ--cquD<JJcC<$T)\`hcN!j>fDkaKao;>@li2J~>
+Sc8ZiJcFd1quHBhqZ--cquD<JJcC<$T)\`hcN!hCfDkaKao;>@li2J~>
+Sc8ZiJcF*s!!)BcquD<JJcC<$JcE=]qZ+b<!!)?bJ,~>
+Sc8ZiJcFd1r2'#bqZ-0dquD<JJcC<$T)\`hcN!j>f`1gKao;>@li2J~>
+Sc8ZiJcFd1quH?gqZ-0dquD<JJcC<$T)\`hcN!hCf`1gKao;>@li2J~>
+Sc8ZiJcF*s!!)BcqZ)3IJcC<$JcE@^quFh<!!)?bJ,~>
+Sc8ZiJcFa0r2'&cqZ-0dqZ)3IJcC<$TE"iicN!j>f`1jLaSu5?li2J~>
+Sc8ZiJcFa0quHBhqZ-0dqZ)3IJcC<$TE"iicN!hCf`1jLaSu5?li2J~>
+Sc8ZiJcF*s!!)?bquD<JJcC<$JcE@^quFh<!!)?bJ,~>
+Sc8ZiJcFa0r2'&cqZ--cquD<JJcC<$T`=oici<p>f`1jLaSu5?li2J~>
+Sc8ZiJcFa0quHBhqZ--cquD<JJcC<$T`=oici<nCf`1jLaSu5?li2J~>
+Sc8ZiJcF'r!!)BcquD<JJcC<$JcEC_quFe;!!)?bJ,~>
+Sc8ZiJcF^/r2'&cqZ-0dquD<JJcC<$T`=oici<p>g&LsMa8Z,>li2J~>
+Sc8ZiJcF^/quHBhqZ-0dquD<JJcC<$T`=oici<nCg&LsMa8Z,>li2J~>
+Sc8ZiJcF'r!!)?bquD<JJcC<$JcEF`quFe;!!)?bJ,~>
+Sc8ZiJcF^/r2'&cqZ--cquD<JJcC<$U&Y#jci<p>g&LsMa8Z,>li2J~>
+Sc8ZiJcF^/quHBhqZ--cquD<JJcC<$U&Y#jci<nCg&LsMa8Z,>li2J~>
+Sc8ZiJcF$q!!)BcquD<JJcC<$JcEIaquFb:!!)?bJ,~>
+Sc8ZiJcF[.r2'&cqZ-0dquD<JJcC<$U&Y&kcN!j>g&LsM`r?#=li2J~>
+Sc8ZiJcF[.quHBhqZ-0dquD<JJcC<$U&Y&kcN!hCg&LsM`r?#=li2J~>
+g].6Q`r?#=JcF$q!!)?bquD<JJcC<$JcELbquFb:!!)?bJ,~>
+g].6Q`r?#=JcF[.r2'&cqZ--cquD<JJcC<$UAt/lcN!j>g&LsM`r?#=li2J~>
+g].6Q`r?#=JcF[.quHBhqZ--cquD<JJcC<$UAt/lcN!hCg&LsM`r?#=li2J~>
+jT#/Yrr;iqa8Z,>JcE4ZquD<JJcC<$JcEOcquF_9!!)?bJ,~>
+jT#/Yrr;iqa8Z,>JcFX-r2'&cqZ-0dquD<JJcC<$UAt/lcN!j>gAh'N`W#o<li2J~>
+jT#/Yrr;iqa8Z,>JcFX-quHBhqZ-0dquD<JJcC<$UAt/lcN!hCgAh'N`W#o<li2J~>
+jT#5[r;Z`rs8W*!aSu5?JcF!p!!)?bquD<JJcC<$JcERdquF_9!!)?bJ,~>
+jT#5[r;Z`rs8W*!aSu5?JcFX-r2'&cqZ--cquD<JJcC<$V#U>mci<p>gAh'N`W#o<li2J~>
+jT#5[r;Z`rs8W*!aSu5?JcFX-quHBhqZ--cquD<JJcC<$V#U>mci<nCgAh'N`W#o<li2J~>
+jSo2[r;Z`rrVlitaSu5?JcE1YquD<JJcC<$JcEUeqZ+V8!!)?bJ,~>
+jSo2[r;Z`rrVlitaSu5?JcFX-qk`rbquH6dquD<JJcC<$V#U>mci<p>g].-N`W#o<li2J~>
+jSo2[r;Z`rrVlitaSu5?JcFX-qZ-9gquH6dquD<JJcC<$V#U>mci<nCg].-N`W#o<li2J~>
+jSo2[r;Zcsr;Q`saSu5?JcEso!!)BcqZ)3IJcC<$JcEXfquF\8!!)?bJ,~>
+jSo2[r;Zcsr;Q`saSu5?JcFU,r2'&cqZ-0dqZ)3IJcC<$V>pGnci<p>g].0O`;]f;li2J~>
+jSo2[r;Zcsr;Q`saSu5?JcFU,quHBhqZ-0dqZ)3IJcC<$V>pGnci<nCg].0O`;]f;li2J~>
+jSo2[rVuisr;Q`saSu5?JcE.XquD<JJcC<$JcEXfquF\8!!)?bJ,~>
+jSo2[rVuisr;Q`saSu5?JcFU,r2'#bquH6dquD<JJcC<$V>pGnci<s?gAh'N`;]f;li2J~>
+jSo2[rVuisr;Q`saSu5?JcFU,quH?gquH6dquD<JJcC<$V>pGnci<qDgAh'N`;]f;li2J~>
+jT#5[s8W&uqu6WraSu5?JcEpn!!)Bcr;_EKJcC<$JcEXfquFY7!!)?bJ,~>
+jT#5[s8W&uqu6WraSu5?JcFR+r2'&cqZ-0dr;_EKJcC<$V#UAncN!j>g].0O_uB]:li2J~>
+jT#5[s8W&uqu6WraSu5?JcFR+quHBhqZ-0dr;_EKJcC<$V#UAncN!hCg].0O_uB]:li2J~>
+j8]#Wqu?ZraSu5?JcEpn!!%TMJcC<$JcDbMquFY7!!)?bJ,~>
+j8]#Wqu?ZraSu5?JcFR+r2'&cqZ)3IJcC<$OT57ZcN!j>g].0O_uB]:li2J~>
+j8]#Wqu?ZraSu5?JcFR+quHBhqZ)3IJcC<$OT57ZcN!hCg].0O_uB]:li2J~>
+irAuXrVucqaSu5?JcEmm!!%TMJcC<$JcDhOquFV6!!)?bJ,~>
+irAuXrVucqaSu5?JcFO*r2'&cqZ)3IJcC<$OoP@[ci<p>h#I9P_Z'T9li2J~>
+irAuXrVucqaSu5?JcFO*quHBhqZ)3IJcC<$OoP@[ci<nCh#I9P_Z'T9li2J~>
+Sc8ZiJcEmm!!%TMJcC<$JcDeNr;a_7!!)?bJ,~>
+Sc8ZiJcFO*r2'&cqZ)3IJcC<$P5kF[ci<p>g].3P_Z'T9li2J~>
+Sc8ZiJcFO*quHBhqZ)3IJcC<$P5kF[ci<nCg].3P_Z'T9li2J~>
+Sc8ZiJcC<$JcC<$JcC<$nc&Rh_>aK8li2J~>
+Sc8ZiJcFL)r2'&cquD<JJcC<$P5kF[ci<p>g&D$P_>aK8li2J~>
+Sc8ZiJcFL)quHBhquD<JJcC<$P5kF[ci<nCg&D$P_>aK8li2J~>
+fDbgNaSu5?JcEjl!!%TMJcC<$JcC<$l2L_`li2J~>
+fDbgNaSu5?JcFL)r2'&cqZ)3IJcC<$PQ1O\ci<p>R/[-dli2J~>
+fDbgNaSu5?JcFL)quHBhqZ)3IJcC<$PQ1O\ci<nCR/[-dli2J~>
+fDbgNaSu5?JcC<$JcC<$JcC<$Yl=\'li2J~>
+fDbgNaSu5?JcFI(r2'&cquD<JJcC<$PQ1R]cN!j>Qi@$cli2J~>
+fDbgNaSu5?JcFI(quHBhquD<JJcC<$PQ1R]cN!hCQi@$cli2J~>
+li6;OaSu5?JcEgk!!%TMJcC<$JcC<$lMghali2J~>
+li6;OaSu5?JcFI(r2'&cqZ)3IJcC<$PlL[^cN!j>Qi@$cli2J~>
+li6;OaSu5?JcFI(quHBhqZ)3IJcC<$PlL[^cN!hCQi@$cli2J~>
+li6;OaSu5?JcC<$JcC<$JcC<$Yl=\'li2J~>
+li6;OaSu5?JcFF'r2'&cquD<JJcC<$PlL[^ci<p>Qi@$cli2J~>
+li6;OaSu5?JcFF'quHBhquD<JJcC<$PlL[^ci<nCQi@$cli2J~>
+lMp5OaSu5?JcEdj!!%TMJcC<$JcC<$li-qbli2J~>
+lMp5OaSu5?JcFF'r2'&cqZ)3IJcC<$QN-j_ci<p>Qi@$cli2J~>
+lMp5OaSu5?JcFF'quHBhqZ)3IJcC<$QN-j_ci<nCQi@$cli2J~>
+lMghan,E@faSu5?JcDkPrr@WMJcC<$JcCK)!!)?bJ,~>
+lMghan,E@faSu5?JcFC&r2'&cquH-arr@WMJcC<$XT/1uci<p>Qi@$cli2J~>
+lMghan,E@faSu5?JcFC&quHBhquH-arr@WMJcC<$XT/1uci<nCQi@$cli2J~>
+lMghan,E@faSu5?JcDqRr;_EKJcC<$JcCK)!!)?bJ,~>
+lMghan,E@faSu5?JcFC&r2'&cquH3cr;_EKJcC<$XT/1uci<p>Qi@$cli2J~>
+lMghan,E@faSu5?JcFC&quHBhquH3cr;_EKJcC<$XT/1uci<nCQi@$cli2J~>
+Sc8ZiJcEai!!)?bquD<JJcC<$JcCN*!!)?bJ,~>
+Sc8ZiJcF@%r2')dqZ--cquD<JJcC<$XoJ>"cN!j>QN$pbli2J~>
+Sc8ZiJcF@%quHEiqZ--cquD<JJcC<$XoJ>"cN!hCQN$pbli2J~>
+f`(pOa8Z,>JcDqRquD<JJcC<$JcF*srrBY1!!)?bJ,~>
+f`(pOa8Z,>JcF@%r2'&cquH6dquD<JJcC<$XoJ>"cN!j>huE]V])Ma1li2J~>
+f`(pOa8Z,>JcF@%quHBhquH6dquD<JJcC<$XoJ>"cN!hChuE]V])Ma1li2J~>
+f`1sOaSu5?JcE^h!!)?bquD<JJcC<$JcF-tr;aM1!!)?bJ,~>
+f`1sOaSu5?JcF=$r2')dqZ--cquD<JJcC<$YQ+M#ci<p>huEWT]`.s3li2J~>
+f`1sOaSu5?JcF=$quHEiqZ--cquD<JJcC<$YQ+M#ci<nChuEWT]`.s3li2J~>
+irAZOj8]&Xq>^BnpAY*mJcDnQquD<JJcC<$JcF0uquFD0!!)?bJ,~>
+irAZOj8]&Xq>^BnpAY*mJcF=$r2'&cquH6dquD<JJcC<$YQ+M#ci<p>i;`]T]`.s3li2J~>
+irAZOj8]&Xq>^BnpAY*mJcF=$quHBhquH6dquD<JJcC<$YQ+M#ci<nCi;`]T]`.s3li2J~>
+j8\`Ojo>/Wqu?Zrs8W*!p\t3nJcE[g!!)?bquD<JJcC<$JcF4!quFD0!!)?bJ,~>
+j8\`Ojo>/Wqu?Zrs8W*!p\t3nJcF=$qk`ucqZ--cquD<JJcC<$YlFV$ci<p>i;`]T]`.s3li2J~>
+j8\`Ojo>/Wqu?Zrs8W*!p\t3nJcF=$qZ-<hqZ--cquD<JJcC<$YlFV$ci<nCi;`]T]`.s3li2J~>
+jT"iPjo>>\rVuisrVultrVultq#:<oJcDkPquD<JJcC<$JcF7"quFA/!!)?bJ,~>
+jT"iPjo>>\rVuisrVultrVultq#:<oJcF:#r2'&cquH6dquD<JJcC<$YlFY%cN!g=iW&fU]Dhj2
+li2J~>
+jT"iPjo>>\rVuisrVultrVultq#:<oJcF:#quHBhquH6dquD<JJcC<$YlFY%cN!eBiW&fU]Dhj2
+li2J~>
+jT#5[rr2rur;Q`sjSo2[qu?ZrrVultrVultq#:<oJcDhOquD<JJcC<$JcF:#quFA/!!)?bJ,~>
+jT#5[rr2rur;Q`sjSo2[qu?ZrrVultrVultq#:<oJcF:#qk`ucquH3cquD<JJcC<$Z2ab&cN!j>
+i;`]T]Dhj2li2J~>
+jT#5[rr2rur;Q`sjSo2[qu?ZrrVultrVultq#:<oJcF:#qZ-<hquH3cquD<JJcC<$Z2ab&cN!hC
+i;`]T]Dhj2li2J~>
+jSo2[r;Q`sr;Q`shZ*TUrr;uuqu?Zrq>UEpJcDhOquD<JJcC<$JcF=$quF>.!!)?bJ,~>
+jSo2[r;Q`sr;Q`shZ*TUrr;uuqu?Zrq>UEpJcF7"r2'&cquH6dquD<JJcC<$ZN'h&cN!j>iW&fU
+])Ma1li2J~>
+jSo2[r;Q`sr;Q`shZ*TUrr;uuqu?Zrq>UEpJcF7"quHBhquH6dquD<JJcC<$ZN'h&cN!hCiW&fU
+])Ma1li2J~>
+jSo2[r;Q`sr;ZcshuE]Vrr;uuqu?Zrq>UEpJcDeNquD<JJcC<$JcF@%quF>.!!)?bJ,~>
+jSo2[r;Q`sr;ZcshuE]Vrr;uuqu?Zrq>UEpJcF7"qk`ucquH3cquD<JJcC<$ZiBq'cN!j>iW&fU
+])Ma1li2J~>
+jSo2[r;Q`sr;ZcshuE]Vrr;uuqu?Zrq>UEpJcF7"qZ-<hquH3cquD<JJcC<$ZiBq'cN!hCiW&fU
+])Ma1li2J~>
+jSo2[r;Q`sr;Zcshu<ZVrVultqu?Zrq>UEpJcDeNquD<JJcC<$JcFC&qZ+5-!!)?bJ,~>
+jSo2[r;Q`sr;Zcshu<ZVrVultqu?Zrq>UEpJcF4!r2'&cquH6dquD<JJcC<$ZiBq'ci<p>irAlU
+])Ma1li2J~>
+jSo2[r;Q`sr;Zcshu<ZVrVultqu?Zrq>UEpJcF4!quHBhquH6dquD<JJcC<$ZiBq'ci<nCirAlU
+])Ma1li2J~>
+j8],ZrVlitrr;rthu<ZVrVultqu?Zrq>UEpJcDeNqZ)3IJcC<$JcFF'quF;-!!)?bJ,~>
+j8],ZrVlitrr;rthu<ZVrVultqu?Zrq>UEpJcF4!qk`ucquH6dqZ)3IJcC<$[/^%(ci<p>irAoV
+\c2X0li2J~>
+j8],ZrVlitrr;rthu<ZVrVultqu?Zrq>UEpJcF4!qZ-<hquH6dqZ)3IJcC<$[/^%(ci<nCirAoV
+\c2X0li2J~>
+j8]&Xs8Voqi;WcWr;Zcsqu?Zrq>]m`JcE@^quD<JJcC<$JcFF'quFn>mf;\RJ,~>
+j8]&Xs8Voqi;WcWr;Zcsqu?Zrq>]m`JcFd1r2'&cquH6dquD<JJcC<$[/^()cN!g=irAoVb5^o1
+li2J~>
+j8]&Xs8Voqi;WcWr;Zcsqu?Zrq>]m`JcFd1quHBhquH6dquD<JJcC<$[/^()cN!eBirAoVb5^o1
+li2J~>
+irB#YrVucqi;WcWqu?Zrqu?Zrq>UEpJcDbMqZ)3IJcC<$JcFL)quF8,!!)?bJ,~>
+irB#YrVucqi;WcWqu?Zrqu?Zrq>UEpJcF0uqk`ucquH6dqZ)3IJcC<$[K$1*cN!j>irAoV\GlO/
+li2J~>
+irB#YrVucqi;WcWqu?Zrqu?Zrq>UEpJcF0uqZ-<hquH6dqZ)3IJcC<$[K$1*cN!hCirAoV\GlO/
+li2J~>
+g].6Qi;`fWqu?Zrqu?Zrq>UEpJcEOc!!)?bquD<JJcC<$JcFL)quF8,!!)?bJ,~>
+g].6Qi;`fWqu?Zrqu?Zrq>UEpJcF-tr2')dqZ--cquD<JJcC<$[f?7*cN!j>irAoV\GlO/li2J~>
+g].6Qi;`fWqu?Zrqu?Zrq>UEpJcF-tquHEiqZ--cquD<JJcC<$[f?7*cN!hCirAoV\GlO/li2J~>
+\,QF.qZ$Qqqu?Zrq>UEpJcD_LquD<JJcC<$JcFO*quF5+!!)?bJ,~>
+\,QF.qZ$Qqqu?Zrq>UEpJcF-tr2'&cquH6dquD<JJcC<$[f?7*cN!j>j8]#W\,QF.li2J~>
+\,QF.qZ$Qqqu?Zrq>UEpJcF-tquHBhquH6dquD<JJcC<$[f?7*cN!hCj8]#W\,QF.li2J~>
+\GlO/q#:<oqu6Wrq#:<oJcELb!!)?bquD<JJcC<$JcFR+quF5+!!)?bJ,~>
+\GlO/q#:<oqu6Wrq#:<oJcF*sr2')dqZ--cquD<JJcC<$\,Z@+ci<p>j8]#W\,QF.li2J~>
+\GlO/q#:<oqu6Wrq#:<oJcF*squHEiqZ--cquD<JJcC<$\,Z@+ci<nCj8]#W\,QF.li2J~>
+fDbgNjSo2[qu6Wrrr;uurVultq#:<oJcD\KrW%NLJcC<$JcFO*quF2*!!)?bJ,~>
+fDbgNjSo2[qu6Wrrr;uurVultq#:<oJcF*sr2'&cquH6drW%NLJcC<$[K$1*cN!g=jT#,X[f6=-
+li2J~>
+fDbgNjSo2[qu6Wrrr;uurVultq#:<oJcF*squHBhquH6drW%NLJcC<$[K$1*cN!eBjT#,X[f6=-
+li2J~>
+fDbgNjo>)UrVults8W*!p\t3nJcEIa!!%TMJcC<$JcE[gquF2*!!)?bJ,~>
+fDbgNjo>)UrVults8W*!p\t3nJcF'rr2')dqZ)3IJcC<$UAt/lcN!g=jT#,X[f6=-li2J~>
+fDbgNjo>)UrVults8W*!p\t3nJcF'rquHEiqZ)3IJcC<$UAt/lcN!eBjT#,X[f6=-li2J~>
+jT"fOk5Y2Vqu?TppAY*mJcC<$JcC<$JcC<$quF/)!!)?bJ,~>
+jT"fOk5Y2Vqu?TppAY*mJcF'rr2'&cquD<JJcC<$U]:5lcN!j>jT#,X[Jp4,li2J~>
+jT"fOk5Y2Vqu?TppAY*mJcF'rquHBhquD<JJcC<$U]:5lcN!hCjT#,X[Jp4,li2J~>
+lMph`rr;QiaSu5?JcC<$JcC<$JcC<$!<;ut[Jp4,li2J~>
+lMph`rr;QiaSu5?JcF$qr2')dqZ)3IJcC<$V#U>mcN!j>j8]&X[Jp4,li2J~>
+lMph`rr;QiaSu5?JcF$qquHEiqZ)3IJcC<$V#U>mcN!hCj8]&X[Jp4,li2J~>
+lMph`rr;QiaSu5?JcC<$JcC<$JcC<$rr2ru[/U++li2J~>
+lMph`rr;QiaSu5?JcF$qr2'&cquD<JJcC<$V#U>mcN!j>iVrlX[/U++li2J~>
+lMph`rr;QiaSu5?JcF$qquHBhquD<JJcC<$V#U>mcN!hCiVrlX[/U++li2J~>
+lMph`rVlitpAY*maSu5?JcC<$JcC<$JcC<$Yl=\'li2J~>
+lMph`rVlitpAY*maSu5?JcF!pr2')dquD<JJcC<$V#UAncN!g=PQ(U_li2J~>
+lMph`rVlitpAY*maSu5?JcF!pquHEiquD<JJcC<$V#UAncN!eBPQ(U_li2J~>
+j8T)ZpAY*maSu5?JcC<$JcC<$JcC<$Yl=\'li2J~>
+j8T)ZpAY*maSu5?JcF!pr2'&cquD<JJcC<$V>pJocN!g=PQ(U_li2J~>
+j8T)ZpAY*maSu5?JcF!pquHBhquD<JJcC<$V>pJocN!eBPQ(U_li2J~>
+fDbgNaSu5?JcC<$JcC<$JcC<$Yl=\'li2J~>
+fDbgNaSu5?JcEsor2')dquD<JJcC<$VZ6PocN!g=PQ(U_li2J~>
+fDbgNaSu5?JcEsoquHEiquD<JJcC<$VZ6PocN!eBPQ(U_li2J~>
+jSo2[pAY*ma8Z,>JcC<$JcC<$JcC<$Yl=\'li2J~>
+jSo2[pAY*ma8Z,>JcEsor2'&cquD<JJcC<$VuQYpcN!j>P5bL^li2J~>
+jSo2[pAY*ma8Z,>JcEsoquHBhquD<JJcC<$VuQYpcN!hCP5bL^li2J~>
+jSo2[p&>!laSu5?JcDAB!!%TMJcC<$JcCr6!!)?bJ,~>
+jSo2[p&>!laSu5?JcEpnr2')dquH'_!!%TMJcC<$^An*2cN!j>P5bL^li2J~>
+jSo2[p&>!laSu5?JcEpnquHEiquH'_!!%TMJcC<$^An*2cN!hCP5bL^li2J~>
+jSo2[p&>!laSu5?JcDGDrW%NLJcC<$JcCr6!!)?bJ,~>
+jSo2[p&>!laSu5?JcEpnr2'&cquH0brW%NLJcC<$^An-3c2[a=P5bL^li2J~>
+jSo2[p&>!laSu5?JcEpnquHBhquH0brW%NLJcC<$^An-3c2[_BP5bL^li2J~>
+kl:)OaSu5?JcDJEquD<JJcC<$JcCu7!!)?bJ,~>
+kl:)OaSu5?JcEmmr2')dquH3cquD<JJcC<$^]464cN!g=P5bL^li2J~>
+kl:)OaSu5?JcEmmquHEiquH3cquD<JJcC<$^]464cN!eBP5bL^li2J~>
+k5XrOaSu5?JcDJEquD<JJcC<$JcCu7!!)?bJ,~>
+k5XrOaSu5?JcEmmqk`ucquH6dquD<JJcC<$_#O<4cN!g=P5bL^li2J~>
+k5XrOaSu5?JcEmmqZ-<hquH6dquD<JJcC<$_#O<4cN!eBP5bL^li2J~>
+jo=oPa8Z,>JcDGDquD<JJcC<$JcG'9rrB2$!!)?bJ,~>
+jo=oPa8Z,>JcEjlr2')dquH3cquD<JJcC<$_>jE5cN!g=kl:Y_XoAA$li2J~>
+jo=oPa8Z,>JcEjlquHEiquH3cquD<JJcC<$_>jE5cN!eBkl:Y_XoAA$li2J~>
+jSo2[]Dhj2JcDGDquD<JJcC<$JcG*:quEr#!!)?bJ,~>
+jSo2[]Dhj2JcEjlqk`ucquH6dquD<JJcC<$_>jE5cN!g=l2UY]YQ"S&li2J~>
+jSo2[]Dhj2JcEjlqZ-<hquH6dquD<JJcC<$_>jE5cN!eBl2UY]YQ"S&li2J~>
+Sc8ZiJcDDCquD<JJcC<$JcG-;quEr#!!)?bJ,~>
+Sc8ZiJcEgkr2')dquH3cquD<JJcC<$_Z0Q7c2[a=kl:P\YQ"S&li2J~>
+Sc8ZiJcEgkquHEiquH3cquD<JJcC<$_Z0Q7c2[_Bkl:P\YQ"S&li2J~>
+Sc8ZiJcE4Z!!)?bquD<JJcC<$JcG0<qZ*i"!!)?bJ,~>
+Sc8ZiJcEgkqka#dqZ--cquD<JJcC<$_Z0Q7c2[a=l2UV\YQ"S&li2J~>
+Sc8ZiJcEgkqZ-?iqZ--cquD<JJcC<$_Z0Q7c2[_Bl2UV\YQ"S&li2J~>
+fDbgNaSu5?JcDDCqZ)3IJcC<$JcG3=quEo"!!)?bJ,~>
+fDbgNaSu5?JcEdjr2')dquH6dqZ)3IJcC<$`;f`8cN!g=l2UY]Y5\J%li2J~>
+fDbgNaSu5?JcEdjquHEiquH6dqZ)3IJcC<$`;f`8cN!eBl2UY]Y5\J%li2J~>
+fDbgNaSu5?JcDABquD<JJcC<$JcG6>qZ*f!!!)?bJ,~>
+fDbgNaSu5?JcEdjqka#dqZ--cquD<JJcC<$`;f`8cN!g=lMp_]Y5\J%li2J~>
+fDbgNaSu5?JcEdjqZ-?iqZ--cquD<JJcC<$`;f`8cN!eBlMp_]Y5\J%li2J~>
+irAZOaSu5?JcDABqZ)3IJcC<$JcG9?quEl!!!)?bJ,~>
+irAZOaSu5?JcEair2')dquH6dqZ)3IJcC<$`W,i9cN!g=lMpb^XoAA$li2J~>
+irAZOaSu5?JcEaiquHEiquH6dqZ)3IJcC<$`W,i9cN!eBlMpb^XoAA$li2J~>
+j8\`OaSu5?JcD>AquD<JJcC<$JcG9?quEl!!!)?bJ,~>
+j8\`OaSu5?JcEaiqka#dqZ--cquD<JJcC<$`W,l:c2[a=l2UY]XoAA$li2J~>
+j8\`OaSu5?JcEaiqZ-?iqZ--cquD<JJcC<$`W,l:c2[_Bl2UY]XoAA$li2J~>
+jT"fOaSu5?JcD>AqZ)3IJcC<$JcG?AquEhu!!)?bJ,~>
+jT"fOaSu5?JcE^hr2')dquH6dqZ)3IJcC<$`rGu;c2[a=lMpb^XT&8#li2J~>
+jT"fOaSu5?JcE^hquHEiquH6dqZ)3IJcC<$`rGu;c2[_BlMpb^XT&8#li2J~>
+jT#2Zp\t3naSu5?JcD;@quD<JJcC<$JcG?AquEhu!!)?bJ,~>
+jT#2Zp\t3naSu5?JcE^hqka#dqZ--cquD<JJcC<$a8c&;cN!g=lMpb^XT&8#li2J~>
+jT#2Zp\t3naSu5?JcE^hqZ-?iqZ--cquD<JJcC<$a8c&;cN!eBlMpb^XT&8#li2J~>
+jT#5[]`.s3JcD;@qZ)3IJcC<$JcGECquEet!!)?bJ,~>
+jT#5[]`.s3JcE[gr2')dquH6dqZ)3IJcC<$aT)/<cN!g=li6k_X8`/"li2J~>
+jT#5[]`.s3JcE[gquHEiquH6dqZ)3IJcC<$aT)/<cN!eBli6k_X8`/"li2J~>
+jT#5[]`.s3JcD8?quD<JJcC<$JcGECquEet!!)?bJ,~>
+jT#5[]`.s3JcE[gqka#dqZ--cquD<JJcC<$aT)/<cN!j>lMpb^X8`/"li2J~>
+jT#5[]`.s3JcE[gqZ-?iqZ--cquD<JJcC<$aT)/<cN!hClMpb^X8`/"li2J~>
+j8T)ZpAY*maSu5?JcD8?qZ)3IJcC<$JcGKEquEbs!!)?bJ,~>
+j8T)ZpAY*maSu5?JcEXfr2')dquH6dqZ)3IJcC<$aoD;>c2[a=li6k_WrE&!li2J~>
+j8T)ZpAY*maSu5?JcEXfquHEiquH6dqZ)3IJcC<$aoD;>c2[_Bli6k_WrE&!li2J~>
+ir8uYp\t3naSu5?JcD5>quD<JJcC<$JcGKEquEbs!!)?bJ,~>
+ir8uYp\t3naSu5?JcEXfqka#dqZ--cquD<JJcC<$aoD;>cN!g=li6k_WrE&!li2J~>
+ir8uYp\t3naSu5?JcEXfqZ-?iqZ--cquD<JJcC<$aoD;>cN!eBli6k_WrE&!li2J~>
+jT"fOaSu5?JcD5>r;_EKJcC<$JcGKEquE_r!!)?bJ,~>
+jT"fOaSu5?JcEUer2')dquH6dr;_EKJcC<$aoD8=cN!g=m/Qt`WW)quli2J~>
+jT"fOaSu5?JcEUequHEiquH6dr;_EKJcC<$aoD8=cN!eBm/Qt`WW)quli2J~>
+jT"fOaSu5?JcD2=!!%TMJcC<$JcGECquE_r!!)?bJ,~>
+jT"fOaSu5?JcEUeqka#dqZ--c!!%TMJcC<$a8c&;cN!g=m/Qt`WW)quli2J~>
+jT"fOaSu5?JcEUeqZ-?iqZ--c!!%TMJcC<$a8c&;cN!eBm/Qt`WW)quli2J~>
+j8\`OaSu5?JcC<$JcC<$JcCc1quE\q!!)?bJ,~>
+j8\`OaSu5?JcERdr2')dquD<JJcC<$[K$.)cN!j>m/Qt`W;chtli2J~>
+j8\`OaSu5?JcERdquHEiquD<JJcC<$[K$.)cN!hCm/Qt`W;chtli2J~>
+j8T)ZpAY*maSu5?JcC<$JcC<$JcCc1quE\q!!)?bJ,~>
+j8T)ZpAY*maSu5?JcEOcr2',eqZ)3IJcC<$[f?:+c2[a=m/Qt`W;chtli2J~>
+j8T)ZpAY*maSu5?JcEOcquHHjqZ)3IJcC<$[f?:+c2[_Bm/Qt`W;chtli2J~>
+j8T)Z]`.s3JcC<$JcC<$JcC]/rrAts!!)?bJ,~>
+j8T)Z]`.s3JcEOcr2')dquD<JJcC<$[f?:+cN!g=lMpkaVuH_sli2J~>
+j8T)Z]`.s3JcEOcquHEiquD<JJcC<$[f?:+cN!eBlMpkaVuH_sli2J~>
+g]%6R`;fT4JcC<$JcC<$JcC<$_#O00li2J~>
+g]%6R`;fT4JcEdjr2',eqZ)3IJcC<$\GuI,cN!g=QN-^[li2J~>
+g]%6R`;fT4JcEdjquHHjqZ)3IJcC<$\GuI,cN!eBQN-^[li2J~>
+irAuXr;Zcs`r?#=JcC<$JcC<$JcC<$Yl=\'li2J~>
+irAuXr;Zcs`r?#=JcELbr2')dquD<JJcC<$\GuI,cN!j>NW/tYli2J~>
+irAuXr;Zcs`r?#=JcELbquHEiquD<JJcC<$\GuI,cN!hCNW/tYli2J~>
+j8]&Xqu?Zra8Z,>JcC<$JcC<$JcC<$Yl=\'li2J~>
+j8]&Xqu?Zra8Z,>JcEIar2',eqZ)3IJcC<$\c;R-cN!j>NW/tYli2J~>
+j8]&Xqu?Zra8Z,>JcEIaquHHjqZ)3IJcC<$\c;R-cN!hCNW/tYli2J~>
+jT#,XqYpNqa8Z,>JcC<$JcC<$JcC<$Yl=\'li2J~>
+jT#,XqYpNqa8Z,>JcEIar2')dquD<JJcC<$\c;U.cN!g=NW/tYli2J~>
+jT#,XqYpNqa8Z,>JcEIaquHEiquD<JJcC<$\c;U.cN!eBNW/tYli2J~>
+jT#5[s8N'!qZ$QqaSu5?JcC<$JcC<$JcC<$Yl=\'li2J~>
+jT#5[s8N'!qZ$QqaSu5?JcEF`r2',eqZ)3IJcC<$])V^/cN!g=NW/tYli2J~>
+jT#5[s8N'!qZ$QqaSu5?JcEF`quHHjqZ)3IJcC<$])V^/cN!eBNW/tYli2J~>
+jSo2[rr2ruqZ$QqaSu5?JcCr6rW%NLJcC<$JcDGD!!)?bJ,~>
+jSo2[rr2ruqZ$QqaSu5?JcEF`qka#dquH-arW%NLJcC<$dJs.FcN!g=NW/tYli2J~>
+jSo2[rr2ruqZ$QqaSu5?JcEF`qZ-?iquH-arW%NLJcC<$dJs.FcN!eBNW/tYli2J~>
+jSo2[rr2ruqZ$QqaSu5?JcD#8quD<JJcC<$JcDGD!!)?bJ,~>
+jSo2[rr2ruqZ$QqaSu5?JcEC_r2',eqZ--cquD<JJcC<$df94FcN!j>N;ikXli2J~>
+jSo2[rr2ruqZ$QqaSu5?JcEC_quHHjqZ--cquD<JJcC<$df94FcN!hCN;ikXli2J~>
+jSo2[rr2ruqu?WqaSu5?JcD#8qZ)3IJcC<$JcDJE!!)?bJ,~>
+jSo2[rr2ruqu?WqaSu5?JcEC_qka#dquH6dqZ)3IJcC<$e,T=Gci<p>N;ikXli2J~>
+jSo2[rr2ruqu?WqaSu5?JcEC_qZ-?iquH6dqZ)3IJcC<$e,T=Gci<nCN;ikXli2J~>
+j8T2]s8N)ss8;r=rr<%Ms-3Q]!.k0$s+13)s8N(krr<&bs*t~>
+j8T2]s8N)ss8;r=rr<%Ms1A=/V=srd!:^$d!.k0$s+14!s82lCs88__s8N(krr<&bs*t~>
+j8T2]s8N)ss8;r=rr<%Ms1A=/!;?Hi!:^$d!.k0$s+14!s82lCs82lds8N(krr<&bs*t~>
+j8],Z!WN0!s82l;rr<%Ms-3Q\!.k0$s+13*s8;qkrr<&bs*t~>
+j8],Z!WN0!s82l;rr<%Ms1A=.V=sre!:^$c!.k0$s+14"s8;rCs88__s8;qkrr<&bs*t~>
+j8],Z!WN0!s82l;rr<%Ms1A=.!;?Hj!:^$c!.k0$s+14"s8;rCs82lds8;qkrr<&bs*t~>
+irA`Q`r?#=JcCr6quD<JJcC<$M#[>PUAk2nli2J~>
+irA`Q`r?#=JcE=]r2',eqZ--cquD<JJcC<$eGoIIcN!j>nGi@cUAk2nli2J~>
+irA`Q`r?#=JcE=]quHHjqZ--cquD<JJcC<$eGoIIcN!hCnGi@cUAk2nli2J~>
+i;`WR`W#o<JcCr6qZ)3IJcC<$M?!JRU&P)mli2J~>
+i;`WR`W#o<JcE:\r2',equH6dqZ)3IJcC<$f)PXJcN!j>nGiCdU&P)mli2J~>
+i;`WR`W#o<JcE:\quHHjquH6dqZ)3IJcC<$f)PXJcN!hCnGiCdU&P)mli2J~>
+Sc8ZiJcCo5quD<JJcC<$MZ<PRU&P)mli2J~>
+Sc8ZiJcE:\r2',eqZ--cquD<JJcC<$f)PXJci<p>nc/IdU&P)mli2J~>
+Sc8ZiJcE:\quHHjqZ--cquD<JJcC<$f)PXJci<nCnc/IdU&P)mli2J~>
+Sc8ZiJcCo5qZ)3IJcC<$MuW\TT`4ulli2J~>
+Sc8ZiJcE7[r2',equH6dqZ)3IJcC<$fDkaKci<p>nc/LeT`4ulli2J~>
+Sc8ZiJcE7[quHHjquH6dqZ)3IJcC<$fDkaKci<nCnc/LeT`4ulli2J~>
+jSo2[pAY*ma8Z,>JcD\K!!)?bquD<JJcC<$N;rbTT`4ulli2J~>
+jSo2[pAY*ma8Z,>JcE7[r2',eqZ--cquD<JJcC<$fDkdLcN!g=o)JReT`4ulli2J~>
+jSo2[pAY*ma8Z,>JcE7[quHHjqZ--cquD<JJcC<$fDkdLcN!eBo)JReT`4ulli2J~>
+jSo2[p&>!laSu5?JcCl4qZ)3IJcC<$NW8nVTDnlkli2J~>
+jSo2[p&>!laSu5?JcE4Zr2',equH6dqZ)3IJcC<$g&LsMcN!j>nc/LeTDnlkli2J~>
+jSo2[p&>!laSu5?JcE4ZquHHjquH6dqZ)3IJcC<$g&LsMcN!hCnc/LeTDnlkli2J~>
+jSo2[p&>!laSu5?JcCi3quD<JJcC<$NrStVTDnlkli2J~>
+jSo2[p&>!laSu5?JcE4Zr2')dquH6dquD<JJcC<$g&LsMci<p>o)JReTDnlkli2J~>
+jSo2[p&>!laSu5?JcE4ZquHEiquH6dquD<JJcC<$g&LsMci<nCo)JReTDnlkli2J~>
+kl:)OaSu5?JcCi3qZ)3IJcC<$O8o+XT)Scjli2J~>
+kl:)OaSu5?JcE1Yr2',equH6dqZ)3IJcC<$gAh'Nci<p>o)JUfT)Scjli2J~>
+kl:)OaSu5?JcE1YquHHjquH6dqZ)3IJcC<$gAh'Nci<nCo)JUfT)Scjli2J~>
+k5XrOaSu5?JcCf2quD<JJcC<$OT51XT)Scjli2J~>
+k5XrOaSu5?JcE1Yqka#dquH6dquD<JJcC<$gAh*OcN!g=oDe[fT)Scjli2J~>
+k5XrOaSu5?JcE1YqZ-?iquH6dquD<JJcC<$gAh*OcN!eBoDe[fT)Scjli2J~>
+jo=oPa8Z,>JcCf2qZ)3IJcC<$OoP=ZSc8Zili2J~>
+jo=oPa8Z,>JcE.Xr2',equH6dqZ)3IJcC<$h#I9PcN!j>o)JUfSc8Zili2J~>
+jo=oPa8Z,>JcE.XquHHjquH6dqZ)3IJcC<$h#I9PcN!hCo)JUfSc8Zili2J~>
+jSo2[]Dhj2JcCc1quD<JJcC<$P5kCZSc8Zili2J~>
+jSo2[]Dhj2JcE.Xqka#dquH6dquD<JJcC<$h#I9PcN!j>oDe[fSc8Zili2J~>
+jSo2[]Dhj2JcE.XqZ-?iquH6dquD<JJcC<$h#I9PcN!hCoDe[fSc8Zili2J~>
+Sc8ZiJcC`0quD<JJcC<$PQ1O\SGrQhli2J~>
+Sc8ZiJcE+Wr2',eqZ--cquD<JJcC<$h>dBQci<p>oDe^gSGrQhli2J~>
+Sc8ZiJcE+WquHHjqZ--cquD<JJcC<$h>dBQci<nCoDe^gSGrQhli2J~>
+i;`ZS`;]f;JcC`0quD<JJcC<$PlLU\SGrQhli2J~>
+i;`ZS`;]f;JcE+Wqka#dquH6dquD<JJcC<$h>dERcN!g=o`+dgSGrQhli2J~>
+i;`ZS`;]f;JcE+WqZ-?iquH6dquD<JJcC<$h>dERcN!eBo`+dgSGrQhli2J~>
+irAcR`W#o<JcC]/rr@WMJcC<$P5kF[S,WHgli2J~>
+irAcR`W#o<JcE(Vr2',eqZ--crr@WMJcC<$h#I9PcN!g=o`+ghS,WHgli2J~>
+irAcR`W#o<JcE(VquHHjqZ--crr@WMJcC<$h#I9PcN!eBo`+ghS,WHgli2J~>
+j8\fQ`r?#=JcC<$JcC<$JcD8?quE2c!!)?bJ,~>
+j8\fQ`r?#=JcE%Ur2',equD<JJcC<$aoD8=cN!j>o`+ghRf<?fli2J~>
+j8\fQ`r?#=JcE%UquHHjquD<JJcC<$aoD8=cN!hCo`+ghRf<?fli2J~>
+j8])YqZ$Qqa8Z,>JcC<$JcC<$JcD8?quE2c!!)?bJ,~>
+j8])YqZ$Qqa8Z,>JcE%Uqka&eqZ)3IJcC<$b5_A>ci<p>o`+ghRf<?fli2J~>
+j8])YqZ$Qqa8Z,>JcE%UqZ-BjqZ)3IJcC<$b5_A>ci<nCo`+ghRf<?fli2J~>
+jT#2Zq#C?oaSu5?JcC<$JcC<$JcD2=rrAJe!!)?bJ,~>
+jT#2Zq#C?oaSu5?JcE"Tr2',equD<JJcC<$b5_D?cN!g=o)J^iRK!6eli2J~>
+jT#2Zq#C?oaSu5?JcE"TquHHjquD<JJcC<$b5_D?cN!eBo)J^iRK!6eli2J~>
+jT#5[pAY*maSu5?JcC<$JcC<$JcC<$Yl=\'li2J~>
+jT#5[pAY*maSu5?JcE"Tqka&eqZ)3IJcC<$bl@S@cN!g=M#RGTli2J~>
+jT#5[pAY*maSu5?JcE"TqZ-BjqZ)3IJcC<$bl@S@cN!eBM#RGTli2J~>
+jSo2[p&>!laSu5?JcC<$JcC<$JcC<$Yl=\'li2J~>
+jSo2[p&>!laSu5?JcDtSr2',equD<JJcC<$bl@S@cN!j>L]7>Sli2J~>
+jSo2[p&>!laSu5?JcDtSquHHjquD<JJcC<$bl@S@cN!hCL]7>Sli2J~>
+jSo2[p&>!li;WcWq#C3kq>UEpJcDDC!!%TMJcC<$JcCo5!!)?bJ,~>
+jSo2[p&>!li;WcWq#C3kq>UEpJcDtSqka&eqZ)3IJcC<$c2[\AcN!j>L]7>Sli2J~>
+jSo2[p&>!li;WcWq#C3kq>UEpJcDtSqZ-BjqZ)3IJcC<$c2[\AcN!hCL]7>Sli2J~>
+jSo2[pAb-mj8]&Xq>^9kq>UEpJcC<$JcC<$JcC<$Yl=\'li2J~>
+jSo2[pAb-mj8]&Xq>^9kq>UEpJcDqRr2',equD<JJcC<$c2[_BcN!g=L]7>Sli2J~>
+jSo2[pAb-mj8]&Xq>^9kq>UEpJcDqRquHHjquD<JJcC<$c2[_BcN!eBL]7>Sli2J~>
+jT#5[q#C<njSo>_s8N'!q>UEpoD\djJcDAB!!%TMJcC<$JcCr6!!)?bJ,~>
+jT#5[q#C<njSo>_s8N'!q>UEpoD\djJcDnQr2'/fqZ)3IJcC<$ci<nCcN!g=L]7>Sli2J~>
+jT#5[q#C<njSo>_s8N'!q>UEpoD\djJcDnQquHKkqZ)3IJcC<$ci<nCcN!eBL]7>Sli2J~>
+j8],Zqu?Tpi;`fWq>UEpoD\djJcCE'rr@WMJcC<$JcDqR!!)?bJ,~>
+j8],Zqu?Tpi;`fWq>UEpoD\djJcDnQr2',equH*`rr@WMJcC<$k5Y>ZcN!g=L]7>Sli2J~>
+j8],Zqu?Tpi;`fWq>UEpoD\djJcDnQquHHjquH*`rr@WMJcC<$k5Y>ZcN!eBL]7>Sli2J~>
+j8\fQhuE]VqZ$Npo`"mkJcD>A!!)<ar;_EKJcC<$JcDqR!!)?bJ,~>
+j8\fQhuE]VqZ$Npo`"mkJcDkPr2'/fqZ-*br;_EKJcC<$k5Y>ZcN!j>LAq5Rli2J~>
+j8\fQhuE]VqZ$Npo`"mkJcDkPquHKkqZ-*br;_EKJcC<$k5Y>ZcN!hCLAq5Rli2J~>
+irAcRhZ*TUqZ$HnpAY*mJcCN*qZ)3IJcC<$JcDtS!!)?bJ,~>
+irAcRhZ*TUqZ$HnpAY*mJcDkPqka&eqZ-0dqZ)3IJcC<$kPtJ\cN!g=LAq5Rli2J~>
+irAcRhZ*TUqZ$HnpAY*mJcDkPqZ-BjqZ-0dqZ)3IJcC<$kPtJ\cN!eBLAq5Rli2J~>
+i;`ZSh>dKTp](0lq#:<oJcD;@!!)?bquD<JJcC<$UAt5nOoGC]li2J~>
+i;`ZSh>dKTp](0lq#:<oJcDhOr2'/fqZ--cquD<JJcC<$kPtJ\cN!g=q#C?oOoGC]li2J~>
+i;`ZSh>dKTp](0lq#:<oJcDhOquHKkqZ--cquD<JJcC<$kPtJ\cN!eBq#C?oOoGC]li2J~>
+[f?@-pAb*lq#:<oJcCK)qZ)3IJcC<$U]:8mPQ(U_li2J~>
+[f?@-pAb*lq#:<oJcDhOqka&eqZ-0dqZ)3IJcC<$l2UY]cN!g=q#C9mPQ(U_li2J~>
+[f?@-pAb*lq#:<oJcDhOqZ-BjqZ-0dqZ)3IJcC<$l2UY]cN!eBq#C9mPQ(U_li2J~>
+[f?@-p&G!kq>]m`JcD&9quD<JJcC<$V#U;lV>ouali2J~>
+[f?@-p&G!kq>]m`JcEC_r2',equH6dquD<JJcC<$l2UY]cN!j>q#C3kV>ouali2J~>
+[f?@-p&G!kq>]m`JcEC_quHHjquH6dquD<JJcC<$l2UY]cN!hCq#C3kV>ouali2J~>
+i;`]Th#IBSo`+pkq>UEpJcCE'quD<JJcC<$V>pGnPQ(U_li2J~>
+i;`]Th#IBSo`+pkq>UEpJcDbMr2'/fqZ--cquD<JJcC<$lMpe_c2[a=q#C6lPQ(U_li2J~>
+i;`]Th#IBSo`+pkq>UEpJcDbMquHKkqZ--cquD<JJcC<$lMpe_c2[_Bq#C6lPQ(U_li2J~>
+irAcRhZ*TUo`+pkq>UEpJcCE'quD<JJcC<$VZ6PoP5bL^li2J~>
+irAcRhZ*TUo`+pkq>UEpJcDbMr2',equH6dquD<JJcC<$lMpe_cN!g=q>^?mP5bL^li2J~>
+irAcRhZ*TUo`+pkq>UEpJcDbMquHHjquH6dquD<JJcC<$lMpe_cN!eBq>^?mP5bL^li2J~>
+j8\fQhuE]Vo`+pkq>UEpJcD2=!!)?bquD<JJcC<$VuQYpP5bL^li2J~>
+j8\fQhuE]Vo`+pkq>UEpJcD_Lr2'/fqZ--cquD<JJcC<$m/Qt`cN!g=q>^?mP5bL^li2J~>
+j8\fQhuE]Vo`+pkq>UEpJcD_LquHKkqZ--cquD<JJcC<$m/Qt`cN!eBq>^?mP5bL^li2J~>
+jT#,Xr;Z`ri;`fWo`+pkq>UEpJcCB&quD<JJcC<$W;lbqOoGC]li2J~>
+jT#,Xr;Z`ri;`fWo`+pkq>UEpJcD_Lqka&equH6dquD<JJcC<$m/Qt`cN!g=qZ$HnOoGC]li2J~>
+jT#,Xr;Z`ri;`fWo`+pkq>UEpJcD_LqZ-BjquH6dquD<JJcC<$m/Qt`cN!eBqZ$HnOoGC]li2J~>
+jT#2Zq#C?oiW&oXp&G$lq#:<oJcD/<!!)?bquD<JJcC<$WW2krOoGC]li2J~>
+jT#2Zq#C?oiW&oXp&G$lq#:<oJcD\Kr2'/fqZ--cquD<JJcC<$mJm+bc2[a=q>^?mOoGC]li2J~>
+jT#2Zq#C?oiW&oXp&G$lq#:<oJcD\KquHKkqZ--cquD<JJcC<$mJm+bc2[_Bq>^?mOoGC]li2J~>
+jT#5[pAY*miW&oXqu?Zrrr;uup\t3nJcC?%qZ)3IJcC<$X8i(tOT,:\li2J~>
+jT#5[pAY*miW&oXqu?Zrrr;uup\t3nJcD\Kqka&eqZ-0dqZ)3IJcC<$mf34ccN!g=qZ$HnOT,:\
+li2J~>
+jT#5[pAY*miW&oXqu?Zrrr;uup\t3nJcD\KqZ-BjqZ-0dqZ)3IJcC<$mf34ccN!eBqZ$HnOT,:\
+li2J~>
+jT#5[pAY*mj8\uVrVucqp&>!lJcD,;!!)?bquD<JJcC<$XT/.tOT,:\li2J~>
+jT#5[pAY*mj8\uVrVucqp&>!lJcDYJr2'/fqZ--cquD<JJcC<$n,N:ccN!g=qu?NnOT,:\li2J~>
+jT#5[pAY*mj8\uVrVucqp&>!lJcDYJquHKkqZ--cquD<JJcC<$n,N:ccN!eBqu?NnOT,:\li2J~>
+jT#5[pAY*mqu6Wrci3tFJcC<$qZ)3IJcC<$XoJ;!O8f1[li2J~>
+jT#5[pAY*mqu6Wrci3tFJcDVIr2'/fqZ-0dqZ)3IJcC<$nGiCdcN!j>qZ$HnO8f1[li2J~>
+jT#5[pAY*mqu6Wrci3tFJcDVIquHKkqZ-0dqZ)3IJcC<$nGiCdcN!hCqZ$HnO8f1[li2J~>
+j8T)ZpAY*mqu6Wrci3tFJcC<$!<;rsJcC<$JcDnQqZ)]W!!)?bJ,~>
+j8T)ZpAY*mqu6Wrci3tFJcDVIqka&equH6dquD<JJcC<$nGiFecN!g=qu?NnO8f1[li2J~>
+j8T)ZpAY*mqu6Wrci3tFJcDVIqZ-BjquH6dquD<JJcC<$nGiFecN!eBqu?NnO8f1[li2J~>
+ir8uYq#:<oqYpNqci3tFJcD&9!!)?bquD<JJcC<$YQ+M#NrK(Zli2J~>
+ir8uYq#:<oqYpNqci3tFJcDSHr2'/fqZ--cquD<JJcC<$nc/OfcN!g=qu?QoNrK(Zli2J~>
+ir8uYq#:<oqYpNqci3tFJcDSHquHKkqZ--cquD<JJcC<$nc/OfcN!eBqu?QoNrK(Zli2J~>
+jT"QHci3tFJcC<$s8VusJcC<$JcDtSqZ)ZV!!)?bJ,~>
+jT"QHci3tFJcDSHqka&equH6dquD<JJcC<$o)JUfcN!j>qu?NnNrK(Zli2J~>
+jT"QHci3tFJcDSHqZ-BjquH6dquD<JJcC<$o)JUfcN!hCqu?NnNrK(Zli2J~>
+jT"QHci3tFJcD#8!!)?br;_EKJcC<$YlFV$NW/tYli2J~>
+jT"QHci3tFJcDPGr2'/fqZ--cr;_EKJcC<$o)JUfci<p>qu?QoNW/tYli2J~>
+jT"QHci3tFJcDPGquHKkqZ--cr;_EKJcC<$o)JUfci<nCqu?QoNW/tYli2J~>
+j8\KHci3tFJcC<$rr;uuJcC<$JcDqRquD]U!!)?bJ,~>
+j8\KHci3tFJcDMFr2'/fqZ-0drr@WMJcC<$nGiCdci<p>r;ZZpN;ikXli2J~>
+j8\KHci3tFJcDMFquHKkqZ-0drr@WMJcC<$nGiCdci<nCr;ZZpN;ikXli2J~>
+j8T)Zn,E@fci3tFJcCu7!!%TMJcC<$R/d'aN;ikXli2J~>
+j8T)Zn,E@fci3tFJcDMFqka)fqZ)3IJcC<$hZ*NScN!g=r;ZZpN;ikXli2J~>
+j8T)Zn,E@fci3tFJcDMFqZ-EkqZ)3IJcC<$hZ*NScN!eBr;ZZpN;ikXli2J~>
+j8T)Zn,E@fci3tFJcC<$JcC<$JcDeNquDZT!!)?bJ,~>
+j8T)Zn,E@fci3tFJcDJEr2'/fqZ)3IJcC<$i;`]TcN!j>r;ZZpMuNbWli2J~>
+j8T)Zn,E@fci3tFJcDJEquHKkqZ)3IJcC<$i;`]TcN!hCr;ZZpMuNbWli2J~>
+Sc8ZiJcCr6!!%TMJcC<$R/d-cMuNbWli2J~>
+Sc8ZiJcDJEqka)fqZ)3IJcC<$i;`]Tci<p>qZ$NpMuNbWli2J~>
+Sc8ZiJcDJEqZ-EkqZ)3IJcC<$i;`]Tci<nCqZ$NpMuNbWli2J~>
+Sc8ZiJcCo5!!%TMJcC<$JcDDC!!)?bJ,~>
+Sc8ZiJcDGDr2'/fqZ)3IJcC<$iW&fUci<p>Jc>]Mli2J~>
+Sc8ZiJcDGDquHKkqZ)3IJcC<$iW&fUci<nCJc>]Mli2J~>
+Sc8ZiJcC<$JcC<$JcC<$Yl=\'li2J~>
+Sc8ZiJcDDCr2'/fquD<JJcC<$iW&iVcN!j>Jc>cN!:0Z8~>
+Sc8ZiJcDDCquHKkquD<JJcC<$iW&iVcN!hCJc>cN!:0Z8~>
+Sc8ZiJcCl4!!%TMJcC<$JcDGD!!)?bJ,~>
+Sc8ZiJcDDCqka)fqZ)3IJcC<$j8]#Wci<p>Jc>cN!:0Z8~>
+Sc8ZiJcDDCqZ-EkqZ)3IJcC<$j8]#Wci<nCJc>cN!:0Z8~>
+Sc8ZiJcC<$JcC<$JcC<$Yl=\'li2J~>
+Sc8ZiJcDABr2'/fqZ)3IJcC<$jT#,Xci<p>Jc>cN!:0Z8~>
+Sc8ZiJcDABquHKkqZ)3IJcC<$jT#,Xci<nCJc>cN!:0Z8~>
+Sc8ZiJcCi3!!%TMJcC<$JcDJE!!)?bJ,~>
+Sc8ZiJcDABqka)fqZ)3IJcC<$jT#,Xci<p>Jc>cN!:0Z8~>
+Sc8ZiJcDABqZ-EkqZ)3IJcC<$jT#,Xci<nCJc>cN!:0Z8~>
+Sc8ZiJcC<$pAb*lJcC<$JcC<$^Ae05li2J~>
+Sc8ZiJcD>Ar2'/fqZ-'arW%NLJcC<$qu?TpcN!j>JcGcM!!)?bJ,~>
+Sc8ZiJcD>AquHKkqZ-'arW%NLJcC<$qu?TpcN!hCJcGcM!!)?bJ,~>
+Sc8ZiJcCf2!!)?bquD<JJcC<$JcEIa!!)?bJ,~>
+Sc8ZiJcD;@r2'2gq>g'cquD<JJcC<$r;ZZpci<p>JcGcM!!)?bJ,~>
+Sc8ZiJcD;@quHNlq>g'cquD<JJcC<$r;ZZpci<nCJcGcM!!)?bJ,~>
+j8T)Z]`.s3JcCc1!!)BcqZ)3IJcC<$JcELb!!)?bJ,~>
+j8T)Z]`.s3JcD;@qka)fqZ-0dqZ)3IJcC<$rVucqci<p>JcGcM!!)?bJ,~>
+j8T)Z]`.s3JcD;@qZ-EkqZ-0dqZ)3IJcC<$rVucqci<nCJcGcM!!)?bJ,~>
+j8T)Zp&Fsjbl7YCJcCc1!!)?bquD<JJcC<$_#OE7K)YfNli2J~>
+j8T)Zp&Fsjbl7YCJcD8?r2'2gq>g'cquD<JJcC<$rVucqci<s?s8W*!K)YfNli2J~>
+j8T)Zp&Fsjbl7YCJcD8?quHNlq>g'cquD<JJcC<$rVucqci<qDs8W*!K)YfNli2J~>
+j8T,[s8;rps8N*!s8N)Drr<%Ms,I$Y!:9a_!.k0$s+13ds8;qNrr<&bs*t~>
+j8T,[s8;rps8N*!s8N)Drr<%Ms.',dV>1)f!:g*d!.k0$s+14Ls8;rDs88_ns8;qNrr<&bs*t~>
+j8T,[s8;rps8N*!s8N)Drr<%Ms.',d!;QTk!:g*d!.k0$s+14Ls8;rDs82lss8;qNrr<&bs*t~>
+j8\oTrr;rtrr;uucMmkEJcC]/!!)BcquD<JJcC<$_Z0K5L&V,Qli2J~>
+j8\oTrr;rtrr;uucMmkEJcD5>qka)fqZ-0dquD<JJcC<$s8Vusci<p>!<;orL&V,Qli2J~>
+j8\oTrr;rtrr;uucMmkEJcD5>qZ-EkqZ-0dquD<JJcC<$s8Vusci<nC!<;orL&V,Qli2J~>
+j8\oTrr;uur;Q`scMmkEJcC]/!!)?bquD<JJcC<$_uKW7K`;#Pli2J~>
+j8\oTrr;uur;Q`scMmkEJcD2=r2'2gq>g'cquD<JJcC<$!<;rsci<p>!<;rsK`;#Pli2J~>
+j8\oTrr;uur;Q`scMmkEJcD2=quHNlq>g'cquD<JJcC<$!<;rsci<nC!<;rsK`;#Pli2J~>
+jT#2Zr;Zcss8W*!r;Zcsci3tFJcCZ.!!)BcqZ)3IJcC<$`W,i9KDtoOli2J~>
+jT#2Zr;Zcss8W*!r;Zcsci3tFJcD2=qka)fqZ-0dqZ)3IJcC<$r;b1Dr1sDnquDBL!!)?bJ,~>
+jT#2Zr;Zcss8W*!r;Zcsci3tFJcD2=qZ-EkqZ-0dqZ)3IJcC<$r;b1Dqu?`squDBL!!)?bJ,~>
+jT#5[qYpZus8N'!r;Zcsci3tFJcCZ.!!)?bquD<JJcC<$`rGo9KDtoOli2J~>
+jT#5[qYpZus8N'!r;Zcsci3tFJcD/<r2'2gq>g'cquD<JJcC?%quG(Cr2'8jKDtoOli2J~>
+jT#5[qYpZus8N'!r;Zcsci3tFJcD/<quHNlq>g'cquD<JJcC?%quG(Cp&KaF!!)?bJ,~>
+jSo2[q>UQts8N'!r;Zcsci3tFJcCW-!!)BcqZ)3IJcC<$a8c&;K)YfNli2J~>
+jSo2[q>UQts8N'!r;Zcsci3tFJcD,;r2'2gqZ-0dqZ)3IJcCB&quG(Cr2';kK)YfNli2J~>
+jSo2[q>UQts8N'!r;Zcsci3tFJcD,;quHNlqZ-0dqZ)3IJcCB&quG(CpAfgF!!)?bJ,~>
+jSo2[q>UQts8N'!r;Zcsci3tFJcCT,!!)BcquD<JJcC<$aT),;K)YfNli2J~>
+jSo2[q>UQts8N'!r;Zcsci3tFJcD,;qka)fqZ-0dquD<JJcCB&quG(CrMBAkK)YfNli2J~>
+jSo2[q>UQts8N'!r;Zcsci3tFJcD,;qZ-EkqZ-0dquD<JJcCB&quG(CpAfgF!!)?bJ,~>
+jT#5[qu?Zrs8W*!r;Zcsci3tFJcCT,!!)?bquD<JJcC<$aoD8=Jc>]Mli2J~>
+jT#5[qu?Zrs8W*!r;Zcsci3tFJcD):r2'2gq>g'cquD<JJcCE'r;b1Dr2';kJc>]Mli2J~>
+jT#5[qu?Zrs8W*!r;Zcsci3tFJcD):quHNlq>g'cquD<JJcCE'r;b1DpAfdE!!)?bJ,~>
+j8\oT"TJK%!!)rsrrCCF!!%TMM#RGTm/Qq_JcC<$JcEmmr;_EK!WN/cs*t~>
+j8\oT"TJK%!!)rsrrCCF!!%TMQiHrZq#C3knc/IdJcC<$LB%/Oci<p>r;_EK!WN/cs*t~>
+j8\oT"TJK%!!)rsrrCCF!!%TMQiHp_q#C3knc/IdJcC<$LB%/Oci<b?Jc>cN!:0Z8~>
+irAlUrr;osrr;rtci3tFJcCQ+!!)?bquD<JJcC<$bQ%J?Jc>cN!:0Z8~>
+irAlUrr;osrr;rtci3tFJcD&9qka,gq>g'cquD<JJcCK)quG(CrMBDlJc>cN!:0Z8~>
+irAlUrr;osrr;rtci3tFJcD&9qZ-Hlq>g'cquD<JJcCK)quG(Cp],mF!WN/cs*t~>
+iW&iVr;Qfus8VuscMmkEJcCN*!!)BcqZ)3IJcC<$bl@VAJcGcM!!)?bJ,~>
+iW&iVr;Qfus8VuscMmkEJcD#8r2'2gqZ-0dqZ)3IJcCN*r;b1Dr2'>lJcGcM!!)?bJ,~>
+iW&iVr;Qfus8VuscMmkEJcD#8quHNlqZ-0dqZ)3IJcCN*r;b1Dp],mFs8N'!li2J~>
+e,TFJc2[P=JcCc1!!)BcquD<JJcC<$bl@VAL]@,Lli2J~>
+e,TFJc2[P=JcD;@qka)fqZ-0dquD<JJcCQ+quG(Cr2'>lL]@,Lli2J~>
+e,TFJc2[P=JcD;@qZ-EkqZ-0dquD<JJcCQ+quG(Cp]-*Lp]0X[J,~>
+Sc8ZiJcCK)!!)?bquD<JJcC<$c2[bCJcG`L!!)?bJ,~>
+Sc8ZiJcCu7r2'2gq>g'cquD<JJcCT,quG(Cr2'AmJcG`L!!)?bJ,~>
+Sc8ZiJcCu7quHNlq>g'cquD<JJcCT,quG(Cq#H!Grr2ruli2J~>
+Sc8ZiJcCH(!!)BcrW%NLJcC<$bl@YBJcG]K!!)?bJ,~>
+Sc8ZiJcCr6r2'2gqZ-0drW%NLJcCN*r;b.CrMBJnJcG]K!!)?bJ,~>
+Sc8ZiJcCr6quHNlqZ-0drW%NLJcCN*r;b.Cq>c*HrVlitli2J~>
+fDbgNaSu5?JcCH(!!)?b!!%TMJcC<$bQ%PAJcG]K!!)?bJ,~>
+fDbgNaSu5?JcCr6qka,gq>g'c!!%TMJcCN*quG(Cr2'AmJcG]K!!)?bJ,~>
+fDbgNaSu5?JcCr6qZ-Hlq>g'c!!%TMJcCN*quG(Cq#H!GrVlitli2J~>
+fDbgNaSu5?JcCE'!!%TMJcC<$[K$7,JcGZJ!!)?bJ,~>
+fDbgNaSu5?JcCo5r2'2gq>c*HJcC<$p](-kci<p>rr@WMr;Q`sli2J~>
+fDbgNaSu5?JcCo5quHNlq>c*HJcC<$p](-kci<hAJcGZJ!!)?bJ,~>
+irAZOaSu5?JcCE'rr@WMJcC<$\,ZF-JcGZJ!!)?bJ,~>
+irAZOaSu5?JcCl4r2'5hq>c*HJcC<$p](-kci<s?rW%NLr;Q`sli2J~>
+irAZOaSu5?JcCl4quHQmq>c*HJcC<$p](-kci<hAJcGZJ!!)?bJ,~>
+j8\`OaSu5?JcCB&!!%TMJcC<$[f6=-JcGWI!!)?bJ,~>
+j8\`OaSu5?JcCl4qka,gq>c*HJcC<$q#C9mci<p>!WN.Ns82fr!:0Z8~>
+j8\`OaSu5?JcCl4qZ-Hlq>c*HJcC<$q#C9mci<nC!WN.Ns82fr!:0Z8~>
+jT"fOaSu5?JcC?%!!%TMJcC<$JcDtS!!)?bJ,~>
+jT"fOaSu5?JcCi3r2'2gq>c*HJcC<$qZ$Hnci<p>JcGQG!!)?bJ,~>
+jT"fOaSu5?JcCi3quHNlq>c*HJcC<$qZ$Hnci<nCJcGQG!!)?bJ,~>
+jT#2Zp\t3naSu5?JcC?%rr@WMJcC<$JcE"T!!)?bJ,~>
+jT#2Zp\t3naSu5?JcCi3qka,gq>c*HJcC<$qZ$Hnci<p>JcGQG!!)?bJ,~>
+jT#2Zp\t3naSu5?JcCi3qZ-Hlq>c*HJcC<$qZ$Hnci<nCJcGQG!!)?bJ,~>
+jT#5[]`.s3JcC<$!!%TMJcC<$JcE"T!!)?bJ,~>
+jT#5[]`.s3JcCf2qka,gq>c*HJcC<$qu?Tpci<p>JcGNF!!)?bJ,~>
+jT#5[]`.s3JcCf2qZ-Hlq>c*HJcC<$qu?Tpci<nCJcGNF!!)?bJ,~>
+jT#5[]`.s3JcC<$rr@WMJcC<$JcE%U!!)?bJ,~>
+jT#5[]`.s3JcCc1r2'5hq#H!GJcC<$rVucqci<p>JcGNF!!)?bJ,~>
+jT#5[]`.s3JcCc1quHQmq#H!GJcC<$rVucqci<nCJcGNF!!)?bJ,~>
+j8T)ZpAY*maSu5?JcC<$!ri6#l2Ub`JcC<$JcC<$c2RbDli2J~>
+j8T)ZpAY*maSu5?JcCc1qka,gq>fs`rr@WMJcCo5quG(CrM>)Fp\t3nli2J~>
+j8T)ZpAY*maSu5?JcCc1qZ-Hlq>fs`rr@WMJcCo5quG(Cr;_EKp\t3nli2J~>
+ir8uYp\t3naSu5?JcC<$s8N'!lMpe_JcC<$JcC<$cMmkEli2J~>
+ir8uYp\t3naSu5?JcC`0qka,gq>g$br;_EKJcCr6r;b1Dr2"uEp\t3nli2J~>
+ir8uYp\t3naSu5?JcC`0qZ-Hlq>g$br;_EKJcCr6r;b1DquD<Jp\t3nli2J~>
+jT"fOaSu5?JcC<$s8W*!m/Qt`JcC<$JcC<$cMmkEli2J~>
+jT"fOaSu5?JcC]/r2'5hq#L!cquD<JJcCu7quG(Cr2"uEp\t3nli2J~>
+jT"fOaSu5?JcC]/quHQmq#L!cquD<JJcCu7quG(CquD<Jp\t3nli2J~>
+jT"fOaSu5?JcC<$rr;uumJm%`JcC<$JcC<$ci3tFli2J~>
+jT"fOaSu5?JcC]/qka,gq>g*dqZ)3IJcD#8quG+Dr2"uEpAY*mli2J~>
+jT"fOaSu5?JcC]/qZ-Hlq>g*dqZ)3IJcD#8quG+DquD<JpAY*mli2J~>
+j8\`OaSu5?JcC<$rVlitm/Qt`JcC<$JcF[.!!%TMnc&Rhli2J~>
+j8\`OaSu5?JcCZ.qka,gq>g*dquD<JJcD#8quG.E!!)qnJcGHD!!)?bJ,~>
+j8\`OaSu5?JcCZ.qZ-Hlq>g*dquD<JJcD#8quG.EqZ)3IpAY*mli2J~>
+j8T)ZpAY*maSu5?JcC<$rVultm/Qt`JcC<$JcF^/!!%TMnc&Rhli2J~>
+j8T)ZpAY*maSu5?JcCW-r2'5hq>g'cquD<JJcD):quG+D!!)qnJcGHD!!)?bJ,~>
+j8T)ZpAY*maSu5?JcCW-quHQmq>g'cquD<JJcD):quG+DqZ)3IpAY*mli2J~>
+j8T)Z]`.s3JcC<$r;ZcsmJm%`JcC<$JcFd1!!%TMnG`Igli2J~>
+j8T)Z]`.s3JcCW-qka,gq>g*dqZ)3IJcD,;quG.E!!)qnJcGEC!!)?bJ,~>
+j8T)Z]`.s3JcCW-qZ-Hlq>g*dqZ)3IJcD,;quG.EqZ)3Ip&>!lli2J~>
+fDbgNaSu5?JcC<$r;Zcsm/Qt`JcC<$JcFg2rr@WMnG`Igli2J~>
+fDbgNaSu5?JcCT,qka/hq#L!cquD<JJcD,;quG1FrrDtnJcGEC!!)?bJ,~>
+fDbgNaSu5?JcCT,qZ-Kmq#L!cquD<JJcD,;quG1Fq>c*Hp&>!lli2J~>
+fDbgNaSu5?JcC<$qu?ZrmJm%`JcC<$JcFj3rr@WMnG`Igli2J~>
+fDbgNaSu5?JcCQ+r2'5hq>g*dqZ)3IJcD/<r;b7FrrE"oJcGBB!!)?bJ,~>
+fDbgNaSu5?JcCQ+quHQmq>g*dqZ)3IJcD/<r;b7FqZ)3Io`"mkli2J~>
+jT"fOaSu5?JcC<$qZ$QqmJm%`JcC<$JcFp5rr@WMn,E@fli2J~>
+jT"fOaSu5?JcCN*r2'5hq>g*dqZ)3IJcD5>quG1FrrDtnJcGBB!!)?bJ,~>
+jT"fOaSu5?JcCN*quHQmq>g*dqZ)3IJcD5>quG1Fq>c*Ho`"mkli2J~>
+lMph`rr;QiaSu5?JcC<$qZ$Qqm/Qt`JcC<$JcFs6rW%NLn,E@fli2J~>
+lMph`rr;QiaSu5?JcCN*qka/hq#L!cquD<JJcD5>quG4GrW)kmJcGBB!!)?bJ,~>
+lMph`rr;QiaSu5?JcCN*qZ-Kmq#L!cquD<JJcD5>quG4Gq#H!Go`"mkli2J~>
+lMph`rr;QiaSu5?JcC<$q>^HpmJm%`JcC<$JcG!7rr@WMmf*7eli2J~>
+lMph`rr;QiaSu5?JcCK)r2'5hq#L$dqZ)3IJcD8?r;b:GrrDtnJcG?A!!)?bJ,~>
+lMph`rr;QiaSu5?JcCK)quHQmq#L$dqZ)3IJcD8?r;b:Gq>c*HoD\djli2J~>
+lMph`rVlitpAY*maSu5?JcC<$q#C?omJm(aJcC<$JcG$8rW%NLmf*7eli2J~>
+lMph`rVlitpAY*maSu5?JcCH(r2'5hq>g*dquD<JJcD;@quG4GrW)kmJcG?A!!)?bJ,~>
+lMph`rVlitpAY*maSu5?JcCH(quHQmq>g*dquD<JJcD;@quG4Gq#H!GoD\djli2J~>
+j8T)ZpAY*maSu5?JcC<$q#C?om/Qt`JcC<$JcG'9rW%NLmf*7eli2J~>
+j8T)ZpAY*maSu5?JcCH(qka/hq#L!cquD<JJcD>AquG4GrW)kmJcG?A!!)?bJ,~>
+j8T)ZpAY*maSu5?JcCH(qZ-Kmq#L!cquD<JJcD>AquG4Gq#H!GoD\djli2J~>
+fDbgNaSu5?JcC<$p](6nmJm%`JcC<$JcG-;rW%NLmJd.dli2J~>
+fDbgNaSu5?JcCE'qka/hq#L$dqZ)3IJcDABquG7HrW)kmJcG<@!!)?bJ,~>
+fDbgNaSu5?JcCE'qZ-Kmq#L$dqZ)3IJcDABquG7Hq#H!Go)A[ili2J~>
+Sc8ZiJcC<$pAb-mmJm(aJcC<$JcG0<r;_EKmJd.dli2J~>
+Sc8ZiJcCB&r2'5hq>g*dquD<JJcDDCquG7Hr;cblJcG<@!!)?bJ,~>
+Sc8ZiJcCB&quHQmq>g*dquD<JJcDDCquG7Hp],mFo)A[ili2J~>
+f`(pOa8Z,>JcC<$pAb-mmJm%`JcC<$JcG3=r;_EKmJd.dli2J~>
+f`(pOa8Z,>JcCB&qka/hq#L$dqZ)3IJcDGDquG7Hr;cemJcG9?!!)?bJ,~>
+f`(pOa8Z,>JcCB&qZ-Kmq#L$dqZ)3IJcDGDquG7Hq#H!Gnc&Rhli2J~>
+f`(pOa8Z,>JcC<$p&G$lmJm+bJcC<$JcG3=r;_EKm/I%cli2J~>
+f`(pOa8Z,>JcC?%qka/hq#L$dr;_EKJcDDCquG:Ir;cblJcG9?!!)?bJ,~>
+f`(pOa8Z,>JcC?%qZ-Kmq#L$dr;_EKJcDDCquG:Ip],mFnc&Rhli2J~>
+li6;OaSu5?JcC<$p&G!kmJd.dJcC<$JcG0<quD<Jm/I%cli2J~>
+li6;OaSu5?JcC<$r2'8iq#L!c!!%TMJcD>Ar;bCJquHYkJcG9?!!)?bJ,~>
+li6;OaSu5?JcC<$quHTnq#L!c!!%TMJcD>Ar;bCJpAfdEnc&Rhli2J~>
+li6;OiVrlXq#C9mpAY*mJcC<$o`+pkJcC<$JcFF'r;_EKli-qbli2J~>
+li6;OiVrlXq#C9mpAY*mJcC<$qka/hq#H!GJcCi3quG:Ir;cblJcG6>!!)?bJ,~>
+li6;OiVrlXq#C9mpAY*mJcC<$qZ-Kmq#H!GJcCi3quG:Ip],mFnG`Igli2J~>
+lMp5OjT#/Yq>^Hps8W*!p\t3nJcC<$oDegjJcC<$JcFF'rW%NLli-qbli2J~>
+lMp5OjT#/Yq>^Hps8W*!p\t3nJcC<$!<;qmqZ$?kJcC<$OoP=ZeGoLJr2"uEnG`Igli2J~>
+lMp5OjT#/Yq>^Hps8W*!p\t3nJcC<$!<;orqZ$?kJcC<$OoP=ZeGo=EJcG6>!!)?bJ,~>
+lMghaqu6Wrp\t3njSo>_s8N'!qZ$QqrVultq#:<oJcC<$oDediJcC<$JcFF'rr@WMli-qbli2J~>
+lMghaqu6Wrp\t3njSo>_s8N'!qZ$QqrVultq#:<oJcC<$s8Vtmqu?EkJcC<$PQ1O\df9=Ir2"uE
+nG`Igli2J~>
+lMghaqu6Wrp\t3njSo>_s8N'!qZ$QqrVultq#:<oJcC<$s8Vrrqu?EkJcC<$PQ1O\df9.DJcG6>
+!!)?bJ,~>
+lMghar;Q`sp&>!lirB#YqZ$QqrVultq#:<oJcC<$o)J[hJcC<$JcC<$_Z'T9li2J~>
+lMghar;Q`sp&>!lirB#YqZ$QqrVultq#:<oJcC<$rr;nmqZ$?kJcC<$PQ1O\dJs-@JcG3=!!)?b
+J,~>
+lMghar;Q`sp&>!lirB#YqZ$QqrVultq#:<oJcC<$rr;lrqZ$?kJcC<$PQ1O\dJs+EJcG3=!!)?b
+J,~>
+jSo2[p&>!lirB#Yqu?Zrqu?Zrq>UEpJcC<$nc/UhJcC<$JcC<$_Z'T9li2J~>
+jSo2[p&>!lirB#Yqu?Zrqu?Zrq>UEpJcC<$rr;klqZ$?kJcC<$PlLX]dJs-@JcG3=!!)?bJ,~>
+jSo2[p&>!lirB#Yqu?Zrqu?Zrq>UEpJcC<$rr;iqqZ$?kJcC<$PlLX]dJs+EJcG3=!!)?bJ,~>
+jSo2[p&>!lirB#Yqu?Zrqu?Zrq>UEpJcC<$nc/RgJcC<$JcC<$_uB]:li2J~>
+jSo2[p&>!lirB#Yqu?Zrqu?Zrq>UEpJcC<$rVubkqu?EkJcC<$QN-j_d/X'@JcG0<!!)?bJ,~>
+jSo2[p&>!lirB#Yqu?Zrqu?Zrq>UEpJcC<$rVu`pqu?EkJcC<$QN-j_d/X%EJcG0<!!)?bJ,~>
+jT#5[p](6nirB#Yqu?Zrqu?Zrq>UEpJcC<$nGiIfJcC<$JcC<$`;]f;li2J~>
+jT#5[p](6nirB#Yqu?Zrqu?Zrq>UEpJcC<$r;Z\kqZ$?kJcC<$QN-j_dJs-@JcG0<!!)?bJ,~>
+jT#5[p](6nirB#Yqu?Zrqu?Zrq>UEpJcC<$r;ZZpqZ$?kJcC<$QN-j_dJs+EJcG0<!!)?bJ,~>
+j8],ZqZ$KoirB#Yqu?Zrqu?Zrq>]m`JcC<$!ri6#lMph`JcC<$JcC<$n,MhVli2J~>
+j8],ZqZ$KoirB#Yqu?Zrqu?Zrq>]m`JcC`0qka/hq#KparW%NLJcDeNr;b4Er2"uEs8VNfli2J~>
+j8],ZqZ$KoirB#Yqu?Zrqu?Zrq>]m`JcC`0qZ-Kmq#KparW%NLJcDeNr;b4EquD<Js8VNfli2J~>
+j8\cPiW&oXqu?Zrqu?Zrq>UEpJcC<$n,N@em/R"aJcC<$JcC<$hZ!QUli2J~>
+j8\cPiW&oXqu?Zrqu?Zrq>UEpJcC<$qu?Piqu?Eko)JXgJcC<$XT/1udJs-@JcG-;!!)?bJ,~>
+j8\cPiW&oXqu?Zrqu?Zrq>UEpJcC<$qu?Nnqu?Eko)JXgJcC<$XT/1udJs+EJcG-;!!)?bJ,~>
+iW&ZQi;`fWqu?Zrqu?Zrq>UEpJcC<$mf37dmf3.aJcC<$JcC<$hu<ZVli2J~>
+iW&ZQi;`fWqu?Zrqu?Zrq>UEpJcC<$qZ$Ghqu?Eko`+dgJcC<$XoJ;!dJs-@JcG-;!!)?bJ,~>
+iW&ZQi;`fWqu?Zrqu?Zrq>UEpJcC<$qZ$Emqu?Eko`+dgJcC<$XoJ;!dJs+EJcG-;!!)?bJ,~>
+huEQRhuE]Vqu?Zrqu?Zrq>UEpJcC<$mJm.cmf31bJcC<$Jc>fO!!%TMir8uYli2J~>
+huEQRhuE]Vqu?Zrqu?Zrq>UEpJcC<$q>^AhqZ$?koDe^gJcC<$Y5eD"f`1sOqu?SjJcG-;!!)?b
+J,~>
+huEQRhuE]Vqu?Zrqu?Zrq>UEpJcC<$q>^?mqZ$?koDe^gJcC<$Y5eD"f`1sOqu?QoJcG-;!!)?b
+J,~>
+\,ZI.qu?Zrqu?Zrq>UEpJcC<$mJm.cmJm(aJcC<$K)b`KJcFg2!!)?bJ,~>
+\,ZI.qu?Zrqu?Zrq>UEpJcC<$q>^>gqu?EkoDe^gJcC<$YQ+M#g&LsMrr;nmJcG*:!!)?bJ,~>
+\,ZI.qu?Zrqu?Zrq>UEpJcC<$q>^<lqu?EkoDe^gJcC<$YQ+M#g&LsMrr;lrJcG*:!!)?bJ,~>
+fDbgNirB#YqYpNqqu6Wrq#:<oJcC<$m/R%bmf3.aJcC<$KE(iLJcFg2!!)?bJ,~>
+fDbgNirB#YqYpNqqu6Wrq#:<oJcC<$q#C5fqu?Eko`+dgJcC<$YlFV$g&LsMrr;nmJcG*:!!)?b
+J,~>
+fDbgNirB#YqYpNqqu6Wrq#:<oJcC<$q#C3kqu?Eko`+dgJcC<$YlFV$g&LsMrr;lrJcG*:!!)?b
+J,~>
+fDbgNirB#YqZ$QqrVultq#:<oJcC<$li6qamf31bJcC<$K`CoLJcFg2!!)?bJ,~>
+fDbgNirB#YqZ$QqrVultq#:<oJcC<$p](,equ?Eko`+ghJcC<$Z2a_%g&LpLs8W"nJcG'9!!)?b
+J,~>
+fDbgNirB#YqZ$QqrVultq#:<oJcC<$p](*jqu?Eko`+ghJcC<$Z2a_%g&LpLs8VusJcG'9!!)?b
+J,~>
+irAZOirB#Yq>^Hps8W*!p\t3nJcC<$li6n`mf31bJcC<$LB%,NJcFd1!!)?bJ,~>
+irAZOirB#Yq>^Hps8W*!p\t3nJcC<$p](,equ?EkoDe^gJcC<$ZN'h&gAh$Mrr;nmJcG'9!!)?b
+J,~>
+irAZOirB#Yq>^Hps8W*!p\t3nJcC<$p](*jqu?EkoDe^gJcC<$ZN'h&gAh$Mrr;lrJcG'9!!)?b
+J,~>
+j8\`OjT#)WqZ$KopAY*mJcC<$lMph`mf3.aJcC<$L]@8PJcFa0!!)?bJ,~>
+j8\`OjT#)WqZ$KopAY*mJcC<$pAb#dqu?Eko`+dgJcC<$ZiBt(g&LsMrr;nmJcG$8!!)?bJ,~>
+j8\`OjT#)WqZ$KopAY*mJcC<$pAb!iqu?Eko`+dgJcC<$ZiBt(g&LsMrr;lrJcG$8!!)?bJ,~>
+jT"fOaSu5?JcC<$l2U__mf3.aJcC<$M?!GQJcFa0!!)?bJ,~>
+jT"fOaSu5?JcC<$p&Focqu?Eko`+dgJcC<$[K$.)gAh$Mrr;nmJcG$8!!)?bJ,~>
+jT"fOaSu5?JcC<$p&Fmhqu?Eko`+dgJcC<$[K$.)gAh$Mrr;lrJcG$8!!)?bJ,~>
+jT#2Zp\t3naSu5?JcC<$l2U\^mf31bJcC<$MZ<PRJcF^/!!)?bJ,~>
+jT#2Zp\t3naSu5?JcC<$o`+fbr;ZKko`+ghJcC<$[K$.)g].-Nrr;nmJcG!7!!)?bJ,~>
+jT#2Zp\t3naSu5?JcC<$o`+dgr;ZKko`+ghJcC<$[K$.)g].-Nrr;lrJcG!7!!)?bJ,~>
+jT#5[]`.s3JcC<$kl:S]n,N7bJcC<$MuW\TJcF[.!!)?bJ,~>
+jT#5[]`.s3JcC<$oDe`bqu?Eko`+dgJcC<$\,Z@+gAh'NrVuelJcG!7!!)?bJ,~>
+jT#5[]`.s3JcC<$oDe^gqu?Eko`+dgJcC<$\,Z@+gAh'NrVucqJcG!7!!)?bJ,~>
+jT#5[]`.s3JcC<$kPtM]mf3.aJcC<$NW8kUJcF[.!!)?bJ,~>
+jT#5[]`.s3JcC<$oDe]aqu?Eko`+dgJcC<$\GuI,g].-Nrr;nmJcFs6!!)?bJ,~>
+jT#5[]`.s3JcC<$oDe[fqu?Eko`+dgJcC<$\GuI,g].-Nrr;lrJcFs6!!)?bJ,~>
+j8T)ZpAY*maSu5?JcC<$k5YD\mf31bJcC<$NrStVJcFX-!!)?bJ,~>
+j8T)ZpAY*maSu5?JcC<$o)JT`qu?Eko`+ghJcC<$\GuI,h#I6OrVuelJcFs6!!)?bJ,~>
+j8T)ZpAY*maSu5?JcC<$o)JRequ?Eko`+ghJcC<$\GuI,h#I6OrVucqJcFs6!!)?bJ,~>
+ir8uYp\t3naSu5?JcC<$k5YA[n,N7bJcC<$O8o+XJcFU,!!)?bJ,~>
+ir8uYp\t3naSu5?JcC<$nc/K_r;ZKkp&FmhJcC<$])V[.g].0OrVuelJcFp5!!)?bJ,~>
+ir8uYp\t3naSu5?JcC<$nc/Idr;ZKkp&FmhJcC<$])V[.g].0OrVucqJcFp5!!)?bJ,~>
+jT"fOaSu5?JcC<$jo>8Zn,N7bJcC<$OoP:YJcFU,!!)?bJ,~>
+jT"fOaSu5?JcC<$nGiE_qu?Eko`+dgJcC<$]Dqd/h#I6OrVuelJcFp5!!)?bJ,~>
+jT"fOaSu5?JcC<$nGiCdqu?Eko`+dgJcC<$]Dqd/h#I6OrVucqJcFp5!!)?bJ,~>
+jT"fOaSu5?JcC<$jT#2Zmf34cJcC<$OoP:YJcFR+!!)?bJ,~>
+jT"fOaSu5?JcC<$nGiB^qu?Eko`+jiJcC<$])V[.h>d?PrVubkJcFp5!!)?bJ,~>
+jT"fOaSu5?JcC<$nGi@cqu?Eko`+jiJcC<$])V[.h>d?PrVu`pJcFp5!!)?bJ,~>
+j8\`OaSu5?JcC<$jT#/Yn,N@eJcC<$OoP:YJcFO*!!)?bJ,~>
+j8\`OaSu5?JcC<$n,N9]r;ZKkp&G!kJcC<$])V[.h>d?Pr;Z\kJcFm4!!)?bJ,~>
+j8\`OaSu5?JcC<$n,N7br;ZKkp&G!kJcC<$])V[.h>d?Pr;ZZpJcFm4!!)?bJ,~>
+j8T)ZpAY*maSu5?JcC<$j8]&XJcC<$JcG]KquD<Jg]%6Rli2J~>
+j8T)ZpAY*maSu5?JcC<$mf30\r;ZKkJcC<$XT/1uh>dBQr;ZYjJcFm4!!)?bJ,~>
+j8T)ZpAY*maSu5?JcC<$mf3.ar;ZKkJcC<$XT/1uh>dBQr;ZWoJcFm4!!)?bJ,~>
+j8T)Z]`.s3JcC<$irArWJcC<$JcG`LquD<Jg]%6Rli2J~>
+j8T)Z]`.s3JcC<$mJm*\qu?EkJcC<$XT/5!h#I9Pr;Z\kJcFj3!!)?bJ,~>
+j8T)Z]`.s3JcC<$mJm(aqu?EkJcC<$XT/5!h#I9Pr;ZZpJcFj3!!)?bJ,~>
+Sc8ZiJcC<$iW&lWJcC<$JcGZJrr@WMgA_-Qli2J~>
+Sc8ZiJcC<$mJm'[qu?EkJcC<$Y5eD"gAh0Qr;ZYjJcFj3!!)?bJ,~>
+Sc8ZiJcC<$mJm%`qu?EkJcC<$Y5eD"gAh0Qr;ZWoJcFj3!!)?bJ,~>
+g]%6R`;]f;JcC<$iW&iVJcC<$JcC<$eGfLKli2J~>
+g]%6R`;]f;JcC<$m/QsZr;ZKkJcC<$YQ+M#e,T?BJcFg2!!)?bJ,~>
+g]%6R`;]f;JcC<$m/Qq_r;ZKkJcC<$YQ+M#e,T=GJcFg2!!)?bJ,~>
+irAuXr;Zcs`r?#=JcC<$i;``UJcC<$JcC<$ec,ULli2J~>
+irAuXr;Zcs`r?#=JcC<$li6jYr;ZKkJcC<$Z2a_%df96AJcFg2!!)?bJ,~>
+irAuXr;Zcs`r?#=JcC<$li6h^r;ZKkJcC<$Z2a_%df94FJcFg2!!)?bJ,~>
+j8]&Xqu?Zra8Z,>JcC<$huEWTJcC<$JcC<$f)G^Mli2J~>
+j8]&Xqu?Zra8Z,>JcC<$lMpaXr;ZKkJcC<$ZN'h&e,T?BJcFd1!!)?bJ,~>
+j8]&Xqu?Zra8Z,>JcC<$lMp_]r;ZKkJcC<$ZN'h&e,T=GJcFd1!!)?bJ,~>
+jT#,XqYpNqa8Z,>JcC<$huEWTJcC<$JcC<$f)G^Mli2J~>
+jT#,XqYpNqa8Z,>JcC<$l2UXWrVuTlJcC<$ZN'h&e,T?BJcFd1!!)?bJ,~>
+jT#,XqYpNqa8Z,>JcC<$l2UV\rVuTlJcC<$ZN'h&e,T=GJcFd1!!)?bJ,~>
+jT#5[s8N'!qZ$QqaSu5?JcC<$hZ*NSli6tbJcC<$JcC<$n,E@fli2J~>
+jT#5[s8N'!qZ$QqaSu5?JcC<$l2UXWr;ZKknc/UhJcC<$`rGr:e,T?BJcFa0!!)?bJ,~>
+jT#5[s8N'!qZ$QqaSu5?JcC<$l2UV\r;ZKknc/UhJcC<$`rGr:e,T=GJcFa0!!)?bJ,~>
+jSo2[rr2ruqZ$QqaSu5?JcC<$h>dERmf31bJcC<$JcC<$nG`Igli2J~>
+jSo2[rr2ruqZ$QqaSu5?JcC<$kl:OVr;ZKko`+ghJcC<$a8c&;e,T?BJcFa0!!)?bJ,~>
+jSo2[rr2ruqZ$QqaSu5?JcC<$kl:M[r;ZKko`+ghJcC<$a8c&;e,T=GJcFa0!!)?bJ,~>
+jSo2[rr2ruqZ$QqaSu5?JcC<$h#I<Qn,N:cJcC<$JcC<$nG`Igli2J~>
+jSo2[rr2ruqZ$QqaSu5?JcC<$kPtFUr;ZKkp&FpiJcC<$aT)/<e,T?BJcF^/!!)?bJ,~>
+jSo2[rr2ruqZ$QqaSu5?JcC<$kPtDZr;ZKkp&FpiJcC<$aT)/<e,T=GJcF^/!!)?bJ,~>
+jSo2[rr2ruqu?WqaSu5?JcC<$h#I9PnGi@cJcC<$U]:>oJcF-t!!)?bJ,~>
+jSo2[rr2ruqu?WqaSu5?JcC<$k5Y=TrVuQkpAb!iJcC<$aoD8=i;`fWpAb&eJcF^/!!)?bJ,~>
+jSo2[rr2ruqu?WqaSu5?JcC<$k5Y;YrVuQkpAb!iJcC<$aoD8=i;`fWpAb$jJcF^/!!)?bJ,~>
+j8T2]s8N)ss8;r=rr<%Ms+14)s8;rds8)eIs+13Hs8;qKs3goI!:0Z8~>
+j8T2]s8N)ss8;r=rr<%Ms+143s8/Yks7ZNds8)eIs+13ns82lTs8;rms88^Es5<nW!:0Z8~>
+j8T2]s8N)ss8;r=rr<%Ms+143s8)fps7ZNds8)eIs+13ns82lTs8;rms82kJs5<nW!:0Z8~>
+j8],Z!WN0!s82l;rr<%Ms+14(s8;rds8)eIs+13Js8)eIs3puJ!:0Z8~>
+j8],Z!WN0!s82l;rr<%Ms+143s8/Yjs7ZNds8)eIs+13os82lUs8)fls88^Es5<nW!:0Z8~>
+j8],Z!WN0!s82l;rr<%Ms+143s8)fos7ZNds8)eIs+13os82lUs8)fls82kJs5<nW!:0Z8~>
+irA`Q`r?#=JcC<$g&M!Nn,N:cJcC<$W;l_pJcF0u!!)?bJ,~>
+irA`Q`r?#=JcC<$jT#+Rr;ZKkp&FpiJcC<$bl@S@irAlUq>^AhJcFX-!!)?bJ,~>
+irA`Q`r?#=JcC<$jT#)Wr;ZKkp&FpiJcC<$bl@S@irAlUq>^?mJcFX-!!)?bJ,~>
+i;`WR`W#o<JcC<$g&LsMnGi@cJcC<$WrMqrJcF-t!!)?bJ,~>
+i;`WR`W#o<JcC<$j8]"QrVuQkpAb!iJcC<$cN!eBirAlUq>^>gJcFX-!!)?bJ,~>
+i;`WR`W#o<JcC<$j8\uVrVuQkpAb!iJcC<$cN!eBirAlUq>^<lJcFX-!!)?bJ,~>
+Sc8ZiJcC<$f`1jLnGi@cJcC<$X8i%sJcF-t!!)?bJ,~>
+Sc8ZiJcC<$irAnPrVuQkpAb!iJcC<$ci<nCirAlUq>^AhJcFU,!!)?bJ,~>
+Sc8ZiJcC<$irAlUrVuQkpAb!iJcC<$ci<nCirAlUq>^?mJcFU,!!)?bJ,~>
+Sc8ZiJcC<$fDkdLn,N7bJcC<$XoJ7uJcF*s!!)?bJ,~>
+Sc8ZiJcC<$iW&eOrVuQkpAb!iJcC<$dJs+EirAlUq>^>gJcFU,!!)?bJ,~>
+Sc8ZiJcC<$iW&cTrVuQkpAb!iJcC<$dJs+EirAlUq>^<lJcFU,!!)?bJ,~>
+h>dER`W#o<JcC<$f)P[Kn,N:cJcC<$Y5eA!JcF'r!!)?bJ,~>
+h>dER`W#o<JcC<$iW&bNrVuTlp&FpiJcC<$dJs+Ej8\uVq#C8gJcFR+!!)?bJ,~>
+h>dER`W#o<JcC<$iW&`SrVuTlp&FpiJcC<$dJs+Ej8\uVq#C6lJcFR+!!)?bJ,~>
+huENQ`r?#=JcC<$ec5RJnGi@cJcC<$YlFS#JcF$q!!)?bJ,~>
+huENQ`r?#=JcC<$i;`\Nr;ZKkpAb!iJcC<$e,T=Gj8\uVq#C8gJcFO*!!)?bJ,~>
+huENQ`r?#=JcC<$i;`ZSr;ZKkpAb!iJcC<$e,T=Gj8\uVq#C6lJcFO*!!)?bJ,~>
+kPtJ\rVuZna8bo7JcC<$h>dBQnGi@cJcC<$Z2a\$JcF=$p]0X[J,~>
+kPtJ\rVuZna8bo7JcC<$kPtFUrVuQkpAb!iJcC<$eGoFHj8\uVq>^>gJcFg2p]0X[J,~>
+kPtJ\rVuZna8bo7JcC<$kPtDZrVuQkpAb!iJcC<$eGoFHj8\uVq>^<lJcFg2p]0X[J,~>
+kl:M[s8Vioa8Z,>JcC<$eGoFHnGi@cJcC<$ZiBn&JcF!p!!)?bJ,~>
+kl:M[s8Vioa8Z,>JcC<$hZ*JLrVuQkpAb!iJcC<$f)PXJj8\uVq#C8gJcFL)!!)?bJ,~>
+kl:M[s8Vioa8Z,>JcC<$hZ*HQrVuQkpAb!iJcC<$f)PXJj8\uVq#C6lJcFL)!!)?bJ,~>
+l2UPZ!ri6#r;Z`raSu5?JcC<$e,T=GnGiCdJcC<$[/^"'JcEso!!)?bJ,~>
+l2UPZ!ri6#r;Z`raSu5?JcC<$h>dAKrVuQkpAb$jJcC<$f)PXJjT#)Wq#C5fJcFL)!!)?bJ,~>
+l2UPZ!ri6#r;Z`raSu5?JcC<$h>d?PrVuQkpAb$jJcC<$f)PXJjT#)Wq#C3kJcFL)!!)?bJ,~>
+l2Ub`rVult!WN/rs8N)?rr<%Ms+13us82les8)eIs+13Ys8)eIs3(EB!:0Z8~>
+l2Ub`rVult!WN/rs8N)?rr<%Ms+14*s8/Yks7QHes8)eIs+14&s82lXs8)fjs88^Es4[JQ!:0Z8~>
+l2Ub`rVult!WN/rs8N)?rr<%Ms+14*s8)fps7QHes8)eIs+14&s82lXs8)fjs82kJs4[JQ!:0Z8~>
+lMpkaqu?WqqZ$QqaSu5?JcC<$df91Enc/OfJcC<$[K$.)JcEmm!!)?bJ,~>
+lMpkaqu?WqqZ$QqaSu5?JcC<$g]./Irr;Wkp](0lJcC<$fDkaKjT#,Xp](/fJcFF'!!)?bJ,~>
+lMpkaqu?WqqZ$QqaSu5?JcC<$g].-Nrr;Wkp](0lJcC<$fDkaKjT#,Xp](-kJcFF'!!)?bJ,~>
+lMghaqZ$Qqq#:<oaSu5?JcC<$dJs+EnG`IgJcC<$[/^"'JcEmm!!)?bJ,~>
+lMghaqZ$Qqq#:<oaSu5?JcC<$g].,Hrr;Wkp\t3nJcC<$f)PUIjo>2Xp](/fJcFF'!!)?bJ,~>
+lMghaqZ$Qqq#:<oaSu5?JcC<$g].*Mrr;Wkp\t3nJcC<$f)PUIjo>2Xp](-kJcFF'!!)?bJ,~>
+lMghaq>UEpq#:<oaSu5?JcC<$d/X"DJcC<$V#U;lJcEjl!!)?bJ,~>
+lMghaq>UEpq#:<oaSu5?JcC<$gAh#Grr;ZlJcC<$bQ%J?jo>2Xp](/fJcFC&!!)?bJ,~>
+lMghaq>UEpq#:<oaSu5?JcC<$gAh!Lrr;ZlJcC<$bQ%J?jo>2Xp](-kJcFC&!!)?bJ,~>
+lMghaq>UEpq#:<oaSu5?JcC<$ci<nCJcC<$U]:;nJcEgk!!)?bJ,~>
+lMghaq>UEpq#:<oaSu5?JcC<$g&LrGrVuQkJcC<$bl@S@j8])Yp](,eJcFC&!!)?bJ,~>
+lMghaq>UEpq#:<oaSu5?JcC<$g&LpLrVuQkJcC<$bl@S@j8])Yp](*jJcFC&!!)?bJ,~>
+lMghaq>UEpq#:<oaSu5?JcC<$cN!eBJcC<$U]1;oJcEdj!!)?bJ,~>
+lMghaq>UEpq#:<oaSu5?JcC<$f`1iFrVuQkJcC<$cN!eBiVrlXpAb&eJcF@%!!)?bJ,~>
+lMghaq>UEpq#:<oaSu5?JcC<$f`1gKrVuQkJcC<$cN!eBiVrlXpAb$jJcF@%!!)?bJ,~>
+lMghaq>UEpq#:<oaSu5?JcC<$cN!bAJcC<$JcC<$l2L_`li2J~>
+lMghaq>UEpq#:<oaSu5?JcC<$fDk`Err;WkJcC<$ci<nCf)PWDJcF@%!!)?bJ,~>
+lMghaq>UEpq#:<oaSu5?JcC<$fDk^Jrr;WkJcC<$ci<nCf)PUIJcF@%!!)?bJ,~>
+lMp5OaSu5?JcC<$c2[Y@JcC<$JcC<$lMghali2J~>
+lMp5OaSu5?JcC<$f)PWDrr;WkJcC<$dJs+Eec5QDJcF=$!!)?bJ,~>
+lMp5OaSu5?JcC<$f)PUIrr;WkJcC<$dJs+Eec5OIJcF=$!!)?bJ,~>
+lMp5OaSu5?JcC<$bl@P?JcC<$JcC<$li-qbli2J~>
+lMp5OaSu5?JcC<$ec5NCrr;WkJcC<$df94Ff)PZEJcF:#!!)?bJ,~>
+lMp5OaSu5?JcC<$ec5LHrr;WkJcC<$df94Ff)PXJJcF:#!!)?bJ,~>
+lMp5OaSu5?JcC<$bQ%J?m/I%cJcC<$JcC<$!!)?bJ,~>
+lMp5OaSu5?JcC<$eGoEBrr;WkoD\djJcC<$j8]#Wf)PWDJcF:#!!)?bJ,~>
+lMp5OaSu5?JcC<$eGoCGrr;WkoD\djJcC<$j8]#Wf)PUIJcF:#!!)?bJ,~>
+lMpkanc/UhaSu5?JcC<$b5_A>mf37dJcC<$JcC?%!!)?bJ,~>
+lMpkanc/UhaSu5?JcC<$eGoBArr;Wkp&G!kJcC<$jT#,Xf)PZEJcF7"!!)?bJ,~>
+lMpkanc/UhaSu5?JcC<$eGo@Frr;Wkp&G!kJcC<$jT#,Xf)PXJJcF7"!!)?bJ,~>
+lMghan,E@faSu5?JcC<$aoD8=nc/IdJcC<$JcCB&!!)?bJ,~>
+lMghan,E@faSu5?JcC<$e,T9@rr;Wkq#C3kJcC<$k5Y>Zf)PWDJcF7"!!)?bJ,~>
+lMghan,E@faSu5?JcC<$e,T7Err;Wkq#C3kJcC<$k5Y>Zf)PUIJcF7"!!)?bJ,~>
+lMghan,E@faSu5?JcC<$aoD5<nc/IdJcC<$aoDA@JcEIa!!)?bJ,~>
+lMghan,E@faSu5?JcC<$df90?s8V]kq#C3kJcC<$kPtG[kl:Y_o)JT`JcF4!!!)?bJ,~>
+lMghan,E@faSu5?JcC<$df9.Ds8V]kq#C3kJcC<$kPtG[kl:Y_o)JReJcF4!!!)?bJ,~>
+Sc8ZiJcC<$aT),;nc/IdJcC<$bQ%M@JcELb!!)?bJ,~>
+Sc8ZiJcC<$dJs'>s8V`lp](*jJcC<$l2UV\l2U\^oDe`bJcF0u!!)?bJ,~>
+Sc8ZiJcC<$dJs%Cs8V`lp](*jJcC<$l2UV\l2U\^oDe^gJcF0u!!)?bJ,~>
+Sc8ZiJcC<$a8c#:nc/IdJcC<$c2[Y@JcEOc!!)?bJ,~>
+Sc8ZiJcC<$d/Ws=s8V`lp](*jJcC<$lMpb^l2UV\p&FocJcF0u!!)?bJ,~>
+Sc8ZiJcC<$d/WqBs8V`lp](*jJcC<$lMpb^l2UV\p&FmhJcF0u!!)?bJ,~>
+Sc8ZiJcC<$`rGo9o)JReJcC<$cN!bAJcELb!!)?bJ,~>
+Sc8ZiJcC<$ci<m=rr;Wkq#C3kJcC<$li6k_l2UV\p&FocJcF-t!!)?bJ,~>
+Sc8ZiJcC<$ci<kBrr;Wkq#C3kJcC<$li6k_l2UV\p&FmhJcF-t!!)?bJ,~>
+Sc8ZiJcC<$`W,f8o)JReJcC<$d/WtCJcEIa!!)?bJ,~>
+Sc8ZiJcC<$cN!d<rr;Wkq#C3kJcC<$m/Qt`lMp_]p&FocJcF*s!!)?bJ,~>
+Sc8ZiJcC<$cN!bArr;Wkq#C3kJcC<$m/Qt`lMp_]p&FmhJcF*s!!)?bJ,~>
+Sc8ZiJcC<$`;f]7o)JReJcC<$dJs(DJcEIa!!)?bJ,~>
+Sc8ZiJcC<$c2[[;rr;Wkq#C3kJcC<$mf31bl2UV\p&FrdJcF'r!!)?bJ,~>
+Sc8ZiJcC<$c2[Y@rr;Wkq#C3kJcC<$mf31bl2UV\p&FpiJcF'r!!)?bJ,~>
+Sc8ZiJcC<$_uKT6o)JReJcC<$e,T:FJcEF`!!)?bJ,~>
+Sc8ZiJcC<$bl@R:rr;Wkq#C3kJcC<$n,N:clMp_]p&FocJcF'r!!)?bJ,~>
+Sc8ZiJcC<$bl@P?rr;Wkq#C3kJcC<$n,N:clMp_]p&FmhJcF'r!!)?bJ,~>
+Sc8ZiJcC<$_uKQ5o)JReJcC<$ec5LHJcEC_!!)?bJ,~>
+Sc8ZiJcC<$bQ%I9s8V]kq#C3kJcC<$nc/LelMp_]p&FocJcF$q!!)?bJ,~>
+Sc8ZiJcC<$bQ%G>s8V]kq#C3kJcC<$nc/LelMp_]p&FmhJcF$q!!)?bJ,~>
+Sc8ZiJcC<$_Z0H4oDeXeJcC<$fDk^JJcE@^!!)?bJ,~>
+Sc8ZiJcC<$b5_@8s8V]kq>^9kJcC<$oDe[fli6h^o`+icJcF!p!!)?bJ,~>
+Sc8ZiJcC<$b5_>=s8V]kq>^9kJcC<$oDe[fli6h^o`+ghJcF!p!!)?bJ,~>
+Sc8ZiJcC<$_>jB4o)JOdJcC<$g&LpLJcE=]!!)?bJ,~>
+Sc8ZiJcC<$aoD77s8Vrr!<;orq>^9kJcC<$o`+ghli6h^o`+fbJcF!p!!)?bJ,~>
+Sc8ZiJcC<$aoD5<s8Vrr!<;orq>^9kJcC<$o`+ghli6h^o`+dgJcF!p!!)?bJ,~>
+Sc8ZiJcC<$_#O93o)JReJcC<$gAh$MJcE:\!!)?bJ,~>
+Sc8ZiJcC<$aT).6s8V]kq>^<lJcC<$p&Fmhm/Qq_o`+fbJcEso!!)?bJ,~>
+Sc8ZiJcC<$aT),;s8V]kq>^<lJcC<$p&Fmhm/Qq_o`+dgJcEso!!)?bJ,~>
+Sc8ZiJcC<$^]402o)JReJcC<$h#I3NJcE:\!!)?bJ,~>
+Sc8ZiJcC<$a8c%5s8V]kq>^<lJcC<$pAb$jm/Qn^p&FocJcEpn!!)?bJ,~>
+Sc8ZiJcC<$a8c#:s8V]kq>^<lJcC<$pAb$jm/Qn^p&FmhJcEpn!!)?bJ,~>
+Sc8ZiJcC<$^An'1o)JUfJcC<$h>d<OJcE7[!!)?bJ,~>
+Sc8ZiJcC<$`rGq4s8Vrr!<;orq>^?mJcC<$p](-km/Qn^o`+icJcEmm!!)?bJ,~>
+Sc8ZiJcC<$`rGo9s8Vrr!<;orq>^?mJcC<$p](-km/Qn^o`+ghJcEmm!!)?bJ,~>
+Sc8ZiJcC<$^&Rs0o)J[hJcC<$h#I6OJcE4Z!!)?bJ,~>
+Sc8ZiJcC<$`W,h3s8Vrr!<;orq>^EoJcC<$pAb$jm/Qq_o`+fbJcEmm!!)?bJ,~>
+Sc8ZiJcC<$`W,f8s8Vrr!<;orq>^EoJcC<$pAb$jm/Qq_o`+dgJcEmm!!)?bJ,~>
+Sc8ZiJcC<$]`7j/o)A[iJcC<$h#I6OJcE1Y!!)?bJ,~>
+Sc8ZiJcC<$`;f_2s8Vrr!<;orq>UEpJcC<$pAb$jm/Qq_o`+fbJcEjl!!)?bJ,~>
+Sc8ZiJcC<$`;f]7s8Vrr!<;orq>UEpJcC<$pAb$jm/Qq_o`+dgJcEjl!!)?bJ,~>
+X8i%sq>UEpJcC<$]Dqa.JcC<$bl@VAJcF!pkQ'rKJ,~>
+X8i%sq>UEpJcC<$_uKV1s8Vrr!<;orJcC<$n,N7bli6n`oDe`bJcF[.kQ'rKJ,~>
+X8i%sq>UEpJcC<$_uKT6s8Vrr!<;orJcC<$n,N7bli6n`oDe^gJcF[.kQ'rKJ,~>
+XT/+sq>UEpJcC<$])VX-JcC<$bl@\CJcFC&g]6[?J,~>
+XT/+sq>UEpJcC<$_Z0M0s8Vrr!<;orJcC<$nGiCdl2Ub`oDe]aJcG*:g]6[?J,~>
+XT/+sq>UEpJcC<$_Z0K5s8Vrr!<;orJcC<$nGiCdl2Ub`oDe[fJcG*:g]6[?J,~>
+XT&8#oD\djJcC<$])VU,JcC<$JcDeNdfA_6J,~>
+XT&8#oD\djJcC<$_>jD/!<;lq!<;orJcC<$o)JRegAh&HJcGBBdfA_6J,~>
+XT&8#oD\djJcC<$_>jB4!<;lq!<;orJcC<$o)JRegAh$MJcGBBdfA_6J,~>
+XT&8#oD\djJcC<$\c;L+JcC<$JcE+Wb5gl.J,~>
+XT&8#oD\djJcC<$_#O;.!<;lq!<;orJcC<$oDe^ggAh&HJcGWIb5gl.J,~>
+XT&8#oD\djJcC<$_#O93!<;lq!<;orJcC<$oDe^ggAh$MJcGWIb5gl.J,~>
+XoJA#o`"mkJcC<$\GuC*JcC<$JcE@^ec>7?!!)?bJ,~>
+XoJA#o`"mkJcC<$^]42-!<;lq!<;orJcC<$p&Fmhg]./IJc>`Mec>7?!!)?bJ,~>
+XoJA#o`"mkJcC<$^]402!<;lq!<;orJcC<$p&Fmhg].-NJc>`Mec>7?!!)?bJ,~>
+XoJ;!pAY*mJcC<$\,Z:)mf*7eJcC<$JcF=$hZ2[9!!)?bJ,~>
+XoJ;!pAY*mJcC<$^An),!<;lq!<;orp&>!lJcCB&quGLOqk]#HhZ2[9!!)?bJ,~>
+XoJ;!pAY*mJcC<$^An'1!<;lq!<;orp&>!lJcCB&quGLOqZ)?MhZ2[9!!)?bJ,~>
+WrN"tq#:<oJcC<$[f?1(nGiIfJcC<$JcFR+irIa3!!)?bJ,~>
+WrN"tq#:<oJcC<$^&Ru+!<;lq!<;orp](3mJcCH(quGLOqPB,MirIa3!!)?bJ,~>
+WrN"tq#:<oJcC<$^&Rs0!<;lq!<;orp](3mJcCH(quGLOq>cHRirIa3!!)?bJ,~>
+WW2qtq#:<oJcC<$[K$('o)JUfJcC<$JcFd1joEd.!!)?bJ,~>
+WW2qtq#:<oJcC<$]`7i)q>^NqqZ-HlquD<JL]@5Og]./IO8n>Bd/O(Gli2J~>
+WW2qtq#:<oJcC<$]`7R'!<;orq>^?mJcCN*qZ,CNqZ)]WjoEd.!!)?bJ,~>
+W;lhsq>]m`JcC<$`W,c7oDe[fJcC<$o)J[hJcGWIkQ'?:mf;\RJ,~>
+W;lhsq>]m`JcC<$bl@O9q>^NqqZ-KmqZ)3IM#[AQnGiIfn,N9]PQ0hHgAgUAli2J~>
+W;lhsq>]m`JcC<$bl@87!<;orqZ$EmJcCQ+quH6drW)EeqZ)i[kQ'?:mf;\RJ,~>
+VuQbsq>UEpJcC<$ZiBk%oDe[fJcC<$o`+ghJcFs7_uB]:li2J~>
+VuQbsq>UEpJcC<$])VW'q>^Nqq>gEmqZ)3IMZ<PRnc/Lenc/K_QiH:M_uB]:li2J~>
+VuQbsq>UEpJcC<$])V@%!<;lqqu?NnJcCW-qZ-0dquH9eqZ)u_klAX$!!)?bJ,~>
+VuQbsq>UEpJcC<$ZN'b$oDe[fJcC<$pAashLB$Q>^&J'4li2J~>
+VuQbsq>UEpJcC<$\c;N&q>^Nqq>gEmqZ)3IN;rbTnc/FcoDe]aRfD[R^&J'4li2J~>
+VuQbsq>UEpJcC<$\c;7$!<;lqqu?NnJcC]/qZ-0dq>g-eqZ*)blN"Wu!!)?bJ,~>
+VuQbsq>UEpJcC<$Z2aY#oDe[fJcC<$p](*jM>uoB\GlO/li2J~>
+VuQbsq>UEpJcC<$\GuE%q>^Nqq>gEmqZ)3INW8nVnGi@coDe]aScA$V\GlO/li2J~>
+VuQbsq>UEpJcC<$\Gu.#!<;lqqu?NnJcC`0quH6dqZ-6fqZ*2eli=Qq!!)?bJ,~>
+VuQbsq>UEpJcC<$YlFP"oDe[fJcC<$q>^<lNW8>FZi:"*li2J~>
+VuQbsq>UEpJcC<$\,Z<$q>^Nqq>gEmqZ)3IO8o(Wnc/IdoDe]aU&XHZZi:"*li2J~>
+VuQbsq>UEpJcC<$\,Z%"!<;lqqu?NnJcCf2qZ-0dqZ-6fqZ*>ili=Bl!!)?bJ,~>
+W;lktq#:<oJcC<$YQ+G!oDe[fJcC<$qu?NnOT4\JY5\J%li2J~>
+W;lktq#:<oJcC<$[f?3#q>^Nqq>gEmqZ)3IOoP:Ync/Ido)JT`V>oo_Y5\J%li2J~>
+W;lktq#:<oJcC<$[f>q!!<;lqqu?NnJcCl4qZ-0dqZ-3eqZ*Jmm/X<h!!)?bJ,~>
+Y5eM%rr;uup\t3nJcC<$Y5e=uoDe[fJcC<$rVu`pPQ1"MWrE&!li2J~>
+Y5eM%rr;uup\t3nJcC<$[K$*"q>^Nqq>gEmqZ)3IP5kF[nc/Ido)JT`W;l5bWrE&!li2J~>
+Y5eM%rr;uup\t3nJcC<$[K#gu!<;lqqu?NnJcCo5quH9eqZ-3eqZ*Spm/X0d!!)?bJ,~>
+Y5eD"p&>!lJcC<$XT/.to`+afJcC<$s8VrrQ2g:QV>gMqli2J~>
+Y5eD"p&>!lJcC<$ZiBluqZ$Wrq>gHnq>c*HPlLU\o)JReo)JT`WrMMfV>gMqli2J~>
+Y5eD"p&>!lJcC<$ZiBXt!<;lqr;ZTnJcCu7qZ-3eqZ-3eqZ*Yrmf93a!!)?bJ,~>
+Sc8ZiJcC<$X8i%so`+afJcC<$qZ*#`mf9']!!)?bJ,~>
+Sc8ZiJcC<$ZN'ctqZ$Wrq>gHnq>c*HQN-g^o)JReo)JT`XoIhiU&P)mli2J~>
+Sc8ZiJcC<$ZN'Os!<;lqr;ZTnJcD&9qZ-3eqZ-3eqZ*bumf9']!!)?bJ,~>
+Sc8ZiJcC<$WrMqro`+afJcCB&qZ*,cmf8pY!!)?bJ,~>
+Sc8ZiJcC<$Z2aZsqZ$Wrq>gHnq>c*HQiHs`o)JReo)JT`YlF.lSc8Zili2J~>
+Sc8ZiJcC<$Z2aFr!<;lqr;ZTnJcD):quH<fqZ-3eqZ*l#mf8pY!!)?bJ,~>
+Sc8ZiJcC<$WW2hqo`+afJcCH(qZ*2en,SmV!!)?bJ,~>
+Sc8ZiJcC<$YlFQrqZ$Wrq#LBnq>c*HRK*-aoDe[fo)JT`ZN'CoRK!6eli2J~>
+Sc8ZiJcC<$YlF=q!<;iprVu]oJcD/<qZ-6fqZ-3eqZ*r%n,SmV!!)?bJ,~>
+Sc8ZiJcC<$W;l_po`+dgJcCK)qZ*8gnGnjS!!)?bJ,~>
+Sc8ZiJcC<$YQ+HqqZ-Zrq>gKoqZ)3IRfE6boDe[fo)JT`[/]XrQ2^gali2J~>
+Sc8ZiJcC<$YQ+4ps8VoqrVu`pJcD2=qZ-6fqZ-3eqZ+#'nGnjS!!)?bJ,~>
+Sc8ZiJcC<$VuQVoo`+jiJcCK)qZ*Ajn,SXO!!)?bJ,~>
+Sc8ZiJcC<$Y5e?pqZ-Zrq>gKor;_EKRK*0boDe[fo)JT`\,YptP5bL^li2J~>
+Sc8ZiJcC<$Y5e+os8VoqrVufrJcD/<quH?gqZ-3eqZ+,*n,SXO!!)?bJ,~>
+Sc8ZiJcC<$V>pGno`+pkJcCK)qZ*GlnGnUL!!)?bJ,~>
+Sc8ZiJcC<$XoJ3nquHcsq>gKorr@WMRK*-ao`+dgo)JT`\c;1"NrK(Zli2J~>
+Sc8ZiJcC<$XoJ"ns8VoqrVultJcD/<qZ-9gqZ-3eqZ+2,nGnUL!!)?bJ,~>
+Sc8ZiJcC<$V#U;lJcC<$q>^?mVZ6/dMuNbWli2J~>
+Sc8ZiJcC<$XT/*mqZ$Wrq>c*HQ2g^]oDe^go)JT`]DqC$MuNbWli2J~>
+Sc8ZiJcC<$XT.kl!<;lqJcD#8qZ-6fquH<fqZ+8.nGnLI!!)?bJ,~>
+Sc8ZiJcC<$U]:2kJcC<$q>^EoWW2JgL]7>Sli2J~>
+Sc8ZiJcC<$WrMplqZ$Wrq>c*HQN-j_nc/Rgo)JT`^Am^'L]7>Sli2J~>
+Sc8ZiJcC<$WrM\k!<;lqJcD&9quH9erW)NhqZ+A1nGn@E!!)?bJ,~>
+Sc8ZiJcC<$UAt)jJcC<$q>UEpX8h\iK`;#Pli2J~>
+Sc8ZiJcC<$WW2gkqZ$Wrq#H!GRK*-anG`Igo)JT`_#Np)K`;#Pli2J~>
+Sc8ZiJcC<$WW2Sj!<;ipJcD/<qZ--c!!)TiqZ+G3nGn7B!!)?bJ,~>
+Sc8ZiJcC<$U&XuiJcC<$VZ62eJc>cN!:0Z8~>
+Sc8ZiJcC<$W;l^jqZ-Zrq>c*HS,`?ci;`\N_Z00,Jc>cN!:0Z8~>
+Sc8ZiJcC<$W;lJis8VoqJcD5>qZ,RSqZ+M5nc47@!WN/cs*t~>
+Sc8ZiJcC<$TE"fhJcC<$WrMViJcG]K!!)?bJ,~>
+Sc8ZiJcC<$VuQRhquHcsq>c*HScAQeiW&bN`;fB.JcG]K!!)?bJ,~>
+Sc8ZiJcC<$VuQAhs8VoqJcD;@qZ,UTq>eJ6nc47@rVlitli2J~>
+Sc8ZiJcC<$T)\]gnGiIfJcC<$_Z00,JcGTH!!)?bJ,~>
+Sc8ZiJcC<$V>pCgquHcsq>g?krW%NLWrMnqirAkO`rGT0JcGTH!!)?bJ,~>
+Sc8ZiJcC<$V>p2gs8Voqq>^EoJcDbMq>fOTq>eP8nc47@qYpNqli2J~>
+Sc8ZiJcC<$ScATfo)JUfJcC<$`rGT0JcGKE!!)?bJ,~>
+Sc8ZiJcC<$V#U:fquHcsq#L?mquD<JX8i%sirAkOaT(f2JcGKE!!)?bJ,~>
+Sc8ZiJcC<$V#U)fs8Vlpr;ZZpJcDeNqZ,XUq>eV:nc47@p\t3nli2J~>
+Sc8ZiJcC<$S,`Bdp&FjgJcD;@!!'5&o)O@AoD\djli2J~>
+Sc8ZiJcC<$U]:.dqu?`sq#LEoq>c*HXoJ7up\t3nmJm$Zb5_&5JcG?A!!)?bJ,~>
+Sc8ZiJcC<$U]9rd!<;iprr;fpJcDkPqZ-Bj!!)Edq>e\<o)O@AoD\djli2J~>
+Sc8ZiJcC<$RfE9cp&FjgJcDABrW';)o)O@AnG`Igli2J~>
+Sc8ZiJcC<$UAt%cquHcsq>gNpq>c*HYQ+J"p](3mn,N6\bl@87JcG6>!!)?bJ,~>
+Sc8ZiJcC<$UAsics8Voqrr;fpJcDqRqZ-BjrW)Eeq>eb>o)O@AnG`Igli2J~>
+Sc8ZiJcC<$RK*0bp&FjgJcDJEqZ+,*o)O@AmJd.dli2J~>
+Sc8ZiJcC<$U&XqbquHcsq#LHpq>c*HZ2a\$q#C3knc/H^cN!J9JcG-;!!)?bJ,~>
+Sc8ZiJcC<$U&X`bs8Vlps8VoqJcE"TqZ-EkqZ-0dq>eh@o)O@AmJd.dli2J~>
+Sc8ZiJcC<$QiI!ap&FjgJcDPGq>e,,o)O@AlMghali2J~>
+Sc8ZiJcC<$TE"_`r;cltq#LHpq>c*HZiBn&q#C0joDeW_d/W\;JcG$8!!)?bJ,~>
+Sc8ZiJcC<$TE"Qas8Vlps8VoqJcE(VqZ-Ekq>g-eq#JeAo)O@AlMghali2J~>
+Sc8ZiJcC<$QN-j_pAapgJcDYJq>e2.o)O@AkPkM^li2J~>
+Sc8ZiJcC<$T)\V_quHcsq>gQqq#H!G[f?1(q>^9koDeZ`dJre<JcFp5!!)?bJ,~>
+Sc8ZiJcC<$T)\E_s8Voqs8VlpJcE1Yq>g?kq>g-eq>eqCo)O@AkPkM^li2J~>
+Sc8ZiJcC<$Q2ga^p&FjgJcD_Lq>e80o)O@AjSo2[li2J~>
+Sc8ZiJcC<$SH&G^quHcsq>gNpq>c*H\,Z=*q>^9koDeZ`e,T">JcFg2!!)?bJ,~>
+Sc8ZiJcC<$SH&6^s8Voqrr;fpJcE4ZqZ-Hlq>g-eq>f"Eo)O@AjSo2[li2J~>
+Sc8ZiJcC<$PQ1R]p&FjgJcDeNq>e>2o)O@AiVrlXli2J~>
+Sc8ZiJcC<$S,`;\r;cltq#LHpq>c*H\c;O,q>^9koDeZ`ec54@JcF^/!!)?bJ,~>
+Sc8ZiJcC<$S,`-]s8Vlps8VoqJcE:\qZ-Hlq>g-eq>f(Go)O@AiVrlXli2J~>
+Sc8ZiJcC<$P5kF[pAashJcDkPq>eD4o)O@AhZ!QUli2J~>
+Sc8ZiJcC<$RfE2[qu?`sq#LHpq>c*H]Dqa.q>^9koDeZ`fDkFBJcFU,!!)?bJ,~>
+Sc8ZiJcC<$RfE![!<;ips8VoqJcE@^qZ-Hlq>g-eq>f.Io)O@AhZ!QUli2J~>
+Sc8ZiJcC<$OT57ZpAashJcDtSq#JA5o)O@Ag]%6Rli2J~>
+Sc8ZiJcC<$R/cuYr;cltq#CEpq>c*H^&Rs0qZ$?ko`+``g&LXDJcFL)!!)?bJ,~>
+Sc8ZiJcC<$R/cgZs8Vlp!<;lqJcEF`qZ-Kmq#L'eq#K+Jo)O@Ag]%6Rli2J~>
+Sc8ZiJcC<$O8o.YpAashJcE%Uq>eM7o)O@Af`(pOli2J~>
+Sc8ZiJcC<$QiHlXr;cltq#CEpq>c*H^]402qZ$BloDeW_g]-jFJcFC&!!)?bJ,~>
+Sc8ZiJcC<$QiH^Ys8Vlp!<;lqJcELbqZ-Kmq>g-eq#K1Lo)O@Af`(pOli2J~>
+Sc8ZiJcC<$NW8tXpAashJcE+Wq>eS9o)O@Aec,ULli2J~>
+Sc8ZiJcC<$QN-`VrW)uuq#CEpq>c*H_>jB4qZ$BloDeZ`h#HsGJcF:#!!)?bJ,~>
+Sc8ZiJcC<$QN-UXs8Vlp!<;lqJcERdqZ-Kmq>g-eq>f=No)O@Aec,ULli2J~>
+Sc8ZiJcC<$N;rhVpAb'kJcE+Wq>eV:o)O@Ae,KCJli2J~>
+Sc8ZiJcC<$PlLQUr;cltq#CEpr;_EK_>j?3qu?Kmo`+``h>d'HJcF4!!!)?bJ,~>
+Sc8ZiJcC<$PlLCVs8Vlp!<;utJcERdq>gEmq>g0fq#K7No)O@Ae,KCJli2J~>
+Sc8ZiJcC<$MZ<YUpAb-mJcE+Wq>e\<o)O@Ad/O(Gli2J~>
+Sc8ZiJcC<$PQ1ESrW)uuq#CKr!!%TM_>j?3qu?Kmo`+``huE9JJcF*s!!)?bJ,~>
+Sc8ZiJcC<$PQ1:Us8Vlp!ri6#JcERdq>gEmq>g0fq#K=Po)O@Ad/O(Gli2J~>
+Sc8ZiJcC<$M?!MSJcD_LqZ+k?o)O@Ac2RbDli2J~>
+Sc8ZiJcC<$OoP6Rr;cltq#H!G_>j?3qZ$Emp&Fiai;`BKJcF!p!!)?bJ,~>
+Sc8ZiJcC<$OoP(Ss8VlpJcERdq>gBlqZ-<hq#K@Qo)O@Ac2RbDli2J~>
+Sc8ZiJcC<$L]@>RJcD_LrW(4Co)O@Ab5VGAli2J~>
+Sc8ZiJcC<$OT5*PrW)uuq#H!G_uKQ5q#C<no`+``irATMJcEmm!!)?bJ,~>
+Sc8ZiJcC<$OT4tRs8VlpJcEXfq>g<jrW)Tjq#KFSo)O@Ab5VGAli2J~>
+Sc8ZiJcC<$LB%2PJcDbM!!(@Fo)O@Aa8Z,>li2J~>
+Sc8ZiJcC<$NrSpOr;cltq#H!G`rGl8pAY*mo`+``jT"fOJcEdj!!)?bJ,~>
+Sc8ZiJcC<$NrSbPs8VlpJcEaiq>g6h!!)Zkq#KLUo)O@Aa8Z,>li2J~>
+ScAHbJcC<$N;rkWJcC<$qu?6fJcEsop]0X[J,~>
+ScAHbJcC<$Q2gWUrW)uuq#H!GaT)):l2URUjo=oPJcEsop]0X[J,~>
+ScAHbJcC<$Q2gLWs8VlpJcEgkq>fd[q#KOVo)O@Abl@G<li2J~>
+Sc8ZiJcC<$KE(lMo)J^iJcCl4o)O@A_>aK8li2J~>
+Sc8ZiJcC<$MuWULr;Zitp]16lrr@WMdf9.Dl2URUkPt,RJcERd!!)?bJ,~>
+Sc8ZiJcC<$MuWGM!<;for;ZcsJcF0uq>fd[q#KUXo)O@A_>aK8li2J~>
+Sc8ZiJcC<$JcG]Lo`+jiJcCu7oDjIB^Ae05li2J~>
+Sc8ZiJcC<$MZ<IJrW)uuq#LEor;_EKeGo@FlMp[VkPt/SJcEIa!!)?bJ,~>
+Sc8ZiJcC<$MZ<>Ls8Vlprr;osJcF7"q>fg\q#KUXoDjIB^Ae05li2J~>
+Sc8ZiJcC<$JcGcMrW)]mq>c*Hc2[eDci<S:JcEC_!!)?bJ,~>
+Sc8ZiJcC<$M#[7HrVurunGn.?fDk[Irr;uunGi9[l2U>TJcEC_!!)?bJ,~>
+Sc8ZiJcC<$M#[,J!<;QhJcF@%q>gNprrDQgp]0RYo)O@A]`.s3li2J~>
+Sc8ZiJcC<$JcG`LrW)ZlqZ)3Id/X%Edf8n=JcE:\!!)?bJ,~>
+Sc8ZiJcC<$L]@.GrW)uunc47@g&LmKs8W#tnc/B\li6PVJcE:\!!)?bJ,~>
+Sc8ZiJcC<$L]@#Is8VWiJcFF'q>gQqr;cBfp]0X[o)O@A\c2X0li2J~>
+Sc8ZiJcC<$JcGZJrW)]mq>c*He,T:Ff)P=AJcE1Y!!)?bJ,~>
+Sc8ZiJcC<$L&^qErW)uunc47@h#I3Ns8Vrro`+]_m/QYWJcE1Y!!)?bJ,~>
+Sc8ZiJcC<$L&^fGs8VWiJcFO*q>gQqqZ-9gp]0[\o)O@A[f6=-li2J~>
+Sc8ZiJcC<$JcGTHrW)]mqZ)3If)PLFgAgaEJcE(V!!)?bJ,~>
+Sc8ZiJcC<$KE(_CrVurunc47@hZ*EP!<;fopAarbmJlbXJcE(V!!)?bJ,~>
+Sc8ZiJcC<$KE(TE!<;TiJcFU,q>^Nqp]1$fq#Kg^o)O@AZi:"*li2J~>
+Sc8ZiJcC<$JcGNFrrDfnq>c*Hg&LjJg]-jFJcDtS!!)?bJ,~>
+Sc8ZiJcC<$K)bSArrE*!nc47@irAiTs8VlppAaoan,MtZJcDtS!!)?bJ,~>
+Sc8ZiJcC<$K)bKDs8VWiJcFa0q>gQqq#L-gp]0d_o)O@AYl=\'li2J~>
+Sc8ZiJcC<$JcGKErW)]mqZ)3Ih#I-Lh>d'HJcDkP!!)?bJ,~>
+Sc8ZiJcC<$Jc>`Mpndri!<;TiJcFg2q>^Nqp]1'gpndK[o)O@AXoAA$li2J~>
+Sc8ZiJcC<$Jc>`Mo`,!lnc47@jT#&V!<;fop](!gnGi([JcDkP!!)?bJ,~>
+Sc8ZiJcC<$JcGECrW)]mqZ)3IhuEKPhZ*0IJcDbM!!)?bJ,~>
+Sc8ZiJcC<$JcG`Lpndri!<;TiJcFp5q>^Nqq#L0hpSIH\o)O@AWrE&!li2J~>
+Sc8ZiJcC<$JcG`Lo`,!lnc47@kPtAY!<;ipp]'sfo)J:]JcDbM!!)?bJ,~>
+Sc8ZiJcC<$JcG?ArrDcmquD<JirAcRi;`?JJcD\K!!)?bJ,~>
+Sc8ZiJcC<$JcG]KpSIli!<;TiJcG$8n,W7`pSIK]nc47@W;chtli2J~>
+Sc8ZiJcC<$JcG]Ko`,!lnc47@lMp>Rq#C'goDe@]JcD\K!!)?bJ,~>
+Sc8ZiJcC<$JcG9?rrDcmquD<Jjo>,ViW&HKJcDSH!!)?bJ,~>
+Sc8ZiJcC<$JcGWIpSIli!<;TiJcG-;nGr@apSIN^nc47@V>gMqli2J~>
+Sc8ZiJcC<$JcGWIo`,!lnc47@mJl\Vq#C'go`+I^JcDSH!!)?bJ,~>
+Sc8ZiJcC<$JcG3=rrDfnrW%NLk5Y2Vj8\ZMJcDJE!!)?bJ,~>
+Sc8ZiJcC<$JcGQGpSIli!<;]lJcG-;nGr@apndZ`nc47@UAk2nli2J~>
+Sc8ZiJcC<$JcGQGo`,!lo`0RCmJl\Vq#C*hp&FR_JcDJE!!)?bJ,~>
+Sc8ZiJcC<$JcG-;rrDfn!!%TMkPt>XjT"cNJcDAB!!)?bJ,~>
+Sc8ZiJcC<$JcGKEpSIli!<;cnJcG0<nc8IbpSIWanc47@TDnlkli2J~>
+Sc8ZiJcC<$JcGKEo`,!lpAfdEmf2hXq#C'gp]'daJcDAB!!)?bJ,~>
+Sc8ZiJcC<$JcG'9rr@WMhZ*EPk5XuPJcD8?!!)?bJ,~>
+Sc8ZiJcC<$JcGECpSIli!<;foJcG9?q#CEpq>g?kpSIZbnc47@SGrQhli2J~>
+Sc8ZiJcC<$JcGECo`,!lp],mFnc/Cb!<;lqq>^0hq#BmbJcD8?!!)?bJ,~>
+Sc8ZiJcC<$JcG!7rr@WMhuEWTkPt)QJcD/<!!)?bJ,~>
+Sc8ZiJcC<$JcG?ApSIN_JcGBBq#LEor;c]op8.Tbnc47@RK!6eli2J~>
+Sc8ZiJcC<$JcG?AlMuM9o`+^err;osqZ$6hq>^!cJcD/<!!)?bJ,~>
+Sc8ZiJcC<$JcFm4!!%TMiW&oXkl:2RJcD&9!!)?bJ,~>
+Sc8ZiJcC<$JcG9?p8.H_JcGNFq#L?mrrDoqp8.Wcnc47@QN$pbli2J~>
+Sc8ZiJcC<$JcG9?lMuM9q#C-ir;ZcsqZ$6hqZ$*dJcD&9!!)?bJ,~>
+Sc8ZiJcC<$JcFg2!!)Zk!!%TMgAg[CJcCr6!!)?bJ,~>
+Sc8ZiJcC<$JcG3=p8.E^s8N'!Jc>`Mp]0sdp8.]enGn.?PQ(U_li2J~>
+Sc8ZiJcC<$JcG3=l2^ka!!%TM!<;foo`+Ubr;Z9eJcCr6!!)?bJ,~>
+Sc8ZiJcC<$JcFa0!!)`mr;_EKi;`<IJcCi3!!)?bJ,~>
+Sc8ZiJcC<$JcG-;p8.9ZK`CfIp&F`^rVuBfJcCi3!!)?bJ,~>
+Sc8ZiJcC<$JcG-;joC)7p]1!ep&P'knGn.?OT,:\li2J~>
+Sc8ZiJcC<$JcF7"r;_EKjo=lOJcC]/!!)?bJ,~>
+Sc8ZiJcC<$JcG'9oqh3ZM#[5Mp&F`^rr;NhJcC]/!!)?bJ,~>
+Sc8ZiJcC<$JcG'9joC5;p]1!ep&P*lnc47@N;ikXli2J~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhj2qu?Tp`W#o<_#FB7rVlitn,MnXhZ!QU]Dhj2]Dhj2
+]Dhj2li2J~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2bQ%73nc6Z/!!(.@pAk0l!!)rsoq_ZgnGqGG!!'Y2!!'Y2
+!!'Y2!!)?bJ,~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2bQ$])`W#o<aoD)8rVlitr;ZEi!<;QhhZ!QU]Dhj2]Dhj2
+]Dhj2li2J~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhj2q#C<na8Z,>_>jK7rr2ruo)J4[g]%6R]Dhj2]Dhj2
+]Dhj2li2J~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2aT(q0o)Qi2!!(1Ao`5!k!W`9#oq_ZgnGq>D!!'Y2!!'Y2
+!!'Y2!!)?bJ,~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2aT(E'a8Z,>b5_,7rr3$"s8V`l!<;Qhg]%6R]Dhj2]Dhj2
+]Dhj2li2J~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhj2pAb*lao;>@_uKW7rr2rup&FO^f`(pO]Dhj2]Dhj2
+]Dhj2li2J~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2`rGb/nc6f3!!(7Co)Sdi!!)\gnGq5A!!'Y2!!'Y2!!'Y2
+!!)?bJ,~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2`rG3%ao;>@bl@87rr;$Zf`(pO]Dhj2]Dhj2]Dhj2li2J~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhj2o`+mjbPqPB`W,i9r;Q`sp]'gbeGfLK]Dhj2]Dhj2
+]Dhj2li2J~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2`;fV/!!*"poDm)7!!(=Eo)Sdis.o\qpSIH]eGfLK]Dhj2
+]Dhj2]Dhj2li2J~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2`;f!#bPqPBcN!J9rr;*\eGfLK]Dhj2]Dhj2]Dhj2li2J~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhj2nc/RgcMmkE`rGu;qYpNqqZ$-edJj1H]Dhj2]Dhj2
+]Dhj2li2J~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2_>jD/!!)nmoDm2:!!(CGo)Sgjr1sAnqPEc`dJj1H]Dhj2
+]Dhj2]Dhj2li2J~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2_>iZucMmkEd/W\;s8V3]dJj1H]Dhj2]Dhj2]Dhj2li2J~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhj2mf*7eci3tFaT)2=q#:<or;ZEic2RbD]Dhj2]Dhj2
+]Dhj2li2J~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2^]48/!!)ejp&NG=!!(LJnc/[iq5"&kr2'&dc2RbD]Dhj2
+]Dhj2]Dhj2li2J~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2^]3Ktci3tFe,St=!<;3^c2RbD]Dhj2]Dhj2]Dhj2li2J~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhj2]Dhj2b5_D?pAY0os8V`lb5VGA]Dhj2]Dhj2]Dhj2
+li2J~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]`/#/!;32_!7CfH!7h,?!;<5j!2ZOb!6Y<A!5&72!5&72
+!5&72!:0Z8~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]`73rdJj1Hec48%b5VGA]Dhj2]Dhj2]Dhj2li2J~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhj2]Dhj2bl@\Co)JC``r?#=]Dhj2]Dhj2]Dhj2li2J~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhm3s73#]!7_#K!8%8C!:lu[!65$=!5&72!5&72!5&72
+!:0Z8~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhm3s60O5rr<&Ns4RImrr<&2rr<&2rr<&2rr<&bs*t~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhj2]Dhj2cMmkEnc/@a_Z'T9]Dhj2]Dhj2]Dhj2li2J~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhj2rVuDaq#K%H!!(aQoDnEXp]/22!!'Y2!!'Y2!!'Y2
+!!)?bJ,~>
+Sc8Zi]Dhj2]Dhj2]`.s3]Dhj2]Dhj2]Dhj2rVu*^fDbgNgAfn-_Z'T9]Dhj2]Dhj2]Dhj2li2J~>
+XT/5!pAY*mhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZViVrrZ
+rrCpU!!(pV!!)*[p]0:Q!!(pV!!(mU!!(pV!!(mU!!(pV!!(mU!!(pV!!)?bJ,~>
+XT/5!pAY*mhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVqZ$&]
+p](?p!8d_U!8meW!<;`mn>5m[iVrlXhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVli2J~>
+XT/5!pAY*mhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVqZ#^Y
+!WN/Vrr<&VrrE-"g]6=5!!(pV!!(mU!!(pV!!(mU!!(pV!!(mU!!(pV!!)?bJ,~>
+XoJD$s8W*!p\t3nhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+huE]Vhu<ZVhu<ZVkPt>X!WN/Wrr<&Vrr<&Urr<&Vrr<&Urr<&Vrr<&Urr<&Vrr<&bs*t~>
+XoJD$s8W*!p\t3nhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+p]']Yq#K=P!!(sWpAjZYq#CHq!8meV!8meV!8d_U!8meV!8d_U!8meV!8d_U!8meV!:0Z8~>
+XoJD$s8W*!p\t3nhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+p]'CVhu<ZVi;_U5!WN/Wrr<&Vrr<&Urr<&Vrr<&Urr<&Vrr<&Urr<&Vrr<&bs*t~>
+Y5eM%rVultq#:<ohu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+hu<ZVrVlitj8T)Zhu<ZVlMp\\r;Q`shu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVli2J~>
+Y5eM%rVultq#:<ohu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+o`+<Tq>fRU!!)*[p]0]Xq>gHn!!(pV!!(pV!!(mU!!(pV!!(mU!!(pV!!(mU!!(pV!!)?bJ,~>
+Y5eM%rVultq#:<ohu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+o`+%Rj8T)ZjT"$9r;Q`shu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVli2J~>
+Y5eM%rVultq#:<ohu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+hu<ZVq#:<okl1V_hu<ZVmf3+`q#:<ohu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVli2J~>
+Y5eM%rVultq#:<ohu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+nGi!S!!*"pq>faZ!!)6_q#CGl!:H][!;QQo!8meV!8meV!8d_U!8meV!8d_U!8meV!8d_U!8meV
+!:0Z8~>
+Y5eM%rVultq#:<ohu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+nGhSMkl1V_kl9H=q#:<ohu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVli2J~>
+YQ+V&qu?Zrq>UEphu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+hu<ZVhZ!QUhu<ZVo)JReoD\djhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVli2J~>
+YQ+V&qu?Zrq>UEphu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+m/Q^S!!)biquH-a!!)EdqZ-Gg!!)SdqZ-6f!!(pV!!(pV!!(mU!!(pV!!(mU!!(pV!!(mU!!(pV
+!!)?bJ,~>
+YQ+V&qu?Zrq>UEphu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+m/Q,HmJd.dmJkuBoD\djhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVli2J~>
+YQ+V&qu?Zrq>UEphu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+l2L_`q#:<ohZ!QUhu<ZVpAb$jmf*7ehu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVli2J~>
+YQ+V&qu?Zrq>UEphu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+l2L_`pn[rjm\Tj^p&>!lo`+jin>-*bp8.Zemf*7ehu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QU
+hu<ZVli2J~>
+YQ+V&qu?Zrq>UEphu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+l2TW@p&>!lo`*YGmf*7ehu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVli2J~>
+YQ+V&qu?Zrq>UEphu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+jSo2[rVlithZ!QUhu<ZVqZ$Kol2L_`hu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVli2J~>
+YQ+V&qu?Zrq>UEphu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+jSo2[rM9JohPC2Phk^;QqPF,jl2L_`hu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVli2J~>
+YQ+V&qu?Zrq>UEphu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+jSu1Zl2L_`hu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVli2J~>
+YQ+V&qu?Zrq>UEphu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+hu<ZVhZ!QUhu<]Ws8E#Xrr<&Vrr<&Vrr<&Urr<&Vrr<&Urr<&Vrr<&Urr<&Vrr<&bs*t~>
+YQ+V&qu?Zrq>UEphu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+hu<ZVhPC2Phk^>RV>^JSrr<&Vrr<&Vrr<&Urr<&Vrr<&Urr<&Vrr<&Urr<&Vrr<&bs*t~>
+YQ+V&qu?Zrq>UEphu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZV
+huC(air8uYhu<ZVhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVhZ!QUhu<ZVli2J~>
+YQ+V&qu?Zrq>Z!GJH16$JH16$JH2hQli2J~>
+YQ+V&qu?Zrq>Z!GJH16$JH16$JH2hQli2J~>
+YQ+V&qu?Zrq>Z!GJH16$JH16$JH2hQli2J~>
+YQ+V&qu?ZrJcC<$JcDAB!!(RL!!%TMJcDDCJ,~>
+YQ+V&qu?ZrJcC<$JcDAB!!(QG!!%TMJcDDCJ,~>
+YQ+V&qu?ZrJcC<$JcDABdf=t!JcDDCJ,~>
+YQ+V&qu?ZrJcC<$JcC<$JcC<$OT0h~>
+YQ+V&qu?ZrJcC<$JcCl4s/#AgrhY2GJcCl4J,~>
+YQ+V&qu?ZrJcC<$JcCl4n,S%>JcCl4J,~>
+YQ+V&qu?ZrJcC<$JcC<$JcC<$OT0h~>
+YQ+V&qu?ZrJcC<$JcC<$JcC<$OT0h~>
+YQ+V&qu?ZrJcC<$JcC<$JcC<$OT0h~>
+Y5\J%qu6WrJcC<$JcC<$JcC<$O8j_~>
+Y5\J%qu6WrJcC<$JcC<$JcC<$O8j_~>
+Y5\J%qu6WrJcC<$JcC<$JcC<$O8j_~>
+Y5eM%rVultJcC<$JcC<$JcC<$O8j_~>
+Y5eM%rVultJcC<$JcC<$JcC<$O8j_~>
+Y5eM%rVultJcC<$JcC<$JcC<$O8j_~>
+XoJD$s8W*!JcC<$JcC<$JcC<$NrOV~>
+XoJD$s8W*!JcC<$JcC<$JcC<$NrOV~>
+XoJD$s8W*!JcC<$JcC<$JcC<$NrOV~>
+XT/5!JcC<$JcC<$JcC<$NW4M~>
+XT/5!JcC<$JcC<$JcC<$NW4M~>
+XT/5!JcC<$JcC<$JcC<$NW4M~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+U&Y&kr;Z]qbl@G<r;Z]qbl@S@q>^Bnb5_D?q>^BncMmkEq#C9mq>^BneGfLKpAY*mq#C9meGfLK
+q#C9mq>^BneGfLKq#C9mq>^BneGfLKo`"mkqu?TpeGfLKq#C3kqu?TpeGfLKp&Fsjr;Z]qeGfLK
+qZ$<jr;Z]qeGfLKq>^?mq>^Bnq>Ys~>
+U&Y&kr;Z]qbl@G<r;Z]qbl@S@q>^Bnb5_D?q>^BncMmkEq#C9mq>^BneGfLKpAY*mq#C9meGfLK
+q#C9mq>^BneGfLKq#C9mq>^BneGfLKo`"mkqu?TpeGfLKq#C3kqu?TpeGfLKp&Fsjr;Z]qeGfLK
+qZ$<jr;Z]qeGfLKq>^?mq>^Bnq>Ys~>
+U&Y&kr;Z]qbl@G<r;Z]qbl@S@q>^Bnb5_D?q>^BncMmkEq#C9mq>^BneGfLKpAY*mq#C9meGfLK
+q#C9mq>^BneGfLKq#C9mq>^BneGfLKo`"mkqu?TpeGfLKq#C3kqu?TpeGfLKp&Fsjr;Z]qeGfLK
+qZ$<jr;Z]qeGfLKq>^?mq>^Bnq>Ys~>
+U]:>oq>^Hps8W*!cN!Y>r;Zcss8W*!cN!nErr;uuqu?Zrs8W*!c2[eDrr;uuqu?Zrs8W*!df97G
+q>^Hps8W*!qu?Zrs8W*!f`1mMq>^Bnq>^Hps8W*!f`1mMqZ$Blqu?Zrs8W*!f`1mMqZ$Qqrr;uu
+qu?Zrs8W*!f`1mMp&G$lr;Zcss8W*!f`1mMq>^9kr;Zcss8W*!f`1mMp](6nq>^Hps8W*!f`1mM
+qu?Ekr;Zcss8W*!f`1mMqZ$Qqrr;uuqu?Zrs8W*!qYu'~>
+U]:>oq>^Hps8W*!cN!Y>r;Zcss8W*!cN!nErr;uuqu?Zrs8W*!c2[eDrr;uuqu?Zrs8W*!df97G
+q>^Hps8W*!qu?Zrs8W*!f`1mMq>^Bnq>^Hps8W*!f`1mMqZ$Blqu?Zrs8W*!f`1mMqZ$Qqrr;uu
+qu?Zrs8W*!f`1mMp&G$lr;Zcss8W*!f`1mMq>^9kr;Zcss8W*!f`1mMp](6nq>^Hps8W*!f`1mM
+qu?Ekr;Zcss8W*!f`1mMqZ$Qqrr;uuqu?Zrs8W*!qYu'~>
+U]:>oq>^Hps8W*!cN!Y>r;Zcss8W*!cN!nErr;uuqu?Zrs8W*!c2[eDrr;uuqu?Zrs8W*!df97G
+q>^Hps8W*!qu?Zrs8W*!f`1mMq>^Bnq>^Hps8W*!f`1mMqZ$Blqu?Zrs8W*!f`1mMqZ$Qqrr;uu
+qu?Zrs8W*!f`1mMp&G$lr;Zcss8W*!f`1mMq>^9kr;Zcss8W*!f`1mMp](6nq>^Hps8W*!f`1mM
+qu?Ekr;Zcss8W*!f`1mMqZ$Qqrr;uuqu?Zrs8W*!qYu'~>
+V#UGpq>^HprVultci3tFqYpNqrVultrVultd/X+Gr;ZcsrVultrVultcMmkEr;ZcsrVultrVult
+eGfXOs8N'!qZ$QqrVultrVultrVultgA_9Us8N'!qYpZus8N'!qZ$QqrVultgA_9Us8N'!qu?Zr
+rVuisrVultrVultgA_9Us8N'!qu6Wrqu?ZrrVultrVultgA_9Us8N'!pAb*lrVultrVultgA_9U
+s8N'!q>UEpp](6nrVultgA_9Us8N'!q#C?oq>^HprVultgA_9Us8N'!qu6WrqYpNqrVultrVult
+gA_9Us8N'!qu?Zrr;ZcsrVultrVultqu;0~>
+V#UGpq>^HprVultci3tFqYpNqrVultrVultd/X+Gr;ZcsrVultrVultcMmkEr;ZcsrVultrVult
+eGfXOs8N'!qZ$QqrVultrVultrVultgA_9Us8N'!qYpZus8N'!qZ$QqrVultgA_9Us8N'!qu?Zr
+rVuisrVultrVultgA_9Us8N'!qu6Wrqu?ZrrVultrVultgA_9Us8N'!pAb*lrVultrVultgA_9U
+s8N'!q>UEpp](6nrVultgA_9Us8N'!q#C?oq>^HprVultgA_9Us8N'!qu6WrqYpNqrVultrVult
+gA_9Us8N'!qu?Zrr;ZcsrVultrVultqu;0~>
+V#UGpq>^HprVultci3tFqYpNqrVultrVultd/X+Gr;ZcsrVultrVultcMmkEr;ZcsrVultrVult
+eGfXOs8N'!qZ$QqrVultrVultrVultgA_9Us8N'!qYpZus8N'!qZ$QqrVultgA_9Us8N'!qu?Zr
+rVuisrVultrVultgA_9Us8N'!qu6Wrqu?ZrrVultrVultgA_9Us8N'!pAb*lrVultrVultgA_9U
+s8N'!q>UEpp](6nrVultgA_9Us8N'!q#C?oq>^HprVultgA_9Us8N'!qu6WrqYpNqrVultrVult
+gA_9Us8N'!qu?Zrr;ZcsrVultrVultqu;0~>
+V>pPqq#C?orVultaT)8?rVultrVultd/X+Gr;ZcsrVultrVultci="Fr;ZcsrVultrVultdJs4H
+qZ$QqrVultrVultrVultfDkjNp](6nqZ$QqrVultfDkjNqu6Wrqu?ZrrVultrVultfDkjNqu6Wr
+qu?ZrrVultrVultfDkjNp\t<qrr<&ts8N)ts8N)Ns8N)prr<&ns8N)ts8N)Ns8N)ps8N)os8N)t
+s8N)Ns8N)ks8N)ts8N)ts8N)Ns8N)rs8N)ss8N)ts8N)ts8N)rs*t~>
+V>pPqq#C?orVultaT)8?rVultrVultd/X+Gr;ZcsrVultrVultci="Fr;ZcsrVultrVultdJs4H
+qZ$QqrVultrVultrVultfDkjNp](6nqZ$QqrVultfDkjNqu6Wrqu?ZrrVultrVultfDkjNqu6Wr
+qu?ZrrVultrVultfDkjNp\t<qrr<&ts8N)ts8N)Ns8N)prr<&ns8N)ts8N)Ns8N)ps8N)os8N)t
+s8N)Ns8N)ks8N)ts8N)ts8N)Ns8N)rs8N)ss8N)ts8N)ts8N)rs*t~>
+V>pPqq#C?orVultaT)8?rVultrVultd/X+Gr;ZcsrVultrVultci="Fr;ZcsrVultrVultdJs4H
+qZ$QqrVultrVultrVultfDkjNp](6nqZ$QqrVultfDkjNqu6Wrqu?ZrrVultrVultfDkjNqu6Wr
+qu?ZrrVultrVultfDkjNp\t<qrr<&ts8N)ts8N)Ns8N)prr<&ns8N)ts8N)Ns8N)ps8N)os8N)t
+s8N)Ns8N)ks8N)ts8N)ts8N)Ns8N)rs8N)ss8N)ts8N)ts8N)rs*t~>
+VZ6Vqq>^Hpqu?Zrao;>@rVultqu?ZrdJs4Hr;Zcsrr;uuqu?Zrd/X+Gr;Z`rs8W*!qu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOo`+pkrr;uuqu?Zrf`1sOo`+pkrr;uu
+qu?Zrf`1sOq#:Hss8N'!rr;uuqu?Zrf`1sOqZ$Npq>^Hpqu?Zrf`1sOqZ$Npq>^Hpqu?Zrf`1sO
+o`"mkrVultqu?Zrf`1sOqu?Zrr;Zcsrr;uuqu?Zrr;V9~>
+VZ6Vqq>^Hpqu?Zrao;>@rVultqu?ZrdJs4Hr;Zcsrr;uuqu?Zrd/X+Gr;Z`rs8W*!qu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOo`+pkrr;uuqu?Zrf`1sOo`+pkrr;uu
+qu?Zrf`1sOq#:Hss8N'!rr;uuqu?Zrf`1sOqZ$Npq>^Hpqu?Zrf`1sOqZ$Npq>^Hpqu?Zrf`1sO
+o`"mkrVultqu?Zrf`1sOqu?Zrr;Zcsrr;uuqu?Zrr;V9~>
+VZ6Vqq>^Hpqu?Zrao;>@rVultqu?ZrdJs4Hr;Zcsrr;uuqu?Zrd/X+Gr;Z`rs8W*!qu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOo`+pkrr;uuqu?Zrf`1sOo`+pkrr;uu
+qu?Zrf`1sOq#:Hss8N'!rr;uuqu?Zrf`1sOqZ$Npq>^Hpqu?Zrf`1sOqZ$Npq>^Hpqu?Zrf`1sO
+o`"mkrVultqu?Zrf`1sOqu?Zrr;Zcsrr;uuqu?Zrr;V9~>
+VZ6Yrq#C?oqu?Zrao;>@rVultqu?Zrd/X+Grr;uurVultqu?Zrd/X+Gqu?Zrs8W*!qu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOo`+pkrr;uuqu?Zrf`1sOp&G$lrVult
+qu?Zrf`1sOq#:Hss8N'!rr;uuqu?Zrf`1sOqZ$Hnqu?Zrqu?Zrf`1sOqZ$Qqq#C?oqu?Zrf`1sO
+o`"mkrVultqu?Zrf`1sOqZ$Qqrr;uurVultqu?Zrr;V9~>
+VZ6Yrq#C?oqu?Zrao;>@rVultqu?Zrd/X+Grr;uurVultqu?Zrd/X+Gqu?Zrs8W*!qu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOo`+pkrr;uuqu?Zrf`1sOp&G$lrVult
+qu?Zrf`1sOq#:Hss8N'!rr;uuqu?Zrf`1sOqZ$Hnqu?Zrqu?Zrf`1sOqZ$Qqq#C?oqu?Zrf`1sO
+o`"mkrVultqu?Zrf`1sOqZ$Qqrr;uurVultqu?Zrr;V9~>
+VZ6Yrq#C?oqu?Zrao;>@rVultqu?Zrd/X+Grr;uurVultqu?Zrd/X+Gqu?Zrs8W*!qu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOo`+pkrr;uuqu?Zrf`1sOp&G$lrVult
+qu?Zrf`1sOq#:Hss8N'!rr;uuqu?Zrf`1sOqZ$Hnqu?Zrqu?Zrf`1sOqZ$Qqq#C?oqu?Zrf`1sO
+o`"mkrVultqu?Zrf`1sOqZ$Qqrr;uurVultqu?Zrr;V9~>
+VuQPmrVultqu?Zrb5_JArVultqu?Zrci="F!ri6#r;Zcsqu?Zrd/X+Gqu?Zrs8W*!qu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOo`"mkrVultqu?Zrf`1sOpAY*mqu?Zr
+qu?Zrf`1sOq>UEprr;uurr;uuqu?Zrf`1sOp](0lrVultqu?Zrf`1sOqu?HlrVultqu?Zrf`1sO
+p&G$lrVultqu?Zrf`1sOq>^Hp!ri6#r;Zcsqu?Zrr;V9~>
+VuQPmrVultqu?Zrb5_JArVultqu?Zrci="F!ri6#r;Zcsqu?Zrd/X+Gqu?Zrs8W*!qu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOo`"mkrVultqu?Zrf`1sOpAY*mqu?Zr
+qu?Zrf`1sOq>UEprr;uurr;uuqu?Zrf`1sOp](0lrVultqu?Zrf`1sOqu?HlrVultqu?Zrf`1sO
+p&G$lrVultqu?Zrf`1sOq>^Hp!ri6#r;Zcsqu?Zrr;V9~>
+VuQPmrVultqu?Zrb5_JArVultqu?Zrci="F!ri6#r;Zcsqu?Zrd/X+Gqu?Zrs8W*!qu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOo`"mkrVultqu?Zrf`1sOpAY*mqu?Zr
+qu?Zrf`1sOq>UEprr;uurr;uuqu?Zrf`1sOp](0lrVultqu?Zrf`1sOqu?HlrVultqu?Zrf`1sO
+p&G$lrVultqu?Zrf`1sOq>^Hp!ri6#r;Zcsqu?Zrr;V9~>
+VuQ_rrr;rtrr;uuqu?Zrb5VGAr;Zcsqu?ZrcN!hCr;Zcsqu?Zrd/X(Fr;Zcss8W*!qu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOo`"mkrVultqu?Zrf`1sOq#C6lrVult
+qu?Zrf`1sOqYpNqrVultrr;uuqu?Zrf`1sOpAb*lrVultqu?Zrf`1sOqu?Wqrr;rtrr;uuqu?Zr
+f`1sOp&>!lr;Zcsqu?Zrf`1sOq#C9mr;Zcsqu?Zrr;V9~>
+VuQ_rrr;rtrr;uuqu?Zrb5VGAr;Zcsqu?ZrcN!hCr;Zcsqu?Zrd/X(Fr;Zcss8W*!qu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOo`"mkrVultqu?Zrf`1sOq#C6lrVult
+qu?Zrf`1sOqYpNqrVultrr;uuqu?Zrf`1sOpAb*lrVultqu?Zrf`1sOqu?Wqrr;rtrr;uuqu?Zr
+f`1sOp&>!lr;Zcsqu?Zrf`1sOq#C9mr;Zcsqu?Zrr;V9~>
+VuQ_rrr;rtrr;uuqu?Zrb5VGAr;Zcsqu?ZrcN!hCr;Zcsqu?Zrd/X(Fr;Zcss8W*!qu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOo`"mkrVultqu?Zrf`1sOq#C6lrVult
+qu?Zrf`1sOqYpNqrVultrr;uuqu?Zrf`1sOpAb*lrVultqu?Zrf`1sOqu?Wqrr;rtrr;uuqu?Zr
+f`1sOp&>!lr;Zcsqu?Zrf`1sOq#C9mr;Zcsqu?Zrr;V9~>
+VuQbsr;Z`rs8W*!qu?Zrb5VGAr;Zcsqu?ZrcN!eBrVultqu?Zrci="FrVuiss8W*!qu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOp&>!lr;Zcsqu?Zrf`1sOp&G!krr;uu
+qu?Zrf`1sOqu6Wrr;Zcsrr;uuqu?Zrf`1sOp&G!krr;uuqu?Zrf`1sOqu?Zrr;Z`rs8W*!qu?Zr
+f`1sOp&>!lr;Zcsqu?Zrf`1sOq#C6lrVultqu?Zrr;V9~>
+VuQbsr;Z`rs8W*!qu?Zrb5VGAr;Zcsqu?ZrcN!eBrVultqu?Zrci="FrVuiss8W*!qu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOp&>!lr;Zcsqu?Zrf`1sOp&G!krr;uu
+qu?Zrf`1sOqu6Wrr;Zcsrr;uuqu?Zrf`1sOp&G!krr;uuqu?Zrf`1sOqu?Zrr;Z`rs8W*!qu?Zr
+f`1sOp&>!lr;Zcsqu?Zrf`1sOq#C6lrVultqu?Zrr;V9~>
+VuQbsr;Z`rs8W*!qu?Zrb5VGAr;Zcsqu?ZrcN!eBrVultqu?Zrci="FrVuiss8W*!qu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOp&>!lr;Zcsqu?Zrf`1sOp&G!krr;uu
+qu?Zrf`1sOqu6Wrr;Zcsrr;uuqu?Zrf`1sOp&G!krr;uuqu?Zrf`1sOqu?Zrr;Z`rs8W*!qu?Zr
+f`1sOp&>!lr;Zcsqu?Zrf`1sOq#C6lrVultqu?Zrr;V9~>
+VuQbsqu?Zrs8W*!qu?ZrbQ%SBr;Zcsqu?Zrd/X+Gs8W#trr;uuqu?ZrcN!\?s8W*!qu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOpAY*mqu?Zrqu?Zrf`1sOo`+pkrr;uu
+qu?Zrf`1sOqu6Wrr;Zcsrr;uuqu?Zrf`1sOo`+pkrr;uuqu?Zrf`1sOqu?Zrqu?Zrs8W*!qu?Zr
+f`1sOpAb-mr;Zcsqu?Zrf`1sOqZ$Qqs8W#trr;uuqu?Zrr;V9~>
+VuQbsqu?Zrs8W*!qu?ZrbQ%SBr;Zcsqu?Zrd/X+Gs8W#trr;uuqu?ZrcN!\?s8W*!qu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOpAY*mqu?Zrqu?Zrf`1sOo`+pkrr;uu
+qu?Zrf`1sOqu6Wrr;Zcsrr;uuqu?Zrf`1sOo`+pkrr;uuqu?Zrf`1sOqu?Zrqu?Zrs8W*!qu?Zr
+f`1sOpAb-mr;Zcsqu?Zrf`1sOqZ$Qqs8W#trr;uuqu?Zrr;V9~>
+VuQbsqu?Zrs8W*!qu?ZrbQ%SBr;Zcsqu?Zrd/X+Gs8W#trr;uuqu?ZrcN!\?s8W*!qu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOpAY*mqu?Zrqu?Zrf`1sOo`+pkrr;uu
+qu?Zrf`1sOqu6Wrr;Zcsrr;uuqu?Zrf`1sOo`+pkrr;uuqu?Zrf`1sOqu?Zrqu?Zrs8W*!qu?Zr
+f`1sOpAb-mr;Zcsqu?Zrf`1sOqZ$Qqs8W#trr;uuqu?Zrr;V9~>
+VuQbsqu?Zrs8W*!qu?ZrbPqPBqu?Zrqu?ZrdJs4Hr;Z`rs8W*!qu?ZraoDA@rr;uuqu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOo`+pkrr;uu
+qu?Zrf`1sOr;ZHj!ri6#qu?Zrf`1sOo`+pkrr;uuqu?Zrf`1sOqu?Zrqu?Zrs8W*!qu?Zrf`1sO
+pAY*mqu?Zrqu?Zrf`1sOqu?Zrr;Z`rs8W*!qu?Zrr;V9~>
+VuQbsqu?Zrs8W*!qu?ZrbPqPBqu?Zrqu?ZrdJs4Hr;Z`rs8W*!qu?ZraoDA@rr;uuqu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOo`+pkrr;uu
+qu?Zrf`1sOr;ZHj!ri6#qu?Zrf`1sOo`+pkrr;uuqu?Zrf`1sOqu?Zrqu?Zrs8W*!qu?Zrf`1sO
+pAY*mqu?Zrqu?Zrf`1sOqu?Zrr;Z`rs8W*!qu?Zrr;V9~>
+VuQbsqu?Zrs8W*!qu?ZrbPqPBqu?Zrqu?ZrdJs4Hr;Z`rs8W*!qu?ZraoDA@rr;uuqu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOo`+pkrr;uu
+qu?Zrf`1sOr;ZHj!ri6#qu?Zrf`1sOo`+pkrr;uuqu?Zrf`1sOqu?Zrqu?Zrs8W*!qu?Zrf`1sO
+pAY*mqu?Zrqu?Zrf`1sOqu?Zrr;Z`rs8W*!qu?Zrr;V9~>
+VuQbsqu?Zrs8W*!qu?ZrbPqPBqu?Zrqu?ZrdJs4Hqu?Zrs8W*!qu?ZraoDA@rr;uuqu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOp\t3nqZ$Qqqu?Zrf`1sOo`+pkrr;uu
+qu?Zrf`1sOr;ZHj!ri6#qu?Zrf`1sOo`+pkrr;uuqu?Zrf`1sOqu?Zrqu?Zrs8W*!qu?Zrf`1sO
+pAY*mqu?Zrqu?Zrf`1sOqu?Zrqu?Zrs8W*!qu?Zrr;V9~>
+VuQbsqu?Zrs8W*!qu?ZrbPqPBqu?Zrqu?ZrdJs4Hqu?Zrs8W*!qu?ZraoDA@rr;uuqu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOp\t3nqZ$Qqqu?Zrf`1sOo`+pkrr;uu
+qu?Zrf`1sOr;ZHj!ri6#qu?Zrf`1sOo`+pkrr;uuqu?Zrf`1sOqu?Zrqu?Zrs8W*!qu?Zrf`1sO
+pAY*mqu?Zrqu?Zrf`1sOqu?Zrqu?Zrs8W*!qu?Zrr;V9~>
+VuQbsqu?Zrs8W*!qu?ZrbPqPBqu?Zrqu?ZrdJs4Hqu?Zrs8W*!qu?ZraoDA@rr;uuqu?Zrdf9=I
+qu?Zrqu?Zrs8W*!qu?Zrf`1sOp](6nqu?Zrqu?Zrf`1sOp\t3nqZ$Qqqu?Zrf`1sOo`+pkrr;uu
+qu?Zrf`1sOr;ZHj!ri6#qu?Zrf`1sOo`+pkrr;uuqu?Zrf`1sOqu?Zrqu?Zrs8W*!qu?Zrf`1sO
+pAY*mqu?Zrqu?Zrf`1sOqu?Zrqu?Zrs8W*!qu?Zrr;V9~>
+VZ-Vrqu?Zrrr2ruqu6WrbQ%SBqYpNqqu6Wrd/X+Gqu?Zrrr2ruqu6WraoDA@r;Q`squ6WrdJs4H
+qYpNqqu6WrrVlitqu6WrfDkjNp](6nqYpNqqu6WrfDkjNq#:<oq#:<oqu6WrfDkjNo`+pkrVlit
+qu6WrfDkjNp&G$lrVlitqu6WrfDkjNo`+pkrVlitqu6WrfDkjNqYpNqqu?Zrrr2ruqu6WrfDkjN
+p](6nqYpNqqu6WrfDkjNqu?Zrqu?Zrrr2ruqu6Wrqu;0~>
+VZ-Vrqu?Zrrr2ruqu6WrbQ%SBqYpNqqu6Wrd/X+Gqu?Zrrr2ruqu6WraoDA@r;Q`squ6WrdJs4H
+qYpNqqu6WrrVlitqu6WrfDkjNp](6nqYpNqqu6WrfDkjNq#:<oq#:<oqu6WrfDkjNo`+pkrVlit
+qu6WrfDkjNp&G$lrVlitqu6WrfDkjNo`+pkrVlitqu6WrfDkjNqYpNqqu?Zrrr2ruqu6WrfDkjN
+p](6nqYpNqqu6WrfDkjNqu?Zrqu?Zrrr2ruqu6Wrqu;0~>
+VZ-Vrqu?Zrrr2ruqu6WrbQ%SBqYpNqqu6Wrd/X+Gqu?Zrrr2ruqu6WraoDA@r;Q`squ6WrdJs4H
+qYpNqqu6WrrVlitqu6WrfDkjNp](6nqYpNqqu6WrfDkjNq#:<oq#:<oqu6WrfDkjNo`+pkrVlit
+qu6WrfDkjNp&G$lrVlitqu6WrfDkjNo`+pkrVlitqu6WrfDkjNqYpNqqu?Zrrr2ruqu6WrfDkjN
+p](6nqYpNqqu6WrfDkjNqu?Zrqu?Zrrr2ruqu6Wrqu;0~>
+VZ6Yrr;Q`srVultrVultbPqPBq>^HprVultd/X(Fr;Zcsrr;uurVultb5_JAqu?ZrrVultdJs4H
+qZ$QqrVultrVultrVultfDkjNp](6nqZ$QqrVultfDkjNq>UEpqu6Wrrr;uurVultfDkjNp&G$l
+r;ZcsrVultfDkjNp&G$lrVultrVultfDkjNp&G$lr;ZcsrVultfDkjNqZ$Qqr;Q`srVultrVult
+fDkjNp\t3nq>^HprVultfDkjNqu?Wqr;Zcsrr;uurVultqu;0~>
+VZ6Yrr;Q`srVultrVultbPqPBq>^HprVultd/X(Fr;Zcsrr;uurVultb5_JAqu?ZrrVultdJs4H
+qZ$QqrVultrVultrVultfDkjNp](6nqZ$QqrVultfDkjNq>UEpqu6Wrrr;uurVultfDkjNp&G$l
+r;ZcsrVultfDkjNp&G$lrVultrVultfDkjNp&G$lr;ZcsrVultfDkjNqZ$Qqr;Q`srVultrVult
+fDkjNp\t3nq>^HprVultfDkjNqu?Wqr;Zcsrr;uurVultqu;0~>
+VZ6Yrr;Q`srVultrVultbPqPBq>^HprVultd/X(Fr;Zcsrr;uurVultb5_JAqu?ZrrVultdJs4H
+qZ$QqrVultrVultrVultfDkjNp](6nqZ$QqrVultfDkjNq>UEpqu6Wrrr;uurVultfDkjNp&G$l
+r;ZcsrVultfDkjNp&G$lrVultrVultfDkjNp&G$lr;ZcsrVultfDkjNqZ$Qqr;Q`srVultrVult
+fDkjNp\t3nq>^HprVultfDkjNqu?Wqr;Zcsrr;uurVultqu;0~>
+V>pPqrr;uur;Zcss8W*!b5VGAq#C?os8W*!cN!nErVultr;Zcss8W*!b5_JAq>^Hps8W*!d/X+G
+q>^Hps8W*!qu?Zrs8W*!f)PaMp](6nq>^Hps8W*!f)PaMqZ$<jrVults8W*!f)PaMqu?Zrrr;uu
+qZ$Qqs8W*!f)PaMp&G$lr;Zcss8W*!f)PaMqu?Zrrr;uuqZ$Qqs8W*!f)PaMq>^Hprr;uur;Zcs
+s8W*!f)PaMp\t3nq#C?os8W*!f)PaMqZ$QqrVultr;Zcss8W*!qYu'~>
+V>pPqrr;uur;Zcss8W*!b5VGAq#C?os8W*!cN!nErVultr;Zcss8W*!b5_JAq>^Hps8W*!d/X+G
+q>^Hps8W*!qu?Zrs8W*!f)PaMp](6nq>^Hps8W*!f)PaMqZ$<jrVults8W*!f)PaMqu?Zrrr;uu
+qZ$Qqs8W*!f)PaMp&G$lr;Zcss8W*!f)PaMqu?Zrrr;uuqZ$Qqs8W*!f)PaMq>^Hprr;uur;Zcs
+s8W*!f)PaMp\t3nq#C?os8W*!f)PaMqZ$QqrVultr;Zcss8W*!qYu'~>
+V>pPqrr;uur;Zcss8W*!b5VGAq#C?os8W*!cN!nErVultr;Zcss8W*!b5_JAq>^Hps8W*!d/X+G
+q>^Hps8W*!qu?Zrs8W*!f)PaMp](6nq>^Hps8W*!f)PaMqZ$<jrVults8W*!f)PaMqu?Zrrr;uu
+qZ$Qqs8W*!f)PaMp&G$lr;Zcss8W*!f)PaMqu?Zrrr;uuqZ$Qqs8W*!f)PaMq>^Hprr;uur;Zcs
+s8W*!f)PaMp\t3nq#C?os8W*!f)PaMqZ$QqrVultr;Zcss8W*!qYu'~>
+V#UAnq>^Bnb5_JAp](0lbl@P?qZ$KobQ%PAp](0ldJs(DqZ$Koq>^BnfDk^Jqu?NnqZ$KofDk^J
+rVuWmqu?TpfDk^JrVucqp](0lfDk^Jp](6nqu?TpfDk^JrVucqp](0lfDk^JqZ$Koq>^BnfDk^J
+qZ$Qqp](0lfDk^Jqu?NnqZ$Koq>Ys~>
+V#UAnq>^Bnb5_JAp](0lbl@P?qZ$KobQ%PAp](0ldJs(DqZ$Koq>^BnfDk^Jqu?NnqZ$KofDk^J
+rVuWmqu?TpfDk^JrVucqp](0lfDk^Jp](6nqu?TpfDk^JrVucqp](0lfDk^JqZ$Koq>^BnfDk^J
+qZ$Qqp](0lfDk^Jqu?NnqZ$Koq>Ys~>
+V#UAnq>^Bnb5_JAp](0lbl@P?qZ$KobQ%PAp](0ldJs(DqZ$Koq>^BnfDk^Jqu?NnqZ$KofDk^J
+rVuWmqu?TpfDk^JrVucqp](0lfDk^Jp](6nqu?TpfDk^JrVucqp](0lfDk^JqZ$Koq>^BnfDk^J
+qZ$Qqp](0lfDk^Jqu?NnqZ$Koq>Ys~>
+JcC<$df0:IJcC<$JcC<$JcFg2J,~>
+JcC<$df0:IJcC<$JcC<$JcFg2J,~>
+JcC<$df0:IJcC<$JcC<$JcFg2J,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcEOcrrAYjrrD*Zr;b^Srr@WMJcDMFJ,~>
+JcC<$JcEOcrrAYjrrD*Zr;b^Srr@WMJcDMFJ,~>
+JcC<$JcEOcrrAYjrrD*Zr;b^Srr@WMJcDMFJ,~>
+JcC<$JcGWIo`3PBquHZprW&qtquGjYrW)uurW)Qiq>g<jquG[Tq>c*HJcEpnJ,~>
+JcC<$JcGWIo`3PBquHZprW&qtquGjYrW)uurW)Qiq>g<jquG[Tq>c*HJcEpnJ,~>
+JcC<$JcGWIo`3PBquHZprW&qtquGjYrW)uurW)Qiq>g<jquG[Tq>c*HJcEpnJ,~>
+JcC<$JcGQGr;ccqrW(LKrW)lrrW&krrW)'[rrE#trW)TjrW)NhrW(aRrW%NLJcEpnJ,~>
+JcC<$JcGQGr;ccqrW(LKrW)lrrW&krrW)'[rrE#trW)TjrW)NhrW(aRrW%NLJcEpnJ,~>
+JcC<$JcGQGr;ccqrW(LKrW)lrrW&krrW)'[rrE#trW)TjrW)NhrW(aRrW%NLJcEpnJ,~>
+JcC<$JcGNFrW)iqrW(OLrW)lrrW&krrW)*\rrDrrrW)WkrW)NhrW(aRrW%NLJcEpnJ,~>
+JcC<$JcGNFrW)iqrW(OLrW)lrrW&krrW)*\rrDrrrW)WkrW)NhrW(aRrW%NLJcEpnJ,~>
+JcC<$JcGNFrW)iqrW(OLrW)lrrW&krrW)*\rrDrrrW)WkrW)NhrW(aRrW%NLJcEpnJ,~>
+JcC<$JcGNFrW)fprW(RMrW&SjrW)-]rW)iqrW)WkrW)NhrW(aRrW%NLJcEpnJ,~>
+JcC<$JcGNFrW)fprW(RMrW&SjrW)-]rW)iqrW)WkrW)NhrW(aRrW%NLJcEpnJ,~>
+JcC<$JcGNFrW)fprW(RMrW&SjrW)-]rW)iqrW)WkrW)NhrW(aRrW%NLJcEpnJ,~>
+JcC<$JcGNFrW)fprW(RMrW&SjrW)-]rW)fprrD`lrW)NhrW(aRrW%NLJcEpnJ,~>
+JcC<$JcGNFrW)fprW(RMrW&SjrW)-]rW)fprrD`lrW)NhrW(aRrW%NLJcEpnJ,~>
+JcC<$JcGNFrW)fprW(RMrW&SjrW)-]rW)fprrD`lrW)NhrW(aRrW%NLJcEpnJ,~>
+JcC<$JcGNFrW)fprW(RMrW&SjrW)-]rW)fprW)ZlrW)NhrW(aRrW%NLJcEpnJ,~>
+JcC<$JcGNFrW)fprW(RMrW&SjrW)-]rW)fprW)ZlrW)NhrW(aRrW%NLJcEpnJ,~>
+JcC<$JcGNFrW)fprW(RMrW&SjrW)-]rW)fprW)ZlrW)NhrW(aRrW%NLJcEpnJ,~>
+JcC<$JcGNFrW)fprW)coquHTnrrE*!r;cWmr;ZitrW)iqrW)iqrrE*!r;cWmquH6dqZ-KmrrE*!
+r;cWmquHNlrW)fpquH?grW)fprW)ZlrW)]mr;ZitrW)fpquHNlquHHjrW%NLJcEpnJ,~>
+JcC<$JcGNFrW)fprW)coquHTnrrE*!r;cWmr;ZitrW)iqrW)iqrrE*!r;cWmquH6dqZ-KmrrE*!
+r;cWmquHNlrW)fpquH?grW)fprW)ZlrW)]mr;ZitrW)fpquHNlquHHjrW%NLJcEpnJ,~>
+JcC<$JcGNFrW)fprW)coquHTnrrE*!r;cWmr;ZitrW)iqrW)iqrrE*!r;cWmquH6dqZ-KmrrE*!
+r;cWmquHNlrW)fpquH?grW)fprW)ZlrW)]mr;ZitrW)fpquHNlquHHjrW%NLJcEpnJ,~>
+JcC<$JcGNFrW)iqrW)fprrE&urW)rtqu?`sqZ-NnrW)rtr;cfrquH`rqu?`sqZ-KmrrE*!q>g6h
+rrE&urW)rtqu?`sqZ-KmrrE*!q>gKorW)lrrrE&urW)Wkr;c]orW)ZlrW)corW)rtr;ccqrrE&u
+rW)fprrE*!q>gEmrW%NLJcEpnJ,~>
+JcC<$JcGNFrW)iqrW)fprrE&urW)rtqu?`sqZ-NnrW)rtr;cfrquH`rqu?`sqZ-KmrrE*!q>g6h
+rrE&urW)rtqu?`sqZ-KmrrE*!q>gKorW)lrrrE&urW)Wkr;c]orW)ZlrW)corW)rtr;ccqrrE&u
+rW)fprrE*!q>gEmrW%NLJcEpnJ,~>
+JcC<$JcGNFrW)iqrW)fprrE&urW)rtqu?`sqZ-NnrW)rtr;cfrquH`rqu?`sqZ-KmrrE*!q>g6h
+rrE&urW)rtqu?`sqZ-KmrrE*!q>gKorW)lrrrE&urW)Wkr;c]orW)ZlrW)corW)rtr;ccqrrE&u
+rW)fprrE*!q>gEmrW%NLJcEpnJ,~>
+JcC<$JcGNFrW)osr;c]orrDusrW)osr;cisr;ccqrrDusrW)iqrW)lrr;cisr;ccqrrE#trW)Tj
+rW)osrW)osr;cisr;ccqrrE#trW)fprW)osrrDusrW)Zlo)SLarW)corrDusrW)osrrDusrW)lr
+rrE#trW)`nrW%NLJcEpnJ,~>
+JcC<$JcGNFrW)osr;c]orrDusrW)osr;cisr;ccqrrDusrW)iqrW)lrr;cisr;ccqrrE#trW)Tj
+rW)osrW)osr;cisr;ccqrrE#trW)fprW)osrrDusrW)Zlo)SLarW)corrDusrW)osrrDusrW)lr
+rrE#trW)`nrW%NLJcEpnJ,~>
+JcC<$JcGNFrW)osr;c]orrDusrW)osr;cisr;ccqrrDusrW)iqrW)lrr;cisr;ccqrrE#trW)Tj
+rW)osrW)osr;cisr;ccqrrE#trW)fprW)osrrDusrW)Zlo)SLarW)corrDusrW)osrrDusrW)lr
+rrE#trW)`nrW%NLJcEpnJ,~>
+JcC<$JcGNFp]1*h!!)orrW)osrW)lrrW)osrrDrrrW)iqrW)lrrW)lrrW)osrW)lrrW)WkrrDus
+rW)osrW)lrrW)osrW)lrrW)iqrW)os!!)orrW)Zlo)SLarW)fprrDrrrW)os!!)orrW)osrW)lr
+rW)corW%NLJcEpnJ,~>
+JcC<$JcGNFp]1*h!!)orrW)osrW)lrrW)osrrDrrrW)iqrW)lrrW)lrrW)osrW)lrrW)WkrrDus
+rW)osrW)lrrW)osrW)lrrW)iqrW)os!!)orrW)Zlo)SLarW)fprrDrrrW)os!!)orrW)osrW)lr
+rW)corW%NLJcEpnJ,~>
+JcC<$JcGNFp]1*h!!)orrW)osrW)lrrW)osrrDrrrW)iqrW)lrrW)lrrW)osrW)lrrW)WkrrDus
+rW)osrW)lrrW)osrW)lrrW)iqrW)os!!)orrW)Zlo)SLarW)fprrDrrrW)os!!)orrW)osrW)lr
+rW)corW%NLJcEpnJ,~>
+JcC<$JcGNFrW)lrr;ccqp&P'krW)lrrW)osrrDrrrW)iqrW)lrrW)lrrW)osrW)lrrW)Tj!!)rs
+rW)osrW)lrrW)osrW)lrrW)iqrW)rtp&Ogdr;c]orW)ZlrW)fprrDrrrW)rtp&P'krW)lrrW)co
+rW%NLJcEpnJ,~>
+JcC<$JcGNFrW)lrr;ccqp&P'krW)lrrW)osrrDrrrW)iqrW)lrrW)lrrW)osrW)lrrW)Tj!!)rs
+rW)osrW)lrrW)osrW)lrrW)iqrW)rtp&Ogdr;c]orW)ZlrW)fprrDrrrW)rtp&P'krW)lrrW)co
+rW%NLJcEpnJ,~>
+JcC<$JcGNFrW)lrr;ccqp&P'krW)lrrW)osrrDrrrW)iqrW)lrrW)lrrW)osrW)lrrW)Tj!!)rs
+rW)osrW)lrrW)osrW)lrrW)iqrW)rtp&Ogdr;c]orW)ZlrW)fprrDrrrW)rtp&P'krW)lrrW)co
+rW%NLJcEpnJ,~>
+JcC<$JcGNFrW)fpr;cisrrD]krW)lrrW)rtrW)iqrW)iqrW)lrrW)lrrW)osrW)lrrW)HfquH]q
+rW)lrrW)osrW)lrrW)iqrW)rtrrDHdr;c]orW)ZlrW)iqrW)iqrW)rtrrD]krW)lrrW)corW%NL
+JcEpnJ,~>
+JcC<$JcGNFrW)fpr;cisrrD]krW)lrrW)rtrW)iqrW)iqrW)lrrW)lrrW)osrW)lrrW)HfquH]q
+rW)lrrW)osrW)lrrW)iqrW)rtrrDHdr;c]orW)ZlrW)iqrW)iqrW)rtrrD]krW)lrrW)corW%NL
+JcEpnJ,~>
+JcC<$JcGNFrW)fpr;cisrrD]krW)lrrW)rtrW)iqrW)iqrW)lrrW)lrrW)osrW)lrrW)HfquH]q
+rW)lrrW)osrW)lrrW)iqrW)rtrrDHdr;c]orW)ZlrW)iqrW)iqrW)rtrrD]krW)lrrW)corW%NL
+JcEpnJ,~>
+JcC<$JcGNFrW)corW)rtrrD]krW)lrrW)rtrW)iqrW)iqrW)lrrW)lrrW)osrW)lrrW)NhrrE*!
+rW)osrW)lrrW)osrW)lrrW)iqrW)rtrrDEcrW)fprW)ZlrW)iqrW)iqrW)rtrrD]krW)lrrW)co
+rW%NLJcEpnJ,~>
+JcC<$JcGNFrW)corW)rtrrD]krW)lrrW)rtrW)iqrW)iqrW)lrrW)lrrW)osrW)lrrW)NhrrE*!
+rW)osrW)lrrW)osrW)lrrW)iqrW)rtrrDEcrW)fprW)ZlrW)iqrW)iqrW)rtrrD]krW)lrrW)co
+rW%NLJcEpnJ,~>
+JcC<$JcGNFrW)corW)rtrrD]krW)lrrW)rtrW)iqrW)iqrW)lrrW)lrrW)osrW)lrrW)NhrrE*!
+rW)osrW)lrrW)osrW)lrrW)iqrW)rtrrDEcrW)fprW)ZlrW)iqrW)iqrW)rtrrD]krW)lrrW)co
+rW%NLJcEpnJ,~>
+JcC<$JcGNFrW)cor;cltrrD]krW)lrrW)rtrW)iqrW)iqrW)lrrW)lrrW)lrrrDusrrDZjrrE#t
+rW)osrW)lrrW)lrrrDusrrDoqrW)rtrrDEcrW)fprW)ZlrW)iqrW)iqrW)rtrrDZjrrDusrrDio
+rW%NLJcEpnJ,~>
+JcC<$JcGNFrW)cor;cltrrD]krW)lrrW)rtrW)iqrW)iqrW)lrrW)lrrW)lrrrDusrrDZjrrE#t
+rW)osrW)lrrW)lrrrDusrrDoqrW)rtrrDEcrW)fprW)ZlrW)iqrW)iqrW)rtrrDZjrrDusrrDio
+rW%NLJcEpnJ,~>
+JcC<$JcGNFrW)cor;cltrrD]krW)lrrW)rtrW)iqrW)iqrW)lrrW)lrrW)lrrrDusrrDZjrrE#t
+rW)osrW)lrrW)lrrrDusrrDoqrW)rtrrDEcrW)fprW)ZlrW)iqrW)iqrW)rtrrDZjrrDusrrDio
+rW%NLJcEpnJ,~>
+JcC<$JcGNFrW)cor;cltrW)WkrW)lrrW)rtrW)iqrW)iqrW)lrrW)lrrW)iqrrE&urW)TjrrDus
+rW)osrW)lrrW)iqrrE&urW)fprW)rtrW)?crW)iqrW)WkrW)iqrW)iqrW)rtrW)QirrE&urW)`n
+rW%NLJcEpnJ,~>
+JcC<$JcGNFrW)cor;cltrW)WkrW)lrrW)rtrW)iqrW)iqrW)lrrW)lrrW)iqrrE&urW)TjrrDus
+rW)osrW)lrrW)iqrrE&urW)fprW)rtrW)?crW)iqrW)WkrW)iqrW)iqrW)rtrW)QirrE&urW)`n
+rW%NLJcEpnJ,~>
+JcC<$JcGNFrW)cor;cltrW)WkrW)lrrW)rtrW)iqrW)iqrW)lrrW)lrrW)iqrrE&urW)TjrrDus
+rW)osrW)lrrW)iqrrE&urW)fprW)rtrW)?crW)iqrW)WkrW)iqrW)iqrW)rtrW)QirrE&urW)`n
+rW%NLJcEpnJ,~>
+JcC<$JcGNFrW)cor;cltrW)co!!*#urW)lrrW)rtrW)iqrW)iqrW)lrrW)lrrW)fpquH?grW)lr
+rW)osrW)lrrW)fpquHNlrW)rtrW)co!!)`mrW)iqrW)WkrW)iqrW)iqrW)rtrW)co!!)orquHHj
+rW%NLJcEpnJ,~>
+JcC<$JcGNFrW)cor;cltrW)co!!*#urW)lrrW)rtrW)iqrW)iqrW)lrrW)lrrW)fpquH?grW)lr
+rW)osrW)lrrW)fpquHNlrW)rtrW)co!!)`mrW)iqrW)WkrW)iqrW)iqrW)rtrW)co!!)orquHHj
+rW%NLJcEpnJ,~>
+JcC<$JcGNFrW)cor;cltrW)co!!*#urW)lrrW)rtrW)iqrW)iqrW)lrrW)lrrW)fpquH?grW)lr
+rW)osrW)lrrW)fpquHNlrW)rtrW)co!!)`mrW)iqrW)WkrW)iqrW)iqrW)rtrW)co!!)orquHHj
+rW%NLJcEpnJ,~>
+JcC<$JcGNFrW)cor;cltr;c`p!!)utrW)lrrW)rtr;ccqrW)iqrW)lrrW)lrrW)iq!!)HerW)lr
+rW)osrW)lrrW)iq!!)WjrW)rtr;c`p!!)ZkrrDrrrrD]krW)iqr;ccqrW)rtr;c`p!!)or!!)Qh
+rW%NLJcEpnJ,~>
+JcC<$JcGNFrW)cor;cltr;c`p!!)utrW)lrrW)rtr;ccqrW)iqrW)lrrW)lrrW)iq!!)HerW)lr
+rW)osrW)lrrW)iq!!)WjrW)rtr;c`p!!)ZkrrDrrrrD]krW)iqr;ccqrW)rtr;c`p!!)or!!)Qh
+rW%NLJcEpnJ,~>
+JcC<$JcGNFrW)cor;cltr;c`p!!)utrW)lrrW)rtr;ccqrW)iqrW)lrrW)lrrW)iq!!)HerW)lr
+rW)osrW)lrrW)iq!!)WjrW)rtr;c`p!!)ZkrrDrrrrD]krW)iqr;ccqrW)rtr;c`p!!)or!!)Qh
+rW%NLJcEpnJ,~>
+JcC<$JcGNFrW)fpr;cfrr;cfrrrE#trW)lrrW)osrW)lrrW)iqrW)lrrW)lrrW)lr!!)Edr;cis
+r;cfrrW)lrrW)lr!!)TirW)osr;cfrrrD]krW)osrW)TjrW)fprW)lrrW)osr;cfrrrDus!!)Ng
+rW%NLJcEpnJ,~>
+JcC<$JcGNFrW)fpr;cfrr;cfrrrE#trW)lrrW)osrW)lrrW)iqrW)lrrW)lrrW)lr!!)Edr;cis
+r;cfrrW)lrrW)lr!!)TirW)osr;cfrrrD]krW)osrW)TjrW)fprW)lrrW)osr;cfrrrDus!!)Ng
+rW%NLJcEpnJ,~>
+JcC<$JcGNFrW)fpr;cfrr;cfrrrE#trW)lrrW)osrW)lrrW)iqrW)lrrW)lrrW)lr!!)Edr;cis
+r;cfrrW)lrrW)lr!!)TirW)osr;cfrrrD]krW)osrW)TjrW)fprW)lrrW)osr;cfrrrDus!!)Ng
+rW%NLJcEpnJ,~>
+JcC<$JcGQGr;ccqquHWoq#L?mrW)lrrW)lrrW)rtqZ-TprW)lrrW)lrrW)ospAjjcqZ$WrquHcs
+rW)lrrW)ospAk*jr;ccqq#L!crW)uurW)QirW)corW)rtqZ-Wqq#L?mpAk!grW%NLJcEpnJ,~>
+JcC<$JcGQGr;ccqquHWoq#L?mrW)lrrW)lrrW)rtqZ-TprW)lrrW)lrrW)ospAjjcqZ$WrquHcs
+rW)lrrW)ospAk*jr;ccqq#L!crW)uurW)QirW)corW)rtqZ-Wqq#L?mpAk!grW%NLJcEpnJ,~>
+JcC<$JcGQGr;ccqquHWoq#L?mrW)lrrW)lrrW)rtqZ-TprW)lrrW)lrrW)ospAjjcqZ$WrquHcs
+rW)lrrW)ospAk*jr;ccqq#L!crW)uurW)QirW)corW)rtqZ-Wqq#L?mpAk!grW%NLJcEpnJ,~>
+JcC<$JcGWIo)SRcquHWoqZ-ZrqZ-Tpqu?`srW)rtq#LHpqZ-ZrqZ-WqpAjjcr;cisrW)uuqZ-Zr
+qZ-WqpAk0lq>gKoquH0br;cBfrW)`nqu?`srW)iqquHQmpAk$hrW%NLJcEpnJ,~>
+JcC<$JcGWIo)SRcquHWoqZ-ZrqZ-Tpqu?`srW)rtq#LHpqZ-ZrqZ-WqpAjjcr;cisrW)uuqZ-Zr
+qZ-WqpAk0lq>gKoquH0br;cBfrW)`nqu?`srW)iqquHQmpAk$hrW%NLJcEpnJ,~>
+JcC<$JcGWIo)SRcquHWoqZ-ZrqZ-Tpqu?`srW)rtq#LHpqZ-ZrqZ-WqpAjjcr;cisrW)uuqZ-Zr
+qZ-WqpAk0lq>gKoquH0br;cBfrW)`nqu?`srW)iqquHQmpAk$hrW%NLJcEpnJ,~>
+JcC<$JcDDC!!)lqrW(UN!!)lqrW("=rW(aR!!)lqrW)fprW%NLJcEpnJ,~>
+JcC<$JcDDC!!)lqrW(UN!!)lqrW("=rW(aR!!)lqrW)fprW%NLJcEpnJ,~>
+JcC<$JcDDC!!)lqrW(UN!!)lqrW("=rW(aR!!)lqrW)fprW%NLJcEpnJ,~>
+JcC<$JcDGD!!)cn!!(^P!!)cn!!((>rW(dS!!)cn!!)lqrW%NLJcEpnJ,~>
+JcC<$JcDGD!!)cn!!(^P!!)cn!!((>rW(dS!!)cn!!)lqrW%NLJcEpnJ,~>
+JcC<$JcDGD!!)cn!!(^P!!)cn!!((>rW(dS!!)cn!!)lqrW%NLJcEpnJ,~>
+JcC<$JcDGD!!)cn!!(^P!!)cn!!((>rW(dS!!)cn!!)lqrW%NLJcEpnJ,~>
+JcC<$JcDGD!!)cn!!(^P!!)cn!!((>rW(dS!!)cn!!)lqrW%NLJcEpnJ,~>
+JcC<$JcDGD!!)cn!!(^P!!)cn!!((>rW(dS!!)cn!!)lqrW%NLJcEpnJ,~>
+JcC<$JcDJErrDiorrCdQrrDiorrC+>rW(gTrrDiorrDoqrW%NLJcEpnJ,~>
+JcC<$JcDJErrDiorrCdQrrDiorrC+>rW(gTrrDiorrDoqrW%NLJcEpnJ,~>
+JcC<$JcDJErrDiorrCdQrrDiorrC+>rW(gTrrDiorrDoqrW%NLJcEpnJ,~>
+JcC<$JcDJErW)fprrCaPrW)fprrC(=q>fOTrW)fprrE#tq>c*HJcEpnJ,~>
+JcC<$JcDJErW)fprrCaPrW)fprrC(=q>fOTrW)fprrE#tq>c*HJcEpnJ,~>
+JcC<$JcDJErW)fprrCaPrW)fprrC(=q>fOTrW)fprrE#tq>c*HJcEpnJ,~>
+JcC<$JcDGDpAihFpAgfbpAfdEJcELbJ,~>
+JcC<$JcDGDpAihFpAgfbpAfdEJcELbJ,~>
+JcC<$JcDGDpAihFpAgfbpAfdEJcELbJ,~>
+JcC<$JcDDCq>f%Fq>d#bq>c*HJcEF`J,~>
+JcC<$JcDDCq>f%Fq>d#bq>c*HJcEF`J,~>
+JcC<$JcDDCq>f%Fq>d#bq>c*HJcEF`J,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+JcC<$JcC<$JcC<$JcE+WJ,~>
+%%EndData
+showpage
+%%Trailer
+end
+%%EOF
diff --git a/manual/plots/fig-04.eps b/manual/plots/fig-04.eps
new file mode 100755 (executable)
index 0000000..2476f4f
--- /dev/null
@@ -0,0 +1,9284 @@
+%!PS-Adobe-2.0 EPSF-2.0
+%%Title: my_super_picture.eps
+%%Creator: gnuplot 4.4 patchlevel 3
+%%CreationDate: Fri Mar  8 14:20:20 2013
+%%DocumentFonts: (atend)
+%%BoundingBox: 75 115 990 770
+%%EndComments
+%%BeginProlog
+/gnudict 256 dict def
+gnudict begin
+%
+% The following true/false flags may be edited by hand if desired.
+% The unit line width and grayscale image gamma correction may also be changed.
+%
+/Color true def
+/Blacktext false def
+/Solid false def
+/Dashlength 1 def
+/Landscape false def
+/Level1 false def
+/Rounded false def
+/ClipToBoundingBox false def
+/TransparentPatterns false def
+/gnulinewidth 10.000 def
+/userlinewidth gnulinewidth def
+/Gamma 1.0 def
+%
+/vshift -133 def
+/dl1 {
+  10.0 Dashlength mul mul
+  Rounded { currentlinewidth 0.75 mul sub dup 0 le { pop 0.01 } if } if
+} def
+/dl2 {
+  10.0 Dashlength mul mul
+  Rounded { currentlinewidth 0.75 mul add } if
+} def
+/hpt_ 31.5 def
+/vpt_ 31.5 def
+/hpt hpt_ def
+/vpt vpt_ def
+Level1 {} {
+/SDict 10 dict def
+systemdict /pdfmark known not {
+  userdict /pdfmark systemdict /cleartomark get put
+} if
+SDict begin [
+  /Title (my_super_picture.eps)
+  /Subject (gnuplot plot)
+  /Creator (gnuplot 4.4 patchlevel 3)
+  /Author (monica)
+%  /Producer (gnuplot)
+%  /Keywords ()
+  /CreationDate (Fri Mar  8 14:20:20 2013)
+  /DOCINFO pdfmark
+end
+} ifelse
+/doclip {
+  ClipToBoundingBox {
+    newpath 50 50 moveto 1130 50 lineto 1130 806 lineto 50 806 lineto closepath
+    clip
+  } if
+} def
+%
+% Gnuplot Prolog Version 4.4 (August 2010)
+%
+%/SuppressPDFMark true def
+%
+/M {moveto} bind def
+/L {lineto} bind def
+/R {rmoveto} bind def
+/V {rlineto} bind def
+/N {newpath moveto} bind def
+/Z {closepath} bind def
+/C {setrgbcolor} bind def
+/f {rlineto fill} bind def
+/g {setgray} bind def
+/Gshow {show} def   % May be redefined later in the file to support UTF-8
+/vpt2 vpt 2 mul def
+/hpt2 hpt 2 mul def
+/Lshow {currentpoint stroke M 0 vshift R 
+       Blacktext {gsave 0 setgray show grestore} {show} ifelse} def
+/Rshow {currentpoint stroke M dup stringwidth pop neg vshift R
+       Blacktext {gsave 0 setgray show grestore} {show} ifelse} def
+/Cshow {currentpoint stroke M dup stringwidth pop -2 div vshift R 
+       Blacktext {gsave 0 setgray show grestore} {show} ifelse} def
+/UP {dup vpt_ mul /vpt exch def hpt_ mul /hpt exch def
+  /hpt2 hpt 2 mul def /vpt2 vpt 2 mul def} def
+/DL {Color {setrgbcolor Solid {pop []} if 0 setdash}
+ {pop pop pop 0 setgray Solid {pop []} if 0 setdash} ifelse} def
+/BL {stroke userlinewidth 2 mul setlinewidth
+       Rounded {1 setlinejoin 1 setlinecap} if} def
+/AL {stroke userlinewidth 2 div setlinewidth
+       Rounded {1 setlinejoin 1 setlinecap} if} def
+/UL {dup gnulinewidth mul /userlinewidth exch def
+       dup 1 lt {pop 1} if 10 mul /udl exch def} def
+/PL {stroke userlinewidth setlinewidth
+       Rounded {1 setlinejoin 1 setlinecap} if} def
+3.8 setmiterlimit
+% Default Line colors
+/LCw {1 1 1} def
+/LCb {0 0 0} def
+/LCa {0 0 0} def
+/LC0 {1 0 0} def
+/LC1 {0 1 0} def
+/LC2 {0 0 1} def
+/LC3 {1 0 1} def
+/LC4 {0 1 1} def
+/LC5 {1 1 0} def
+/LC6 {0 0 0} def
+/LC7 {1 0.3 0} def
+/LC8 {0.5 0.5 0.5} def
+% Default Line Types
+/LTw {PL [] 1 setgray} def
+/LTb {BL [] LCb DL} def
+/LTa {AL [1 udl mul 2 udl mul] 0 setdash LCa setrgbcolor} def
+/LT0 {PL [] LC0 DL} def
+/LT1 {PL [4 dl1 2 dl2] LC1 DL} def
+/LT2 {PL [2 dl1 3 dl2] LC2 DL} def
+/LT3 {PL [1 dl1 1.5 dl2] LC3 DL} def
+/LT4 {PL [6 dl1 2 dl2 1 dl1 2 dl2] LC4 DL} def
+/LT5 {PL [3 dl1 3 dl2 1 dl1 3 dl2] LC5 DL} def
+/LT6 {PL [2 dl1 2 dl2 2 dl1 6 dl2] LC6 DL} def
+/LT7 {PL [1 dl1 2 dl2 6 dl1 2 dl2 1 dl1 2 dl2] LC7 DL} def
+/LT8 {PL [2 dl1 2 dl2 2 dl1 2 dl2 2 dl1 2 dl2 2 dl1 4 dl2] LC8 DL} def
+/Pnt {stroke [] 0 setdash gsave 1 setlinecap M 0 0 V stroke grestore} def
+/Dia {stroke [] 0 setdash 2 copy vpt add M
+  hpt neg vpt neg V hpt vpt neg V
+  hpt vpt V hpt neg vpt V closepath stroke
+  Pnt} def
+/Pls {stroke [] 0 setdash vpt sub M 0 vpt2 V
+  currentpoint stroke M
+  hpt neg vpt neg R hpt2 0 V stroke
+ } def
+/Box {stroke [] 0 setdash 2 copy exch hpt sub exch vpt add M
+  0 vpt2 neg V hpt2 0 V 0 vpt2 V
+  hpt2 neg 0 V closepath stroke
+  Pnt} def
+/Crs {stroke [] 0 setdash exch hpt sub exch vpt add M
+  hpt2 vpt2 neg V currentpoint stroke M
+  hpt2 neg 0 R hpt2 vpt2 V stroke} def
+/TriU {stroke [] 0 setdash 2 copy vpt 1.12 mul add M
+  hpt neg vpt -1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt 1.62 mul V closepath stroke
+  Pnt} def
+/Star {2 copy Pls Crs} def
+/BoxF {stroke [] 0 setdash exch hpt sub exch vpt add M
+  0 vpt2 neg V hpt2 0 V 0 vpt2 V
+  hpt2 neg 0 V closepath fill} def
+/TriUF {stroke [] 0 setdash vpt 1.12 mul add M
+  hpt neg vpt -1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt 1.62 mul V closepath fill} def
+/TriD {stroke [] 0 setdash 2 copy vpt 1.12 mul sub M
+  hpt neg vpt 1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt -1.62 mul V closepath stroke
+  Pnt} def
+/TriDF {stroke [] 0 setdash vpt 1.12 mul sub M
+  hpt neg vpt 1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt -1.62 mul V closepath fill} def
+/DiaF {stroke [] 0 setdash vpt add M
+  hpt neg vpt neg V hpt vpt neg V
+  hpt vpt V hpt neg vpt V closepath fill} def
+/Pent {stroke [] 0 setdash 2 copy gsave
+  translate 0 hpt M 4 {72 rotate 0 hpt L} repeat
+  closepath stroke grestore Pnt} def
+/PentF {stroke [] 0 setdash gsave
+  translate 0 hpt M 4 {72 rotate 0 hpt L} repeat
+  closepath fill grestore} def
+/Circle {stroke [] 0 setdash 2 copy
+  hpt 0 360 arc stroke Pnt} def
+/CircleF {stroke [] 0 setdash hpt 0 360 arc fill} def
+/C0 {BL [] 0 setdash 2 copy moveto vpt 90 450 arc} bind def
+/C1 {BL [] 0 setdash 2 copy moveto
+       2 copy vpt 0 90 arc closepath fill
+       vpt 0 360 arc closepath} bind def
+/C2 {BL [] 0 setdash 2 copy moveto
+       2 copy vpt 90 180 arc closepath fill
+       vpt 0 360 arc closepath} bind def
+/C3 {BL [] 0 setdash 2 copy moveto
+       2 copy vpt 0 180 arc closepath fill
+       vpt 0 360 arc closepath} bind def
+/C4 {BL [] 0 setdash 2 copy moveto
+       2 copy vpt 180 270 arc closepath fill
+       vpt 0 360 arc closepath} bind def
+/C5 {BL [] 0 setdash 2 copy moveto
+       2 copy vpt 0 90 arc
+       2 copy moveto
+       2 copy vpt 180 270 arc closepath fill
+       vpt 0 360 arc} bind def
+/C6 {BL [] 0 setdash 2 copy moveto
+       2 copy vpt 90 270 arc closepath fill
+       vpt 0 360 arc closepath} bind def
+/C7 {BL [] 0 setdash 2 copy moveto
+       2 copy vpt 0 270 arc closepath fill
+       vpt 0 360 arc closepath} bind def
+/C8 {BL [] 0 setdash 2 copy moveto
+       2 copy vpt 270 360 arc closepath fill
+       vpt 0 360 arc closepath} bind def
+/C9 {BL [] 0 setdash 2 copy moveto
+       2 copy vpt 270 450 arc closepath fill
+       vpt 0 360 arc closepath} bind def
+/C10 {BL [] 0 setdash 2 copy 2 copy moveto vpt 270 360 arc closepath fill
+       2 copy moveto
+       2 copy vpt 90 180 arc closepath fill
+       vpt 0 360 arc closepath} bind def
+/C11 {BL [] 0 setdash 2 copy moveto
+       2 copy vpt 0 180 arc closepath fill
+       2 copy moveto
+       2 copy vpt 270 360 arc closepath fill
+       vpt 0 360 arc closepath} bind def
+/C12 {BL [] 0 setdash 2 copy moveto
+       2 copy vpt 180 360 arc closepath fill
+       vpt 0 360 arc closepath} bind def
+/C13 {BL [] 0 setdash 2 copy moveto
+       2 copy vpt 0 90 arc closepath fill
+       2 copy moveto
+       2 copy vpt 180 360 arc closepath fill
+       vpt 0 360 arc closepath} bind def
+/C14 {BL [] 0 setdash 2 copy moveto
+       2 copy vpt 90 360 arc closepath fill
+       vpt 0 360 arc} bind def
+/C15 {BL [] 0 setdash 2 copy vpt 0 360 arc closepath fill
+       vpt 0 360 arc closepath} bind def
+/Rec {newpath 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto
+       neg 0 rlineto closepath} bind def
+/Square {dup Rec} bind def
+/Bsquare {vpt sub exch vpt sub exch vpt2 Square} bind def
+/S0 {BL [] 0 setdash 2 copy moveto 0 vpt rlineto BL Bsquare} bind def
+/S1 {BL [] 0 setdash 2 copy vpt Square fill Bsquare} bind def
+/S2 {BL [] 0 setdash 2 copy exch vpt sub exch vpt Square fill Bsquare} bind def
+/S3 {BL [] 0 setdash 2 copy exch vpt sub exch vpt2 vpt Rec fill Bsquare} bind def
+/S4 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt Square fill Bsquare} bind def
+/S5 {BL [] 0 setdash 2 copy 2 copy vpt Square fill
+       exch vpt sub exch vpt sub vpt Square fill Bsquare} bind def
+/S6 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt vpt2 Rec fill Bsquare} bind def
+/S7 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt vpt2 Rec fill
+       2 copy vpt Square fill Bsquare} bind def
+/S8 {BL [] 0 setdash 2 copy vpt sub vpt Square fill Bsquare} bind def
+/S9 {BL [] 0 setdash 2 copy vpt sub vpt vpt2 Rec fill Bsquare} bind def
+/S10 {BL [] 0 setdash 2 copy vpt sub vpt Square fill 2 copy exch vpt sub exch vpt Square fill
+       Bsquare} bind def
+/S11 {BL [] 0 setdash 2 copy vpt sub vpt Square fill 2 copy exch vpt sub exch vpt2 vpt Rec fill
+       Bsquare} bind def
+/S12 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill Bsquare} bind def
+/S13 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill
+       2 copy vpt Square fill Bsquare} bind def
+/S14 {BL [] 0 setdash 2 copy exch vpt sub exch vpt sub vpt2 vpt Rec fill
+       2 copy exch vpt sub exch vpt Square fill Bsquare} bind def
+/S15 {BL [] 0 setdash 2 copy Bsquare fill Bsquare} bind def
+/D0 {gsave translate 45 rotate 0 0 S0 stroke grestore} bind def
+/D1 {gsave translate 45 rotate 0 0 S1 stroke grestore} bind def
+/D2 {gsave translate 45 rotate 0 0 S2 stroke grestore} bind def
+/D3 {gsave translate 45 rotate 0 0 S3 stroke grestore} bind def
+/D4 {gsave translate 45 rotate 0 0 S4 stroke grestore} bind def
+/D5 {gsave translate 45 rotate 0 0 S5 stroke grestore} bind def
+/D6 {gsave translate 45 rotate 0 0 S6 stroke grestore} bind def
+/D7 {gsave translate 45 rotate 0 0 S7 stroke grestore} bind def
+/D8 {gsave translate 45 rotate 0 0 S8 stroke grestore} bind def
+/D9 {gsave translate 45 rotate 0 0 S9 stroke grestore} bind def
+/D10 {gsave translate 45 rotate 0 0 S10 stroke grestore} bind def
+/D11 {gsave translate 45 rotate 0 0 S11 stroke grestore} bind def
+/D12 {gsave translate 45 rotate 0 0 S12 stroke grestore} bind def
+/D13 {gsave translate 45 rotate 0 0 S13 stroke grestore} bind def
+/D14 {gsave translate 45 rotate 0 0 S14 stroke grestore} bind def
+/D15 {gsave translate 45 rotate 0 0 S15 stroke grestore} bind def
+/DiaE {stroke [] 0 setdash vpt add M
+  hpt neg vpt neg V hpt vpt neg V
+  hpt vpt V hpt neg vpt V closepath stroke} def
+/BoxE {stroke [] 0 setdash exch hpt sub exch vpt add M
+  0 vpt2 neg V hpt2 0 V 0 vpt2 V
+  hpt2 neg 0 V closepath stroke} def
+/TriUE {stroke [] 0 setdash vpt 1.12 mul add M
+  hpt neg vpt -1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt 1.62 mul V closepath stroke} def
+/TriDE {stroke [] 0 setdash vpt 1.12 mul sub M
+  hpt neg vpt 1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt -1.62 mul V closepath stroke} def
+/PentE {stroke [] 0 setdash gsave
+  translate 0 hpt M 4 {72 rotate 0 hpt L} repeat
+  closepath stroke grestore} def
+/CircE {stroke [] 0 setdash 
+  hpt 0 360 arc stroke} def
+/Opaque {gsave closepath 1 setgray fill grestore 0 setgray closepath} def
+/DiaW {stroke [] 0 setdash vpt add M
+  hpt neg vpt neg V hpt vpt neg V
+  hpt vpt V hpt neg vpt V Opaque stroke} def
+/BoxW {stroke [] 0 setdash exch hpt sub exch vpt add M
+  0 vpt2 neg V hpt2 0 V 0 vpt2 V
+  hpt2 neg 0 V Opaque stroke} def
+/TriUW {stroke [] 0 setdash vpt 1.12 mul add M
+  hpt neg vpt -1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt 1.62 mul V Opaque stroke} def
+/TriDW {stroke [] 0 setdash vpt 1.12 mul sub M
+  hpt neg vpt 1.62 mul V
+  hpt 2 mul 0 V
+  hpt neg vpt -1.62 mul V Opaque stroke} def
+/PentW {stroke [] 0 setdash gsave
+  translate 0 hpt M 4 {72 rotate 0 hpt L} repeat
+  Opaque stroke grestore} def
+/CircW {stroke [] 0 setdash 
+  hpt 0 360 arc Opaque stroke} def
+/BoxFill {gsave Rec 1 setgray fill grestore} def
+/Density {
+  /Fillden exch def
+  currentrgbcolor
+  /ColB exch def /ColG exch def /ColR exch def
+  /ColR ColR Fillden mul Fillden sub 1 add def
+  /ColG ColG Fillden mul Fillden sub 1 add def
+  /ColB ColB Fillden mul Fillden sub 1 add def
+  ColR ColG ColB setrgbcolor} def
+/BoxColFill {gsave Rec PolyFill} def
+/PolyFill {gsave Density fill grestore grestore} def
+/h {rlineto rlineto rlineto gsave closepath fill grestore} bind def
+%
+% PostScript Level 1 Pattern Fill routine for rectangles
+% Usage: x y w h s a XX PatternFill
+%      x,y = lower left corner of box to be filled
+%      w,h = width and height of box
+%        a = angle in degrees between lines and x-axis
+%       XX = 0/1 for no/yes cross-hatch
+%
+/PatternFill {gsave /PFa [ 9 2 roll ] def
+  PFa 0 get PFa 2 get 2 div add PFa 1 get PFa 3 get 2 div add translate
+  PFa 2 get -2 div PFa 3 get -2 div PFa 2 get PFa 3 get Rec
+  gsave 1 setgray fill grestore clip
+  currentlinewidth 0.5 mul setlinewidth
+  /PFs PFa 2 get dup mul PFa 3 get dup mul add sqrt def
+  0 0 M PFa 5 get rotate PFs -2 div dup translate
+  0 1 PFs PFa 4 get div 1 add floor cvi
+       {PFa 4 get mul 0 M 0 PFs V} for
+  0 PFa 6 get ne {
+       0 1 PFs PFa 4 get div 1 add floor cvi
+       {PFa 4 get mul 0 2 1 roll M PFs 0 V} for
+ } if
+  stroke grestore} def
+%
+/languagelevel where
+ {pop languagelevel} {1} ifelse
+ 2 lt
+       {/InterpretLevel1 true def}
+       {/InterpretLevel1 Level1 def}
+ ifelse
+%
+% PostScript level 2 pattern fill definitions
+%
+/Level2PatternFill {
+/Tile8x8 {/PaintType 2 /PatternType 1 /TilingType 1 /BBox [0 0 8 8] /XStep 8 /YStep 8}
+       bind def
+/KeepColor {currentrgbcolor [/Pattern /DeviceRGB] setcolorspace} bind def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop 0 0 M 8 8 L 0 8 M 8 0 L stroke} 
+>> matrix makepattern
+/Pat1 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop 0 0 M 8 8 L 0 8 M 8 0 L stroke
+       0 4 M 4 8 L 8 4 L 4 0 L 0 4 L stroke}
+>> matrix makepattern
+/Pat2 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop 0 0 M 0 8 L
+       8 8 L 8 0 L 0 0 L fill}
+>> matrix makepattern
+/Pat3 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop -4 8 M 8 -4 L
+       0 12 M 12 0 L stroke}
+>> matrix makepattern
+/Pat4 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop -4 0 M 8 12 L
+       0 -4 M 12 8 L stroke}
+>> matrix makepattern
+/Pat5 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop -2 8 M 4 -4 L
+       0 12 M 8 -4 L 4 12 M 10 0 L stroke}
+>> matrix makepattern
+/Pat6 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop -2 0 M 4 12 L
+       0 -4 M 8 12 L 4 -4 M 10 8 L stroke}
+>> matrix makepattern
+/Pat7 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop 8 -2 M -4 4 L
+       12 0 M -4 8 L 12 4 M 0 10 L stroke}
+>> matrix makepattern
+/Pat8 exch def
+<< Tile8x8
+ /PaintProc {0.5 setlinewidth pop 0 -2 M 12 4 L
+       -4 0 M 12 8 L -4 4 M 8 10 L stroke}
+>> matrix makepattern
+/Pat9 exch def
+/Pattern1 {PatternBgnd KeepColor Pat1 setpattern} bind def
+/Pattern2 {PatternBgnd KeepColor Pat2 setpattern} bind def
+/Pattern3 {PatternBgnd KeepColor Pat3 setpattern} bind def
+/Pattern4 {PatternBgnd KeepColor Landscape {Pat5} {Pat4} ifelse setpattern} bind def
+/Pattern5 {PatternBgnd KeepColor Landscape {Pat4} {Pat5} ifelse setpattern} bind def
+/Pattern6 {PatternBgnd KeepColor Landscape {Pat9} {Pat6} ifelse setpattern} bind def
+/Pattern7 {PatternBgnd KeepColor Landscape {Pat8} {Pat7} ifelse setpattern} bind def
+} def
+%
+%
+%End of PostScript Level 2 code
+%
+/PatternBgnd {
+  TransparentPatterns {} {gsave 1 setgray fill grestore} ifelse
+} def
+%
+% Substitute for Level 2 pattern fill codes with
+% grayscale if Level 2 support is not selected.
+%
+/Level1PatternFill {
+/Pattern1 {0.250 Density} bind def
+/Pattern2 {0.500 Density} bind def
+/Pattern3 {0.750 Density} bind def
+/Pattern4 {0.125 Density} bind def
+/Pattern5 {0.375 Density} bind def
+/Pattern6 {0.625 Density} bind def
+/Pattern7 {0.875 Density} bind def
+} def
+%
+% Now test for support of Level 2 code
+%
+Level1 {Level1PatternFill} {Level2PatternFill} ifelse
+%
+/Symbol-Oblique /Symbol findfont [1 0 .167 1 0 0] makefont
+dup length dict begin {1 index /FID eq {pop pop} {def} ifelse} forall
+currentdict end definefont pop
+/MFshow {
+   { dup 5 get 3 ge
+     { 5 get 3 eq {gsave} {grestore} ifelse }
+     {dup dup 0 get findfont exch 1 get scalefont setfont
+     [ currentpoint ] exch dup 2 get 0 exch R dup 5 get 2 ne {dup dup 6
+     get exch 4 get {Gshow} {stringwidth pop 0 R} ifelse }if dup 5 get 0 eq
+     {dup 3 get {2 get neg 0 exch R pop} {pop aload pop M} ifelse} {dup 5
+     get 1 eq {dup 2 get exch dup 3 get exch 6 get stringwidth pop -2 div
+     dup 0 R} {dup 6 get stringwidth pop -2 div 0 R 6 get
+     show 2 index {aload pop M neg 3 -1 roll neg R pop pop} {pop pop pop
+     pop aload pop M} ifelse }ifelse }ifelse }
+     ifelse }
+   forall} def
+/Gswidth {dup type /stringtype eq {stringwidth} {pop (n) stringwidth} ifelse} def
+/MFwidth {0 exch { dup 5 get 3 ge { 5 get 3 eq { 0 } { pop } ifelse }
+ {dup 3 get{dup dup 0 get findfont exch 1 get scalefont setfont
+     6 get Gswidth pop add} {pop} ifelse} ifelse} forall} def
+/MLshow { currentpoint stroke M
+  0 exch R
+  Blacktext {gsave 0 setgray MFshow grestore} {MFshow} ifelse } bind def
+/MRshow { currentpoint stroke M
+  exch dup MFwidth neg 3 -1 roll R
+  Blacktext {gsave 0 setgray MFshow grestore} {MFshow} ifelse } bind def
+/MCshow { currentpoint stroke M
+  exch dup MFwidth -2 div 3 -1 roll R
+  Blacktext {gsave 0 setgray MFshow grestore} {MFshow} ifelse } bind def
+/XYsave    { [( ) 1 2 true false 3 ()] } bind def
+/XYrestore { [( ) 1 2 true false 4 ()] } bind def
+end
+%%EndProlog
+gnudict begin
+gsave
+doclip
+50 50 translate
+0.050 0.050 scale
+0 setgray
+newpath
+(Helvetica) findfont 400 scalefont setfont
+1.000 UL
+LTb
+1.000 UL
+LTb
+3062 4856 M
+13770 5982 L
+18538 3454 M
+13770 5982 L
+3062 4856 M
+0 7210 V
+13770 5982 M
+0 7044 V
+18538 3454 M
+0 7043 V
+8381 2386 M
+-39 20 V
+stroke
+8529 2255 M
+[ [(Helvetica) 400.0 0.0 true true 0 (-180)]
+] -133.3 MCshow
+1.000 UL
+LTb
+1.000 UL
+LTb
+3613 4914 M
+39 -20 V
+10783 2638 M
+-39 21 V
+stroke
+10930 2507 M
+[ [(Helvetica) 400.0 0.0 true true 0 (-90)]
+] -133.3 MCshow
+1.000 UL
+LTb
+1.000 UL
+LTb
+6015 5167 M
+39 -21 V
+13183 2891 M
+-39 20 V
+stroke
+13332 2760 M
+[ [(Helvetica) 400.0 0.0 true true 0 ( 0)]
+] -133.3 MCshow
+1.000 UL
+LTb
+1.000 UL
+LTb
+8417 5419 M
+39 -20 V
+15585 3143 M
+-39 21 V
+stroke
+15733 3012 M
+[ [(Helvetica) 400.0 0.0 true true 0 (90)]
+] -133.3 MCshow
+1.000 UL
+LTb
+1.000 UL
+LTb
+10817 5672 M
+39 -21 V
+17987 3396 M
+-39 20 V
+stroke
+18135 3265 M
+[ [(Helvetica) 400.0 0.0 true true 0 (180)]
+] -133.3 MCshow
+1.000 UL
+LTb
+1.000 UL
+LTb
+13219 5924 M
+39 -20 V
+7763 2363 M
+57 6 V
+stroke
+7544 2325 M
+[ [(Helvetica) 400.0 0.0 true true 0 ( 0)]
+] -133.3 MRshow
+1.000 UL
+LTb
+1.000 UL
+LTb
+18471 3489 M
+-58 -6 V
+7065 2734 M
+57 6 V
+stroke
+6845 2695 M
+[ [(Helvetica) 400.0 0.0 true true 0 (30)]
+] -133.3 MRshow
+1.000 UL
+LTb
+1.000 UL
+LTb
+17772 3860 M
+-57 -6 V
+6353 3111 M
+57 6 V
+stroke
+6134 3073 M
+[ [(Helvetica) 400.0 0.0 true true 0 (60)]
+] -133.3 MRshow
+1.000 UL
+LTb
+1.000 UL
+LTb
+17060 4237 M
+-57 -6 V
+5654 3482 M
+58 6 V
+stroke
+5435 3443 M
+[ [(Helvetica) 400.0 0.0 true true 0 (90)]
+] -133.3 MRshow
+1.000 UL
+LTb
+1.000 UL
+LTb
+16362 4608 M
+-58 -7 V
+4943 3859 M
+57 6 V
+stroke
+4723 3821 M
+[ [(Helvetica) 400.0 0.0 true true 0 (120)]
+] -133.3 MRshow
+1.000 UL
+LTb
+1.000 UL
+LTb
+15650 4985 M
+-57 -6 V
+4244 4230 M
+58 6 V
+stroke
+4025 4191 M
+[ [(Helvetica) 400.0 0.0 true true 0 (150)]
+] -133.3 MRshow
+1.000 UL
+LTb
+1.000 UL
+LTb
+14952 5355 M
+-58 -6 V
+3546 4600 M
+57 6 V
+stroke
+3327 4562 M
+[ [(Helvetica) 400.0 0.0 true true 0 (180)]
+] -133.3 MRshow
+1.000 UL
+LTb
+1.000 UL
+LTb
+14253 5726 M
+-57 -6 V
+3062 4856 M
+63 0 V
+stroke
+2936 4856 M
+[ [(Helvetica) 400.0 0.0 true true 0 ( 0)]
+] -133.3 MRshow
+1.000 UL
+LTb
+1.000 UL
+LTb
+3062 5658 M
+63 0 V
+stroke
+2936 5658 M
+[ [(Helvetica) 400.0 0.0 true true 0 ( 5)]
+] -133.3 MRshow
+1.000 UL
+LTb
+1.000 UL
+LTb
+3062 6459 M
+63 0 V
+stroke
+2936 6459 M
+[ [(Helvetica) 400.0 0.0 true true 0 ( 10)]
+] -133.3 MRshow
+1.000 UL
+LTb
+1.000 UL
+LTb
+3062 7260 M
+63 0 V
+stroke
+2936 7260 M
+[ [(Helvetica) 400.0 0.0 true true 0 ( 15)]
+] -133.3 MRshow
+1.000 UL
+LTb
+1.000 UL
+LTb
+3062 8060 M
+63 0 V
+stroke
+2936 8060 M
+[ [(Helvetica) 400.0 0.0 true true 0 ( 20)]
+] -133.3 MRshow
+1.000 UL
+LTb
+1.000 UL
+LTb
+3062 8862 M
+63 0 V
+stroke
+2936 8862 M
+[ [(Helvetica) 400.0 0.0 true true 0 ( 25)]
+] -133.3 MRshow
+1.000 UL
+LTb
+1.000 UL
+LTb
+3062 9663 M
+63 0 V
+stroke
+2936 9663 M
+[ [(Helvetica) 400.0 0.0 true true 0 ( 30)]
+] -133.3 MRshow
+1.000 UL
+LTb
+1.000 UL
+LTb
+3062 10464 M
+63 0 V
+stroke
+2936 10464 M
+[ [(Helvetica) 400.0 0.0 true true 0 ( 35)]
+] -133.3 MRshow
+1.000 UL
+LTb
+1.000 UL
+LTb
+3062 11265 M
+63 0 V
+stroke
+2936 11265 M
+[ [(Helvetica) 400.0 0.0 true true 0 ( 40)]
+] -133.3 MRshow
+1.000 UL
+LTb
+1.000 UL
+LTb
+3062 12066 M
+63 0 V
+stroke
+2936 12066 M
+[ [(Helvetica) 400.0 0.0 true true 0 ( 45)]
+] -133.3 MRshow
+1.000 UL
+LTb
+LCb setrgbcolor
+1105 8179 M
+currentpoint gsave translate 90 rotate 0 0 moveto
+[ [(Helvetica) 600.0 0.0 true true 0 (V)]
+[(Helvetica) 480.0 -180.0 true true 0 (T)]
+[(Helvetica) 600.0 0.0 true true 0 ( [kJ mol)]
+[(Helvetica) 480.0 300.0 true true 0 (-1)]
+[(Helvetica) 600.0 0.0 true true 0 (])]
+] -200.0 MCshow
+grestore
+LTb
+1.000 UP
+% Begin plot #1
+LCb setrgbcolor
+17035 13856 M
+[ [(Helvetica) 400.0 0.0 true true 0 (CBT)]
+] -133.3 MRshow
+1.000 UL
+LT0
+LC2 setrgbcolor
+LC2 setrgbcolor
+17275 13856 M
+1023 0 V
+7829 2327 M
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+7707 2392 M
+108 11 V
+108 11 V
+stroke 7923 2414 M
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+7585 2456 M
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+stroke 8234 2525 M
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+7462 2522 M
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+stroke 8544 2636 M
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+7340 2592 M
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+stroke 8854 2751 M
+109 12 V
+108 11 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 11 V
+108 11 V
+108 11 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 11 V
+108 11 V
+108 11 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 12 V
+108 11 V
+108 12 V
+108 12 V
+109 11 V
+108 12 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+7218 2677 M
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 11 V
+109 11 V
+108 11 V
+108 11 V
+stroke 9165 2880 M
+108 11 V
+108 10 V
+108 11 V
+109 10 V
+108 10 V
+108 10 V
+108 11 V
+108 10 V
+108 10 V
+109 10 V
+108 10 V
+108 10 V
+108 11 V
+108 10 V
+108 11 V
+109 10 V
+108 11 V
+108 11 V
+108 11 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 12 V
+108 12 V
+108 12 V
+108 12 V
+108 12 V
+108 13 V
+109 12 V
+108 13 V
+108 13 V
+108 12 V
+108 13 V
+108 12 V
+109 13 V
+108 12 V
+108 13 V
+108 12 V
+108 12 V
+108 12 V
+109 12 V
+108 12 V
+108 12 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+7096 2798 M
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 11 V
+108 10 V
+108 10 V
+108 10 V
+109 10 V
+108 9 V
+108 9 V
+108 8 V
+108 9 V
+stroke 9475 3031 M
+108 8 V
+109 7 V
+108 8 V
+108 7 V
+108 8 V
+108 7 V
+108 8 V
+109 8 V
+108 8 V
+108 8 V
+108 9 V
+108 9 V
+108 9 V
+109 10 V
+108 11 V
+108 10 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 12 V
+108 12 V
+108 12 V
+108 11 V
+108 12 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 11 V
+109 11 V
+108 11 V
+108 10 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 12 V
+108 12 V
+108 13 V
+108 14 V
+109 13 V
+108 14 V
+108 15 V
+108 14 V
+108 15 V
+108 15 V
+109 16 V
+108 15 V
+108 15 V
+108 15 V
+108 15 V
+108 15 V
+109 15 V
+108 14 V
+108 14 V
+108 13 V
+108 13 V
+108 13 V
+109 13 V
+108 12 V
+108 12 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+6973 2984 M
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 11 V
+109 10 V
+108 10 V
+108 9 V
+108 9 V
+108 8 V
+108 7 V
+109 6 V
+108 5 V
+108 4 V
+108 4 V
+108 2 V
+108 3 V
+109 2 V
+108 1 V
+stroke 9786 3200 M
+108 2 V
+108 2 V
+108 2 V
+108 2 V
+109 4 V
+108 3 V
+108 5 V
+108 6 V
+108 6 V
+108 8 V
+109 9 V
+108 9 V
+108 11 V
+108 11 V
+108 12 V
+108 12 V
+109 13 V
+108 12 V
+108 13 V
+108 13 V
+108 12 V
+108 12 V
+109 12 V
+108 11 V
+108 11 V
+108 11 V
+108 10 V
+108 10 V
+109 10 V
+108 10 V
+108 11 V
+108 10 V
+108 11 V
+108 12 V
+109 12 V
+108 13 V
+108 14 V
+108 15 V
+108 16 V
+108 17 V
+109 18 V
+108 19 V
+108 20 V
+108 20 V
+108 21 V
+108 21 V
+109 21 V
+108 21 V
+108 21 V
+108 20 V
+108 20 V
+108 19 V
+109 19 V
+108 17 V
+108 17 V
+108 16 V
+108 15 V
+108 14 V
+109 14 V
+108 13 V
+108 12 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+6851 3275 M
+108 12 V
+108 11 V
+109 11 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 12 V
+108 11 V
+108 11 V
+108 10 V
+108 9 V
+108 8 V
+109 7 V
+108 6 V
+108 3 V
+108 2 V
+108 0 V
+108 -2 V
+109 -3 V
+108 -5 V
+108 -7 V
+108 -7 V
+108 -9 V
+108 -9 V
+109 -9 V
+108 -9 V
+108 -8 V
+108 -8 V
+stroke 10096 3369 M
+108 -6 V
+108 -4 V
+109 -3 V
+108 0 V
+108 1 V
+108 4 V
+108 5 V
+108 8 V
+109 9 V
+108 11 V
+108 12 V
+108 14 V
+108 13 V
+108 15 V
+109 14 V
+108 14 V
+108 14 V
+108 13 V
+108 12 V
+108 11 V
+109 11 V
+108 10 V
+108 9 V
+108 8 V
+108 9 V
+108 8 V
+109 9 V
+108 10 V
+108 10 V
+108 12 V
+108 13 V
+108 16 V
+109 17 V
+108 19 V
+108 21 V
+108 24 V
+108 25 V
+108 27 V
+109 29 V
+108 30 V
+108 31 V
+108 32 V
+108 31 V
+108 32 V
+109 32 V
+108 30 V
+108 29 V
+108 28 V
+108 26 V
+108 25 V
+109 23 V
+108 21 V
+108 19 V
+108 17 V
+108 16 V
+108 14 V
+109 14 V
+108 12 V
+108 12 V
+108 12 V
+108 11 V
+108 11 V
+109 11 V
+108 11 V
+108 12 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+6729 3708 M
+108 12 V
+108 11 V
+108 11 V
+109 11 V
+108 11 V
+108 11 V
+108 12 V
+108 12 V
+108 12 V
+109 11 V
+108 10 V
+108 10 V
+108 7 V
+108 6 V
+108 3 V
+109 0 V
+108 -3 V
+108 -6 V
+108 -10 V
+108 -13 V
+108 -16 V
+109 -20 V
+108 -22 V
+108 -24 V
+108 -25 V
+108 -27 V
+108 -26 V
+109 -27 V
+108 -25 V
+108 -23 V
+108 -21 V
+108 -18 V
+108 -15 V
+109 -11 V
+stroke 10407 3526 M
+108 -7 V
+108 -3 V
+108 1 V
+108 4 V
+108 8 V
+109 10 V
+108 13 V
+108 15 V
+108 16 V
+108 17 V
+108 17 V
+109 16 V
+108 16 V
+108 14 V
+108 13 V
+108 11 V
+108 10 V
+109 9 V
+108 7 V
+108 6 V
+108 6 V
+108 6 V
+108 7 V
+109 8 V
+108 9 V
+108 13 V
+108 15 V
+108 18 V
+108 22 V
+109 26 V
+108 30 V
+108 33 V
+108 38 V
+108 41 V
+108 43 V
+109 46 V
+108 48 V
+108 49 V
+108 50 V
+108 49 V
+108 48 V
+109 47 V
+108 45 V
+108 42 V
+108 39 V
+108 36 V
+108 32 V
+109 29 V
+108 26 V
+108 22 V
+108 20 V
+108 17 V
+108 16 V
+109 13 V
+108 12 V
+108 12 V
+108 11 V
+108 11 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 12 V
+108 11 V
+6607 4311 M
+108 12 V
+108 11 V
+108 11 V
+108 10 V
+108 11 V
+109 12 V
+108 12 V
+108 12 V
+108 12 V
+108 11 V
+108 10 V
+109 8 V
+108 5 V
+108 1 V
+108 -2 V
+108 -8 V
+108 -12 V
+109 -18 V
+108 -24 V
+108 -30 V
+108 -35 V
+108 -40 V
+108 -44 V
+109 -48 V
+108 -51 V
+108 -52 V
+108 -52 V
+108 -52 V
+108 -50 V
+109 -46 V
+108 -43 V
+108 -38 V
+108 -32 V
+108 -26 V
+108 -20 V
+109 -13 V
+108 -6 V
+108 -1 V
+stroke 10717 3706 M
+108 6 V
+108 10 V
+108 14 V
+109 17 V
+108 19 V
+108 20 V
+108 21 V
+108 20 V
+108 18 V
+109 17 V
+108 14 V
+108 11 V
+108 9 V
+108 6 V
+108 4 V
+109 3 V
+108 2 V
+108 3 V
+108 3 V
+108 6 V
+108 9 V
+109 12 V
+108 18 V
+108 23 V
+108 29 V
+108 36 V
+108 42 V
+109 49 V
+108 55 V
+108 61 V
+108 65 V
+108 70 V
+108 72 V
+109 75 V
+108 75 V
+108 75 V
+108 73 V
+108 70 V
+108 68 V
+109 62 V
+108 58 V
+108 52 V
+108 47 V
+108 41 V
+108 35 V
+109 30 V
+108 26 V
+108 21 V
+108 18 V
+108 15 V
+108 13 V
+109 11 V
+108 11 V
+108 11 V
+108 10 V
+108 12 V
+108 11 V
+109 12 V
+108 12 V
+108 12 V
+108 11 V
+6484 5092 M
+109 11 V
+108 11 V
+108 10 V
+108 11 V
+108 11 V
+108 11 V
+109 13 V
+108 12 V
+108 12 V
+108 11 V
+108 10 V
+108 5 V
+109 2 V
+108 -4 V
+108 -10 V
+108 -17 V
+108 -26 V
+108 -34 V
+109 -43 V
+108 -51 V
+108 -60 V
+108 -67 V
+108 -75 V
+108 -79 V
+109 -84 V
+108 -86 V
+108 -86 V
+108 -86 V
+108 -83 V
+108 -77 V
+109 -72 V
+108 -64 V
+108 -56 V
+108 -46 V
+108 -36 V
+108 -26 V
+109 -16 V
+108 -6 V
+108 1 V
+108 10 V
+108 15 V
+108 20 V
+stroke 11027 3978 M
+109 24 V
+108 25 V
+108 25 V
+108 25 V
+108 22 V
+108 19 V
+109 15 V
+108 12 V
+108 7 V
+108 4 V
+108 0 V
+108 -1 V
+109 -3 V
+108 -3 V
+108 0 V
+108 2 V
+108 8 V
+108 13 V
+109 21 V
+108 30 V
+108 38 V
+108 49 V
+108 59 V
+108 69 V
+109 78 V
+108 87 V
+108 94 V
+108 101 V
+108 105 V
+108 108 V
+109 110 V
+108 108 V
+108 107 V
+108 102 V
+108 97 V
+108 90 V
+109 83 V
+108 74 V
+108 66 V
+108 56 V
+108 49 V
+108 40 V
+109 33 V
+108 26 V
+108 21 V
+108 17 V
+108 14 V
+108 12 V
+109 10 V
+108 10 V
+108 11 V
+108 11 V
+108 12 V
+108 12 V
+109 12 V
+108 13 V
+108 10 V
+6362 6026 M
+108 13 V
+108 10 V
+109 10 V
+108 10 V
+108 10 V
+108 12 V
+108 13 V
+108 13 V
+109 12 V
+108 11 V
+108 8 V
+108 4 V
+108 -3 V
+108 -10 V
+109 -19 V
+108 -30 V
+108 -41 V
+108 -53 V
+108 -66 V
+108 -78 V
+109 -90 V
+108 -101 V
+108 -110 V
+108 -118 V
+108 -124 V
+108 -128 V
+109 -128 V
+108 -127 V
+108 -122 V
+108 -116 V
+108 -107 V
+108 -96 V
+109 -83 V
+108 -71 V
+108 -56 V
+108 -42 V
+108 -27 V
+108 -15 V
+109 -2 V
+108 8 V
+108 17 V
+108 24 V
+108 29 V
+108 31 V
+109 31 V
+108 30 V
+stroke 11338 4359 M
+108 27 V
+108 22 V
+108 18 V
+108 11 V
+109 6 V
+108 0 V
+108 -4 V
+108 -7 V
+108 -9 V
+108 -8 V
+109 -6 V
+108 -1 V
+108 5 V
+108 15 V
+108 25 V
+108 37 V
+109 50 V
+108 65 V
+108 79 V
+108 93 V
+108 106 V
+108 119 V
+109 130 V
+108 138 V
+108 146 V
+108 149 V
+108 151 V
+108 150 V
+109 147 V
+108 141 V
+108 133 V
+108 123 V
+108 113 V
+108 101 V
+109 88 V
+108 76 V
+108 64 V
+108 53 V
+108 42 V
+108 33 V
+109 25 V
+108 19 V
+108 15 V
+108 12 V
+108 10 V
+108 9 V
+109 11 V
+108 10 V
+108 12 V
+108 13 V
+108 13 V
+109 13 V
+108 10 V
+6240 7061 M
+108 12 V
+108 10 V
+108 10 V
+109 9 V
+108 11 V
+108 12 V
+108 13 V
+108 13 V
+108 13 V
+109 11 V
+108 7 V
+108 1 V
+108 -7 V
+108 -17 V
+108 -30 V
+109 -43 V
+108 -59 V
+108 -74 V
+108 -92 V
+108 -108 V
+108 -123 V
+109 -138 V
+108 -151 V
+108 -161 V
+108 -169 V
+108 -174 V
+108 -174 V
+109 -173 V
+108 -166 V
+108 -158 V
+108 -146 V
+108 -132 V
+108 -116 V
+109 -97 V
+108 -79 V
+108 -59 V
+108 -41 V
+108 -23 V
+108 -7 V
+109 8 V
+108 19 V
+108 28 V
+108 34 V
+108 38 V
+108 38 V
+109 36 V
+108 32 V
+108 26 V
+108 19 V
+108 11 V
+stroke 11648 4755 M
+108 4 V
+109 -3 V
+108 -10 V
+108 -13 V
+108 -15 V
+108 -15 V
+108 -12 V
+109 -5 V
+108 4 V
+108 15 V
+108 30 V
+108 45 V
+108 64 V
+109 82 V
+108 101 V
+108 121 V
+108 138 V
+108 154 V
+108 169 V
+109 181 V
+108 189 V
+108 195 V
+108 198 V
+108 196 V
+108 192 V
+109 184 V
+108 173 V
+108 161 V
+108 146 V
+108 131 V
+108 114 V
+109 98 V
+108 81 V
+108 66 V
+108 52 V
+108 40 V
+108 30 V
+109 22 V
+108 16 V
+108 12 V
+108 9 V
+108 9 V
+108 10 V
+109 11 V
+108 12 V
+108 13 V
+108 14 V
+108 13 V
+108 10 V
+6118 8112 M
+108 13 V
+108 10 V
+108 8 V
+108 9 V
+108 11 V
+109 12 V
+108 13 V
+108 15 V
+108 13 V
+108 11 V
+108 5 V
+109 -1 V
+108 -12 V
+108 -25 V
+108 -40 V
+108 -57 V
+108 -76 V
+109 -96 V
+108 -118 V
+108 -138 V
+108 -158 V
+108 -176 V
+108 -192 V
+109 -205 V
+108 -214 V
+108 -221 V
+108 -221 V
+108 -219 V
+108 -212 V
+109 -201 V
+108 -186 V
+108 -168 V
+108 -148 V
+108 -125 V
+108 -101 V
+109 -77 V
+108 -54 V
+108 -32 V
+108 -11 V
+108 6 V
+108 21 V
+109 32 V
+108 40 V
+108 44 V
+108 45 V
+108 43 V
+108 37 V
+109 30 V
+108 21 V
+108 11 V
+108 2 V
+108 -7 V
+108 -15 V
+109 -19 V
+stroke 11959 5039 M
+108 -23 V
+108 -21 V
+108 -17 V
+108 -10 V
+108 2 V
+109 16 V
+108 34 V
+108 55 V
+108 77 V
+108 100 V
+108 124 V
+109 148 V
+108 170 V
+108 191 V
+108 209 V
+108 223 V
+108 235 V
+109 241 V
+108 245 V
+108 243 V
+108 237 V
+108 228 V
+108 215 V
+109 198 V
+108 181 V
+108 161 V
+108 140 V
+108 119 V
+108 99 V
+109 80 V
+108 63 V
+108 47 V
+108 35 V
+108 24 V
+108 17 V
+109 12 V
+108 9 V
+108 9 V
+108 9 V
+108 11 V
+108 12 V
+109 14 V
+108 14 V
+108 13 V
+108 10 V
+5995 9079 M
+109 13 V
+108 9 V
+108 8 V
+108 9 V
+108 10 V
+108 12 V
+109 14 V
+108 15 V
+108 14 V
+108 10 V
+108 5 V
+108 -4 V
+109 -16 V
+108 -31 V
+108 -50 V
+108 -70 V
+108 -92 V
+108 -116 V
+109 -142 V
+108 -165 V
+108 -189 V
+108 -211 V
+108 -230 V
+108 -245 V
+109 -256 V
+108 -263 V
+108 -265 V
+108 -261 V
+108 -254 V
+108 -240 V
+109 -222 V
+108 -202 V
+108 -176 V
+108 -151 V
+108 -122 V
+108 -94 V
+109 -66 V
+108 -39 V
+108 -16 V
+108 5 V
+108 23 V
+108 36 V
+109 46 V
+108 50 V
+108 51 V
+108 48 V
+108 42 V
+108 33 V
+109 23 V
+108 11 V
+108 0 V
+108 -10 V
+108 -19 V
+108 -26 V
+109 -28 V
+108 -27 V
+108 -23 V
+108 -13 V
+stroke 12269 5232 M
+108 0 V
+108 17 V
+109 38 V
+108 63 V
+108 88 V
+108 117 V
+108 145 V
+108 173 V
+109 199 V
+108 224 V
+108 246 V
+108 263 V
+108 276 V
+108 284 V
+109 287 V
+108 286 V
+108 279 V
+108 268 V
+108 252 V
+108 234 V
+109 212 V
+108 188 V
+108 164 V
+108 139 V
+108 115 V
+108 93 V
+109 72 V
+108 54 V
+108 39 V
+108 27 V
+108 18 V
+108 12 V
+109 9 V
+108 8 V
+108 9 V
+108 10 V
+108 13 V
+108 14 V
+109 14 V
+108 14 V
+108 10 V
+5873 9858 M
+108 13 V
+108 9 V
+109 7 V
+108 8 V
+108 11 V
+108 12 V
+108 14 V
+108 15 V
+109 14 V
+108 11 V
+108 4 V
+108 -6 V
+108 -20 V
+108 -36 V
+109 -57 V
+108 -80 V
+108 -105 V
+108 -132 V
+108 -160 V
+108 -188 V
+109 -214 V
+108 -238 V
+108 -259 V
+108 -277 V
+108 -289 V
+108 -297 V
+109 -299 V
+108 -295 V
+108 -286 V
+108 -271 V
+108 -252 V
+108 -227 V
+109 -201 V
+108 -170 V
+108 -138 V
+108 -107 V
+108 -76 V
+108 -46 V
+109 -19 V
+108 5 V
+108 24 V
+108 40 V
+108 49 V
+108 55 V
+109 56 V
+108 53 V
+108 45 V
+108 36 V
+108 24 V
+108 12 V
+109 -2 V
+108 -13 V
+108 -23 V
+108 -30 V
+108 -33 V
+108 -32 V
+109 -27 V
+108 -16 V
+108 -2 V
+108 18 V
+108 42 V
+108 69 V
+stroke 12579 5581 M
+109 98 V
+108 129 V
+108 162 V
+108 193 V
+108 223 V
+108 250 V
+109 274 V
+108 294 V
+108 309 V
+108 318 V
+108 321 V
+108 320 V
+109 312 V
+108 299 V
+108 283 V
+108 260 V
+108 237 V
+108 210 V
+109 183 V
+108 155 V
+108 128 V
+108 103 V
+108 79 V
+108 59 V
+109 43 V
+108 28 V
+108 19 V
+108 13 V
+108 8 V
+108 8 V
+109 8 V
+108 11 V
+108 12 V
+108 15 V
+108 15 V
+108 14 V
+109 9 V
+5751 10360 M
+108 14 V
+108 8 V
+108 8 V
+109 8 V
+108 10 V
+108 12 V
+108 15 V
+108 15 V
+108 14 V
+109 11 V
+108 3 V
+108 -7 V
+108 -22 V
+108 -39 V
+108 -62 V
+109 -86 V
+108 -113 V
+108 -142 V
+108 -171 V
+108 -201 V
+108 -229 V
+109 -255 V
+108 -278 V
+108 -296 V
+108 -310 V
+108 -317 V
+108 -320 V
+109 -316 V
+108 -306 V
+108 -290 V
+108 -269 V
+108 -244 V
+108 -215 V
+109 -182 V
+108 -149 V
+108 -115 V
+108 -81 V
+108 -50 V
+108 -21 V
+109 4 V
+108 26 V
+108 41 V
+108 52 V
+108 58 V
+108 59 V
+109 55 V
+108 48 V
+108 38 V
+108 25 V
+108 11 V
+108 -2 V
+109 -15 V
+108 -25 V
+108 -33 V
+108 -36 V
+108 -35 V
+108 -30 V
+109 -18 V
+108 -2 V
+108 18 V
+108 44 V
+108 72 V
+108 105 V
+109 137 V
+108 172 V
+108 205 V
+stroke 12890 6366 M
+108 237 V
+108 266 V
+108 292 V
+109 313 V
+108 329 V
+108 339 V
+108 342 V
+108 341 V
+108 332 V
+109 319 V
+108 300 V
+108 278 V
+108 252 V
+108 223 V
+108 195 V
+109 164 V
+108 136 V
+108 109 V
+108 84 V
+108 62 V
+108 45 V
+109 30 V
+108 19 V
+108 12 V
+108 9 V
+108 7 V
+108 9 V
+109 10 V
+108 13 V
+108 14 V
+108 16 V
+108 14 V
+108 9 V
+5629 10532 M
+108 13 V
+108 9 V
+108 7 V
+108 8 V
+108 10 V
+109 12 V
+108 15 V
+108 15 V
+108 15 V
+108 10 V
+108 3 V
+109 -7 V
+108 -22 V
+108 -41 V
+108 -62 V
+108 -88 V
+108 -115 V
+109 -144 V
+108 -175 V
+108 -204 V
+108 -233 V
+108 -259 V
+108 -282 V
+109 -300 V
+108 -315 V
+108 -323 V
+108 -325 V
+108 -321 V
+108 -310 V
+109 -295 V
+108 -274 V
+108 -247 V
+108 -218 V
+108 -186 V
+108 -151 V
+109 -117 V
+108 -82 V
+108 -51 V
+108 -22 V
+108 5 V
+108 25 V
+109 41 V
+108 53 V
+108 59 V
+108 60 V
+108 56 V
+108 48 V
+109 38 V
+108 25 V
+108 12 V
+108 -3 V
+108 -15 V
+108 -26 V
+109 -33 V
+108 -37 V
+108 -36 V
+108 -30 V
+108 -19 V
+108 -2 V
+109 18 V
+108 44 V
+108 74 V
+108 106 V
+108 139 V
+108 174 V
+109 208 V
+108 241 V
+108 270 V
+108 296 V
+108 318 V
+stroke 13200 7589 M
+108 333 V
+109 344 V
+108 348 V
+108 345 V
+108 338 V
+108 323 V
+108 305 V
+109 282 V
+108 255 V
+108 227 V
+108 197 V
+108 167 V
+108 138 V
+109 110 V
+108 86 V
+108 63 V
+108 45 V
+108 30 V
+108 19 V
+109 13 V
+108 8 V
+108 7 V
+108 9 V
+108 10 V
+108 13 V
+109 15 V
+108 15 V
+108 14 V
+108 9 V
+5506 10357 M
+109 13 V
+108 9 V
+108 8 V
+108 8 V
+108 10 V
+108 12 V
+109 15 V
+108 15 V
+108 14 V
+108 11 V
+108 3 V
+108 -7 V
+109 -21 V
+108 -38 V
+108 -60 V
+108 -84 V
+108 -111 V
+108 -139 V
+109 -168 V
+108 -197 V
+108 -225 V
+108 -250 V
+108 -272 V
+108 -290 V
+109 -303 V
+108 -312 V
+108 -313 V
+108 -310 V
+108 -300 V
+108 -284 V
+109 -264 V
+108 -239 V
+108 -210 V
+108 -178 V
+108 -146 V
+108 -113 V
+109 -79 V
+108 -49 V
+108 -20 V
+108 4 V
+108 25 V
+108 41 V
+109 51 V
+108 57 V
+108 58 V
+108 55 V
+108 47 V
+108 37 V
+109 25 V
+108 11 V
+108 -2 V
+108 -14 V
+108 -25 V
+108 -32 V
+109 -35 V
+108 -34 V
+108 -29 V
+108 -18 V
+108 -2 V
+108 19 V
+109 43 V
+108 71 V
+108 102 V
+108 136 V
+108 168 V
+108 202 V
+109 232 V
+108 262 V
+108 286 V
+108 308 V
+108 322 V
+108 333 V
+109 336 V
+108 334 V
+stroke 13511 8867 M
+108 326 V
+108 313 V
+108 295 V
+108 273 V
+109 247 V
+108 219 V
+108 191 V
+108 162 V
+108 133 V
+108 107 V
+109 83 V
+108 61 V
+108 44 V
+108 30 V
+108 19 V
+108 12 V
+109 9 V
+108 7 V
+108 9 V
+108 10 V
+108 13 V
+108 14 V
+109 16 V
+108 13 V
+108 10 V
+5384 9868 M
+108 13 V
+108 9 V
+109 8 V
+108 9 V
+108 10 V
+108 12 V
+108 14 V
+108 15 V
+109 14 V
+108 11 V
+108 4 V
+108 -6 V
+108 -18 V
+108 -35 V
+109 -54 V
+108 -76 V
+108 -101 V
+108 -127 V
+108 -153 V
+108 -180 V
+109 -205 V
+108 -229 V
+108 -249 V
+108 -265 V
+108 -278 V
+108 -285 V
+109 -287 V
+108 -284 V
+108 -274 V
+108 -261 V
+108 -241 V
+108 -219 V
+109 -192 V
+108 -163 V
+108 -133 V
+108 -102 V
+108 -72 V
+108 -44 V
+109 -18 V
+108 5 V
+108 24 V
+108 38 V
+108 48 V
+108 54 V
+109 54 V
+108 51 V
+108 44 V
+108 35 V
+108 24 V
+108 11 V
+109 -1 V
+108 -12 V
+108 -22 V
+108 -28 V
+108 -31 V
+108 -31 V
+109 -25 V
+108 -16 V
+108 -1 V
+108 18 V
+108 41 V
+108 66 V
+109 95 V
+108 125 V
+108 156 V
+108 186 V
+108 215 V
+108 241 V
+109 264 V
+108 283 V
+108 297 V
+108 306 V
+108 310 V
+108 308 V
+109 301 V
+108 288 V
+108 272 V
+108 251 V
+stroke 13821 9680 M
+108 228 V
+108 203 V
+109 176 V
+108 149 V
+108 124 V
+108 99 V
+108 77 V
+108 57 V
+109 41 V
+108 28 V
+108 19 V
+108 12 V
+108 9 V
+108 8 V
+109 8 V
+108 11 V
+108 12 V
+108 15 V
+108 15 V
+108 13 V
+109 10 V
+5262 9135 M
+108 13 V
+108 9 V
+108 8 V
+109 9 V
+108 10 V
+108 12 V
+108 14 V
+108 15 V
+108 13 V
+109 11 V
+108 5 V
+108 -3 V
+108 -15 V
+108 -28 V
+108 -46 V
+109 -65 V
+108 -87 V
+108 -109 V
+108 -132 V
+108 -156 V
+108 -177 V
+109 -198 V
+108 -216 V
+108 -230 V
+108 -241 V
+108 -247 V
+108 -249 V
+109 -246 V
+108 -238 V
+108 -225 V
+108 -209 V
+108 -189 V
+108 -167 V
+109 -140 V
+108 -115 V
+108 -88 V
+108 -61 V
+108 -37 V
+108 -14 V
+109 6 V
+108 22 V
+108 35 V
+108 43 V
+108 48 V
+108 49 V
+109 46 V
+108 40 V
+108 32 V
+108 22 V
+108 11 V
+108 1 V
+109 -9 V
+108 -18 V
+108 -23 V
+108 -26 V
+108 -25 V
+108 -21 V
+109 -12 V
+108 1 V
+108 17 V
+108 37 V
+108 59 V
+108 84 V
+109 111 V
+108 137 V
+108 164 V
+108 189 V
+108 211 V
+108 232 V
+109 249 V
+108 260 V
+108 269 V
+108 271 V
+108 270 V
+108 264 V
+109 253 V
+108 238 V
+108 221 V
+108 200 V
+108 179 V
+108 155 V
+109 132 V
+stroke 14132 9750 M
+108 109 V
+108 88 V
+108 68 V
+108 52 V
+108 37 V
+109 26 V
+108 17 V
+108 13 V
+108 9 V
+108 8 V
+108 9 V
+109 10 V
+108 13 V
+108 14 V
+108 14 V
+108 14 V
+108 10 V
+5140 8253 M
+108 12 V
+108 10 V
+108 9 V
+108 9 V
+108 10 V
+109 12 V
+108 14 V
+108 14 V
+108 13 V
+108 11 V
+108 6 V
+109 -1 V
+108 -10 V
+108 -22 V
+108 -35 V
+108 -52 V
+108 -70 V
+109 -88 V
+108 -107 V
+108 -127 V
+108 -144 V
+108 -162 V
+108 -176 V
+109 -188 V
+108 -197 V
+108 -203 V
+108 -203 V
+108 -201 V
+108 -195 V
+109 -184 V
+108 -171 V
+108 -154 V
+108 -135 V
+108 -115 V
+108 -92 V
+109 -71 V
+108 -49 V
+108 -28 V
+108 -10 V
+108 7 V
+108 20 V
+109 31 V
+108 38 V
+108 41 V
+108 43 V
+108 40 V
+108 35 V
+109 28 V
+108 20 V
+108 12 V
+108 2 V
+108 -5 V
+108 -13 V
+109 -17 V
+108 -20 V
+108 -18 V
+108 -16 V
+108 -7 V
+108 2 V
+109 16 V
+108 32 V
+108 51 V
+108 72 V
+108 93 V
+108 116 V
+109 137 V
+108 158 V
+108 177 V
+108 193 V
+108 207 V
+108 218 V
+109 223 V
+108 227 V
+108 225 V
+108 220 V
+108 211 V
+108 198 V
+109 185 V
+108 167 V
+108 149 V
+108 131 V
+108 110 V
+108 93 V
+109 74 V
+108 59 V
+108 44 V
+stroke 14442 9192 M
+108 33 V
+108 24 V
+108 16 V
+109 12 V
+108 10 V
+108 8 V
+108 10 V
+108 10 V
+108 13 V
+109 13 V
+108 14 V
+108 13 V
+108 10 V
+5017 7326 M
+109 12 V
+108 10 V
+108 10 V
+108 9 V
+108 11 V
+108 12 V
+109 13 V
+108 13 V
+108 13 V
+108 11 V
+108 7 V
+108 2 V
+109 -5 V
+108 -14 V
+108 -26 V
+108 -38 V
+108 -51 V
+108 -67 V
+109 -81 V
+108 -96 V
+108 -110 V
+108 -124 V
+108 -135 V
+108 -144 V
+109 -151 V
+108 -155 V
+108 -156 V
+108 -155 V
+108 -149 V
+108 -141 V
+109 -131 V
+108 -117 V
+108 -103 V
+108 -87 V
+108 -70 V
+108 -52 V
+109 -36 V
+108 -19 V
+108 -5 V
+108 7 V
+108 19 V
+108 26 V
+109 32 V
+108 35 V
+108 36 V
+108 33 V
+108 30 V
+108 25 V
+109 18 V
+108 11 V
+108 5 V
+108 -2 V
+108 -7 V
+108 -11 V
+109 -13 V
+108 -12 V
+108 -9 V
+108 -4 V
+108 5 V
+108 15 V
+109 27 V
+108 43 V
+108 58 V
+108 75 V
+108 93 V
+108 109 V
+109 126 V
+108 140 V
+108 153 V
+108 164 V
+108 172 V
+108 177 V
+109 179 V
+108 178 V
+108 174 V
+108 167 V
+108 158 V
+108 146 V
+109 133 V
+108 119 V
+108 104 V
+108 89 V
+108 74 V
+108 61 V
+109 48 V
+108 37 V
+108 28 V
+108 21 V
+108 15 V
+108 12 V
+stroke 14752 8350 M
+109 10 V
+108 10 V
+108 9 V
+108 11 V
+108 12 V
+108 13 V
+109 14 V
+108 12 V
+108 11 V
+4895 6451 M
+108 12 V
+108 11 V
+109 10 V
+108 10 V
+108 11 V
+108 11 V
+108 13 V
+108 13 V
+109 12 V
+108 11 V
+108 9 V
+108 4 V
+108 -1 V
+108 -7 V
+109 -16 V
+108 -25 V
+108 -34 V
+108 -46 V
+108 -56 V
+108 -67 V
+109 -78 V
+108 -88 V
+108 -95 V
+108 -103 V
+108 -107 V
+108 -111 V
+109 -111 V
+108 -110 V
+108 -106 V
+108 -101 V
+108 -92 V
+108 -83 V
+109 -73 V
+108 -60 V
+108 -48 V
+108 -36 V
+108 -23 V
+108 -11 V
+109 0 V
+108 8 V
+108 17 V
+108 22 V
+108 27 V
+108 28 V
+109 29 V
+108 28 V
+108 25 V
+108 21 V
+108 16 V
+108 12 V
+109 6 V
+108 2 V
+108 -3 V
+108 -4 V
+108 -7 V
+108 -6 V
+109 -3 V
+108 0 V
+108 6 V
+108 14 V
+108 24 V
+108 34 V
+109 45 V
+108 59 V
+108 70 V
+108 84 V
+108 95 V
+108 105 V
+109 116 V
+108 123 V
+108 129 V
+108 132 V
+108 135 V
+108 133 V
+109 130 V
+108 125 V
+108 119 V
+108 110 V
+108 100 V
+108 91 V
+109 79 V
+108 68 V
+108 57 V
+108 48 V
+108 38 V
+108 30 V
+109 24 V
+108 18 V
+108 15 V
+108 11 V
+108 11 V
+108 10 V
+109 10 V
+108 11 V
+stroke 15063 7517 M
+108 12 V
+108 12 V
+108 13 V
+108 12 V
+109 11 V
+4773 5701 M
+108 12 V
+108 11 V
+108 10 V
+109 11 V
+108 11 V
+108 11 V
+108 13 V
+108 12 V
+108 12 V
+109 11 V
+108 10 V
+108 6 V
+108 3 V
+108 -1 V
+108 -7 V
+109 -14 V
+108 -20 V
+108 -27 V
+108 -35 V
+108 -42 V
+108 -50 V
+109 -56 V
+108 -62 V
+108 -66 V
+108 -70 V
+108 -72 V
+108 -72 V
+109 -72 V
+108 -68 V
+108 -65 V
+108 -60 V
+108 -53 V
+108 -46 V
+109 -38 V
+108 -29 V
+108 -20 V
+108 -12 V
+108 -4 V
+108 3 V
+109 9 V
+108 15 V
+108 19 V
+108 22 V
+108 23 V
+108 23 V
+109 23 V
+108 20 V
+108 18 V
+108 15 V
+108 12 V
+108 8 V
+109 4 V
+108 2 V
+108 1 V
+108 -1 V
+108 0 V
+108 1 V
+109 3 V
+108 8 V
+108 14 V
+108 19 V
+108 27 V
+108 35 V
+109 43 V
+108 52 V
+108 60 V
+108 69 V
+108 76 V
+108 82 V
+109 88 V
+108 91 V
+108 95 V
+108 95 V
+108 94 V
+108 93 V
+109 89 V
+108 85 V
+108 78 V
+108 73 V
+108 65 V
+108 57 V
+109 51 V
+108 42 V
+108 36 V
+108 30 V
+108 24 V
+108 20 V
+109 16 V
+108 14 V
+108 11 V
+108 11 V
+108 10 V
+108 11 V
+109 11 V
+108 12 V
+108 12 V
+108 12 V
+108 12 V
+stroke 15373 6816 M
+108 11 V
+4651 5119 M
+108 11 V
+108 11 V
+108 11 V
+108 11 V
+108 11 V
+109 11 V
+108 12 V
+108 12 V
+108 12 V
+108 11 V
+108 11 V
+109 8 V
+108 6 V
+108 3 V
+108 0 V
+108 -4 V
+108 -9 V
+109 -13 V
+108 -18 V
+108 -22 V
+108 -27 V
+108 -31 V
+108 -35 V
+109 -38 V
+108 -39 V
+108 -42 V
+108 -41 V
+108 -41 V
+108 -39 V
+109 -37 V
+108 -33 V
+108 -30 V
+108 -24 V
+108 -20 V
+108 -14 V
+109 -9 V
+108 -3 V
+108 1 V
+108 7 V
+108 10 V
+108 13 V
+109 16 V
+108 18 V
+108 19 V
+108 19 V
+108 19 V
+108 17 V
+109 15 V
+108 14 V
+108 11 V
+108 9 V
+108 8 V
+108 5 V
+109 4 V
+108 4 V
+108 4 V
+108 5 V
+108 7 V
+108 9 V
+109 12 V
+108 17 V
+108 21 V
+108 26 V
+108 32 V
+108 37 V
+109 42 V
+108 47 V
+108 52 V
+108 57 V
+108 59 V
+108 62 V
+109 64 V
+108 64 V
+108 64 V
+108 62 V
+108 61 V
+108 57 V
+109 54 V
+108 50 V
+108 45 V
+108 41 V
+108 36 V
+108 31 V
+109 27 V
+108 23 V
+108 19 V
+108 17 V
+108 14 V
+108 13 V
+109 11 V
+108 11 V
+108 11 V
+108 11 V
+108 11 V
+108 12 V
+109 12 V
+108 12 V
+108 11 V
+108 11 V
+4528 4713 M
+108 12 V
+109 11 V
+stroke 4745 4736 M
+108 11 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 12 V
+108 11 V
+108 11 V
+108 9 V
+109 9 V
+108 6 V
+108 5 V
+108 3 V
+108 0 V
+108 -3 V
+109 -6 V
+108 -8 V
+108 -10 V
+108 -13 V
+108 -16 V
+108 -16 V
+109 -19 V
+108 -18 V
+108 -19 V
+108 -19 V
+108 -18 V
+108 -16 V
+109 -14 V
+108 -12 V
+108 -10 V
+108 -6 V
+108 -3 V
+108 -1 V
+109 3 V
+108 6 V
+108 8 V
+108 11 V
+108 13 V
+108 14 V
+109 15 V
+108 16 V
+108 15 V
+108 16 V
+108 14 V
+108 14 V
+109 13 V
+108 11 V
+108 10 V
+108 9 V
+108 8 V
+108 8 V
+109 7 V
+108 7 V
+108 7 V
+108 9 V
+108 10 V
+108 12 V
+109 14 V
+108 17 V
+108 20 V
+108 23 V
+108 26 V
+108 30 V
+109 32 V
+108 34 V
+108 37 V
+108 40 V
+108 40 V
+108 41 V
+109 42 V
+108 42 V
+108 41 V
+108 39 V
+108 38 V
+108 36 V
+109 33 V
+108 31 V
+108 28 V
+108 26 V
+108 22 V
+108 21 V
+109 18 V
+108 16 V
+108 14 V
+108 13 V
+108 12 V
+108 12 V
+109 11 V
+108 11 V
+108 11 V
+108 11 V
+108 12 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+4406 4469 M
+108 12 V
+108 11 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+stroke 5055 4537 M
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 10 V
+108 10 V
+108 9 V
+109 8 V
+108 7 V
+108 5 V
+108 5 V
+108 2 V
+108 2 V
+109 0 V
+108 -1 V
+108 -3 V
+108 -3 V
+108 -4 V
+108 -4 V
+109 -4 V
+108 -4 V
+108 -4 V
+108 -3 V
+108 -1 V
+108 -1 V
+109 1 V
+108 2 V
+108 4 V
+108 5 V
+108 7 V
+108 9 V
+109 9 V
+108 11 V
+108 12 V
+108 13 V
+108 14 V
+108 13 V
+109 14 V
+108 13 V
+108 13 V
+108 13 V
+108 12 V
+108 11 V
+109 11 V
+108 10 V
+108 10 V
+108 9 V
+108 9 V
+108 9 V
+109 10 V
+108 10 V
+108 11 V
+108 11 V
+108 13 V
+108 14 V
+109 16 V
+108 17 V
+108 19 V
+108 21 V
+108 22 V
+108 23 V
+109 25 V
+108 26 V
+108 26 V
+108 27 V
+108 27 V
+108 27 V
+109 26 V
+108 26 V
+108 25 V
+108 24 V
+108 23 V
+108 21 V
+109 20 V
+108 19 V
+108 17 V
+108 16 V
+108 15 V
+108 13 V
+109 13 V
+108 13 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+4284 4353 M
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+stroke 5366 4467 M
+108 11 V
+108 11 V
+108 11 V
+108 10 V
+108 10 V
+109 9 V
+108 9 V
+108 8 V
+108 8 V
+108 7 V
+108 6 V
+109 6 V
+108 5 V
+108 5 V
+108 4 V
+108 5 V
+108 4 V
+109 5 V
+108 4 V
+108 5 V
+108 6 V
+108 6 V
+108 6 V
+109 8 V
+108 8 V
+108 8 V
+108 10 V
+108 10 V
+108 11 V
+109 11 V
+108 12 V
+108 12 V
+108 12 V
+108 12 V
+108 12 V
+109 13 V
+108 12 V
+108 12 V
+108 12 V
+108 11 V
+108 11 V
+109 11 V
+108 10 V
+108 11 V
+108 10 V
+108 11 V
+108 10 V
+109 11 V
+108 11 V
+108 11 V
+108 13 V
+108 12 V
+108 14 V
+109 14 V
+108 14 V
+108 16 V
+108 16 V
+108 17 V
+108 17 V
+109 18 V
+108 18 V
+108 18 V
+108 18 V
+108 19 V
+108 18 V
+109 18 V
+108 17 V
+108 17 V
+108 17 V
+108 15 V
+108 16 V
+109 14 V
+108 14 V
+108 14 V
+108 13 V
+108 12 V
+108 12 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+4162 4326 M
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+stroke 5676 4485 M
+108 11 V
+108 10 V
+108 11 V
+109 10 V
+108 10 V
+108 9 V
+108 10 V
+108 9 V
+108 9 V
+109 9 V
+108 9 V
+108 9 V
+108 9 V
+108 8 V
+108 9 V
+109 9 V
+108 9 V
+108 10 V
+108 9 V
+108 10 V
+108 10 V
+109 11 V
+108 10 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 12 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 11 V
+109 11 V
+108 11 V
+108 11 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 12 V
+108 12 V
+108 12 V
+108 13 V
+109 13 V
+108 13 V
+108 13 V
+108 14 V
+108 13 V
+108 14 V
+109 14 V
+108 14 V
+108 14 V
+108 14 V
+108 14 V
+108 14 V
+109 13 V
+108 13 V
+108 13 V
+108 13 V
+108 13 V
+108 12 V
+109 12 V
+108 12 V
+108 12 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+4039 4352 M
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 11 V
+stroke 5986 4556 M
+109 11 V
+108 11 V
+108 11 V
+108 10 V
+108 11 V
+108 11 V
+109 10 V
+108 11 V
+108 11 V
+108 10 V
+108 11 V
+108 11 V
+109 10 V
+108 11 V
+108 11 V
+108 11 V
+108 11 V
+108 11 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 12 V
+108 11 V
+108 12 V
+109 12 V
+108 12 V
+108 12 V
+108 12 V
+108 12 V
+108 12 V
+109 12 V
+108 13 V
+108 12 V
+108 12 V
+108 12 V
+108 12 V
+109 12 V
+108 12 V
+108 11 V
+108 12 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+3917 4405 M
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+stroke 6297 4654 M
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+3795 4467 M
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+stroke 6607 4762 M
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+3673 4531 M
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+stroke 6918 4872 M
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+3550 4596 M
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+stroke 7228 4983 M
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+3428 4661 M
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+stroke 7538 5093 M
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+3306 4726 M
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+stroke 7849 5203 M
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+3184 4793 M
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+stroke 8159 5314 M
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+3061 4869 M
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 11 V
+108 11 V
+109 11 V
+108 11 V
+108 11 V
+108 11 V
+108 11 V
+108 11 V
+109 10 V
+108 11 V
+108 11 V
+108 11 V
+108 10 V
+108 11 V
+109 11 V
+108 11 V
+108 11 V
+108 11 V
+108 11 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+stroke 8470 5427 M
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+108 12 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+109 12 V
+108 12 V
+108 12 V
+108 12 V
+108 12 V
+108 12 V
+109 12 V
+108 12 V
+108 12 V
+108 12 V
+108 11 V
+108 12 V
+109 12 V
+108 12 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 12 V
+108 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+109 11 V
+108 12 V
+108 11 V
+108 12 V
+108 11 V
+108 11 V
+109 12 V
+108 11 V
+108 11 V
+7829 2327 M
+-48 25 V
+-48 26 V
+-48 25 V
+-49 26 V
+-48 25 V
+-48 26 V
+-48 26 V
+-48 26 V
+-48 27 V
+-48 29 V
+-49 30 V
+-48 34 V
+-48 38 V
+-48 43 V
+-48 52 V
+-48 61 V
+-49 73 V
+-48 87 V
+-48 104 V
+-48 123 V
+-48 145 V
+-48 168 V
+-49 194 V
+-48 220 V
+-48 248 V
+-48 277 V
+-48 303 V
+-48 330 V
+-49 354 V
+-48 375 V
+-48 393 V
+-48 406 V
+-48 415 V
+-48 418 V
+-48 414 V
+-49 405 V
+-48 388 V
+-48 366 V
+-48 337 V
+-48 302 V
+-48 262 V
+-49 217 V
+-48 169 V
+-48 117 V
+-48 63 V
+-48 10 V
+-48 -45 V
+-49 -97 V
+-48 -147 V
+-48 -194 V
+-48 -235 V
+-48 -273 V
+-48 -304 V
+-49 -329 V
+stroke 5228 8905 M
+-48 -348 V
+-48 -360 V
+-48 -366 V
+-48 -366 V
+-48 -359 V
+-48 -348 V
+-49 -332 V
+-48 -311 V
+-48 -289 V
+-48 -263 V
+-48 -236 V
+-48 -208 V
+-49 -181 V
+-48 -153 V
+-48 -127 V
+-48 -103 V
+-48 -80 V
+-48 -61 V
+-49 -42 V
+-48 -28 V
+-48 -14 V
+-48 -4 V
+-48 5 V
+-48 11 V
+-48 16 V
+-49 19 V
+-48 22 V
+-48 24 V
+-48 24 V
+-48 26 V
+-48 25 V
+-49 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 26 V
+-48 25 V
+-49 26 V
+-48 25 V
+-48 26 V
+-48 26 V
+-48 26 V
+-48 28 V
+-49 29 V
+-48 32 V
+18538 3453 M
+-48 25 V
+-49 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 26 V
+-49 26 V
+-48 27 V
+-48 29 V
+-48 30 V
+-48 34 V
+-48 37 V
+-49 44 V
+-48 51 V
+-48 61 V
+-48 73 V
+-48 88 V
+-48 104 V
+-49 123 V
+-48 144 V
+-48 169 V
+-48 194 V
+-48 220 V
+-48 248 V
+-48 276 V
+-49 304 V
+-48 330 V
+-48 354 V
+-48 375 V
+-48 393 V
+-48 406 V
+-49 415 V
+-48 418 V
+-48 414 V
+-48 404 V
+-48 389 V
+-48 366 V
+-49 337 V
+-48 302 V
+-48 262 V
+-48 217 V
+-48 169 V
+-48 117 V
+-48 63 V
+-49 10 V
+-48 -45 V
+-48 -97 V
+-48 -147 V
+-48 -194 V
+-48 -236 V
+-49 -272 V
+-48 -304 V
+-48 -330 V
+-48 -347 V
+-48 -361 V
+-48 -365 V
+-49 -366 V
+stroke 15744 8591 M
+-48 -359 V
+-48 -348 V
+-48 -332 V
+-48 -311 V
+-48 -289 V
+-49 -263 V
+-48 -236 V
+-48 -209 V
+-48 -180 V
+-48 -153 V
+-48 -127 V
+-48 -103 V
+-49 -81 V
+-48 -60 V
+-48 -42 V
+-48 -28 V
+-48 -14 V
+-48 -4 V
+-49 5 V
+-48 11 V
+-48 16 V
+-48 19 V
+-48 22 V
+-48 24 V
+-49 24 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-49 26 V
+-48 25 V
+-48 26 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 26 V
+-49 26 V
+-48 28 V
+-48 29 V
+-48 31 V
+% End plot #1
+% Begin plot #2
+stroke
+LCb setrgbcolor
+17035 13456 M
+[ [(Helvetica) 400.0 0.0 true true 0 (RB)]
+] -133.3 MRshow
+1.000 UL
+LT0
+LC8 setrgbcolor
+LC8 setrgbcolor
+17275 13456 M
+1023 0 V
+7829 9371 M
+108 13 V
+108 9 V
+109 7 V
+108 8 V
+108 10 V
+108 13 V
+108 14 V
+108 16 V
+109 14 V
+108 10 V
+108 4 V
+108 -8 V
+108 -22 V
+108 -41 V
+109 -62 V
+108 -88 V
+108 -115 V
+108 -144 V
+108 -175 V
+108 -204 V
+109 -233 V
+108 -260 V
+108 -282 V
+108 -301 V
+108 -315 V
+108 -323 V
+109 -325 V
+108 -321 V
+108 -311 V
+108 -296 V
+108 -273 V
+108 -248 V
+109 -218 V
+108 -186 V
+108 -151 V
+108 -117 V
+108 -83 V
+108 -51 V
+109 -21 V
+108 4 V
+108 25 V
+108 42 V
+108 53 V
+108 58 V
+109 60 V
+108 56 V
+108 49 V
+108 38 V
+108 25 V
+108 11 V
+109 -2 V
+108 -15 V
+108 -26 V
+108 -34 V
+108 -37 V
+108 -36 V
+109 -30 V
+108 -19 V
+108 -2 V
+108 19 V
+108 44 V
+108 73 V
+109 106 V
+108 140 V
+108 174 V
+108 208 V
+108 241 V
+108 270 V
+109 297 V
+108 318 V
+108 334 V
+108 344 V
+108 348 V
+108 345 V
+109 338 V
+108 324 V
+108 305 V
+108 282 V
+108 256 V
+108 227 V
+109 197 V
+108 167 V
+108 138 V
+108 111 V
+108 85 V
+108 63 V
+109 45 V
+108 30 V
+108 20 V
+108 12 V
+108 9 V
+109 7 V
+108 8 V
+108 10 V
+108 13 V
+108 15 V
+108 15 V
+109 14 V
+108 10 V
+7707 9436 M
+108 13 V
+108 9 V
+stroke 7923 9458 M
+108 7 V
+109 8 V
+108 10 V
+108 13 V
+108 14 V
+108 16 V
+108 14 V
+109 10 V
+108 4 V
+108 -8 V
+108 -22 V
+108 -41 V
+108 -62 V
+109 -88 V
+108 -115 V
+108 -144 V
+108 -175 V
+108 -204 V
+108 -233 V
+109 -260 V
+108 -282 V
+108 -301 V
+108 -315 V
+108 -323 V
+108 -325 V
+109 -321 V
+108 -312 V
+108 -295 V
+108 -273 V
+108 -248 V
+108 -218 V
+109 -186 V
+108 -151 V
+108 -117 V
+108 -83 V
+108 -51 V
+108 -21 V
+109 4 V
+108 25 V
+108 42 V
+108 52 V
+108 59 V
+108 60 V
+109 56 V
+108 49 V
+108 38 V
+108 25 V
+108 11 V
+108 -2 V
+109 -16 V
+108 -25 V
+108 -34 V
+108 -37 V
+108 -36 V
+108 -30 V
+109 -19 V
+108 -2 V
+108 18 V
+108 45 V
+108 73 V
+108 106 V
+109 139 V
+108 175 V
+108 208 V
+108 241 V
+108 270 V
+108 297 V
+109 318 V
+108 334 V
+108 344 V
+108 348 V
+108 345 V
+108 338 V
+109 324 V
+108 305 V
+108 282 V
+108 256 V
+108 227 V
+108 197 V
+109 167 V
+108 138 V
+108 111 V
+108 85 V
+108 63 V
+108 45 V
+109 30 V
+108 20 V
+108 12 V
+108 8 V
+108 8 V
+108 8 V
+109 10 V
+108 13 V
+108 15 V
+108 15 V
+108 14 V
+108 10 V
+7585 9501 M
+108 13 V
+108 9 V
+108 7 V
+108 8 V
+108 10 V
+109 12 V
+stroke 8234 9560 M
+108 15 V
+108 15 V
+108 15 V
+108 10 V
+108 3 V
+109 -7 V
+108 -22 V
+108 -41 V
+108 -62 V
+108 -88 V
+108 -115 V
+109 -145 V
+108 -174 V
+108 -204 V
+108 -233 V
+108 -260 V
+108 -282 V
+109 -301 V
+108 -315 V
+108 -323 V
+108 -325 V
+108 -322 V
+108 -311 V
+109 -295 V
+108 -274 V
+108 -247 V
+108 -218 V
+108 -186 V
+108 -151 V
+109 -117 V
+108 -83 V
+108 -51 V
+108 -22 V
+108 5 V
+108 25 V
+109 41 V
+108 53 V
+108 59 V
+108 60 V
+108 56 V
+108 48 V
+109 38 V
+108 26 V
+108 11 V
+108 -2 V
+108 -16 V
+108 -26 V
+109 -33 V
+108 -37 V
+108 -36 V
+108 -30 V
+108 -19 V
+108 -2 V
+109 18 V
+108 45 V
+108 73 V
+108 106 V
+108 139 V
+108 174 V
+109 209 V
+108 241 V
+108 270 V
+108 297 V
+108 318 V
+108 333 V
+109 344 V
+108 348 V
+108 346 V
+108 338 V
+108 324 V
+108 305 V
+109 282 V
+108 255 V
+108 228 V
+108 197 V
+108 167 V
+108 138 V
+109 110 V
+108 86 V
+108 63 V
+108 45 V
+108 30 V
+108 20 V
+109 12 V
+108 8 V
+108 8 V
+108 8 V
+108 10 V
+109 13 V
+108 15 V
+108 15 V
+108 14 V
+108 10 V
+7462 9566 M
+109 13 V
+108 9 V
+108 7 V
+108 8 V
+108 10 V
+108 12 V
+109 15 V
+108 15 V
+108 15 V
+108 10 V
+stroke 8544 9680 M
+108 3 V
+108 -7 V
+109 -22 V
+108 -41 V
+108 -62 V
+108 -88 V
+108 -115 V
+108 -145 V
+109 -174 V
+108 -205 V
+108 -233 V
+108 -259 V
+108 -282 V
+108 -301 V
+109 -315 V
+108 -323 V
+108 -326 V
+108 -321 V
+108 -311 V
+108 -295 V
+109 -274 V
+108 -248 V
+108 -218 V
+108 -185 V
+108 -152 V
+108 -116 V
+109 -83 V
+108 -51 V
+108 -22 V
+108 4 V
+108 26 V
+108 41 V
+109 53 V
+108 59 V
+108 60 V
+108 56 V
+108 48 V
+108 38 V
+109 26 V
+108 11 V
+108 -3 V
+108 -15 V
+108 -26 V
+108 -33 V
+109 -37 V
+108 -36 V
+108 -30 V
+108 -19 V
+108 -3 V
+108 19 V
+109 44 V
+108 74 V
+108 106 V
+108 139 V
+108 174 V
+108 209 V
+109 240 V
+108 271 V
+108 297 V
+108 317 V
+108 334 V
+108 344 V
+109 348 V
+108 346 V
+108 338 V
+108 323 V
+108 305 V
+108 283 V
+109 255 V
+108 227 V
+108 198 V
+108 167 V
+108 138 V
+108 110 V
+109 85 V
+108 64 V
+108 45 V
+108 30 V
+108 19 V
+108 13 V
+109 8 V
+108 7 V
+108 9 V
+108 10 V
+108 13 V
+108 15 V
+109 15 V
+108 14 V
+108 9 V
+7340 9630 M
+108 14 V
+108 8 V
+109 8 V
+108 8 V
+108 10 V
+108 12 V
+108 15 V
+108 15 V
+109 14 V
+108 11 V
+108 3 V
+108 -8 V
+108 -22 V
+108 -40 V
+stroke 8854 9678 M
+109 -63 V
+108 -87 V
+108 -115 V
+108 -145 V
+108 -174 V
+108 -205 V
+109 -233 V
+108 -259 V
+108 -282 V
+108 -302 V
+108 -314 V
+108 -323 V
+109 -326 V
+108 -321 V
+108 -311 V
+108 -295 V
+108 -274 V
+108 -248 V
+109 -218 V
+108 -185 V
+108 -152 V
+108 -117 V
+108 -83 V
+108 -50 V
+109 -22 V
+108 4 V
+108 26 V
+108 41 V
+108 53 V
+108 59 V
+109 59 V
+108 56 V
+108 49 V
+108 38 V
+108 25 V
+108 12 V
+109 -3 V
+108 -15 V
+108 -26 V
+108 -33 V
+108 -37 V
+108 -36 V
+109 -30 V
+108 -19 V
+108 -3 V
+108 19 V
+108 44 V
+108 74 V
+109 105 V
+108 140 V
+108 174 V
+108 208 V
+108 241 V
+108 271 V
+109 296 V
+108 318 V
+108 334 V
+108 344 V
+108 348 V
+108 346 V
+109 337 V
+108 324 V
+108 305 V
+108 282 V
+108 256 V
+108 227 V
+109 198 V
+108 167 V
+108 138 V
+108 110 V
+108 85 V
+108 64 V
+109 44 V
+108 31 V
+108 19 V
+108 13 V
+108 8 V
+108 7 V
+109 8 V
+108 11 V
+108 13 V
+108 14 V
+108 16 V
+109 14 V
+108 9 V
+7218 9695 M
+108 13 V
+108 9 V
+108 8 V
+109 8 V
+108 9 V
+108 13 V
+108 14 V
+108 16 V
+108 14 V
+109 11 V
+108 3 V
+108 -8 V
+108 -22 V
+108 -40 V
+108 -63 V
+109 -87 V
+108 -116 V
+108 -144 V
+stroke 9165 9333 M
+108 -175 V
+108 -204 V
+108 -233 V
+109 -259 V
+108 -283 V
+108 -301 V
+108 -315 V
+108 -323 V
+108 -325 V
+109 -321 V
+108 -311 V
+108 -295 V
+108 -274 V
+108 -248 V
+108 -218 V
+109 -186 V
+108 -151 V
+108 -117 V
+108 -83 V
+108 -51 V
+108 -21 V
+109 4 V
+108 25 V
+108 42 V
+108 53 V
+108 58 V
+108 60 V
+109 56 V
+108 49 V
+108 38 V
+108 25 V
+108 12 V
+108 -3 V
+109 -15 V
+108 -26 V
+108 -33 V
+108 -37 V
+108 -36 V
+108 -30 V
+109 -19 V
+108 -3 V
+108 19 V
+108 44 V
+108 74 V
+108 105 V
+109 140 V
+108 174 V
+108 208 V
+108 241 V
+108 271 V
+108 296 V
+109 318 V
+108 334 V
+108 344 V
+108 348 V
+108 346 V
+108 337 V
+109 324 V
+108 305 V
+108 282 V
+108 256 V
+108 227 V
+108 197 V
+109 168 V
+108 138 V
+108 110 V
+108 85 V
+108 63 V
+108 45 V
+109 31 V
+108 19 V
+108 12 V
+108 9 V
+108 7 V
+108 8 V
+109 11 V
+108 12 V
+108 15 V
+108 16 V
+108 14 V
+108 9 V
+7096 9760 M
+108 13 V
+108 9 V
+108 7 V
+108 8 V
+108 10 V
+109 13 V
+108 14 V
+108 16 V
+108 14 V
+108 10 V
+108 4 V
+109 -8 V
+108 -22 V
+108 -40 V
+108 -63 V
+108 -88 V
+108 -115 V
+109 -144 V
+108 -175 V
+108 -204 V
+108 -233 V
+108 -259 V
+stroke 9475 8527 M
+108 -283 V
+109 -301 V
+108 -315 V
+108 -323 V
+108 -325 V
+108 -321 V
+108 -311 V
+109 -295 V
+108 -274 V
+108 -248 V
+108 -218 V
+108 -186 V
+108 -151 V
+109 -117 V
+108 -83 V
+108 -51 V
+108 -21 V
+108 4 V
+108 25 V
+109 42 V
+108 53 V
+108 58 V
+108 60 V
+108 56 V
+108 49 V
+109 38 V
+108 25 V
+108 11 V
+108 -2 V
+108 -15 V
+108 -26 V
+109 -34 V
+108 -37 V
+108 -36 V
+108 -30 V
+108 -18 V
+108 -3 V
+109 19 V
+108 44 V
+108 73 V
+108 106 V
+108 140 V
+108 174 V
+109 208 V
+108 241 V
+108 271 V
+108 296 V
+108 318 V
+108 334 V
+109 344 V
+108 348 V
+108 345 V
+108 338 V
+108 324 V
+108 305 V
+109 282 V
+108 256 V
+108 227 V
+108 197 V
+108 167 V
+108 138 V
+109 111 V
+108 85 V
+108 63 V
+108 45 V
+108 30 V
+108 20 V
+109 12 V
+108 9 V
+108 7 V
+108 8 V
+108 10 V
+109 13 V
+108 15 V
+108 15 V
+108 14 V
+108 10 V
+6973 9825 M
+109 13 V
+108 9 V
+108 7 V
+108 8 V
+108 10 V
+108 13 V
+109 14 V
+108 16 V
+108 14 V
+108 10 V
+108 4 V
+108 -8 V
+109 -22 V
+108 -41 V
+108 -62 V
+108 -88 V
+108 -115 V
+108 -144 V
+109 -175 V
+108 -204 V
+108 -233 V
+108 -260 V
+108 -282 V
+108 -301 V
+109 -315 V
+108 -323 V
+stroke 9786 7370 M
+108 -325 V
+108 -321 V
+108 -312 V
+108 -295 V
+109 -273 V
+108 -248 V
+108 -218 V
+108 -186 V
+108 -151 V
+108 -117 V
+109 -83 V
+108 -51 V
+108 -21 V
+108 4 V
+108 25 V
+108 42 V
+109 52 V
+108 59 V
+108 60 V
+108 56 V
+108 49 V
+108 38 V
+109 25 V
+108 11 V
+108 -2 V
+108 -16 V
+108 -25 V
+108 -34 V
+109 -37 V
+108 -36 V
+108 -30 V
+108 -19 V
+108 -2 V
+108 18 V
+109 45 V
+108 73 V
+108 106 V
+108 140 V
+108 174 V
+108 208 V
+109 241 V
+108 270 V
+108 297 V
+108 318 V
+108 334 V
+108 344 V
+109 348 V
+108 345 V
+108 338 V
+108 324 V
+108 305 V
+108 282 V
+109 256 V
+108 227 V
+108 197 V
+108 167 V
+108 138 V
+108 111 V
+109 85 V
+108 63 V
+108 45 V
+108 30 V
+108 20 V
+108 12 V
+109 9 V
+108 7 V
+108 8 V
+108 10 V
+108 13 V
+108 15 V
+109 15 V
+108 14 V
+108 10 V
+6851 9890 M
+108 13 V
+108 9 V
+109 7 V
+108 8 V
+108 10 V
+108 12 V
+108 15 V
+108 15 V
+109 15 V
+108 10 V
+108 3 V
+108 -7 V
+108 -22 V
+108 -41 V
+109 -62 V
+108 -88 V
+108 -115 V
+108 -144 V
+108 -175 V
+108 -204 V
+109 -233 V
+108 -260 V
+108 -282 V
+108 -301 V
+108 -315 V
+108 -323 V
+109 -325 V
+108 -322 V
+108 -311 V
+108 -295 V
+stroke 10096 6182 M
+108 -274 V
+108 -247 V
+109 -218 V
+108 -186 V
+108 -151 V
+108 -117 V
+108 -83 V
+108 -51 V
+109 -22 V
+108 5 V
+108 25 V
+108 41 V
+108 53 V
+108 59 V
+109 60 V
+108 56 V
+108 48 V
+108 38 V
+108 26 V
+108 11 V
+109 -2 V
+108 -16 V
+108 -26 V
+108 -33 V
+108 -37 V
+108 -36 V
+109 -30 V
+108 -19 V
+108 -2 V
+108 18 V
+108 45 V
+108 73 V
+109 106 V
+108 139 V
+108 175 V
+108 208 V
+108 241 V
+108 270 V
+109 297 V
+108 318 V
+108 333 V
+108 344 V
+108 348 V
+108 346 V
+109 338 V
+108 324 V
+108 305 V
+108 282 V
+108 256 V
+108 227 V
+109 197 V
+108 167 V
+108 138 V
+108 110 V
+108 86 V
+108 63 V
+109 45 V
+108 30 V
+108 20 V
+108 12 V
+108 8 V
+108 8 V
+109 8 V
+108 10 V
+108 13 V
+108 15 V
+108 15 V
+109 14 V
+108 10 V
+6729 9955 M
+108 13 V
+108 9 V
+108 7 V
+109 8 V
+108 10 V
+108 12 V
+108 15 V
+108 15 V
+108 15 V
+109 10 V
+108 3 V
+108 -7 V
+108 -22 V
+108 -41 V
+108 -62 V
+109 -88 V
+108 -115 V
+108 -145 V
+108 -174 V
+108 -205 V
+108 -233 V
+109 -259 V
+108 -282 V
+108 -301 V
+108 -315 V
+108 -323 V
+108 -326 V
+109 -321 V
+108 -311 V
+108 -295 V
+108 -274 V
+108 -248 V
+108 -218 V
+109 -185 V
+stroke 10407 5322 M
+108 -152 V
+108 -116 V
+108 -83 V
+108 -51 V
+108 -22 V
+109 4 V
+108 26 V
+108 41 V
+108 53 V
+108 59 V
+108 60 V
+109 56 V
+108 48 V
+108 38 V
+108 26 V
+108 11 V
+108 -3 V
+109 -15 V
+108 -26 V
+108 -33 V
+108 -37 V
+108 -36 V
+108 -30 V
+109 -19 V
+108 -3 V
+108 19 V
+108 44 V
+108 74 V
+108 106 V
+109 139 V
+108 174 V
+108 209 V
+108 240 V
+108 271 V
+108 297 V
+109 317 V
+108 334 V
+108 344 V
+108 348 V
+108 346 V
+108 338 V
+109 323 V
+108 306 V
+108 282 V
+108 255 V
+108 228 V
+108 197 V
+109 167 V
+108 138 V
+108 110 V
+108 85 V
+108 64 V
+108 45 V
+109 30 V
+108 19 V
+108 13 V
+108 8 V
+108 8 V
+108 8 V
+109 10 V
+108 13 V
+108 15 V
+108 15 V
+108 14 V
+108 9 V
+6607 10019 M
+108 14 V
+108 8 V
+108 8 V
+108 8 V
+108 10 V
+109 12 V
+108 15 V
+108 15 V
+108 14 V
+108 11 V
+108 3 V
+109 -7 V
+108 -23 V
+108 -40 V
+108 -63 V
+108 -87 V
+108 -115 V
+109 -145 V
+108 -174 V
+108 -205 V
+108 -233 V
+108 -259 V
+108 -282 V
+109 -302 V
+108 -314 V
+108 -323 V
+108 -326 V
+108 -321 V
+108 -311 V
+109 -295 V
+108 -274 V
+108 -248 V
+108 -218 V
+108 -185 V
+108 -152 V
+109 -117 V
+108 -83 V
+108 -50 V
+stroke 10717 4985 M
+108 -22 V
+108 4 V
+108 26 V
+109 41 V
+108 53 V
+108 59 V
+108 59 V
+108 57 V
+108 48 V
+109 38 V
+108 25 V
+108 12 V
+108 -3 V
+108 -15 V
+108 -26 V
+109 -33 V
+108 -37 V
+108 -36 V
+108 -30 V
+108 -19 V
+108 -3 V
+109 19 V
+108 44 V
+108 74 V
+108 105 V
+108 140 V
+108 174 V
+109 209 V
+108 240 V
+108 271 V
+108 296 V
+108 318 V
+108 334 V
+109 344 V
+108 348 V
+108 346 V
+108 337 V
+108 324 V
+108 305 V
+109 282 V
+108 256 V
+108 227 V
+108 198 V
+108 167 V
+108 138 V
+109 110 V
+108 85 V
+108 64 V
+108 44 V
+108 31 V
+108 19 V
+109 13 V
+108 8 V
+108 7 V
+108 9 V
+108 10 V
+108 13 V
+109 14 V
+108 16 V
+108 14 V
+108 9 V
+6484 10084 M
+109 13 V
+108 9 V
+108 8 V
+108 8 V
+108 10 V
+108 12 V
+109 15 V
+108 15 V
+108 14 V
+108 11 V
+108 3 V
+108 -8 V
+109 -22 V
+108 -40 V
+108 -63 V
+108 -87 V
+108 -116 V
+108 -144 V
+109 -175 V
+108 -204 V
+108 -233 V
+108 -259 V
+108 -283 V
+108 -301 V
+109 -315 V
+108 -323 V
+108 -325 V
+108 -321 V
+108 -311 V
+108 -295 V
+109 -274 V
+108 -248 V
+108 -218 V
+108 -185 V
+108 -152 V
+108 -117 V
+109 -83 V
+108 -51 V
+108 -21 V
+108 4 V
+108 25 V
+108 42 V
+stroke 11027 5099 M
+109 53 V
+108 59 V
+108 59 V
+108 56 V
+108 49 V
+108 38 V
+109 25 V
+108 12 V
+108 -3 V
+108 -15 V
+108 -26 V
+108 -33 V
+109 -37 V
+108 -36 V
+108 -30 V
+108 -19 V
+108 -3 V
+108 19 V
+109 44 V
+108 74 V
+108 105 V
+108 140 V
+108 174 V
+108 208 V
+109 241 V
+108 271 V
+108 296 V
+108 318 V
+108 334 V
+108 344 V
+109 348 V
+108 346 V
+108 337 V
+108 324 V
+108 305 V
+108 282 V
+109 256 V
+108 227 V
+108 197 V
+108 168 V
+108 138 V
+108 110 V
+109 85 V
+108 63 V
+108 45 V
+108 31 V
+108 19 V
+108 12 V
+109 9 V
+108 7 V
+108 8 V
+108 11 V
+108 12 V
+108 15 V
+109 16 V
+108 14 V
+108 9 V
+6362 10149 M
+108 13 V
+108 9 V
+109 7 V
+108 8 V
+108 10 V
+108 13 V
+108 14 V
+108 16 V
+109 14 V
+108 10 V
+108 4 V
+108 -8 V
+108 -22 V
+108 -40 V
+109 -63 V
+108 -88 V
+108 -115 V
+108 -144 V
+108 -175 V
+108 -204 V
+109 -233 V
+108 -259 V
+108 -283 V
+108 -301 V
+108 -315 V
+108 -323 V
+109 -325 V
+108 -321 V
+108 -311 V
+108 -295 V
+108 -274 V
+108 -248 V
+109 -218 V
+108 -186 V
+108 -151 V
+108 -117 V
+108 -83 V
+108 -51 V
+109 -21 V
+108 4 V
+108 25 V
+108 42 V
+108 53 V
+108 58 V
+109 60 V
+108 56 V
+stroke 11338 5391 M
+108 49 V
+108 38 V
+108 25 V
+108 11 V
+109 -2 V
+108 -15 V
+108 -26 V
+108 -34 V
+108 -37 V
+108 -36 V
+109 -30 V
+108 -18 V
+108 -3 V
+108 19 V
+108 44 V
+108 73 V
+109 106 V
+108 140 V
+108 174 V
+108 208 V
+108 241 V
+108 271 V
+109 296 V
+108 318 V
+108 334 V
+108 344 V
+108 348 V
+108 346 V
+109 337 V
+108 324 V
+108 305 V
+108 282 V
+108 256 V
+108 227 V
+109 197 V
+108 168 V
+108 137 V
+108 111 V
+108 85 V
+108 63 V
+109 45 V
+108 30 V
+108 20 V
+108 12 V
+108 9 V
+108 7 V
+109 8 V
+108 11 V
+108 12 V
+108 15 V
+108 15 V
+109 14 V
+108 10 V
+6240 10214 M
+108 13 V
+108 9 V
+108 7 V
+109 8 V
+108 10 V
+108 13 V
+108 14 V
+108 16 V
+108 14 V
+109 10 V
+108 4 V
+108 -8 V
+108 -22 V
+108 -41 V
+108 -62 V
+109 -88 V
+108 -115 V
+108 -144 V
+108 -175 V
+108 -204 V
+108 -233 V
+109 -260 V
+108 -282 V
+108 -301 V
+108 -315 V
+108 -323 V
+108 -325 V
+109 -321 V
+108 -311 V
+108 -296 V
+108 -273 V
+108 -248 V
+108 -218 V
+109 -186 V
+108 -151 V
+108 -117 V
+108 -83 V
+108 -51 V
+108 -21 V
+109 4 V
+108 25 V
+108 42 V
+108 52 V
+108 59 V
+108 60 V
+109 56 V
+108 49 V
+108 38 V
+108 25 V
+108 11 V
+stroke 11648 5579 M
+108 -2 V
+109 -15 V
+108 -26 V
+108 -34 V
+108 -37 V
+108 -36 V
+108 -30 V
+109 -19 V
+108 -2 V
+108 18 V
+108 45 V
+108 73 V
+108 106 V
+109 140 V
+108 174 V
+108 208 V
+108 241 V
+108 270 V
+108 297 V
+109 318 V
+108 334 V
+108 344 V
+108 348 V
+108 345 V
+108 338 V
+109 324 V
+108 305 V
+108 282 V
+108 256 V
+108 227 V
+108 197 V
+109 167 V
+108 138 V
+108 111 V
+108 85 V
+108 63 V
+108 45 V
+109 30 V
+108 20 V
+108 12 V
+108 9 V
+108 7 V
+108 8 V
+109 10 V
+108 13 V
+108 15 V
+108 15 V
+108 14 V
+108 10 V
+6118 10279 M
+108 13 V
+108 9 V
+108 7 V
+108 8 V
+108 10 V
+109 12 V
+108 15 V
+108 15 V
+108 15 V
+108 10 V
+108 3 V
+109 -7 V
+108 -22 V
+108 -41 V
+108 -62 V
+108 -88 V
+108 -115 V
+109 -144 V
+108 -175 V
+108 -204 V
+108 -233 V
+108 -260 V
+108 -282 V
+109 -301 V
+108 -315 V
+108 -323 V
+108 -325 V
+108 -322 V
+108 -311 V
+109 -295 V
+108 -274 V
+108 -247 V
+108 -218 V
+108 -186 V
+108 -151 V
+109 -117 V
+108 -83 V
+108 -51 V
+108 -21 V
+108 4 V
+108 25 V
+109 42 V
+108 52 V
+108 59 V
+108 60 V
+108 56 V
+108 49 V
+109 38 V
+108 25 V
+108 11 V
+108 -2 V
+108 -16 V
+108 -26 V
+109 -33 V
+stroke 11959 5567 M
+108 -37 V
+108 -36 V
+108 -30 V
+108 -19 V
+108 -2 V
+109 18 V
+108 45 V
+108 73 V
+108 106 V
+108 139 V
+108 175 V
+109 208 V
+108 241 V
+108 270 V
+108 297 V
+108 318 V
+108 333 V
+109 344 V
+108 348 V
+108 346 V
+108 338 V
+108 324 V
+108 305 V
+109 282 V
+108 256 V
+108 227 V
+108 197 V
+108 167 V
+108 138 V
+109 110 V
+108 86 V
+108 63 V
+108 45 V
+108 30 V
+108 20 V
+109 12 V
+108 8 V
+108 8 V
+108 8 V
+108 10 V
+108 13 V
+109 15 V
+108 15 V
+108 14 V
+108 10 V
+5995 10344 M
+109 13 V
+108 9 V
+108 7 V
+108 8 V
+108 10 V
+108 12 V
+109 15 V
+108 15 V
+108 15 V
+108 10 V
+108 3 V
+108 -7 V
+109 -22 V
+108 -41 V
+108 -62 V
+108 -88 V
+108 -115 V
+108 -145 V
+109 -174 V
+108 -205 V
+108 -233 V
+108 -259 V
+108 -282 V
+108 -301 V
+109 -315 V
+108 -323 V
+108 -325 V
+108 -322 V
+108 -311 V
+108 -295 V
+109 -274 V
+108 -248 V
+108 -218 V
+108 -185 V
+108 -152 V
+108 -116 V
+109 -83 V
+108 -51 V
+108 -22 V
+108 4 V
+108 26 V
+108 41 V
+109 53 V
+108 59 V
+108 60 V
+108 56 V
+108 48 V
+108 38 V
+109 26 V
+108 11 V
+108 -3 V
+108 -15 V
+108 -26 V
+108 -33 V
+109 -37 V
+108 -36 V
+108 -30 V
+108 -19 V
+stroke 12269 5510 M
+108 -2 V
+108 18 V
+109 44 V
+108 74 V
+108 106 V
+108 139 V
+108 174 V
+108 209 V
+109 241 V
+108 270 V
+108 297 V
+108 317 V
+108 334 V
+108 344 V
+109 348 V
+108 346 V
+108 338 V
+108 323 V
+108 306 V
+108 282 V
+109 255 V
+108 228 V
+108 197 V
+108 167 V
+108 138 V
+108 110 V
+109 85 V
+108 64 V
+108 45 V
+108 30 V
+108 19 V
+108 13 V
+109 8 V
+108 8 V
+108 8 V
+108 10 V
+108 13 V
+108 15 V
+109 15 V
+108 14 V
+108 10 V
+5873 10408 M
+108 14 V
+108 8 V
+109 8 V
+108 8 V
+108 10 V
+108 12 V
+108 15 V
+108 15 V
+109 14 V
+108 11 V
+108 3 V
+108 -7 V
+108 -23 V
+108 -40 V
+109 -63 V
+108 -87 V
+108 -115 V
+108 -145 V
+108 -174 V
+108 -205 V
+109 -233 V
+108 -259 V
+108 -282 V
+108 -301 V
+108 -315 V
+108 -323 V
+109 -326 V
+108 -321 V
+108 -311 V
+108 -295 V
+108 -274 V
+108 -248 V
+109 -218 V
+108 -185 V
+108 -152 V
+108 -117 V
+108 -83 V
+108 -50 V
+109 -22 V
+108 4 V
+108 26 V
+108 41 V
+108 53 V
+108 59 V
+109 59 V
+108 57 V
+108 48 V
+108 38 V
+108 25 V
+108 12 V
+109 -3 V
+108 -15 V
+108 -26 V
+108 -33 V
+108 -37 V
+108 -36 V
+109 -30 V
+108 -19 V
+108 -3 V
+108 19 V
+108 44 V
+108 74 V
+stroke 12579 5709 M
+109 105 V
+108 140 V
+108 174 V
+108 209 V
+108 240 V
+108 271 V
+109 296 V
+108 318 V
+108 334 V
+108 344 V
+108 348 V
+108 346 V
+109 337 V
+108 324 V
+108 305 V
+108 282 V
+108 256 V
+108 227 V
+109 198 V
+108 167 V
+108 138 V
+108 110 V
+108 85 V
+108 64 V
+109 44 V
+108 31 V
+108 19 V
+108 13 V
+108 8 V
+108 7 V
+109 9 V
+108 10 V
+108 13 V
+108 14 V
+108 16 V
+108 14 V
+109 9 V
+5751 10473 M
+108 13 V
+108 9 V
+108 8 V
+109 8 V
+108 10 V
+108 12 V
+108 15 V
+108 15 V
+108 14 V
+109 11 V
+108 3 V
+108 -8 V
+108 -22 V
+108 -40 V
+108 -63 V
+109 -87 V
+108 -115 V
+108 -145 V
+108 -174 V
+108 -205 V
+108 -233 V
+109 -259 V
+108 -283 V
+108 -301 V
+108 -315 V
+108 -323 V
+108 -325 V
+109 -321 V
+108 -311 V
+108 -295 V
+108 -274 V
+108 -248 V
+108 -218 V
+109 -185 V
+108 -152 V
+108 -117 V
+108 -83 V
+108 -50 V
+108 -22 V
+109 4 V
+108 25 V
+108 42 V
+108 53 V
+108 59 V
+108 59 V
+109 56 V
+108 49 V
+108 38 V
+108 25 V
+108 12 V
+108 -3 V
+109 -15 V
+108 -26 V
+108 -33 V
+108 -37 V
+108 -36 V
+108 -30 V
+109 -19 V
+108 -3 V
+108 19 V
+108 44 V
+108 74 V
+108 105 V
+109 140 V
+108 174 V
+108 208 V
+stroke 12890 6401 M
+108 241 V
+108 271 V
+108 296 V
+109 318 V
+108 334 V
+108 344 V
+108 348 V
+108 346 V
+108 337 V
+109 324 V
+108 305 V
+108 282 V
+108 256 V
+108 227 V
+108 198 V
+109 167 V
+108 138 V
+108 110 V
+108 85 V
+108 63 V
+108 45 V
+109 31 V
+108 19 V
+108 12 V
+108 9 V
+108 7 V
+108 8 V
+109 11 V
+108 12 V
+108 15 V
+108 16 V
+108 14 V
+108 9 V
+5629 10538 M
+108 13 V
+108 9 V
+108 7 V
+108 8 V
+108 10 V
+109 13 V
+108 14 V
+108 16 V
+108 14 V
+108 11 V
+108 3 V
+109 -8 V
+108 -22 V
+108 -40 V
+108 -63 V
+108 -87 V
+108 -116 V
+109 -144 V
+108 -175 V
+108 -204 V
+108 -233 V
+108 -259 V
+108 -283 V
+109 -301 V
+108 -315 V
+108 -323 V
+108 -325 V
+108 -321 V
+108 -311 V
+109 -295 V
+108 -274 V
+108 -248 V
+108 -218 V
+108 -186 V
+108 -151 V
+109 -117 V
+108 -83 V
+108 -51 V
+108 -21 V
+108 4 V
+108 25 V
+109 42 V
+108 53 V
+108 58 V
+108 60 V
+108 56 V
+108 49 V
+109 38 V
+108 25 V
+108 11 V
+108 -2 V
+108 -15 V
+108 -26 V
+109 -34 V
+108 -37 V
+108 -36 V
+108 -30 V
+108 -18 V
+108 -3 V
+109 19 V
+108 44 V
+108 73 V
+108 106 V
+108 140 V
+108 174 V
+109 208 V
+108 241 V
+108 271 V
+108 296 V
+108 318 V
+stroke 13200 7592 M
+108 334 V
+109 344 V
+108 348 V
+108 346 V
+108 337 V
+108 324 V
+108 305 V
+109 282 V
+108 256 V
+108 227 V
+108 197 V
+108 168 V
+108 137 V
+109 111 V
+108 85 V
+108 63 V
+108 45 V
+108 30 V
+108 20 V
+109 12 V
+108 9 V
+108 7 V
+108 8 V
+108 11 V
+108 12 V
+109 15 V
+108 16 V
+108 13 V
+108 10 V
+5506 10603 M
+109 13 V
+108 9 V
+108 7 V
+108 8 V
+108 10 V
+108 13 V
+109 14 V
+108 16 V
+108 14 V
+108 10 V
+108 4 V
+108 -8 V
+109 -22 V
+108 -41 V
+108 -62 V
+108 -88 V
+108 -115 V
+108 -144 V
+109 -175 V
+108 -204 V
+108 -233 V
+108 -260 V
+108 -282 V
+108 -301 V
+109 -315 V
+108 -323 V
+108 -325 V
+108 -321 V
+108 -311 V
+108 -296 V
+109 -273 V
+108 -248 V
+108 -218 V
+108 -186 V
+108 -151 V
+108 -117 V
+109 -83 V
+108 -51 V
+108 -21 V
+108 4 V
+108 25 V
+108 42 V
+109 52 V
+108 59 V
+108 60 V
+108 56 V
+108 49 V
+108 38 V
+109 25 V
+108 11 V
+108 -2 V
+108 -15 V
+108 -26 V
+108 -34 V
+109 -37 V
+108 -36 V
+108 -30 V
+108 -19 V
+108 -2 V
+108 19 V
+109 44 V
+108 73 V
+108 106 V
+108 140 V
+108 174 V
+108 208 V
+109 241 V
+108 270 V
+108 297 V
+108 318 V
+108 334 V
+108 344 V
+109 348 V
+108 345 V
+stroke 13511 9028 M
+108 338 V
+108 324 V
+108 305 V
+108 282 V
+109 256 V
+108 227 V
+108 197 V
+108 167 V
+108 138 V
+108 111 V
+109 85 V
+108 63 V
+108 45 V
+108 30 V
+108 20 V
+108 12 V
+109 9 V
+108 7 V
+108 8 V
+108 10 V
+108 13 V
+108 15 V
+109 15 V
+108 14 V
+108 10 V
+5384 10668 M
+108 13 V
+108 9 V
+109 7 V
+108 8 V
+108 10 V
+108 13 V
+108 14 V
+108 16 V
+109 14 V
+108 10 V
+108 3 V
+108 -7 V
+108 -22 V
+108 -41 V
+109 -62 V
+108 -88 V
+108 -115 V
+108 -144 V
+108 -175 V
+108 -204 V
+109 -233 V
+108 -260 V
+108 -282 V
+108 -301 V
+108 -315 V
+108 -323 V
+109 -325 V
+108 -322 V
+108 -311 V
+108 -295 V
+108 -274 V
+108 -247 V
+109 -218 V
+108 -186 V
+108 -151 V
+108 -117 V
+108 -83 V
+108 -51 V
+109 -21 V
+108 4 V
+108 25 V
+108 42 V
+108 52 V
+108 59 V
+109 60 V
+108 56 V
+108 49 V
+108 38 V
+108 25 V
+108 11 V
+109 -2 V
+108 -16 V
+108 -25 V
+108 -34 V
+108 -37 V
+108 -36 V
+109 -30 V
+108 -19 V
+108 -2 V
+108 18 V
+108 45 V
+108 73 V
+109 106 V
+108 139 V
+108 175 V
+108 208 V
+108 241 V
+108 270 V
+109 297 V
+108 318 V
+108 333 V
+108 344 V
+108 348 V
+108 346 V
+109 338 V
+108 324 V
+108 305 V
+108 282 V
+stroke 13821 10342 M
+108 256 V
+108 227 V
+109 197 V
+108 167 V
+108 138 V
+108 110 V
+108 86 V
+108 63 V
+109 45 V
+108 30 V
+108 20 V
+108 12 V
+108 8 V
+108 8 V
+109 8 V
+108 10 V
+108 13 V
+108 15 V
+108 15 V
+108 14 V
+109 10 V
+5262 10733 M
+108 13 V
+108 9 V
+108 7 V
+109 8 V
+108 10 V
+108 12 V
+108 15 V
+108 15 V
+108 15 V
+109 10 V
+108 3 V
+108 -7 V
+108 -22 V
+108 -41 V
+108 -62 V
+109 -88 V
+108 -115 V
+108 -145 V
+108 -174 V
+108 -205 V
+108 -233 V
+109 -259 V
+108 -282 V
+108 -301 V
+108 -315 V
+108 -323 V
+108 -325 V
+109 -322 V
+108 -311 V
+108 -295 V
+108 -274 V
+108 -247 V
+108 -219 V
+109 -185 V
+108 -152 V
+108 -116 V
+108 -83 V
+108 -51 V
+108 -22 V
+109 4 V
+108 26 V
+108 41 V
+108 53 V
+108 59 V
+108 60 V
+109 56 V
+108 48 V
+108 38 V
+108 26 V
+108 11 V
+108 -2 V
+109 -16 V
+108 -26 V
+108 -33 V
+108 -37 V
+108 -36 V
+108 -30 V
+109 -19 V
+108 -2 V
+108 18 V
+108 44 V
+108 74 V
+108 106 V
+109 139 V
+108 174 V
+108 209 V
+108 241 V
+108 270 V
+108 297 V
+109 317 V
+108 334 V
+108 344 V
+108 348 V
+108 346 V
+108 338 V
+109 324 V
+108 305 V
+108 282 V
+108 255 V
+108 228 V
+108 197 V
+109 167 V
+stroke 14132 11254 M
+108 138 V
+108 110 V
+108 86 V
+108 63 V
+108 45 V
+109 30 V
+108 19 V
+108 13 V
+108 8 V
+108 8 V
+108 8 V
+109 10 V
+108 13 V
+108 15 V
+108 15 V
+108 14 V
+108 10 V
+5140 10798 M
+108 13 V
+108 8 V
+108 8 V
+108 8 V
+108 10 V
+109 12 V
+108 15 V
+108 15 V
+108 14 V
+108 11 V
+108 3 V
+109 -7 V
+108 -23 V
+108 -40 V
+108 -63 V
+108 -87 V
+108 -115 V
+109 -145 V
+108 -174 V
+108 -205 V
+108 -233 V
+108 -259 V
+108 -282 V
+109 -301 V
+108 -315 V
+108 -323 V
+108 -326 V
+108 -321 V
+108 -311 V
+109 -295 V
+108 -274 V
+108 -248 V
+108 -218 V
+108 -185 V
+108 -152 V
+109 -117 V
+108 -82 V
+108 -51 V
+108 -22 V
+108 4 V
+108 26 V
+109 41 V
+108 53 V
+108 59 V
+108 59 V
+108 57 V
+108 48 V
+109 38 V
+108 25 V
+108 12 V
+108 -3 V
+108 -15 V
+108 -26 V
+109 -33 V
+108 -37 V
+108 -36 V
+108 -30 V
+108 -19 V
+108 -3 V
+109 19 V
+108 44 V
+108 74 V
+108 106 V
+108 139 V
+108 174 V
+109 209 V
+108 240 V
+108 271 V
+108 296 V
+108 318 V
+108 334 V
+109 344 V
+108 348 V
+108 346 V
+108 338 V
+108 323 V
+108 305 V
+109 283 V
+108 255 V
+108 227 V
+108 198 V
+108 167 V
+108 138 V
+109 110 V
+108 85 V
+108 64 V
+stroke 14442 11716 M
+108 45 V
+108 30 V
+108 19 V
+109 13 V
+108 8 V
+108 7 V
+108 9 V
+108 10 V
+108 13 V
+109 14 V
+108 16 V
+108 14 V
+108 9 V
+5017 10862 M
+109 13 V
+108 9 V
+108 8 V
+108 8 V
+108 10 V
+108 12 V
+109 15 V
+108 15 V
+108 14 V
+108 11 V
+108 3 V
+108 -8 V
+109 -22 V
+108 -40 V
+108 -63 V
+108 -87 V
+108 -115 V
+108 -145 V
+109 -174 V
+108 -205 V
+108 -233 V
+108 -259 V
+108 -283 V
+108 -301 V
+109 -314 V
+108 -324 V
+108 -325 V
+108 -321 V
+108 -311 V
+108 -295 V
+109 -274 V
+108 -248 V
+108 -218 V
+108 -185 V
+108 -152 V
+108 -117 V
+109 -83 V
+108 -50 V
+108 -22 V
+108 4 V
+108 25 V
+108 42 V
+109 53 V
+108 59 V
+108 59 V
+108 56 V
+108 49 V
+108 38 V
+109 25 V
+108 12 V
+108 -3 V
+108 -15 V
+108 -26 V
+108 -33 V
+109 -37 V
+108 -36 V
+108 -30 V
+108 -19 V
+108 -3 V
+108 19 V
+109 44 V
+108 74 V
+108 105 V
+108 140 V
+108 174 V
+108 208 V
+109 241 V
+108 271 V
+108 296 V
+108 318 V
+108 334 V
+108 344 V
+109 348 V
+108 346 V
+108 337 V
+108 324 V
+108 305 V
+108 282 V
+109 256 V
+108 227 V
+108 198 V
+108 167 V
+108 138 V
+108 110 V
+109 85 V
+108 63 V
+108 45 V
+108 31 V
+108 19 V
+108 12 V
+stroke 14752 11887 M
+109 9 V
+108 7 V
+108 8 V
+108 11 V
+108 13 V
+108 14 V
+109 16 V
+108 14 V
+108 9 V
+4895 10927 M
+108 13 V
+108 9 V
+109 7 V
+108 8 V
+108 10 V
+108 13 V
+108 14 V
+108 16 V
+109 14 V
+108 11 V
+108 3 V
+108 -8 V
+108 -22 V
+108 -40 V
+109 -63 V
+108 -87 V
+108 -116 V
+108 -144 V
+108 -175 V
+108 -204 V
+109 -233 V
+108 -259 V
+108 -283 V
+108 -301 V
+108 -315 V
+108 -323 V
+109 -325 V
+108 -321 V
+108 -311 V
+108 -295 V
+108 -274 V
+108 -248 V
+109 -218 V
+108 -186 V
+108 -151 V
+108 -117 V
+108 -83 V
+108 -51 V
+109 -21 V
+108 4 V
+108 25 V
+108 42 V
+108 53 V
+108 58 V
+109 60 V
+108 56 V
+108 49 V
+108 38 V
+108 25 V
+108 12 V
+109 -3 V
+108 -15 V
+108 -26 V
+108 -34 V
+108 -36 V
+108 -36 V
+109 -30 V
+108 -19 V
+108 -3 V
+108 19 V
+108 44 V
+108 74 V
+109 105 V
+108 140 V
+108 174 V
+108 208 V
+108 241 V
+108 271 V
+109 296 V
+108 318 V
+108 334 V
+108 344 V
+108 348 V
+108 346 V
+109 337 V
+108 324 V
+108 305 V
+108 282 V
+108 256 V
+108 227 V
+109 197 V
+108 168 V
+108 137 V
+108 111 V
+108 85 V
+108 63 V
+109 45 V
+108 30 V
+108 20 V
+108 12 V
+108 9 V
+108 7 V
+109 8 V
+108 11 V
+stroke 15063 11987 M
+108 12 V
+108 15 V
+108 16 V
+108 13 V
+109 10 V
+4773 10992 M
+108 13 V
+108 9 V
+108 7 V
+109 8 V
+108 10 V
+108 13 V
+108 14 V
+108 16 V
+108 14 V
+109 10 V
+108 4 V
+108 -8 V
+108 -22 V
+108 -41 V
+108 -62 V
+109 -88 V
+108 -115 V
+108 -144 V
+108 -175 V
+108 -204 V
+108 -233 V
+109 -260 V
+108 -282 V
+108 -301 V
+108 -315 V
+108 -323 V
+108 -325 V
+109 -321 V
+108 -311 V
+108 -296 V
+108 -273 V
+108 -248 V
+108 -218 V
+109 -186 V
+108 -151 V
+108 -117 V
+108 -83 V
+108 -51 V
+108 -21 V
+109 4 V
+108 25 V
+108 42 V
+108 53 V
+108 58 V
+108 60 V
+109 56 V
+108 49 V
+108 38 V
+108 25 V
+108 11 V
+108 -2 V
+109 -15 V
+108 -26 V
+108 -34 V
+108 -37 V
+108 -36 V
+108 -30 V
+109 -19 V
+108 -2 V
+108 19 V
+108 44 V
+108 73 V
+108 106 V
+109 140 V
+108 174 V
+108 208 V
+108 241 V
+108 270 V
+108 297 V
+109 318 V
+108 334 V
+108 344 V
+108 348 V
+108 345 V
+108 338 V
+109 324 V
+108 305 V
+108 282 V
+108 256 V
+108 227 V
+108 197 V
+109 167 V
+108 138 V
+108 111 V
+108 85 V
+108 63 V
+108 45 V
+109 30 V
+108 20 V
+108 12 V
+108 9 V
+108 7 V
+108 8 V
+109 10 V
+108 13 V
+108 15 V
+108 15 V
+108 14 V
+stroke 15373 12108 M
+108 10 V
+4651 11057 M
+108 13 V
+108 9 V
+108 7 V
+108 8 V
+108 10 V
+109 13 V
+108 14 V
+108 16 V
+108 14 V
+108 10 V
+108 3 V
+109 -7 V
+108 -22 V
+108 -41 V
+108 -62 V
+108 -88 V
+108 -115 V
+109 -144 V
+108 -175 V
+108 -204 V
+108 -233 V
+108 -260 V
+108 -282 V
+109 -301 V
+108 -315 V
+108 -323 V
+108 -325 V
+108 -321 V
+108 -312 V
+109 -295 V
+108 -273 V
+108 -248 V
+108 -218 V
+108 -186 V
+108 -151 V
+109 -117 V
+108 -83 V
+108 -51 V
+108 -21 V
+108 4 V
+108 25 V
+109 42 V
+108 52 V
+108 59 V
+108 60 V
+108 56 V
+108 49 V
+109 38 V
+108 25 V
+108 11 V
+108 -2 V
+108 -16 V
+108 -25 V
+109 -34 V
+108 -37 V
+108 -36 V
+108 -30 V
+108 -19 V
+108 -2 V
+109 18 V
+108 45 V
+108 73 V
+108 106 V
+108 139 V
+108 175 V
+109 208 V
+108 241 V
+108 270 V
+108 297 V
+108 318 V
+108 334 V
+109 344 V
+108 347 V
+108 346 V
+108 338 V
+108 324 V
+108 305 V
+109 282 V
+108 256 V
+108 227 V
+108 197 V
+108 167 V
+108 138 V
+109 110 V
+108 86 V
+108 63 V
+108 45 V
+108 30 V
+108 20 V
+109 12 V
+108 8 V
+108 8 V
+108 8 V
+108 10 V
+108 13 V
+109 15 V
+108 15 V
+108 14 V
+108 10 V
+4528 11122 M
+108 13 V
+109 9 V
+stroke 4745 11144 M
+108 7 V
+108 8 V
+108 10 V
+108 12 V
+109 15 V
+108 15 V
+108 15 V
+108 10 V
+108 3 V
+108 -7 V
+109 -22 V
+108 -41 V
+108 -62 V
+108 -88 V
+108 -115 V
+108 -145 V
+109 -174 V
+108 -204 V
+108 -234 V
+108 -259 V
+108 -282 V
+108 -301 V
+109 -315 V
+108 -323 V
+108 -325 V
+108 -322 V
+108 -311 V
+108 -295 V
+109 -274 V
+108 -247 V
+108 -219 V
+108 -185 V
+108 -152 V
+108 -116 V
+109 -83 V
+108 -51 V
+108 -22 V
+108 5 V
+108 25 V
+108 41 V
+109 53 V
+108 59 V
+108 60 V
+108 56 V
+108 48 V
+108 38 V
+109 26 V
+108 11 V
+108 -2 V
+108 -16 V
+108 -26 V
+108 -33 V
+109 -37 V
+108 -36 V
+108 -30 V
+108 -19 V
+108 -2 V
+108 18 V
+109 44 V
+108 74 V
+108 106 V
+108 139 V
+108 174 V
+108 209 V
+109 241 V
+108 270 V
+108 297 V
+108 318 V
+108 333 V
+108 344 V
+109 348 V
+108 346 V
+108 338 V
+108 324 V
+108 305 V
+108 282 V
+109 255 V
+108 228 V
+108 197 V
+108 167 V
+108 138 V
+108 110 V
+109 86 V
+108 63 V
+108 45 V
+108 30 V
+108 19 V
+108 13 V
+109 8 V
+108 8 V
+108 8 V
+108 10 V
+108 13 V
+108 15 V
+109 15 V
+108 14 V
+108 10 V
+4406 11187 M
+108 13 V
+108 9 V
+109 7 V
+108 8 V
+108 10 V
+108 12 V
+stroke 5055 11246 M
+108 15 V
+108 15 V
+109 15 V
+108 10 V
+108 3 V
+108 -7 V
+108 -22 V
+108 -41 V
+109 -63 V
+108 -87 V
+108 -115 V
+108 -145 V
+108 -174 V
+108 -205 V
+109 -233 V
+108 -259 V
+108 -282 V
+108 -301 V
+108 -315 V
+108 -323 V
+109 -326 V
+108 -321 V
+108 -311 V
+108 -295 V
+108 -274 V
+108 -248 V
+109 -218 V
+108 -185 V
+108 -152 V
+108 -117 V
+108 -82 V
+108 -51 V
+109 -22 V
+108 4 V
+108 26 V
+108 41 V
+108 53 V
+108 59 V
+109 60 V
+108 56 V
+108 48 V
+108 38 V
+108 26 V
+108 11 V
+109 -3 V
+108 -15 V
+108 -26 V
+108 -33 V
+108 -37 V
+108 -36 V
+109 -30 V
+108 -19 V
+108 -3 V
+108 19 V
+108 44 V
+108 74 V
+109 106 V
+108 139 V
+108 174 V
+108 209 V
+108 240 V
+108 271 V
+109 297 V
+108 317 V
+108 334 V
+108 344 V
+108 348 V
+108 346 V
+109 338 V
+108 323 V
+108 305 V
+108 283 V
+108 255 V
+108 227 V
+109 198 V
+108 167 V
+108 138 V
+108 110 V
+108 85 V
+108 64 V
+109 45 V
+108 30 V
+108 19 V
+108 13 V
+108 8 V
+108 7 V
+109 9 V
+108 10 V
+108 13 V
+108 14 V
+108 16 V
+108 14 V
+109 9 V
+4284 11251 M
+108 14 V
+108 8 V
+108 8 V
+109 8 V
+108 10 V
+108 12 V
+108 15 V
+108 15 V
+108 14 V
+109 11 V
+stroke 5366 11366 M
+108 3 V
+108 -8 V
+108 -22 V
+108 -40 V
+108 -63 V
+109 -87 V
+108 -115 V
+108 -145 V
+108 -174 V
+108 -205 V
+108 -233 V
+109 -259 V
+108 -282 V
+108 -302 V
+108 -314 V
+108 -323 V
+108 -326 V
+109 -321 V
+108 -311 V
+108 -295 V
+108 -274 V
+108 -248 V
+108 -218 V
+109 -185 V
+108 -152 V
+108 -117 V
+108 -83 V
+108 -50 V
+108 -22 V
+109 4 V
+108 25 V
+108 42 V
+108 53 V
+108 59 V
+108 59 V
+109 56 V
+108 49 V
+108 38 V
+108 25 V
+108 12 V
+108 -3 V
+109 -15 V
+108 -26 V
+108 -33 V
+108 -37 V
+108 -36 V
+108 -30 V
+109 -19 V
+108 -3 V
+108 19 V
+108 44 V
+108 74 V
+108 105 V
+109 140 V
+108 174 V
+108 208 V
+108 241 V
+108 271 V
+108 296 V
+109 318 V
+108 334 V
+108 344 V
+108 348 V
+108 346 V
+108 337 V
+109 324 V
+108 305 V
+108 282 V
+108 256 V
+108 227 V
+108 198 V
+109 167 V
+108 138 V
+108 110 V
+108 85 V
+108 64 V
+108 44 V
+109 31 V
+108 19 V
+108 13 V
+108 8 V
+108 7 V
+108 8 V
+109 11 V
+108 13 V
+108 14 V
+108 16 V
+108 14 V
+108 9 V
+4162 11316 M
+108 13 V
+108 9 V
+108 8 V
+108 8 V
+108 9 V
+109 13 V
+108 14 V
+108 16 V
+108 14 V
+108 11 V
+108 3 V
+109 -8 V
+108 -22 V
+108 -40 V
+stroke 5676 11364 M
+108 -63 V
+108 -87 V
+108 -116 V
+109 -144 V
+108 -175 V
+108 -204 V
+108 -233 V
+108 -259 V
+108 -283 V
+109 -301 V
+108 -315 V
+108 -323 V
+108 -325 V
+108 -321 V
+108 -311 V
+109 -295 V
+108 -274 V
+108 -248 V
+108 -218 V
+108 -186 V
+108 -151 V
+109 -117 V
+108 -83 V
+108 -51 V
+108 -21 V
+108 4 V
+108 25 V
+109 42 V
+108 53 V
+108 58 V
+108 60 V
+108 56 V
+108 49 V
+109 38 V
+108 25 V
+108 12 V
+108 -3 V
+108 -15 V
+108 -26 V
+109 -33 V
+108 -37 V
+108 -36 V
+108 -30 V
+108 -19 V
+108 -3 V
+109 19 V
+108 44 V
+108 74 V
+108 105 V
+108 140 V
+108 174 V
+109 208 V
+108 241 V
+108 271 V
+108 296 V
+108 318 V
+108 334 V
+109 344 V
+108 348 V
+108 346 V
+108 337 V
+108 324 V
+108 305 V
+109 282 V
+108 256 V
+108 227 V
+108 197 V
+108 168 V
+108 138 V
+109 110 V
+108 85 V
+108 63 V
+108 45 V
+108 31 V
+108 19 V
+109 12 V
+108 9 V
+108 7 V
+108 8 V
+108 11 V
+108 12 V
+109 15 V
+108 16 V
+108 13 V
+108 10 V
+4039 11381 M
+108 13 V
+109 9 V
+108 7 V
+108 8 V
+108 10 V
+108 13 V
+109 14 V
+108 16 V
+108 14 V
+108 10 V
+108 4 V
+108 -8 V
+109 -22 V
+108 -41 V
+108 -62 V
+108 -88 V
+108 -115 V
+108 -144 V
+stroke 5986 11019 M
+109 -175 V
+108 -204 V
+108 -233 V
+108 -259 V
+108 -283 V
+108 -301 V
+109 -315 V
+108 -323 V
+108 -325 V
+108 -321 V
+108 -311 V
+108 -295 V
+109 -274 V
+108 -248 V
+108 -218 V
+108 -186 V
+108 -151 V
+108 -117 V
+109 -83 V
+108 -51 V
+108 -21 V
+108 4 V
+108 25 V
+108 42 V
+109 53 V
+108 58 V
+108 60 V
+108 56 V
+108 49 V
+108 38 V
+109 25 V
+108 11 V
+108 -2 V
+108 -15 V
+108 -26 V
+108 -34 V
+109 -37 V
+108 -36 V
+108 -30 V
+108 -19 V
+108 -2 V
+108 19 V
+109 44 V
+108 73 V
+108 106 V
+108 140 V
+108 174 V
+108 208 V
+109 241 V
+108 270 V
+108 297 V
+108 318 V
+108 334 V
+108 344 V
+109 348 V
+108 345 V
+108 338 V
+108 324 V
+108 305 V
+108 282 V
+109 256 V
+108 227 V
+108 197 V
+108 167 V
+108 138 V
+108 111 V
+109 85 V
+108 63 V
+108 45 V
+108 30 V
+108 20 V
+108 12 V
+109 9 V
+108 7 V
+108 8 V
+108 10 V
+108 13 V
+108 15 V
+109 15 V
+108 14 V
+108 10 V
+3917 11446 M
+108 13 V
+108 9 V
+109 7 V
+108 8 V
+108 10 V
+108 13 V
+108 14 V
+108 16 V
+109 14 V
+108 10 V
+108 4 V
+108 -8 V
+108 -22 V
+108 -41 V
+109 -62 V
+108 -88 V
+108 -115 V
+108 -144 V
+108 -175 V
+108 -204 V
+109 -233 V
+108 -260 V
+stroke 6297 10212 M
+108 -282 V
+108 -301 V
+108 -315 V
+108 -323 V
+109 -325 V
+108 -321 V
+108 -312 V
+108 -295 V
+108 -273 V
+108 -248 V
+109 -218 V
+108 -186 V
+108 -151 V
+108 -117 V
+108 -83 V
+108 -51 V
+109 -21 V
+108 4 V
+108 25 V
+108 42 V
+108 52 V
+108 59 V
+109 60 V
+108 56 V
+108 49 V
+108 38 V
+108 25 V
+108 11 V
+109 -2 V
+108 -16 V
+108 -25 V
+108 -34 V
+108 -37 V
+108 -36 V
+109 -30 V
+108 -19 V
+108 -2 V
+108 18 V
+108 45 V
+108 73 V
+109 106 V
+108 139 V
+108 175 V
+108 208 V
+108 241 V
+108 270 V
+109 297 V
+108 318 V
+108 334 V
+108 344 V
+108 348 V
+108 345 V
+109 338 V
+108 324 V
+108 305 V
+108 282 V
+108 256 V
+108 227 V
+109 197 V
+108 167 V
+108 138 V
+108 111 V
+108 85 V
+108 63 V
+109 45 V
+108 30 V
+108 20 V
+108 12 V
+108 8 V
+108 8 V
+109 8 V
+108 10 V
+108 13 V
+108 15 V
+108 15 V
+108 14 V
+109 10 V
+3795 11511 M
+108 13 V
+108 9 V
+108 7 V
+108 8 V
+109 10 V
+108 12 V
+108 15 V
+108 15 V
+108 15 V
+109 10 V
+108 3 V
+108 -7 V
+108 -22 V
+108 -41 V
+108 -62 V
+109 -88 V
+108 -115 V
+108 -145 V
+108 -174 V
+108 -204 V
+108 -233 V
+109 -260 V
+108 -282 V
+108 -301 V
+108 -315 V
+108 -323 V
+stroke 6607 9056 M
+108 -325 V
+109 -322 V
+108 -311 V
+108 -295 V
+108 -274 V
+108 -247 V
+108 -218 V
+109 -186 V
+108 -151 V
+108 -117 V
+108 -83 V
+108 -51 V
+108 -22 V
+109 5 V
+108 25 V
+108 41 V
+108 53 V
+108 59 V
+108 60 V
+109 56 V
+108 48 V
+108 38 V
+108 26 V
+108 11 V
+108 -2 V
+109 -16 V
+108 -26 V
+108 -33 V
+108 -37 V
+108 -36 V
+108 -30 V
+109 -19 V
+108 -2 V
+108 18 V
+108 45 V
+108 73 V
+108 106 V
+109 139 V
+108 175 V
+108 208 V
+108 241 V
+108 270 V
+108 297 V
+109 318 V
+108 333 V
+108 344 V
+108 348 V
+108 346 V
+108 338 V
+109 324 V
+108 305 V
+108 282 V
+108 256 V
+108 227 V
+108 197 V
+109 167 V
+108 138 V
+108 110 V
+108 86 V
+108 63 V
+108 45 V
+109 30 V
+108 20 V
+108 12 V
+108 8 V
+108 8 V
+108 8 V
+109 10 V
+108 13 V
+108 15 V
+108 15 V
+108 14 V
+108 10 V
+3673 11576 M
+108 13 V
+108 9 V
+108 7 V
+108 8 V
+108 10 V
+109 12 V
+108 15 V
+108 15 V
+108 15 V
+108 10 V
+108 3 V
+109 -7 V
+108 -22 V
+108 -41 V
+108 -62 V
+108 -88 V
+108 -115 V
+109 -145 V
+108 -174 V
+108 -205 V
+108 -233 V
+108 -259 V
+108 -282 V
+109 -301 V
+108 -315 V
+108 -323 V
+108 -326 V
+108 -321 V
+108 -311 V
+109 -295 V
+stroke 6918 7868 M
+108 -274 V
+108 -248 V
+108 -218 V
+108 -185 V
+108 -152 V
+109 -116 V
+108 -83 V
+108 -51 V
+108 -22 V
+108 4 V
+108 26 V
+109 41 V
+108 53 V
+108 59 V
+108 60 V
+108 56 V
+108 48 V
+109 38 V
+108 26 V
+108 11 V
+108 -3 V
+108 -15 V
+108 -26 V
+109 -33 V
+108 -37 V
+108 -36 V
+108 -30 V
+108 -19 V
+108 -3 V
+109 19 V
+108 44 V
+108 74 V
+108 106 V
+108 139 V
+108 174 V
+109 209 V
+108 240 V
+108 271 V
+108 297 V
+108 317 V
+108 334 V
+109 344 V
+108 348 V
+108 346 V
+108 338 V
+108 323 V
+108 306 V
+109 282 V
+108 255 V
+108 228 V
+108 197 V
+108 167 V
+108 138 V
+109 110 V
+108 85 V
+108 64 V
+108 45 V
+108 30 V
+108 19 V
+109 13 V
+108 8 V
+108 7 V
+108 9 V
+108 10 V
+108 13 V
+109 15 V
+108 15 V
+108 14 V
+108 9 V
+3550 11640 M
+108 14 V
+109 8 V
+108 8 V
+108 8 V
+108 10 V
+108 12 V
+109 15 V
+108 15 V
+108 14 V
+108 11 V
+108 3 V
+108 -7 V
+109 -23 V
+108 -40 V
+108 -63 V
+108 -87 V
+108 -115 V
+108 -145 V
+109 -174 V
+108 -205 V
+108 -233 V
+108 -259 V
+108 -282 V
+108 -302 V
+109 -314 V
+108 -323 V
+108 -326 V
+108 -321 V
+108 -311 V
+108 -295 V
+109 -274 V
+108 -248 V
+108 -218 V
+108 -185 V
+stroke 7228 7008 M
+108 -152 V
+108 -117 V
+109 -83 V
+108 -50 V
+108 -22 V
+108 4 V
+108 26 V
+108 41 V
+109 53 V
+108 59 V
+108 59 V
+108 57 V
+108 48 V
+108 38 V
+109 25 V
+108 12 V
+108 -3 V
+108 -15 V
+108 -26 V
+108 -33 V
+109 -37 V
+108 -36 V
+108 -30 V
+108 -19 V
+108 -3 V
+108 19 V
+109 44 V
+108 74 V
+108 105 V
+108 140 V
+108 174 V
+108 208 V
+109 241 V
+108 271 V
+108 296 V
+108 318 V
+108 334 V
+108 344 V
+109 348 V
+108 346 V
+108 337 V
+108 324 V
+108 305 V
+108 282 V
+109 256 V
+108 227 V
+108 198 V
+108 167 V
+108 138 V
+108 110 V
+109 85 V
+108 64 V
+108 44 V
+108 31 V
+108 19 V
+108 13 V
+109 8 V
+108 7 V
+108 9 V
+108 10 V
+108 13 V
+108 14 V
+109 16 V
+108 14 V
+108 9 V
+3428 11705 M
+108 13 V
+108 9 V
+109 8 V
+108 8 V
+108 10 V
+108 12 V
+108 15 V
+108 15 V
+109 14 V
+108 11 V
+108 3 V
+108 -8 V
+108 -22 V
+108 -40 V
+109 -63 V
+108 -87 V
+108 -116 V
+108 -144 V
+108 -175 V
+108 -204 V
+109 -233 V
+108 -259 V
+108 -283 V
+108 -301 V
+108 -315 V
+108 -323 V
+109 -325 V
+108 -321 V
+108 -311 V
+108 -295 V
+108 -274 V
+108 -248 V
+109 -218 V
+108 -186 V
+108 -151 V
+108 -117 V
+108 -83 V
+108 -51 V
+stroke 7538 6670 M
+109 -21 V
+108 4 V
+108 25 V
+108 42 V
+108 53 V
+108 59 V
+109 59 V
+108 56 V
+108 49 V
+108 38 V
+108 25 V
+108 12 V
+109 -3 V
+108 -15 V
+108 -26 V
+108 -33 V
+108 -37 V
+108 -36 V
+109 -30 V
+108 -19 V
+108 -3 V
+108 19 V
+108 44 V
+108 74 V
+109 105 V
+108 140 V
+108 174 V
+108 208 V
+108 241 V
+108 271 V
+109 296 V
+108 318 V
+108 334 V
+108 344 V
+108 348 V
+108 346 V
+109 337 V
+108 324 V
+108 305 V
+108 282 V
+108 256 V
+108 227 V
+109 197 V
+108 168 V
+108 138 V
+108 110 V
+108 85 V
+108 63 V
+109 45 V
+108 31 V
+108 19 V
+108 12 V
+108 9 V
+108 7 V
+109 8 V
+108 11 V
+108 12 V
+108 15 V
+108 16 V
+108 14 V
+109 9 V
+3306 11770 M
+108 13 V
+108 9 V
+108 7 V
+108 8 V
+109 10 V
+108 13 V
+108 14 V
+108 16 V
+108 14 V
+109 10 V
+108 4 V
+108 -8 V
+108 -22 V
+108 -40 V
+108 -63 V
+109 -88 V
+108 -115 V
+108 -144 V
+108 -175 V
+108 -204 V
+108 -233 V
+109 -259 V
+108 -283 V
+108 -301 V
+108 -315 V
+108 -323 V
+108 -325 V
+109 -321 V
+108 -311 V
+108 -295 V
+108 -274 V
+108 -248 V
+108 -218 V
+109 -186 V
+108 -151 V
+108 -117 V
+108 -83 V
+108 -51 V
+108 -21 V
+109 4 V
+108 25 V
+108 42 V
+stroke 7849 6785 M
+108 53 V
+108 58 V
+108 60 V
+109 56 V
+108 49 V
+108 38 V
+108 25 V
+108 11 V
+108 -2 V
+109 -15 V
+108 -26 V
+108 -34 V
+108 -37 V
+108 -36 V
+108 -30 V
+109 -18 V
+108 -3 V
+108 19 V
+108 44 V
+108 73 V
+108 106 V
+109 140 V
+108 174 V
+108 208 V
+108 241 V
+108 271 V
+108 296 V
+109 318 V
+108 334 V
+108 344 V
+108 348 V
+108 346 V
+108 337 V
+109 324 V
+108 305 V
+108 282 V
+108 256 V
+108 227 V
+108 197 V
+109 167 V
+108 138 V
+108 111 V
+108 85 V
+108 63 V
+108 45 V
+109 30 V
+108 20 V
+108 12 V
+108 9 V
+108 7 V
+108 8 V
+109 10 V
+108 13 V
+108 15 V
+108 15 V
+108 14 V
+108 10 V
+3184 11835 M
+108 13 V
+108 9 V
+108 7 V
+108 8 V
+108 10 V
+109 13 V
+108 14 V
+108 16 V
+108 14 V
+108 10 V
+108 4 V
+109 -8 V
+108 -22 V
+108 -41 V
+108 -62 V
+108 -88 V
+108 -115 V
+109 -144 V
+108 -175 V
+108 -204 V
+108 -233 V
+108 -260 V
+108 -282 V
+109 -301 V
+108 -315 V
+108 -323 V
+108 -325 V
+108 -321 V
+108 -312 V
+109 -295 V
+108 -273 V
+108 -248 V
+108 -218 V
+108 -186 V
+108 -151 V
+109 -117 V
+108 -83 V
+108 -51 V
+108 -21 V
+108 4 V
+108 25 V
+109 42 V
+108 52 V
+108 59 V
+108 60 V
+108 56 V
+stroke 8159 7077 M
+108 49 V
+109 38 V
+108 25 V
+108 11 V
+108 -2 V
+108 -15 V
+108 -26 V
+109 -34 V
+108 -37 V
+108 -36 V
+108 -30 V
+108 -19 V
+108 -2 V
+109 18 V
+108 45 V
+108 73 V
+108 106 V
+108 140 V
+108 174 V
+109 208 V
+108 241 V
+108 270 V
+108 297 V
+108 318 V
+108 334 V
+109 344 V
+108 348 V
+108 345 V
+108 338 V
+108 324 V
+108 305 V
+109 282 V
+108 256 V
+108 227 V
+108 197 V
+108 167 V
+108 138 V
+109 111 V
+108 85 V
+108 63 V
+108 45 V
+108 30 V
+108 20 V
+109 12 V
+108 9 V
+108 7 V
+108 8 V
+108 10 V
+108 13 V
+109 15 V
+108 15 V
+108 14 V
+108 10 V
+3061 11900 M
+108 13 V
+109 9 V
+108 7 V
+108 8 V
+108 10 V
+108 12 V
+108 15 V
+109 15 V
+108 15 V
+108 10 V
+108 3 V
+108 -7 V
+109 -22 V
+108 -41 V
+108 -62 V
+108 -88 V
+108 -115 V
+108 -144 V
+109 -175 V
+108 -204 V
+108 -233 V
+108 -260 V
+108 -282 V
+108 -301 V
+109 -315 V
+108 -323 V
+108 -325 V
+108 -322 V
+108 -311 V
+108 -295 V
+109 -274 V
+108 -247 V
+108 -218 V
+108 -186 V
+108 -151 V
+108 -117 V
+109 -83 V
+108 -51 V
+108 -22 V
+108 5 V
+108 25 V
+108 42 V
+109 52 V
+108 59 V
+108 60 V
+108 56 V
+108 48 V
+108 38 V
+109 26 V
+108 11 V
+stroke 8470 7265 M
+108 -2 V
+108 -16 V
+108 -26 V
+108 -33 V
+109 -37 V
+108 -36 V
+108 -30 V
+108 -19 V
+108 -2 V
+108 18 V
+109 45 V
+108 73 V
+108 106 V
+108 139 V
+108 175 V
+108 208 V
+109 241 V
+108 270 V
+108 297 V
+108 318 V
+108 333 V
+108 344 V
+109 348 V
+108 346 V
+108 338 V
+108 324 V
+108 305 V
+108 282 V
+109 256 V
+108 227 V
+108 197 V
+108 167 V
+108 138 V
+108 110 V
+109 86 V
+108 63 V
+108 45 V
+108 30 V
+108 20 V
+108 12 V
+109 8 V
+108 8 V
+108 8 V
+108 10 V
+108 13 V
+108 15 V
+109 15 V
+108 14 V
+108 10 V
+7829 9371 M
+-48 26 V
+-48 25 V
+-48 26 V
+-49 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-49 26 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-49 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-49 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-49 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 26 V
+-48 25 V
+-49 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-49 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 26 V
+-49 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-49 25 V
+stroke 5228 10750 M
+-48 26 V
+-48 25 V
+-48 26 V
+-48 26 V
+-48 25 V
+-48 26 V
+-49 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-49 25 V
+-48 26 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-49 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-49 25 V
+-48 26 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-49 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-49 26 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-49 25 V
+-48 26 V
+18538 10497 M
+-48 25 V
+-49 26 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-49 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-49 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-49 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-49 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-49 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 26 V
+-49 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-49 26 V
+-48 25 V
+-48 26 V
+-48 26 V
+-48 25 V
+-48 26 V
+-49 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-49 25 V
+stroke 15744 11978 M
+-48 26 V
+-48 25 V
+-48 26 V
+-48 26 V
+-48 25 V
+-49 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-49 25 V
+-48 26 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-49 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-49 26 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-49 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-48 26 V
+-48 25 V
+-49 26 V
+-48 26 V
+-48 25 V
+-48 26 V
+% End plot #2
+stroke
+LTb
+18538 3454 M
+7830 2328 L
+3062 4856 M
+7830 2328 L
+0 7043 V
+stroke
+LCb setrgbcolor
+14375 1859 M
+[ [(Symbol) 600.0 0.0 true true 0 (f)]
+[(Helvetica) 600.0 0.0 true true 0 ( [deg])]
+] -200.0 MCshow
+LTb
+LCb setrgbcolor
+2769 3311 M
+[ [(Symbol) 600.0 0.0 true true 0 (q)]
+[(Helvetica) 600.0 0.0 true true 0 ( [deg])]
+] -200.0 MCshow
+LTb
+LCb setrgbcolor
+1105 8179 M
+currentpoint gsave translate 90 rotate 0 0 moveto
+[ [(Helvetica) 600.0 0.0 true true 0 (V)]
+[(Helvetica) 480.0 -180.0 true true 0 (T)]
+[(Helvetica) 600.0 0.0 true true 0 ( [kJ mol)]
+[(Helvetica) 480.0 300.0 true true 0 (-1)]
+[(Helvetica) 600.0 0.0 true true 0 (])]
+] -200.0 MCshow
+grestore
+LTb
+1.000 UP
+stroke
+grestore
+end
+showpage
+%%Trailer
+%%DocumentFonts: Symbol Helvetica
index 0fdb983b40207610e7bf63c04f344848a7ab7f49..6c4d9922e2d1190188e4a633bb61a7d126857c4e 100644 (file)
@@ -1,7 +1,7 @@
 %
 % This file is part of the GROMACS molecular simulation package.
 %
-% Copyright (c) 2013, by the GROMACS development team, led by
+% Copyright (c) 2013,2014, by the GROMACS development team, led by
 % Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
 % and including many others, as listed in the AUTHORS file in the
 % top-level source directory and at http://www.gromacs.org.
@@ -1239,6 +1239,7 @@ cross bond-angle                   & {\tts angles}                  & 3     & 4
 Urey-Bradley                       & {\tts angles}\fnm{5}           & 3     & 5     & $\theta_0$ (deg); $k_\theta$ (\kJmolrad{-2}); $r_{13}$ (nm); $k_{UB}$ (\kJmolnm{-2}) & all & \ssecref{Urey-Bradley} \\
 quartic angle                      & {\tts angles}\fnm{5}           & 3     & 6     & $\theta_0$ (deg); $C_{i=0,1,2,3,4}$ (\kJmolrad{-i})   &            & \ssecref{quarticangle} \\
 tabulated angle                    & {\tts angles}                  & 3     & 8     & table number ($\geq 0$); $k$ (\kJmol)                 & $k$        & \ssecref{tabulatedinteraction} \\
+restricted bending potential       & {\tts angles}                  & 3     & 10    & $\theta_0$ (deg); $k_\theta$ (\kJmol)                 &            & \ssecref{ReB} \\
 proper dihedral                    & {\tts dihedrals}               & 4     & 1     & $\phi_s$ (deg); $k_\phi$ (\kJmol); multiplicity       & $\phi,k$   & \ssecref{properdihedral} \\
 improper dihedral                  & {\tts dihedrals}               & 4     & 2     & $\xi_0$ (deg); $k_\xi$ (\kJmolrad{-2})                & all        & \ssecref{harmonicimproperdihedral} \\
 Ryckaert-Bellemans dihedral        & {\tts dihedrals}               & 4     & 3     & $C_0$, $C_1$, $C_2$, $C_3$, $C_4$, $C_5$ (\kJmol)     & all        & \ssecref{RBdihedral} \\
@@ -1246,6 +1247,8 @@ periodic improper dihedral         & {\tts dihedrals}               & 4     & 4
 Fourier dihedral                   & {\tts dihedrals}               & 4     & 5     & $C_1$, $C_2$, $C_3$, $C_4$ (\kJmol)                   & all        & \ssecref{Fourierdihedral} \\
 tabulated dihedral                 & {\tts dihedrals}               & 4     & 8     & table number ($\geq 0$); $k$ (\kJmol)                 & $k$        & \ssecref{tabulatedinteraction} \\
 proper dihedral (multiple)         & {\tts dihedrals}               & 4     & 9     & $\phi_s$ (deg); $k_\phi$ (\kJmol); multiplicity       & $\phi,k$   & \ssecref{properdihedral} \\
+restricted dihedral                & {\tts dihedrals}               & 4     & 11    & $\phi_0$ (deg); $k_\phi$ (\kJmol)                    &            & \ssecref{ReT} \\
+combined bending-torsion potential & {\tts dihedrals}               & 4     & 10    & $a_0$, $a_1$, $a_2$, $a_3$, $a_4$ (\kJmol)       &            & \ssecref{CBT} \\
 exclusions                         & {\tts exclusions}              & 1     &       & one or more atom indices                              &            & \tsecref{excl} \\
 constraint                         & {\tts constraints}\fnm{4}      & 2     & 1     & $b_0$ (nm)                                            & all        & \sssecref{constraints},\tsecref{constraints} \\
 constraint\fnm{6}                  & {\tts constraints}             & 2     & 2     & $b_0$ (nm)                                            & all        & \sssecref{constraints},\tsecref{constraints},\tsecref{excl} \\
index 000f0916b4fc30942d8d44fb536e211a794a2d91..cb221d483aed7b545160c08034d68e7e18802d6f 100644 (file)
@@ -84,8 +84,9 @@ static const char *tpx_tag = TPX_TAG_RELEASE;
  * below that does the right thing according to the value of
  * file_version. */
 enum tpxv {
-    tpxv_ComputationalElectrophysiology = 96, /**< support for ion/water position swaps (computational electrophysiology) */
-    tpxv_Use64BitRandomSeed                   /**< change ld_seed from int to gmx_int64_t */
+    tpxv_ComputationalElectrophysiology = 96,               /**< support for ion/water position swaps (computational electrophysiology) */
+    tpxv_Use64BitRandomSeed,                                /**< change ld_seed from int to gmx_int64_t */
+    tpxv_RestrictedBendingAndCombinedAngleTorsionPotentials /**< potentials for supporting coarse-grained force fields */
 };
 
 /*! \brief Version number of the file format written to run input
@@ -99,8 +100,7 @@ enum tpxv {
  *
  * When developing a feature branch that needs to change the run input
  * file format, change tpx_tag instead. */
-static const int tpx_version = tpxv_Use64BitRandomSeed;
-
+static const int tpx_version = tpxv_RestrictedBendingAndCombinedAngleTorsionPotentials;
 
 /* This number should only be increased when you edit the TOPOLOGY section
  * or the HEADER of the tpx format.
@@ -111,8 +111,11 @@ static const int tpx_version = tpxv_Use64BitRandomSeed;
  * It first appeared in tpx version 26, when I also moved the inputrecord
  * to the end of the tpx file, so we can just skip it if we only
  * want the topology.
+ *
+ * In particular, it must be increased when adding new elements to
+ * ftupd, so that old code can read new .tpr files.
  */
-static const int tpx_generation = 25;
+static const int tpx_generation = 26;
 
 /* This number should be the most recent backwards incompatible version
  * I.e., if this number is 9, we cannot read tpx version 9 with this code.
@@ -164,12 +167,15 @@ static const t_ftupd ftupd[] = {
     { 43, F_TABBONDS          },
     { 43, F_TABBONDSNC        },
     { 70, F_RESTRBONDS        },
+    { tpxv_RestrictedBendingAndCombinedAngleTorsionPotentials, F_RESTRANGLES },
     { 76, F_LINEAR_ANGLES     },
     { 30, F_CROSS_BOND_BONDS  },
     { 30, F_CROSS_BOND_ANGLES },
     { 30, F_UREY_BRADLEY      },
     { 34, F_QUARTIC_ANGLES    },
     { 43, F_TABANGLES         },
+    { tpxv_RestrictedBendingAndCombinedAngleTorsionPotentials, F_RESTRDIHS },
+    { tpxv_RestrictedBendingAndCombinedAngleTorsionPotentials, F_CBTDIHS },
     { 26, F_FOURDIHS          },
     { 26, F_PIDIHS            },
     { 43, F_TABDIHS           },
@@ -1799,6 +1805,10 @@ void do_iparams(t_fileio *fio, t_functype ftype, t_iparams *iparams,
                 iparams->pdihs.cpB  = iparams->pdihs.cpA;
             }
             break;
+        case F_RESTRANGLES:
+            gmx_fio_do_real(fio, iparams->harmonic.rA);
+            gmx_fio_do_real(fio, iparams->harmonic.krA);
+            break;
         case F_LINEAR_ANGLES:
             gmx_fio_do_real(fio, iparams->linangle.klinA);
             gmx_fio_do_real(fio, iparams->linangle.aA);
@@ -1809,6 +1819,7 @@ void do_iparams(t_fileio *fio, t_functype ftype, t_iparams *iparams,
             gmx_fio_do_real(fio, iparams->fene.bm);
             gmx_fio_do_real(fio, iparams->fene.kb);
             break;
+
         case F_RESTRBONDS:
             gmx_fio_do_real(fio, iparams->restraint.lowA);
             gmx_fio_do_real(fio, iparams->restraint.up1A);
@@ -1961,6 +1972,10 @@ void do_iparams(t_fileio *fio, t_functype ftype, t_iparams *iparams,
                 gmx_fio_do_int(fio, iparams->pdihs.mult);
             }
             break;
+        case F_RESTRDIHS:
+            gmx_fio_do_real(fio, iparams->pdihs.phiA);
+            gmx_fio_do_real(fio, iparams->pdihs.cpA);
+            break;
         case F_DISRES:
             gmx_fio_do_int(fio, iparams->disres.label);
             gmx_fio_do_int(fio, iparams->disres.type);
@@ -2019,6 +2034,9 @@ void do_iparams(t_fileio *fio, t_functype ftype, t_iparams *iparams,
             gmx_fio_do_real(fio, iparams->fbposres.r);
             gmx_fio_do_real(fio, iparams->fbposres.k);
             break;
+        case F_CBTDIHS:
+            gmx_fio_ndo_real(fio, iparams->cbtdihs.cbtcA, NR_CBTDIHS);
+            break;
         case F_RBDIHS:
             gmx_fio_ndo_real(fio, iparams->rbdihs.rbcA, NR_RBDIHS);
             if (file_version >= 25)
index 98c7d058af19514e94adbcccf3935f5d4f7355a4..054d77d1d4d6ae5857b23f1f5ea2eb065b5eb602 100644 (file)
@@ -116,6 +116,18 @@ static void fill_ft_ind(int nft, int *ft, t_idef *idef,
                     case F_RBDIHS:
                         sprintf(buf, "RB-A1=%.2f", idef->iparams[i].rbdihs.rbcA[1]);
                         break;
+                    case  F_RESTRANGLES:
+                        sprintf(buf, "Theta=%.1f_%.2f", idef->iparams[i].harmonic.rA,
+                                idef->iparams[i].harmonic.krA);
+                        break;
+                    case  F_RESTRDIHS:
+                        sprintf(buf, "Theta=%.1f_%.2f", idef->iparams[i].harmonic.rA,
+                                idef->iparams[i].harmonic.krA);
+                        break;
+                    case  F_CBTDIHS:
+                        sprintf(buf, "CBT-A1=%.2f", idef->iparams[i].cbtdihs.cbtcA[1]);
+                        break;
+
                     default:
                         gmx_fatal(FARGS, "Unsupported function type '%s' selected",
                                   interaction_function[ftype].longname);
index 6ae097c006b9aca64edf42c01149f75267d2923a..dfc6bf2fc57b00328b0a2744cad01262078b8a03 100644 (file)
@@ -57,6 +57,7 @@
 #include "orires.h"
 #include "force.h"
 #include "nonbonded.h"
+#include "restcbt.h"
 
 #include "gromacs/simd/simd.h"
 #include "gromacs/simd/simd_math.h"
@@ -2661,6 +2662,326 @@ real unimplemented(int gmx_unused nbonds,
     return 0.0; /* To make the compiler happy */
 }
 
+real restrangles(int nbonds,
+                 const t_iatom forceatoms[], const t_iparams forceparams[],
+                 const rvec x[], rvec f[], rvec fshift[],
+                 const t_pbc *pbc, const t_graph *g,
+                 real gmx_unused lambda, real gmx_unused *dvdlambda,
+                 const t_mdatoms gmx_unused *md, t_fcdata gmx_unused *fcd,
+                 int gmx_unused *global_atom_index)
+{
+    int  i, d, ai, aj, ak, type, m;
+    int  t1, t2;
+    rvec r_ij, r_kj;
+    real v, vtot;
+    ivec jt, dt_ij, dt_kj;
+    rvec f_i, f_j, f_k;
+    real prefactor, ratio_ante, ratio_post;
+    rvec delta_ante, delta_post, vec_temp;
+
+    vtot = 0.0;
+    for (i = 0; (i < nbonds); )
+    {
+        type = forceatoms[i++];
+        ai   = forceatoms[i++];
+        aj   = forceatoms[i++];
+        ak   = forceatoms[i++];
+
+        t1 = pbc_rvec_sub(pbc, x[ai], x[aj], vec_temp);
+        pbc_rvec_sub(pbc, x[aj], x[ai], delta_ante);
+        t2 = pbc_rvec_sub(pbc, x[ak], x[aj], delta_post);
+
+
+        /* This function computes factors needed for restricted angle potential.
+         * The restricted angle potential is used in coarse-grained simulations to avoid singularities
+         * when three particles align and the dihedral angle and dihedral potential
+         * cannot be calculated. This potential is calculated using the formula:
+           real restrangles(int nbonds,
+            const t_iatom forceatoms[],const t_iparams forceparams[],
+            const rvec x[],rvec f[],rvec fshift[],
+            const t_pbc *pbc,const t_graph *g,
+            real gmx_unused lambda,real gmx_unused *dvdlambda,
+            const t_mdatoms gmx_unused *md,t_fcdata gmx_unused *fcd,
+            int gmx_unused *global_atom_index)
+           {
+           int  i, d, ai, aj, ak, type, m;
+           int t1, t2;
+           rvec r_ij,r_kj;
+           real v, vtot;
+           ivec jt,dt_ij,dt_kj;
+           rvec f_i, f_j, f_k;
+           real prefactor, ratio_ante, ratio_post;
+           rvec delta_ante, delta_post, vec_temp;
+
+           vtot = 0.0;
+           for(i=0; (i<nbonds); )
+           {
+           type = forceatoms[i++];
+           ai   = forceatoms[i++];
+           aj   = forceatoms[i++];
+           ak   = forceatoms[i++];
+
+         * \f[V_{\rm ReB}(\theta_i) = \frac{1}{2} k_{\theta} \frac{(\cos\theta_i - \cos\theta_0)^2}
+         * {\sin^2\theta_i}\f] ({eq:ReB} and ref \cite{MonicaGoga2013} from the manual).
+         * For more explanations see comments file "restcbt.h". */
+
+        compute_factors_restangles(type, forceparams,  delta_ante, delta_post,
+                                   &prefactor, &ratio_ante, &ratio_post, &v);
+
+        /*   Forces are computed per component */
+        for (d = 0; d < DIM; d++)
+        {
+            f_i[d] = prefactor * (ratio_ante * delta_ante[d] - delta_post[d]);
+            f_j[d] = prefactor * ((ratio_post + 1.0) * delta_post[d] - (ratio_ante + 1.0) * delta_ante[d]);
+            f_k[d] = prefactor * (delta_ante[d] - ratio_post * delta_post[d]);
+        }
+
+        /*   Computation of potential energy   */
+
+        vtot += v;
+
+        /*   Update forces */
+
+        for (m = 0; (m < DIM); m++)
+        {
+            f[ai][m] += f_i[m];
+            f[aj][m] += f_j[m];
+            f[ak][m] += f_k[m];
+        }
+
+        if (g)
+        {
+            copy_ivec(SHIFT_IVEC(g, aj), jt);
+            ivec_sub(SHIFT_IVEC(g, ai), jt, dt_ij);
+            ivec_sub(SHIFT_IVEC(g, ak), jt, dt_kj);
+            t1 = IVEC2IS(dt_ij);
+            t2 = IVEC2IS(dt_kj);
+        }
+
+        rvec_inc(fshift[t1], f_i);
+        rvec_inc(fshift[CENTRAL], f_j);
+        rvec_inc(fshift[t2], f_k);
+    }
+    return vtot;
+}
+
+
+real restrdihs(int nbonds,
+               const t_iatom forceatoms[], const t_iparams forceparams[],
+               const rvec x[], rvec f[], rvec fshift[],
+               const t_pbc *pbc, const t_graph *g,
+               real gmx_unused lambda, real gmx_unused *dvlambda,
+               const t_mdatoms gmx_unused *md, t_fcdata gmx_unused *fcd,
+               int gmx_unused *global_atom_index)
+{
+    int  i, d, type, ai, aj, ak, al;
+    rvec f_i, f_j, f_k, f_l;
+    rvec dx_jl;
+    ivec jt, dt_ij, dt_kj, dt_lj;
+    int  t1, t2, t3;
+    real v, vtot;
+    rvec delta_ante,  delta_crnt, delta_post, vec_temp;
+    real factor_phi_ai_ante, factor_phi_ai_crnt, factor_phi_ai_post;
+    real factor_phi_aj_ante, factor_phi_aj_crnt, factor_phi_aj_post;
+    real factor_phi_ak_ante, factor_phi_ak_crnt, factor_phi_ak_post;
+    real factor_phi_al_ante, factor_phi_al_crnt, factor_phi_al_post;
+    real prefactor_phi;
+
+
+    vtot = 0.0;
+    for (i = 0; (i < nbonds); )
+    {
+        type = forceatoms[i++];
+        ai   = forceatoms[i++];
+        aj   = forceatoms[i++];
+        ak   = forceatoms[i++];
+        al   = forceatoms[i++];
+
+        t1 = pbc_rvec_sub(pbc, x[ai], x[aj], vec_temp);
+        pbc_rvec_sub(pbc, x[aj], x[ai], delta_ante);
+        t2 = pbc_rvec_sub(pbc, x[ak], x[aj], delta_crnt);
+        t3 = pbc_rvec_sub(pbc, x[ak], x[al], vec_temp);
+        pbc_rvec_sub(pbc, x[al], x[ak], delta_post);
+
+        /* This function computes factors needed for restricted angle potential.
+         * The restricted angle potential is used in coarse-grained simulations to avoid singularities
+         * when three particles align and the dihedral angle and dihedral potential cannot be calculated.
+         * This potential is calculated using the formula:
+         * \f[V_{\rm ReB}(\theta_i) = \frac{1}{2} k_{\theta}
+         * \frac{(\cos\theta_i - \cos\theta_0)^2}{\sin^2\theta_i}\f]
+         * ({eq:ReB} and ref \cite{MonicaGoga2013} from the manual).
+         * For more explanations see comments file "restcbt.h" */
+
+        compute_factors_restrdihs(type, forceparams,
+                                  delta_ante, delta_crnt, delta_post,
+                                  &factor_phi_ai_ante, &factor_phi_ai_crnt, &factor_phi_ai_post,
+                                  &factor_phi_aj_ante, &factor_phi_aj_crnt, &factor_phi_aj_post,
+                                  &factor_phi_ak_ante, &factor_phi_ak_crnt, &factor_phi_ak_post,
+                                  &factor_phi_al_ante, &factor_phi_al_crnt, &factor_phi_al_post,
+                                  &prefactor_phi, &v);
+
+
+        /*      Computation of forces per component */
+        for (d = 0; d < DIM; d++)
+        {
+            f_i[d] = prefactor_phi * (factor_phi_ai_ante * delta_ante[d] + factor_phi_ai_crnt * delta_crnt[d] + factor_phi_ai_post * delta_post[d]);
+            f_j[d] = prefactor_phi * (factor_phi_aj_ante * delta_ante[d] + factor_phi_aj_crnt * delta_crnt[d] + factor_phi_aj_post * delta_post[d]);
+            f_k[d] = prefactor_phi * (factor_phi_ak_ante * delta_ante[d] + factor_phi_ak_crnt * delta_crnt[d] + factor_phi_ak_post * delta_post[d]);
+            f_l[d] = prefactor_phi * (factor_phi_al_ante * delta_ante[d] + factor_phi_al_crnt * delta_crnt[d] + factor_phi_al_post * delta_post[d]);
+        }
+        /*      Computation of the energy */
+
+        vtot += v;
+
+
+
+        /*    Updating the forces */
+
+        rvec_inc(f[ai], f_i);
+        rvec_inc(f[aj], f_j);
+        rvec_inc(f[ak], f_k);
+        rvec_inc(f[al], f_l);
+
+
+        /* Updating the fshift forces for the pressure coupling */
+        if (g)
+        {
+            copy_ivec(SHIFT_IVEC(g, aj), jt);
+            ivec_sub(SHIFT_IVEC(g, ai), jt, dt_ij);
+            ivec_sub(SHIFT_IVEC(g, ak), jt, dt_kj);
+            ivec_sub(SHIFT_IVEC(g, al), jt, dt_lj);
+            t1 = IVEC2IS(dt_ij);
+            t2 = IVEC2IS(dt_kj);
+            t3 = IVEC2IS(dt_lj);
+        }
+        else if (pbc)
+        {
+            t3 = pbc_rvec_sub(pbc, x[al], x[aj], dx_jl);
+        }
+        else
+        {
+            t3 = CENTRAL;
+        }
+
+        rvec_inc(fshift[t1], f_i);
+        rvec_inc(fshift[CENTRAL], f_j);
+        rvec_inc(fshift[t2], f_k);
+        rvec_inc(fshift[t3], f_l);
+
+    }
+
+    return vtot;
+}
+
+
+real cbtdihs(int nbonds,
+             const t_iatom forceatoms[], const t_iparams forceparams[],
+             const rvec x[], rvec f[], rvec fshift[],
+             const t_pbc *pbc, const t_graph *g,
+             real gmx_unused lambda, real gmx_unused *dvdlambda,
+             const t_mdatoms gmx_unused *md, t_fcdata gmx_unused *fcd,
+             int gmx_unused *global_atom_index)
+{
+    int  type, ai, aj, ak, al, i, d;
+    int  t1, t2, t3;
+    real v, vtot;
+    rvec vec_temp;
+    rvec f_i, f_j, f_k, f_l;
+    ivec jt, dt_ij, dt_kj, dt_lj;
+    rvec dx_jl;
+    rvec delta_ante, delta_crnt, delta_post;
+    rvec f_phi_ai, f_phi_aj, f_phi_ak, f_phi_al;
+    rvec f_theta_ante_ai, f_theta_ante_aj, f_theta_ante_ak;
+    rvec f_theta_post_aj, f_theta_post_ak, f_theta_post_al;
+
+
+
+
+    vtot = 0.0;
+    for (i = 0; (i < nbonds); )
+    {
+        type = forceatoms[i++];
+        ai   = forceatoms[i++];
+        aj   = forceatoms[i++];
+        ak   = forceatoms[i++];
+        al   = forceatoms[i++];
+
+
+        t1 = pbc_rvec_sub(pbc, x[ai], x[aj], vec_temp);
+        pbc_rvec_sub(pbc, x[aj], x[ai], delta_ante);
+        t2 = pbc_rvec_sub(pbc, x[ak], x[aj], vec_temp);
+        pbc_rvec_sub(pbc, x[ak], x[aj], delta_crnt);
+        t3 = pbc_rvec_sub(pbc, x[ak], x[al], vec_temp);
+        pbc_rvec_sub(pbc, x[al], x[ak], delta_post);
+
+        /* \brief Compute factors for CBT potential
+         * The combined bending-torsion potential goes to zero in a very smooth manner, eliminating the numerical
+         * instabilities, when three coarse-grained particles align and the dihedral angle and standard
+         * dihedral potentials cannot be calculated. The CBT potential is calculated using the formula:
+         * \f[V_{\rm CBT}(\theta_{i-1}, \theta_i, \phi_i) = k_{\phi} \sin^3\theta_{i-1} \sin^3\theta_{i}
+         * \sum_{n=0}^4 { a_n \cos^n\phi_i}\f] ({eq:CBT} and ref \cite{MonicaGoga2013} from the manual).
+         * It contains in its expression not only the dihedral angle \f$\phi\f$
+         * but also \f[\theta_{i-1}\f] (theta_ante bellow) and \f[\theta_{i}\f] (theta_post bellow)
+         * --- the adjacent bending angles.
+         * For more explanations see comments file "restcbt.h". */
+
+        compute_factors_cbtdihs(type, forceparams, delta_ante, delta_crnt, delta_post,
+                                f_phi_ai, f_phi_aj, f_phi_ak, f_phi_al,
+                                f_theta_ante_ai, f_theta_ante_aj, f_theta_ante_ak,
+                                f_theta_post_aj, f_theta_post_ak, f_theta_post_al,
+                                &v);
+
+
+        /*      Acumulate the resuts per beads */
+        for (d = 0; d < DIM; d++)
+        {
+            f_i[d] = f_phi_ai[d] + f_theta_ante_ai[d];
+            f_j[d] = f_phi_aj[d] + f_theta_ante_aj[d] + f_theta_post_aj[d];
+            f_k[d] = f_phi_ak[d] + f_theta_ante_ak[d] + f_theta_post_ak[d];
+            f_l[d] = f_phi_al[d] + f_theta_post_al[d];
+        }
+
+        /*      Compute the potential energy */
+
+        vtot += v;
+
+
+        /*  Updating the forces */
+        rvec_inc(f[ai], f_i);
+        rvec_inc(f[aj], f_j);
+        rvec_inc(f[ak], f_k);
+        rvec_inc(f[al], f_l);
+
+
+        /* Updating the fshift forces for the pressure coupling */
+        if (g)
+        {
+            copy_ivec(SHIFT_IVEC(g, aj), jt);
+            ivec_sub(SHIFT_IVEC(g, ai), jt, dt_ij);
+            ivec_sub(SHIFT_IVEC(g, ak), jt, dt_kj);
+            ivec_sub(SHIFT_IVEC(g, al), jt, dt_lj);
+            t1 = IVEC2IS(dt_ij);
+            t2 = IVEC2IS(dt_kj);
+            t3 = IVEC2IS(dt_lj);
+        }
+        else if (pbc)
+        {
+            t3 = pbc_rvec_sub(pbc, x[al], x[aj], dx_jl);
+        }
+        else
+        {
+            t3 = CENTRAL;
+        }
+
+        rvec_inc(fshift[t1], f_i);
+        rvec_inc(fshift[CENTRAL], f_j);
+        rvec_inc(fshift[t2], f_k);
+        rvec_inc(fshift[t3], f_l);
+    }
+
+    return vtot;
+}
+
 real rbdihs(int nbonds,
             const t_iatom forceatoms[], const t_iparams forceparams[],
             const rvec x[], rvec f[], rvec fshift[],
index 0e466c155ae27eaa77af9d6d16e5ea910fdbdfa8..02f055c1362a5b35373f6d3c2800f2fc62ddc567 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
  * Copyright (c) 2001-2004, The GROMACS development team.
- * Copyright (c) 2013, by the GROMACS development team, led by
+ * Copyright (c) 2013,2014, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
@@ -101,6 +101,7 @@ const t_interaction_function interaction_function[F_NRE] =
     def_bonded  ("RESTRAINTPOT", "Restraint Pot.", 2, 4, 4,  eNR_RESTRBONDS,  restraint_bonds ),
     def_angle   ("ANGLES",   "Angle",           3, 2, 2,  eNR_ANGLES, angles        ),
     def_angle   ("G96ANGLES", "G96Angle",        3, 2, 2,  eNR_ANGLES, g96angles     ),
+    def_angle   ("RESTRANGLES", "Restricted Angles", 3, 2, 2,  eNR_ANGLES, restrangles),
     def_angle   ("LINEAR_ANGLES", "Lin. Angle", 3, 2, 2,  eNR_LINEAR_ANGLES, linear_angles ),
     def_bonded  ("CROSS_BOND_BOND", "Bond-Cross", 3, 3, 0, 0,          cross_bond_bond ),
     def_bonded  ("CROSS_BOND_ANGLE", "BA-Cross",   3, 4, 0, 0,          cross_bond_angle ),
@@ -109,6 +110,8 @@ const t_interaction_function interaction_function[F_NRE] =
     def_bondedt ("TABANGLES", "Tab. Angles",    3, 2, 2,  eNR_TABANGLES, tab_angles ),
     def_bonded  ("PDIHS",    "Proper Dih.",     4, 3, 3,  eNR_PROPER, pdihs         ),
     def_bonded  ("RBDIHS",   "Ryckaert-Bell.",  4, 6, 6,  eNR_RB, rbdihs            ),
+    def_bonded  ("RESTRDIHS",  "Restricted Dih.",     4, 2, 2,  eNR_PROPER,  restrdihs),
+    def_bonded  ("CBTDIHS",   "CBT Dih.",  4, 6, 6,  eNR_RB, cbtdihs            ),
     def_bonded  ("FOURDIHS", "Fourier Dih.",    4, 4, 4,  eNR_FOURDIH, rbdihs       ),
     def_bonded  ("IDIHS",    "Improper Dih.",   4, 2, 2,  eNR_IMPROPER, idihs        ),
     def_bonded  ("PIDIHS",   "Improper Dih.",   4, 3, 3,  eNR_IMPROPER, pdihs       ),
diff --git a/src/gromacs/gmxlib/restcbt.c b/src/gromacs/gmxlib/restcbt.c
new file mode 100644 (file)
index 0000000..8e38db9
--- /dev/null
@@ -0,0 +1,395 @@
+/*
+ * This file is part of the GROMACS molecular simulation package.
+ *
+ * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
+ * Copyright (c) 2001-2004, The GROMACS development team.
+ * Copyright (c) 2014, by the GROMACS development team, led by
+ * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
+ * and including many others, as listed in the AUTHORS file in the
+ * top-level source directory and at http://www.gromacs.org.
+ *
+ * GROMACS is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1
+ * of the License, or (at your option) any later version.
+ *
+ * GROMACS is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with GROMACS; if not, see
+ * http://www.gnu.org/licenses, or write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
+ *
+ * If you want to redistribute modifications to GROMACS, please
+ * consider that scientific software is very special. Version
+ * control is crucial - bugs must be traceable. We will be happy to
+ * consider code for inclusion in the official distribution, but
+ * derived work must not be called official GROMACS. Details are found
+ * in the README & COPYING files - if they are missing, get the
+ * official version at http://www.gromacs.org.
+ *
+ * To help us fund GROMACS development, we humbly ask that you cite
+ * the research papers on the package. Check out http://www.gromacs.org.
+ */
+
+#include <math.h>
+#include <assert.h>
+#include "physics.h"
+#include "vec.h"
+#include "gromacs/math/utilities.h"
+#include "txtdump.h"
+#include "bondf.h"
+#include "smalloc.h"
+#include "pbc.h"
+#include "ns.h"
+#include "macros.h"
+#include "names.h"
+#include "gmx_fatal.h"
+#include "mshift.h"
+#include "main.h"
+#include "disre.h"
+#include "orires.h"
+#include "force.h"
+#include "nonbonded.h"
+
+/* This function computes factors needed for restricted angle potential.
+ * For explanations on formula used see file "restcbt.h" */
+
+void compute_factors_restangles(int type, const t_iparams forceparams[],
+                                rvec delta_ante,  rvec delta_post,
+                                real *prefactor, real *ratio_ante, real *ratio_post, real *v)
+{
+    real theta_equil, k_bending;
+    real cosine_theta_equil;
+    real c_ante, c_cros, c_post;
+    real norm;
+    real delta_cosine, cosine_theta;
+    real sine_theta_sq;
+    real term_theta_theta_equil;
+
+    k_bending          = forceparams[type].harmonic.krA;
+    theta_equil        =  forceparams[type].harmonic.rA*DEG2RAD;
+    theta_equil        = M_PI - theta_equil;
+    cosine_theta_equil = cos(theta_equil);
+
+    c_ante = iprod(delta_ante, delta_ante);
+    c_cros = iprod(delta_ante, delta_post);
+    c_post = iprod(delta_post, delta_post);
+
+    norm          = gmx_invsqrt(c_ante * c_post);
+    cosine_theta  = c_cros * norm;
+    sine_theta_sq = 1 - cosine_theta * cosine_theta;
+
+    *ratio_ante = c_cros / c_ante;
+    *ratio_post = c_cros / c_post;
+
+    delta_cosine           = cosine_theta - cosine_theta_equil;
+    term_theta_theta_equil = 1 - cosine_theta * cosine_theta_equil;
+    *prefactor             = -(k_bending) * delta_cosine * norm * term_theta_theta_equil / (sine_theta_sq * sine_theta_sq);
+
+    *v = k_bending * 0.5 * delta_cosine * delta_cosine / sine_theta_sq;
+
+}
+
+
+/* Compute factors for restricted dihedral potential
+ * For explanations on formula used see file "restcbt.h" */
+void compute_factors_restrdihs(int type,  const t_iparams forceparams[],
+                               rvec delta_ante, rvec delta_crnt, rvec delta_post,
+                               real *factor_phi_ai_ante, real *factor_phi_ai_crnt, real *factor_phi_ai_post,
+                               real *factor_phi_aj_ante, real *factor_phi_aj_crnt, real *factor_phi_aj_post,
+                               real *factor_phi_ak_ante, real *factor_phi_ak_crnt, real *factor_phi_ak_post,
+                               real *factor_phi_al_ante, real *factor_phi_al_crnt, real *factor_phi_al_post,
+                               real *prefactor_phi, real *v)
+{
+
+    real phi0, sine_phi0, cosine_phi0;
+    real k_torsion;
+    real c_self_ante, c_self_crnt, c_self_post;
+    real c_cros_ante, c_cros_acrs, c_cros_post;
+    real c_prod, d_post, d_ante;
+    real sine_phi_sq, cosine_phi;
+    real delta_cosine, term_phi_phi0;
+    real ratio_phi_ante, ratio_phi_post;
+    real cos_phi, norm_phi;
+
+    /* Read parameters phi0 and k_torsion */
+    phi0        = forceparams[type].pdihs.phiA * DEG2RAD;
+    cosine_phi0 = cos(phi0);
+    sine_phi0   = sin(phi0);
+    k_torsion   = forceparams[type].pdihs.cpA;
+
+    /* Computation of the cosine of the dihedral angle. The scalar ("dot") product  method
+     * is used. c_*_* cummulate the scalar products of the differences of particles
+     * positions while c_prod, d_ante and d_post are differences of products of scalar
+     * terms that are parts of the derivatives of forces */
+    c_self_ante = iprod(delta_ante, delta_ante);
+    c_self_crnt = iprod(delta_crnt, delta_crnt);
+    c_self_post = iprod(delta_post, delta_post);
+    c_cros_ante = iprod(delta_ante, delta_crnt);
+    c_cros_acrs = iprod(delta_ante, delta_post);
+    c_cros_post = iprod(delta_crnt, delta_post);
+    c_prod      = c_cros_ante * c_cros_post - c_self_crnt * c_cros_acrs;
+    d_ante      = c_self_ante * c_self_crnt - c_cros_ante * c_cros_ante;
+    d_post      = c_self_post * c_self_crnt - c_cros_post * c_cros_post;
+
+    /*  When three consecutive beads align, we obtain values close to zero.
+     * Here we avoid small values to prevent round-off errors. */
+    if (d_ante < GMX_REAL_EPS)
+    {
+        d_ante = GMX_REAL_EPS;
+    }
+    if (d_post < GMX_REAL_EPS)
+    {
+        d_post = GMX_REAL_EPS;
+    }
+
+    /* Computes the square of the sinus of phi  in sine_phi_sq */
+    norm_phi    = gmx_invsqrt(d_ante * d_post);
+    cosine_phi  = c_prod * norm_phi;
+    sine_phi_sq = 1.0 - cosine_phi * cosine_phi;
+
+    /* It is possible that cosine_phi is slightly bigger than 1.0 due to round-off errors. */
+    if (sine_phi_sq < 0.0)
+    {
+        sine_phi_sq = 0.0;
+    }
+
+    /* Computation of the differences of cosines (delta_cosine) and a term (term_phi_phi0)
+     * that is part of the common prefactor_phi */
+
+    delta_cosine  = cosine_phi - cosine_phi0;
+    term_phi_phi0 = 1 - cosine_phi * cosine_phi0;
+
+
+    /*      Computation of ratios */
+    ratio_phi_ante = c_prod / d_ante;
+    ratio_phi_post = c_prod / d_post;
+
+    /*      Computation of the prefactor - common term for all forces */
+    *prefactor_phi = -(k_torsion) * delta_cosine * norm_phi * term_phi_phi0 / (sine_phi_sq * sine_phi_sq);
+
+    /* Computation of force factors.  Factors factor_phi_*  are coming from the
+     * derivatives of the torsion angle (phi) with respect to the beads ai, aj, al, ak,
+     * (four) coordinates and they are multiplied in the force computations with the
+     * differences of the particles positions stored in parameters delta_ante,
+     * delta_crnt, delta_post. For formulas see file "restcbt.h" */
+
+    *factor_phi_ai_ante = ratio_phi_ante * c_self_crnt;
+    *factor_phi_ai_crnt = -c_cros_post - ratio_phi_ante * c_cros_ante;
+    *factor_phi_ai_post = c_self_crnt;
+    *factor_phi_aj_ante = -c_cros_post - ratio_phi_ante * (c_self_crnt + c_cros_ante);
+    *factor_phi_aj_crnt = c_cros_post + c_cros_acrs * 2.0 + ratio_phi_ante * (c_self_ante + c_cros_ante) + ratio_phi_post * c_self_post;
+    *factor_phi_aj_post = -(c_cros_ante + c_self_crnt) - ratio_phi_post * c_cros_post;
+    *factor_phi_ak_ante = c_cros_post + c_self_crnt + ratio_phi_ante * c_cros_ante;
+    *factor_phi_ak_crnt = -(c_cros_ante + c_cros_acrs * 2.0)- ratio_phi_ante * c_self_ante - ratio_phi_post * (c_self_post + c_cros_post);
+    *factor_phi_ak_post = c_cros_ante + ratio_phi_post * (c_self_crnt + c_cros_post);
+    *factor_phi_al_ante = -c_self_crnt;
+    *factor_phi_al_crnt = c_cros_ante + ratio_phi_post * c_cros_post;
+    *factor_phi_al_post = -ratio_phi_post * c_self_crnt;
+
+    /* Contribution to energy  - see formula in file "restcbt.h"*/
+    *v = k_torsion * 0.5 * delta_cosine * delta_cosine / sine_phi_sq;
+}
+
+
+
+/* Compute factors for CBT potential
+ * For explanations on formula used see file "restcbt.h" */
+
+void compute_factors_cbtdihs(int type,  const t_iparams forceparams[],
+                             rvec delta_ante, rvec delta_crnt, rvec delta_post,
+                             rvec f_phi_ai, rvec f_phi_aj, rvec f_phi_ak, rvec f_phi_al,
+                             rvec f_theta_ante_ai, rvec f_theta_ante_aj, rvec f_theta_ante_ak,
+                             rvec f_theta_post_aj, rvec f_theta_post_ak, rvec f_theta_post_al,
+                             real * v)
+{
+    int  j, d;
+    real torsion_coef[NR_CBTDIHS];
+    real c_self_ante, c_self_crnt, c_self_post;
+    real c_cros_ante, c_cros_acrs, c_cros_post;
+    real c_prod, d_ante,  d_post;
+    real norm_phi, norm_theta_ante, norm_theta_post;
+    real cosine_phi, cosine_theta_ante, cosine_theta_post;
+    real sine_theta_ante_sq, sine_theta_post_sq;
+    real sine_theta_ante, sine_theta_post;
+    real prefactor_phi;
+    real ratio_phi_ante, ratio_phi_post;
+    real r1, r2;
+    real factor_phi_ai_ante, factor_phi_ai_crnt, factor_phi_ai_post;
+    real factor_phi_aj_ante, factor_phi_aj_crnt, factor_phi_aj_post;
+    real factor_phi_ak_ante, factor_phi_ak_crnt, factor_phi_ak_post;
+    real factor_phi_al_ante, factor_phi_al_crnt, factor_phi_al_post;
+    real prefactor_theta_ante, ratio_theta_ante_ante, ratio_theta_ante_crnt;
+    real prefactor_theta_post, ratio_theta_post_crnt, ratio_theta_post_post;
+
+    /* The formula for combined bending-torsion potential (see file "restcbt.h") contains
+     * in its expression not only the dihedral angle \f[\phi\f] but also \f[\theta_{i-1}\f]
+     * (theta_ante bellow) and \f[\theta_{i}\f] (theta_post bellow)--- the adjacent bending
+     * angles. The forces for the particles ai, aj, ak, al have components coming from the
+     * derivatives of the potential with respect to all three angles.
+     * This function is organised in 4 parts
+     * PART 1 - Computes force factors common to all the derivatives for the four particles
+     * PART 2 - Computes the force components due to the derivatives of dihedral angle Phi
+     * PART 3 - Computes the force components due to the derivatives of bending angle Theta_Ante
+     * PART 4 - Computes the force components due to the derivatives of bending angle Theta_Post
+     * Bellow we will respct thuis structure */
+
+
+    /* PART 1 - COMPUTES FORCE FACTORS COMMON TO ALL DERIVATIVES FOR THE FOUR PARTICLES */
+
+
+    for (j = 0; (j < NR_CBTDIHS); j++)
+    {
+        torsion_coef[j]  = forceparams[type].cbtdihs.cbtcA[j];
+    }
+
+    /* Computation of the cosine of the dihedral angle. The scalar ("dot") product  method
+     * is used. c_*_* cummulate the scalar products of the differences of particles
+     * positions while c_prod, d_ante and d_post are differences of products of scalar
+     * terms that are parts of the derivatives of forces */
+
+    c_self_ante = iprod(delta_ante, delta_ante);
+    c_self_crnt = iprod(delta_crnt, delta_crnt);
+    c_self_post = iprod(delta_post, delta_post);
+    c_cros_ante = iprod(delta_ante, delta_crnt);
+    c_cros_acrs = iprod(delta_ante, delta_post);
+    c_cros_post = iprod(delta_crnt, delta_post);
+    c_prod      = c_cros_ante * c_cros_post - c_self_crnt * c_cros_acrs;
+    d_ante      = c_self_ante * c_self_crnt - c_cros_ante * c_cros_ante;
+    d_post      = c_self_post * c_self_crnt - c_cros_post * c_cros_post;
+
+    /*  When three consecutive beads align, we obtain values close to zero.
+       Here we avoid small values to prevent round-off errors. */
+    if (d_ante < GMX_REAL_EPS)
+    {
+        d_ante = GMX_REAL_EPS;
+    }
+    if (d_post < GMX_REAL_EPS)
+    {
+        d_post = GMX_REAL_EPS;
+    }
+
+    /* Computations of cosines */
+    norm_phi           = gmx_invsqrt(d_ante * d_post);
+    norm_theta_ante    = gmx_invsqrt(c_self_ante * c_self_crnt);
+    norm_theta_post    = gmx_invsqrt(c_self_crnt * c_self_post);
+    cosine_phi         = c_prod * norm_phi;
+    cosine_theta_ante  = c_cros_ante * norm_theta_ante;
+    cosine_theta_post  = c_cros_post * norm_theta_post;
+    sine_theta_ante_sq = 1 - cosine_theta_ante * cosine_theta_ante;
+    sine_theta_post_sq = 1 - cosine_theta_post * cosine_theta_post;
+
+    /* It is possible that cosine_theta is slightly bigger than 1.0 due to round-off errors. */
+    if (sine_theta_ante_sq < 0.0)
+    {
+        sine_theta_ante_sq = 0.0;
+    }
+    if (sine_theta_post_sq < 0.0)
+    {
+        sine_theta_post_sq = 0.0;
+    }
+
+    sine_theta_ante = sqrt(sine_theta_ante_sq);
+    sine_theta_post = sqrt(sine_theta_post_sq);
+
+    /* PART 2 - COMPUTES FORCE COMPONENTS DUE TO DERIVATIVES TO DIHEDRAL ANGLE PHI */
+
+    /*      Computation of ratios */
+    ratio_phi_ante = c_prod / d_ante;
+    ratio_phi_post = c_prod / d_post;
+
+    /*       Computation of the prefactor */
+    /*      Computing 2nd power */
+    r1 = cosine_phi;
+
+    prefactor_phi = -torsion_coef[0] * norm_phi * (torsion_coef[2] + torsion_coef[3] * 2.0 * cosine_phi + torsion_coef[4] * 3.0 * (r1 * r1) + 4*torsion_coef[5]*r1*r1*r1) *
+        sine_theta_ante_sq * sine_theta_ante * sine_theta_post_sq * sine_theta_post;
+
+    /* Computation of factors (important for gaining speed). Factors factor_phi_*  are coming from the
+     * derivatives of the torsion angle (phi) with respect to the beads ai, aj, al, ak,
+     * (four) coordinates and they are multiplied in the force computations with the
+     * differences of the particles positions stored in parameters delta_ante,
+     * delta_crnt, delta_post. For formulas see file "restcbt.h" */
+
+    factor_phi_ai_ante = ratio_phi_ante * c_self_crnt;
+    factor_phi_ai_crnt = -c_cros_post - ratio_phi_ante * c_cros_ante;
+    factor_phi_ai_post = c_self_crnt;
+    factor_phi_aj_ante = -c_cros_post - ratio_phi_ante * (c_self_crnt + c_cros_ante);
+    factor_phi_aj_crnt = c_cros_post + c_cros_acrs * 2.0 + ratio_phi_ante * (c_self_ante + c_cros_ante) +  ratio_phi_post * c_self_post;
+    factor_phi_aj_post = -(c_cros_ante + c_self_crnt) - ratio_phi_post * c_cros_post;
+    factor_phi_ak_ante = c_cros_post + c_self_crnt + ratio_phi_ante * c_cros_ante;
+    factor_phi_ak_crnt = -(c_cros_ante + c_cros_acrs * 2.0) - ratio_phi_ante * c_self_ante - ratio_phi_post * (c_self_post + c_cros_post);
+    factor_phi_ak_post = c_cros_ante + ratio_phi_post * (c_self_crnt + c_cros_post);
+    factor_phi_al_ante = -c_self_crnt;
+    factor_phi_al_crnt = c_cros_ante + ratio_phi_post * c_cros_post;
+    factor_phi_al_post = -ratio_phi_post * c_self_crnt;
+
+    /* Computation of forces due to the derivatives of dihedral angle phi*/
+    for (d = 0; d < DIM; d++)
+    {
+        f_phi_ai[d] = prefactor_phi * (factor_phi_ai_ante * delta_ante[d] + factor_phi_ai_crnt * delta_crnt[d] + factor_phi_ai_post * delta_post[d]);
+        f_phi_aj[d] = prefactor_phi * (factor_phi_aj_ante * delta_ante[d] + factor_phi_aj_crnt * delta_crnt[d] + factor_phi_aj_post * delta_post[d]);
+        f_phi_ak[d] = prefactor_phi * (factor_phi_ak_ante * delta_ante[d] + factor_phi_ak_crnt * delta_crnt[d] + factor_phi_ak_post * delta_post[d]);
+        f_phi_al[d] = prefactor_phi * (factor_phi_al_ante * delta_ante[d] + factor_phi_al_crnt * delta_crnt[d] + factor_phi_al_post * delta_post[d]);
+    }
+
+    /* PART 3 - COMPUTES THE FORCE COMPONENTS DUE TO THE DERIVATIVES OF BENDING ANGLE THETHA_ANTHE */
+    /*      Computation of ratios */
+    ratio_theta_ante_ante = c_cros_ante / c_self_ante;
+    ratio_theta_ante_crnt = c_cros_ante / c_self_crnt;
+
+    /*      Computation of the prefactor */
+    /*      Computing 2nd power */
+    r1 = cosine_phi;
+    /*      Computing 3rd power */
+    r2 = cosine_phi;
+
+    prefactor_theta_ante = -torsion_coef[0] * norm_theta_ante * ( torsion_coef[1] + torsion_coef[2] * cosine_phi + torsion_coef[3] * (r1 * r1) +
+                                                                  torsion_coef[4] * (r2 * (r2 * r2))+ torsion_coef[5] * (r2 * (r2 * (r2 * r2)))) * (-3.0) * cosine_theta_ante * sine_theta_ante * sine_theta_post_sq * sine_theta_post;
+
+
+    /*      Computation of forces due to the derivatives of bending angle theta_ante */
+    for (d = 0; d < DIM; d++)
+    {
+        f_theta_ante_ai[d] = prefactor_theta_ante * (ratio_theta_ante_ante * delta_ante[d] - delta_crnt[d]);
+        f_theta_ante_aj[d] = prefactor_theta_ante * ((ratio_theta_ante_crnt + 1.0) * delta_crnt[d] - (ratio_theta_ante_ante + 1.0) * delta_ante[d]);
+        f_theta_ante_ak[d] = prefactor_theta_ante * (delta_ante[d] - ratio_theta_ante_crnt * delta_crnt[d]);
+    }
+
+    /* PART 4 - COMPUTES THE FORCE COMPONENTS DUE TO THE DERIVATIVES OF THE BENDING ANGLE THETA_POST */
+
+    /*      Computation of ratios */
+    ratio_theta_post_crnt = c_cros_post / c_self_crnt;
+    ratio_theta_post_post = c_cros_post / c_self_post;
+
+    /*     Computation of the prefactor */
+    /*      Computing 2nd power */
+    r1 = cosine_phi;
+    /*      Computing 3rd power */
+    r2 = cosine_phi;
+
+    prefactor_theta_post = -torsion_coef[0] * norm_theta_post * (torsion_coef[1] + torsion_coef[2] * cosine_phi + torsion_coef[3] * (r1 * r1) +
+                                                                 torsion_coef[4] * (r2 * (r2 * r2)) + torsion_coef[5] * (r2 * (r2 * (r2 * r2)))) * sine_theta_ante_sq * sine_theta_ante * (-3.0) * cosine_theta_post * sine_theta_post;
+
+
+    /*      Computation of forces due to the derivatives of bending angle Theta_Post */
+    for (d = 0; d < DIM; d++)
+    {
+        f_theta_post_aj[d] = prefactor_theta_post * (ratio_theta_post_crnt * delta_crnt[d] - delta_post[d]);
+        f_theta_post_ak[d] = prefactor_theta_post * ((ratio_theta_post_post + 1.0) * delta_post[d] - (ratio_theta_post_crnt + 1.0) * delta_crnt[d]);
+        f_theta_post_al[d] = prefactor_theta_post * (delta_crnt[d] - ratio_theta_post_post * delta_post[d]);
+    }
+    r1 = cosine_phi;
+    r2 = cosine_phi;
+
+    /* Contribution to energy - for formula see file "restcbt.h" */
+    *v = torsion_coef[0] * (torsion_coef[1] + torsion_coef[2] * cosine_phi + torsion_coef[3] * (r1 * r1) +
+                            torsion_coef[4] * (r2 * (r2 * r2)) + torsion_coef[5] * (r2 * (r2 * (r2 * r2)))) * sine_theta_ante_sq *
+        sine_theta_ante * sine_theta_post_sq * sine_theta_post;
+
+
+}
diff --git a/src/gromacs/gmxlib/restcbt.h b/src/gromacs/gmxlib/restcbt.h
new file mode 100644 (file)
index 0000000..fb24b75
--- /dev/null
@@ -0,0 +1,185 @@
+/*
+ * This file is part of the GROMACS molecular simulation package.
+ *
+ * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
+ * Copyright (c) 2001-2004, The GROMACS development team.
+ * Copyright (c) 2013,2014, by the GROMACS development team, led by
+ * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
+ * and including many others, as listed in the AUTHORS file in the
+ * top-level source directory and at http://www.gromacs.org.
+ *
+ * GROMACS is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1
+ * of the License, or (at your option) any later version.
+ *
+ * GROMACS is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with GROMACS; if not, see
+ * http://www.gnu.org/licenses, or write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
+ *
+ * If you want to redistribute modifications to GROMACS, please
+ * consider that scientific software is very special. Version
+ * control is crucial - bugs must be traceable. We will be happy to
+ * consider code for inclusion in the official distribution, but
+ * derived work must not be called official GROMACS. Details are found
+ * in the README & COPYING files - if they are missing, get the
+ * official version at http://www.gromacs.org.
+ *
+ * To help us fund GROMACS development, we humbly ask that you cite
+ * the research papers on the package. Check out http://www.gromacs.org.
+ */
+
+
+/*! \libinternal \file
+ *
+ *
+ * \brief
+ * This file contains function declarations necessary
+   for computations of forces due to restricted angle, restricted dihedral and
+   combined bending-torsion potentials.
+
+ *
+ * \author Nicolae Goga
+ *
+ * \inlibraryapi
+ */
+
+#ifndef _restcbt_h
+#define _restcbt_h
+
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+/*! \brief This function computes factors needed for restricted angle potentials.
+ *
+ * The restricted angle potential is used in coarse-grained simulations to avoid singularities
+ * when three particles align and the dihedral angle and dihedral potential cannot be calculated.
+ * This potential is calculated using the formula:
+ * \f[V_{\rm ReB}(\theta_i) = \frac{1}{2} k_{\theta} \frac{(\cos\theta_i - \cos\theta_0)^2}{\sin^2\theta_i}\f]
+ * (see section "Restricted Bending Potential" from the manual).
+ * The derivative of the restricted angle potential is calculated as:
+ * \f[\frac{\partial V_{\rm ReB}(\theta_i)} {\partial \vec r_{k}} = \frac{dV_{\rm ReB}(\theta_i)}{dcos\theta_i} \frac{\partial cos\theta_i}{\partial \vec r_{k}}\f]
+ * where all the derivatives of the bending angle with respect to Cartesian coordinates are calculated as in Allen & Tildesley (pp. 330-332)
+ *
+ *  \param[in]  type           type of force parameters
+ *  \param[in]  forceparams    array of parameters for force computations
+ *  \param[in]  delta_ante     distance between the first two particles
+ *  \param[in]  delta_post     distance between the last two particles
+ *  \param[out] prefactor      common term that comes in front of each force
+ *  \param[out] ratio_ante     ratio of scalar products of delta_ante with delta_post
+                              and delta_ante with delta_ante
+ *  \param[out] ratio_post    ratio of scalar products of delta_ante with delta_post
+                              and delta_post with delta_ante
+ *  \param[out] v              contribution to energy   (see formula above)
+ */
+
+
+void compute_factors_restangles(int type, const t_iparams forceparams[],
+                                rvec delta_ante,  rvec delta_post,
+                                real *prefactor, real *ratio_ante, real *ratio_post, real *v);
+
+
+/*! \brief Compute factors for restricted dihedral potentials.
+ *
+ * The restricted dihedral potential is the equivalent of the restricted bending potential
+ * for the dihedral angle. It imposes the dihedral angle to have only one equilibrium value.
+ * This potential is calculated using the formula:
+ * \f[V_{\rm ReT}(\phi_i) = \frac{1}{2} k_{\phi} \frac{(\cos\phi_i - \cos\phi_0)^2}{\sin^2\phi_i}\f]
+ * (see section "Proper dihedrals: Restricted torsion potential" from the manual).
+ * The derivative of the restricted dihedral potential is calculated as:
+ * \f[\frac{\partial V_{\rm ReT}(\phi_i)} {\partial \vec r_{k}} = \frac{dV_{\rm ReT}(\phi_i)}{dcos\phi_i} \frac{\partial cos\phi_i}{\partial \vec r_{k}}\f]
+ * where all the derivatives of the dihedral angle with respect to Cartesian coordinates
+ * are calculated as in Allen & Tildesley (pp. 330-332). Factors factor_phi_*  are coming from the
+ * derivatives of the torsion angle (phi) with respect to the beads ai, aj, ak, al, (four) coordinates
+ * and they are multiplied in the force computations with the particle distance
+ * stored in parameters delta_ante, delta_crnt, delta_post.
+ *
+ *  \param[in]  type                             type of force parameters
+ *  \param[in]  forceparams                      array of parameters for force computations
+ *  \param[in]  delta_ante                       distance between the first two particles
+ *  \param[in]  delta_crnt                       distance between the middle pair of particles
+ *  \param[in]  delta_post                       distance between the last two particles
+ *  \param[out] factor_phi_ai_ante               force factor for particle ai multiplied with delta_ante
+ *  \param[out] factor_phi_ai_crnt               force factor for particle ai multiplied with delta_crnt
+ *  \param[out] factor_phi_ai_post               force factor for particle ai multiplied with delta_post
+ *  \param[out] factor_phi_aj_ante               force factor for particle aj multiplied with delta_ante
+ *  \param[out] factor_phi_aj_crnt               force factor for particle aj multiplied with delta_crnt
+ *  \param[out] factor_phi_aj_post               force factor for particle aj multiplied with delta_post
+ *  \param[out] factor_phi_ak_ante               force factor for particle ak multiplied with delta_ante
+ *  \param[out] factor_phi_ak_crnt               force factor for particle ak multiplied with delta_crnt
+ *  \param[out] factor_phi_ak_post               force factor for particle ak multiplied with delta_post
+ *  \param[out] factor_phi_al_ante               force factor for particle al multiplied with delta_ante
+ *  \param[out] factor_phi_al_crnt               force factor for particle al multiplied with delta_crnt
+ *  \param[out] factor_phi_al_post               force factor for particle al multiplied with delta_post
+ *  \param[out] prefactor_phi                    multiplication constant of the torsion force
+ *  \param[out] v                                contribution to energy  (see formula above)
+ */
+
+void compute_factors_restrdihs(int type,  const t_iparams forceparams[],
+                               rvec delta_ante, rvec delta_crnt, rvec delta_post,
+                               real *factor_phi_ai_ante, real *factor_phi_ai_crnt, real *factor_phi_ai_post,
+                               real *factor_phi_aj_ante, real *factor_phi_aj_crnt, real *factor_phi_aj_post,
+                               real *factor_phi_ak_ante, real *factor_phi_ak_crnt, real *factor_phi_ak_post,
+                               real *factor_phi_al_ante, real *factor_phi_al_crnt, real *factor_phi_al_post,
+                               real *prefactor_phi, real *v);
+
+/*! \brief Compute factors for combined bending-torsion (CBT) potentials.
+ *
+ * The combined bending-torsion potential goes to zero in a very smooth manner, eliminating the numerical
+ * instabilities, when three coarse-grained particles align and the dihedral angle and standard
+ * dihedral potentials cannot be calculated. The CBT potential is calculated using the formula:
+ * \f[V_{\rm CBT}(\theta_{i-1}, \theta_i, \phi_i) = k_{\phi} \sin^3\theta_{i-1} \sin^3\theta_{i}
+ * \sum_{n=0}^4 { a_n \cos^n\phi_i}\f] (see section "Proper dihedrals: Combined bending-torsion potential" from the manual).
+ * It contains in its expression not only the dihedral angle \f$\phi\f$
+ * but also \f$\theta_{i-1}\f$ (denoted as theta_ante below) and \f$\theta_{i}\f$ (denoted as theta_post below)
+ * --- the adjacent bending angles. The derivative of the CBT potential is calculated as:
+ * \f[\frac{\partial V_{\rm CBT}(\theta_{i-1},\theta_i,\phi_i)} {\partial \vec r_{l}} =  \frac{\partial V_
+ * {\rm CBT}}{\partial \theta_{i-1}} \frac{\partial \theta_{i-1}}{\partial \vec r_{l}} +
+ * \frac{\partial V_{\rm CBT}}{\partial \phi_{i    }} \frac{\partial \phi_{i    }}{\partial \vec r_{l}}\f]
+ * where all the derivatives of the angles with respect to Cartesian coordinates are calculated as
+ * in Allen & Tildesley (pp. 330-332). Factors f_phi_* come from  the derivatives of the torsion angle
+ * with respect to the beads ai, aj, ak, al (four) coordinates; f_theta_ante_* come from the derivatives of
+ * the bending angle theta_ante (theta_{i-1} in formula above) with respect to the beads ai, aj, ak (three
+ * particles) coordinates and f_theta_post_* come from the derivatives of  the bending angle theta_post
+ * (theta_{i} in formula above) with respect to the beads aj, ak, al (three particles) coordinates.
+ *
+ *  \param[in]  type                             type of force parameters
+ *  \param[in]  forceparams                      array of parameters for force computations
+ *  \param[in]  delta_ante                       distance between the first two particles
+ *  \param[in]  delta_crnt                       distance between the middle pair of particles
+ *  \param[in]  delta_post                       distance between the last two particles
+ *  \param[out]  f_phi_ai                        force for particle ai due to derivative in phi angle
+ *  \param[out]  f_phi_aj                        force for particle aj due to derivative in phi angle
+ *  \param[out]  f_phi_ak                        force for particle ak due to derivative in phi angle
+ *  \param[out]  f_phi_al                        force for particle al due to derivative in phi angle
+ *  \param[out]  f_theta_ante_ai                 force for particle ai due to derivative in theta_ante angle
+ *  \param[out]  f_theta_ante_aj                 force for particle aj due to derivative in theta_ante angle
+ *  \param[out]  f_theta_ante_ak                 force for particle ak due to derivative in theta_ante angle
+ *  \param[out]  f_theta_post_aj                 force for particle aj due to derivative in theta_post angle
+ *  \param[out]  f_theta_post_ak                 force for particle ak due to derivative in theta_post angle
+ *  \param[out]  f_theta_post_al                 force for particle al due to derivative in theta_psot angle
+ *  \param[out] v                                contribution to energy (see formula above)
+ */
+
+void compute_factors_cbtdihs(int type,  const t_iparams forceparams[],
+                             rvec delta_ante, rvec delta_crnt, rvec delta_post,
+                             rvec f_phi_ai, rvec f_phi_aj, rvec f_phi_ak, rvec f_phi_al,
+                             rvec f_theta_ante_ai, rvec f_theta_ante_aj, rvec f_theta_ante_ak,
+                             rvec f_theta_post_aj, rvec f_theta_post_ak, rvec f_theta_post_al,
+                             real * v);
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif  /* _restcbt_h */
index cf247c7a691f68fe7995664397449097b19a2ef7..c51ce064b5bdf0ab1be8e3adcf866b8ad397a5fc 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
  * Copyright (c) 2001-2008, The GROMACS development team.
- * Copyright (c) 2013, by the GROMACS development team, led by
+ * Copyright (c) 2013,2014, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
@@ -128,6 +128,12 @@ static gmx_bool ip_pert(int ftype, const t_iparams *ip)
         case F_CMAP:
             bPert = FALSE;
             break;
+        case F_RESTRANGLES:
+        case F_RESTRDIHS:
+        case F_CBTDIHS:
+            bPert = FALSE;
+            gmx_fatal(FARGS, "Function type %s does not support currentely free energy calculations",
+                      interaction_function[ftype].longname);
         default:
             bPert = FALSE;
             gmx_fatal(FARGS, "Function type %s not implemented in ip_pert",
index c3214304416f9b6db27c86898e39cd82cfa8425c..a4460a0922fcae866663de7d7706c301fe131e40 100644 (file)
@@ -1310,6 +1310,21 @@ void pr_iparams(FILE *fp, t_functype ftype, t_iparams *iparams)
         case F_CMAP:
             fprintf(fp, "cmapA=%1d, cmapB=%1d\n", iparams->cmap.cmapA, iparams->cmap.cmapB);
             break;
+        case  F_RESTRANGLES:
+            pr_harm(fp, iparams, "ktheta", "costheta0");
+            break;
+        case  F_RESTRDIHS:
+            fprintf(fp, "phiA=%15.8e, cpA=%15.8e",
+                    iparams->pdihs.phiA, iparams->pdihs.cpA);
+            break;
+        case  F_CBTDIHS:
+            fprintf(fp, "kphi=%15.8e", iparams->cbtdihs.cbtcA[0]);
+            for (i = 1; i < NR_CBTDIHS; i++)
+            {
+                fprintf(fp, ", cbtcA[%d]=%15.8e", i-1, iparams->cbtdihs.cbtcA[i]);
+            }
+            fprintf(fp, "\n");
+            break;
         default:
             gmx_fatal(FARGS, "unknown function type %d (%s) in %s line %d",
                       ftype, interaction_function[ftype].name, __FILE__, __LINE__);
index d23262b853bf3af4b1897d0a28a6acbf954f8949..a469a4f2275285e3cd54fffa69871a8e34176bd7 100644 (file)
@@ -218,6 +218,10 @@ assign_param(t_functype ftype, t_iparams *newparam,
             newparam->harmonic.rB  = old[2];
             newparam->harmonic.krB = old[3];
             break;
+        case F_RESTRANGLES:
+            newparam->harmonic.rA  = old[0];
+            newparam->harmonic.krA = old[1];
+            break;
         case F_MORSE:
             newparam->morse.b0A    = old[0];
             newparam->morse.cbA    = old[1];
@@ -307,6 +311,10 @@ assign_param(t_functype ftype, t_iparams *newparam,
 
             newparam->pdihs.mult = round_check(old[2], -99, ftype, "multiplicity");
 
+            break;
+        case F_RESTRDIHS:
+            newparam->pdihs.phiA = old[0];
+            newparam->pdihs.cpA  = old[1];
             break;
         case F_POSRES:
             newparam->posres.fcA[XX]   = old[0];
@@ -367,6 +375,12 @@ assign_param(t_functype ftype, t_iparams *newparam,
                 newparam->rbdihs.rbcB[i] = old[NR_RBDIHS+i];
             }
             break;
+        case F_CBTDIHS:
+            for (i = 0; (i < NR_CBTDIHS); i++)
+            {
+                newparam->cbtdihs.cbtcA[i] = old[i];
+            }
+            break;
         case F_FOURDIHS:
             /* Read the dihedral parameters to temporary arrays,
              * and convert them to the computationally faster
index 0cb9bbe5e5b8eda9e14e48fe766ae1276baf989c..8742bc5b8b9f6bf1427416b4db0068dc37c0c192 100644 (file)
@@ -144,6 +144,8 @@ int ifunc_index(directive d, int type)
                     return F_TABANGLES;
                 case 9:
                     return F_LINEAR_ANGLES;
+                case 10:
+                    return F_RESTRANGLES;
                 default:
                     gmx_fatal(FARGS, "Invalid angle type %d", type);
                     break;
@@ -184,6 +186,10 @@ int ifunc_index(directive d, int type)
                     return F_TABDIHS;
                 case 9:
                     return F_PDIHS; /* proper dihedrals where we allow multiple terms over single bond */
+                case 10:
+                    return F_RESTRDIHS;
+                case 11:
+                    return F_CBTDIHS;
                 default:
                     gmx_fatal(FARGS, "Invalid dihedral type %d", type);
             }
index e10df8c244ff7039ec4196a717e1039faf17e707..793aefe5972c6243152230edcb147f90286aa5ae 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
  * Copyright (c) 2001-2004, The GROMACS development team.
- * Copyright (c) 2013, by the GROMACS development team, led by
+ * Copyright (c) 2013,2014, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
@@ -151,7 +151,9 @@ void make_dp_periodic(real *dp);
  *************************************************************************/
 t_ifunc bonds, g96bonds, morse_bonds, cubic_bonds, FENE_bonds, restraint_bonds;
 t_ifunc angles, g96angles, cross_bond_bond, cross_bond_angle, urey_bradley, quartic_angles, linear_angles;
+t_ifunc restrangles;
 t_ifunc pdihs, idihs, rbdihs;
+t_ifunc restrdihs, cbtdihs;
 t_ifunc tab_bonds, tab_angles, tab_dihs;
 t_ifunc polarize, anharm_polarize, water_pol, thole_pol, angres, angresz, dihres, unimplemented;
 
index 3cf75bac3ac32aa412a77c8b7ea092ec22c289b2..51fa605399246d6d2fab1e5ecee234c7102ecb77 100644 (file)
@@ -3,7 +3,7 @@
  *
  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
  * Copyright (c) 2001-2004, The GROMACS development team.
- * Copyright (c) 2013, by the GROMACS development team, led by
+ * Copyright (c) 2013,2014, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
@@ -50,6 +50,7 @@ extern "C" {
 #define MAXATOMLIST 6
 #define MAXFORCEPARAM   12
 #define NR_RBDIHS   6
+#define NR_CBTDIHS   6
 #define NR_FOURDIHS     4
 
 typedef atom_id t_iatom;
@@ -69,6 +70,7 @@ enum {
     F_RESTRBONDS,
     F_ANGLES,
     F_G96ANGLES,
+    F_RESTRANGLES,
     F_LINEAR_ANGLES,
     F_CROSS_BOND_BONDS,
     F_CROSS_BOND_ANGLES,
@@ -77,6 +79,8 @@ enum {
     F_TABANGLES,
     F_PDIHS,
     F_RBDIHS,
+    F_RESTRDIHS,
+    F_CBTDIHS,
     F_FOURDIHS,
     F_IDIHS,
     F_PIDIHS,
@@ -247,6 +251,9 @@ typedef union
     struct {
         real rbcA[NR_RBDIHS], rbcB[NR_RBDIHS];
     } rbdihs;
+    struct {
+        real cbtcA[NR_CBTDIHS], cbtcB[NR_CBTDIHS];
+    } cbtdihs;
     struct {
         real a, b, c, d, e, f;
     } vsite;