From d5dde88be4712d0c43e89d612205e9464ddd2188 Mon Sep 17 00:00:00 2001 From: hiro98 Date: Tue, 31 Mar 2020 15:35:03 +0200 Subject: [PATCH] switch to jupyter mode --- prog/python/qqgg/analytical_xs.org | 125 ++- prog/python/qqgg/figs/xs/diff_xs.pdf | Bin 16781 -> 16781 bytes prog/python/qqgg/figs/xs/histo_cos_theta.pdf | Bin 13183 -> 13145 bytes prog/python/qqgg/figs/xs/histo_cos_theta.pgf | 780 ++++++++----------- prog/python/qqgg/figs/xs/xs_integrand.pdf | Bin 18205 -> 18205 bytes 5 files changed, 382 insertions(+), 523 deletions(-) diff --git a/prog/python/qqgg/analytical_xs.org b/prog/python/qqgg/analytical_xs.org index 431671c..c44d7b2 100644 --- a/prog/python/qqgg/analytical_xs.org +++ b/prog/python/qqgg/analytical_xs.org @@ -1,9 +1,9 @@ -#+PROPERTY: header-args :exports both :output-dir results +#+PROPERTY: header-args :exports both :output-dir results :session xs :kernel python3 * Init ** Required Modules #+NAME: e988e3f2-ad1f-49a3-ad60-bedba3863283 -#+begin_src ipython :session :exports both :tangle tangled/xs.py +#+begin_src jupyter-python :exports both :tangle tangled/xs.py import numpy as np import matplotlib.pyplot as plt import monte_carlo @@ -11,9 +11,10 @@ #+RESULTS: e988e3f2-ad1f-49a3-ad60-bedba3863283 + ** Utilities #+NAME: 53548778-a4c1-461a-9b1f-0f401df12b08 -#+BEGIN_SRC ipython :session :exports both +#+BEGIN_SRC jupyter-python :exports both %run ../utility.py %load_ext autoreload %aimport monte_carlo @@ -24,7 +25,7 @@ * Implementation #+NAME: 777a013b-6c20-44bd-b58b-6a7690c21c0e -#+BEGIN_SRC ipython :session :exports both :results raw drawer :exports code :tangle tangled/xs.py +#+BEGIN_SRC jupyter-python :exports both :results raw drawer :exports code :tangle tangled/xs.py """ Implementation of the analytical cross section for q q_bar -> gamma gamma @@ -131,21 +132,19 @@ #+END_SRC #+RESULTS: 777a013b-6c20-44bd-b58b-6a7690c21c0e -:RESULTS: -:END: * Calculations ** XS qq -> gamma gamma First, set up the input parameters. #+NAME: 7e62918a-2935-41ac-94e0-f0e7c3af8e0d -#+BEGIN_SRC ipython :session :exports both :results raw drawer +#+BEGIN_SRC jupyter-python :exports both :results raw drawer η = 2.5 charge = 1/3 esp = 200 # GeV #+END_SRC Set up the integration and plot intervals. -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer interval_η = [-η, η] interval = η_to_θ([-η, η]) interval_cosθ = np.cos(interval) @@ -154,45 +153,37 @@ plot_interval = [0.1, np.pi-.1] #+end_src #+RESULTS: -:RESULTS: -:END: #+RESULTS: 7e62918a-2935-41ac-94e0-f0e7c3af8e0d -:RESULTS: -:END: *** Analytical Integratin And now calculate the cross section in picobarn. #+NAME: cf853fb6-d338-482e-bc55-bd9f8e796495 -#+BEGIN_SRC ipython :session :exports both :results drawer output file :file xs.tex +#+BEGIN_SRC jupyter-python :exports both :results drawer output file :file xs.tex xs_gev = total_xs_eta(η, charge, esp) xs_pb = gev_to_pb(xs_gev) print(tex_value(xs_pb, unit=r'\pico\barn', prefix=r'\sigma = ', prec=5)) #+END_SRC #+RESULTS: cf853fb6-d338-482e-bc55-bd9f8e796495 -:RESULTS: -[[file:results/xs.tex]] -:END: +: \(\sigma = \SI{0.05379}{\pico\barn}\) Compared to sherpa, it's pretty close. #+NAME: 81b5ed93-0312-45dc-beec-e2ba92e22626 -#+BEGIN_SRC ipython :session :exports both :results raw drawer +#+BEGIN_SRC jupyter-python :exports both :results raw drawer sherpa = 0.0538009 xs_pb/sherpa #+END_SRC #+RESULTS: 81b5ed93-0312-45dc-beec-e2ba92e22626 -:RESULTS: -0.9998585425137037 -:END: +: 0.9998585425137037 I had to set the runcard option ~EW_SCHEME: alpha0~ to use the pure QED coupling constant. *** Numerical Integration Plot our nice distribution: -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer plot_points = np.linspace(*plot_interval, 1000) fig, ax = set_up_plot() @@ -206,22 +197,18 @@ save_fig(fig, 'diff_xs', 'xs', size=[4, 4]) #+end_src #+RESULTS: -:RESULTS: -[[file:./obipy-resources/DHBTl1.png]] -:END: +[[file:./.ob-jupyter/d30ededeaa03958fae5b649f50f3c5c3e6ae4677.png]] Define the integrand. -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer def xs_pb_int(θ): return gev_to_pb(np.sin(θ)*diff_xs(θ, charge=charge, esp=esp)) #+end_src #+RESULTS: -:RESULTS: -:END: Plot the integrand. # TODO: remove duplication -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer fig, ax = set_up_plot() ax.plot(plot_points, xs_pb_int(plot_points)) ax.set_xlabel(r'$\theta$') @@ -233,59 +220,49 @@ save_fig(fig, 'xs_integrand', 'xs', size=[4, 4]) #+end_src #+RESULTS: -:RESULTS: -[[file:./obipy-resources/4mne94.png]] -:END: +[[file:./.ob-jupyter/78974a2e2315c72bd7ae8e4ac009b3d79cfe7001.png]] Intergrate σ with the mc method. -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer xs_pb_mc, xs_pb_mc_err = monte_carlo.integrate(xs_pb_int, interval, 10000) xs_pb_mc = xs_pb_mc*np.pi*2 xs_pb_mc, xs_pb_mc_err #+end_src #+RESULTS: -:RESULTS: -(0.05360809379599215, 4.22681790215136e-05) -:END: +| 0.05365000636562272 | 4.2342293364016736e-05 | We gonna export that as tex. -#+begin_src ipython :session :exports both :results raw drawer output :file xs_mc.tex +#+begin_src jupyter-python :exports both :results raw drawer output :file xs_mc.tex print(tex_value(xs_pb_mc, unit=r'\pico\barn', prefix=r'\sigma = ', prec=5)) #+end_src #+RESULTS: -:RESULTS: -[[file:results/xs_mc.tex]] -:END: +: \(\sigma = \SI{0.05365}{\pico\barn}\) *** Sampling and Analysis Define the sample number. -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer sample_num = 1000 #+end_src #+RESULTS: -:RESULTS: -:END: Now we monte-carlo sample our distribution. -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer cosθ_sample = monte_carlo.sample_unweighted_array(sample_num, lambda x: diff_xs_cosθ(x, charge, esp), interval_cosθ) #+end_src #+RESULTS: -:RESULTS: -:END: Nice! And now draw some histograms. We define an auxilliary method for convenience. -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer def draw_histo(points, xlabel, bins=20): fig, ax = set_up_plot() ax.hist(points, bins, histtype='step') @@ -295,22 +272,18 @@ We define an auxilliary method for convenience. #+end_src #+RESULTS: -:RESULTS: -:END: The histogram for cosθ. -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer fig, _ = draw_histo(cosθ_sample, r'$\cos\theta$') save_fig(fig, 'histo_cos_theta', 'xs', size=(4,3)) #+end_src #+RESULTS: -:RESULTS: -[[file:./obipy-resources/ZSJaBQ.png]] -:END: +[[file:./.ob-jupyter/ddc5e5b2a628d9f9add43555d7386acf4d92c6ee.png]] Now we define some utilities to draw real 4-impulse samples. -#+begin_src ipython :session :exports both :tangle tangled/xs.py +#+begin_src jupyter-python :exports both :tangle tangled/xs.py def sample_impulses(sample_num, interval, charge, esp, seed=None): """Samples `sample_num` unweighted photon 4-impulses from the cross-section. @@ -342,8 +315,10 @@ Now we define some utilities to draw real 4-impulse samples. #+RESULTS: -To generate histograms of other obeservables, we have to define them as functions on 4-impuleses. -#+begin_src ipython :session :exports both :results raw drawer :tangle tangled/observables.py +To generate histograms of other obeservables, we have to define them +as functions on 4-impuleses. Using those to transform samples is +analogous to transforming the distribution itself. +#+begin_src jupyter-python :exports both :results raw drawer :tangle tangled/observables.py """This module defines some observables on arrays of 4-pulses.""" import numpy as np @@ -365,56 +340,44 @@ To generate histograms of other obeservables, we have to define them as function #+end_src #+RESULTS: -:RESULTS: -:END: Lets try it out. -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer impulse_sample = sample_impulses(2000, interval_cosθ, charge, esp) impulse_sample #+end_src #+RESULTS: -:RESULTS: -#+BEGIN_EXAMPLE - array([[100. , 48.55787717, 64.05713855, 59.48794471], - [100. , 42.68070092, 33.17436113, -84.12977792], - [100. , 18.42611283, 27.20055109, -94.44897239], - ..., - [100. , 21.40152914, 14.7440014 , 96.56391134], - [100. , 35.84656512, 5.33864248, -93.20151643], - [100. , 38.37094512, 8.92583559, 91.9130025 ]]) -#+END_EXAMPLE -:END: +: array([[100. , 60.93780026, 38.29391655, 69.42737539], +: [100. , 16.62473755, 5.08308744, -98.47730867], +: [100. , 62.52584971, 41.05712399, 66.3688985 ], +: ..., +: [100. , 36.93115123, 10.77808502, -92.30342871], +: [100. , 34.39831699, 43.0134429 , 83.46615792], +: [100. , 69.87424822, 3.87926805, 71.43207063]]) Now let's make a histogram of the η distribution. -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer η_sample = η(impulse_sample) draw_histo(η_sample, r'$\eta$') #+end_src #+RESULTS: :RESULTS: -#+BEGIN_EXAMPLE - (
, - ) -#+END_EXAMPLE -[[file:./obipy-resources/S2OvbR.png]] +|
| | +[[file:./.ob-jupyter/347b6d473f38cf692e5614a095c9bc1a0e89c763.png]] :END: And the same for the p_t (transverse impulse) distribution. -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer p_t_sample = p_t(impulse_sample) draw_histo(p_t_sample, r'$p_T$') #+end_src #+RESULTS: :RESULTS: -#+BEGIN_EXAMPLE - (
, - ) -#+END_EXAMPLE -[[file:./obipy-resources/nW1TKv.png]] +|
| | +[[file:./.ob-jupyter/880ac31d31bd9a537c0faacd56dc38f9eb668c7d.png]] :END: diff --git a/prog/python/qqgg/figs/xs/diff_xs.pdf b/prog/python/qqgg/figs/xs/diff_xs.pdf index c52ce9585c59acec7bcb62b6818b11a77439b10d..09dad9ba06c0c6c0a897faab4a0cd69da4f5613e 100644 GIT binary patch delta 19 acmeBeX6$Wd+#qMmVr*bwxLL_In*{(o)CG3{ delta 19 acmeBeX6$Wd+#qMmVrXt;zFEmOn*{(pECqxB diff --git a/prog/python/qqgg/figs/xs/histo_cos_theta.pdf b/prog/python/qqgg/figs/xs/histo_cos_theta.pdf index 089630d5c5cec4c19dedb3e32a47b2ac696116c3..292de92c10a64b149be4063adaa628960f34355d 100644 GIT binary patch delta 3207 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 delta 3245 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 diff --git a/prog/python/qqgg/figs/xs/histo_cos_theta.pgf b/prog/python/qqgg/figs/xs/histo_cos_theta.pgf index a1c8798..843db22 100644 --- a/prog/python/qqgg/figs/xs/histo_cos_theta.pgf +++ b/prog/python/qqgg/figs/xs/histo_cos_theta.pgf @@ -71,46 +71,46 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetdash{}{0pt}% \pgfpathmoveto{\pgfqpoint{0.512847in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{0.512847in}{2.342221in}}% -\pgfpathlineto{\pgfqpoint{0.677274in}{2.342221in}}% -\pgfpathlineto{\pgfqpoint{0.677274in}{1.189592in}}% -\pgfpathlineto{\pgfqpoint{0.841701in}{1.189592in}}% -\pgfpathlineto{\pgfqpoint{0.841701in}{0.880718in}}% -\pgfpathlineto{\pgfqpoint{1.006128in}{0.880718in}}% -\pgfpathlineto{\pgfqpoint{1.006128in}{0.782782in}}% -\pgfpathlineto{\pgfqpoint{1.170556in}{0.782782in}}% -\pgfpathlineto{\pgfqpoint{1.170556in}{0.835517in}}% -\pgfpathlineto{\pgfqpoint{1.334983in}{0.835517in}}% -\pgfpathlineto{\pgfqpoint{1.334983in}{0.752648in}}% -\pgfpathlineto{\pgfqpoint{1.499410in}{0.752648in}}% -\pgfpathlineto{\pgfqpoint{1.499410in}{0.714981in}}% -\pgfpathlineto{\pgfqpoint{1.663837in}{0.714981in}}% -\pgfpathlineto{\pgfqpoint{1.663837in}{0.677313in}}% -\pgfpathlineto{\pgfqpoint{1.828264in}{0.677313in}}% -\pgfpathlineto{\pgfqpoint{1.828264in}{0.684847in}}% -\pgfpathlineto{\pgfqpoint{1.992691in}{0.684847in}}% -\pgfpathlineto{\pgfqpoint{1.992691in}{0.669780in}}% -\pgfpathlineto{\pgfqpoint{2.157118in}{0.669780in}}% -\pgfpathlineto{\pgfqpoint{2.157118in}{0.669780in}}% -\pgfpathlineto{\pgfqpoint{2.321545in}{0.669780in}}% -\pgfpathlineto{\pgfqpoint{2.321545in}{0.684847in}}% -\pgfpathlineto{\pgfqpoint{2.485972in}{0.684847in}}% -\pgfpathlineto{\pgfqpoint{2.485972in}{0.699914in}}% -\pgfpathlineto{\pgfqpoint{2.650399in}{0.699914in}}% -\pgfpathlineto{\pgfqpoint{2.650399in}{0.767715in}}% -\pgfpathlineto{\pgfqpoint{2.814826in}{0.767715in}}% -\pgfpathlineto{\pgfqpoint{2.814826in}{0.707447in}}% -\pgfpathlineto{\pgfqpoint{2.979253in}{0.707447in}}% -\pgfpathlineto{\pgfqpoint{2.979253in}{0.812917in}}% -\pgfpathlineto{\pgfqpoint{3.143681in}{0.812917in}}% -\pgfpathlineto{\pgfqpoint{3.143681in}{0.760182in}}% -\pgfpathlineto{\pgfqpoint{3.308108in}{0.760182in}}% -\pgfpathlineto{\pgfqpoint{3.308108in}{0.895785in}}% -\pgfpathlineto{\pgfqpoint{3.472535in}{0.895785in}}% -\pgfpathlineto{\pgfqpoint{3.472535in}{1.197126in}}% -\pgfpathlineto{\pgfqpoint{3.636962in}{1.197126in}}% -\pgfpathlineto{\pgfqpoint{3.636962in}{2.696296in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.696296in}}% +\pgfpathlineto{\pgfqpoint{0.512847in}{2.696296in}}% +\pgfpathlineto{\pgfqpoint{0.677274in}{2.696296in}}% +\pgfpathlineto{\pgfqpoint{0.677274in}{1.332499in}}% +\pgfpathlineto{\pgfqpoint{0.841701in}{1.332499in}}% +\pgfpathlineto{\pgfqpoint{0.841701in}{0.835115in}}% +\pgfpathlineto{\pgfqpoint{1.006128in}{0.835115in}}% +\pgfpathlineto{\pgfqpoint{1.006128in}{0.762913in}}% +\pgfpathlineto{\pgfqpoint{1.170556in}{0.762913in}}% +\pgfpathlineto{\pgfqpoint{1.170556in}{0.835115in}}% +\pgfpathlineto{\pgfqpoint{1.334983in}{0.835115in}}% +\pgfpathlineto{\pgfqpoint{1.334983in}{0.795003in}}% +\pgfpathlineto{\pgfqpoint{1.499410in}{0.795003in}}% +\pgfpathlineto{\pgfqpoint{1.499410in}{0.754891in}}% +\pgfpathlineto{\pgfqpoint{1.663837in}{0.754891in}}% +\pgfpathlineto{\pgfqpoint{1.663837in}{0.682690in}}% +\pgfpathlineto{\pgfqpoint{1.828264in}{0.682690in}}% +\pgfpathlineto{\pgfqpoint{1.828264in}{0.674668in}}% +\pgfpathlineto{\pgfqpoint{1.992691in}{0.674668in}}% +\pgfpathlineto{\pgfqpoint{1.992691in}{0.658623in}}% +\pgfpathlineto{\pgfqpoint{2.157118in}{0.658623in}}% +\pgfpathlineto{\pgfqpoint{2.157118in}{0.690712in}}% +\pgfpathlineto{\pgfqpoint{2.321545in}{0.690712in}}% +\pgfpathlineto{\pgfqpoint{2.321545in}{0.666645in}}% +\pgfpathlineto{\pgfqpoint{2.485972in}{0.666645in}}% +\pgfpathlineto{\pgfqpoint{2.485972in}{0.698735in}}% +\pgfpathlineto{\pgfqpoint{2.650399in}{0.698735in}}% +\pgfpathlineto{\pgfqpoint{2.650399in}{0.698735in}}% +\pgfpathlineto{\pgfqpoint{2.814826in}{0.698735in}}% +\pgfpathlineto{\pgfqpoint{2.814826in}{0.698735in}}% +\pgfpathlineto{\pgfqpoint{2.979253in}{0.698735in}}% +\pgfpathlineto{\pgfqpoint{2.979253in}{0.795003in}}% +\pgfpathlineto{\pgfqpoint{3.143681in}{0.795003in}}% +\pgfpathlineto{\pgfqpoint{3.143681in}{0.827092in}}% +\pgfpathlineto{\pgfqpoint{3.308108in}{0.827092in}}% +\pgfpathlineto{\pgfqpoint{3.308108in}{0.995561in}}% +\pgfpathlineto{\pgfqpoint{3.472535in}{0.995561in}}% +\pgfpathlineto{\pgfqpoint{3.472535in}{1.147986in}}% +\pgfpathlineto{\pgfqpoint{3.636962in}{1.147986in}}% +\pgfpathlineto{\pgfqpoint{3.636962in}{2.664207in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.664207in}}% \pgfpathlineto{\pgfqpoint{3.801389in}{0.594444in}}% \pgfusepath{stroke}% \end{pgfscope}% @@ -124,8 +124,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.500000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.323808in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.323808in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.323337in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.323337in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -143,7 +143,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.323808in}{0.594444in}% +\pgfsys@transformshift{1.323337in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -162,7 +162,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.323808in}{2.801389in}% +\pgfsys@transformshift{1.323337in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -170,7 +170,7 @@ \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \pgfsetstrokecolor{textcolor}% \pgfsetfillcolor{textcolor}% -\pgftext[x=1.323808in,y=0.497222in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont −0.5}% +\pgftext[x=1.323337in,y=0.497222in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont −0.5}% \end{pgfscope}% \begin{pgfscope}% \pgfpathrectangle{\pgfqpoint{0.512847in}{0.594444in}}{\pgfqpoint{3.288542in}{2.206944in}}% @@ -182,8 +182,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.500000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.157106in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.157106in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.156814in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.156814in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -201,7 +201,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.157106in}{0.594444in}% +\pgfsys@transformshift{2.156814in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -220,7 +220,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.157106in}{2.801389in}% +\pgfsys@transformshift{2.156814in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -228,7 +228,7 @@ \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \pgfsetstrokecolor{textcolor}% \pgfsetfillcolor{textcolor}% -\pgftext[x=2.157106in,y=0.497222in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont 0.0}% +\pgftext[x=2.156814in,y=0.497222in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont 0.0}% \end{pgfscope}% \begin{pgfscope}% \pgfpathrectangle{\pgfqpoint{0.512847in}{0.594444in}}{\pgfqpoint{3.288542in}{2.206944in}}% @@ -240,8 +240,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.500000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.990404in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.990404in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.990290in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.990290in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -259,7 +259,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.990404in}{0.594444in}% +\pgfsys@transformshift{2.990290in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -278,7 +278,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.990404in}{2.801389in}% +\pgfsys@transformshift{2.990290in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -286,7 +286,7 @@ \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \pgfsetstrokecolor{textcolor}% \pgfsetfillcolor{textcolor}% -\pgftext[x=2.990404in,y=0.497222in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont 0.5}% +\pgftext[x=2.990290in,y=0.497222in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont 0.5}% \end{pgfscope}% \begin{pgfscope}% \pgfpathrectangle{\pgfqpoint{0.512847in}{0.594444in}}{\pgfqpoint{3.288542in}{2.206944in}}% @@ -298,8 +298,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.573839in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{0.573839in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{0.573209in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{0.573209in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -317,7 +317,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.573839in}{0.594444in}% +\pgfsys@transformshift{0.573209in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -336,7 +336,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.573839in}{2.801389in}% +\pgfsys@transformshift{0.573209in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -350,8 +350,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.657169in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{0.657169in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{0.656556in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{0.656556in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -369,7 +369,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.657169in}{0.594444in}% +\pgfsys@transformshift{0.656556in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -388,7 +388,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.657169in}{2.801389in}% +\pgfsys@transformshift{0.656556in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -402,8 +402,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.740499in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{0.740499in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{0.739904in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{0.739904in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -421,7 +421,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.740499in}{0.594444in}% +\pgfsys@transformshift{0.739904in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -440,7 +440,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.740499in}{2.801389in}% +\pgfsys@transformshift{0.739904in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -454,8 +454,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.823829in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{0.823829in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{0.823252in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{0.823252in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -473,7 +473,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.823829in}{0.594444in}% +\pgfsys@transformshift{0.823252in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -492,7 +492,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.823829in}{2.801389in}% +\pgfsys@transformshift{0.823252in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -506,8 +506,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.907158in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{0.907158in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{0.906599in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{0.906599in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -525,7 +525,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.907158in}{0.594444in}% +\pgfsys@transformshift{0.906599in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -544,7 +544,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.907158in}{2.801389in}% +\pgfsys@transformshift{0.906599in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -558,8 +558,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.990488in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{0.990488in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{0.989947in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{0.989947in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -577,7 +577,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.990488in}{0.594444in}% +\pgfsys@transformshift{0.989947in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -596,7 +596,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.990488in}{2.801389in}% +\pgfsys@transformshift{0.989947in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -610,8 +610,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.073818in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.073818in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.073295in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.073295in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -629,7 +629,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.073818in}{0.594444in}% +\pgfsys@transformshift{1.073295in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -648,7 +648,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.073818in}{2.801389in}% +\pgfsys@transformshift{1.073295in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -662,8 +662,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.157148in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.157148in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.156642in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.156642in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -681,7 +681,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.157148in}{0.594444in}% +\pgfsys@transformshift{1.156642in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -700,7 +700,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.157148in}{2.801389in}% +\pgfsys@transformshift{1.156642in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -714,8 +714,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.240478in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.240478in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.239990in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.239990in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -733,7 +733,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.240478in}{0.594444in}% +\pgfsys@transformshift{1.239990in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -752,7 +752,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.240478in}{2.801389in}% +\pgfsys@transformshift{1.239990in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -766,8 +766,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.407137in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.407137in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.406685in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.406685in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -785,7 +785,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.407137in}{0.594444in}% +\pgfsys@transformshift{1.406685in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -804,7 +804,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.407137in}{2.801389in}% +\pgfsys@transformshift{1.406685in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -818,8 +818,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.490467in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.490467in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.490033in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.490033in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -837,7 +837,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.490467in}{0.594444in}% +\pgfsys@transformshift{1.490033in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -856,7 +856,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.490467in}{2.801389in}% +\pgfsys@transformshift{1.490033in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -870,8 +870,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.573797in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.573797in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.573380in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.573380in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -889,7 +889,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.573797in}{0.594444in}% +\pgfsys@transformshift{1.573380in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -908,7 +908,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.573797in}{2.801389in}% +\pgfsys@transformshift{1.573380in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -922,8 +922,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.657127in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.657127in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.656728in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.656728in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -941,7 +941,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.657127in}{0.594444in}% +\pgfsys@transformshift{1.656728in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -960,7 +960,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.657127in}{2.801389in}% +\pgfsys@transformshift{1.656728in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -974,8 +974,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.740457in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.740457in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.740075in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.740075in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -993,7 +993,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.740457in}{0.594444in}% +\pgfsys@transformshift{1.740075in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1012,7 +1012,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.740457in}{2.801389in}% +\pgfsys@transformshift{1.740075in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1026,8 +1026,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.823786in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.823786in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.823423in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.823423in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1045,7 +1045,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.823786in}{0.594444in}% +\pgfsys@transformshift{1.823423in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1064,7 +1064,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.823786in}{2.801389in}% +\pgfsys@transformshift{1.823423in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1078,8 +1078,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.907116in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.907116in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.906771in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.906771in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1097,7 +1097,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.907116in}{0.594444in}% +\pgfsys@transformshift{1.906771in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1116,7 +1116,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.907116in}{2.801389in}% +\pgfsys@transformshift{1.906771in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1130,8 +1130,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.990446in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.990446in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.990118in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.990118in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1149,7 +1149,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.990446in}{0.594444in}% +\pgfsys@transformshift{1.990118in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1168,7 +1168,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.990446in}{2.801389in}% +\pgfsys@transformshift{1.990118in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1182,8 +1182,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.073776in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.073776in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.073466in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.073466in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1201,7 +1201,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.073776in}{0.594444in}% +\pgfsys@transformshift{2.073466in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1220,7 +1220,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.073776in}{2.801389in}% +\pgfsys@transformshift{2.073466in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1234,8 +1234,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.240436in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.240436in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.240161in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.240161in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1253,7 +1253,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.240436in}{0.594444in}% +\pgfsys@transformshift{2.240161in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1272,7 +1272,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.240436in}{2.801389in}% +\pgfsys@transformshift{2.240161in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1286,8 +1286,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.323765in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.323765in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.323509in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.323509in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1305,7 +1305,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.323765in}{0.594444in}% +\pgfsys@transformshift{2.323509in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1324,7 +1324,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.323765in}{2.801389in}% +\pgfsys@transformshift{2.323509in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1338,8 +1338,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.407095in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.407095in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.406856in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.406856in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1357,7 +1357,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.407095in}{0.594444in}% +\pgfsys@transformshift{2.406856in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1376,7 +1376,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.407095in}{2.801389in}% +\pgfsys@transformshift{2.406856in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1390,8 +1390,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.490425in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.490425in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.490204in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.490204in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1409,7 +1409,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.490425in}{0.594444in}% +\pgfsys@transformshift{2.490204in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1428,7 +1428,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.490425in}{2.801389in}% +\pgfsys@transformshift{2.490204in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1442,8 +1442,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.573755in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.573755in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.573552in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.573552in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1461,7 +1461,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.573755in}{0.594444in}% +\pgfsys@transformshift{2.573552in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1480,7 +1480,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.573755in}{2.801389in}% +\pgfsys@transformshift{2.573552in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1494,8 +1494,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.657085in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.657085in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.656899in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.656899in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1513,7 +1513,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.657085in}{0.594444in}% +\pgfsys@transformshift{2.656899in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1532,7 +1532,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.657085in}{2.801389in}% +\pgfsys@transformshift{2.656899in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1546,8 +1546,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.740415in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.740415in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.740247in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.740247in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1565,7 +1565,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.740415in}{0.594444in}% +\pgfsys@transformshift{2.740247in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1584,7 +1584,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.740415in}{2.801389in}% +\pgfsys@transformshift{2.740247in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1598,8 +1598,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.823744in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.823744in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.823594in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.823594in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1617,7 +1617,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.823744in}{0.594444in}% +\pgfsys@transformshift{2.823594in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1636,7 +1636,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.823744in}{2.801389in}% +\pgfsys@transformshift{2.823594in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1650,8 +1650,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.907074in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.907074in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.906942in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.906942in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1669,7 +1669,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.907074in}{0.594444in}% +\pgfsys@transformshift{2.906942in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1688,7 +1688,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.907074in}{2.801389in}% +\pgfsys@transformshift{2.906942in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1702,8 +1702,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{3.073734in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{3.073734in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{3.073637in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{3.073637in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1721,7 +1721,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.073734in}{0.594444in}% +\pgfsys@transformshift{3.073637in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1740,7 +1740,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.073734in}{2.801389in}% +\pgfsys@transformshift{3.073637in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1754,8 +1754,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{3.157064in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{3.157064in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{3.156985in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{3.156985in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1773,7 +1773,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.157064in}{0.594444in}% +\pgfsys@transformshift{3.156985in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1792,7 +1792,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.157064in}{2.801389in}% +\pgfsys@transformshift{3.156985in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1806,8 +1806,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{3.240394in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{3.240394in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{3.240333in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{3.240333in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1825,7 +1825,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.240394in}{0.594444in}% +\pgfsys@transformshift{3.240333in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1844,7 +1844,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.240394in}{2.801389in}% +\pgfsys@transformshift{3.240333in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1858,8 +1858,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{3.323723in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{3.323723in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{3.323680in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{3.323680in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1877,7 +1877,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.323723in}{0.594444in}% +\pgfsys@transformshift{3.323680in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1896,7 +1896,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.323723in}{2.801389in}% +\pgfsys@transformshift{3.323680in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1910,8 +1910,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{3.407053in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{3.407053in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{3.407028in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{3.407028in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1929,7 +1929,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.407053in}{0.594444in}% +\pgfsys@transformshift{3.407028in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1948,7 +1948,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.407053in}{2.801389in}% +\pgfsys@transformshift{3.407028in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1962,8 +1962,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{3.490383in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{3.490383in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{3.490375in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{3.490375in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1981,7 +1981,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.490383in}{0.594444in}% +\pgfsys@transformshift{3.490375in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2000,7 +2000,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.490383in}{2.801389in}% +\pgfsys@transformshift{3.490375in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2014,8 +2014,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{3.573713in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{3.573713in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{3.573723in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{3.573723in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2033,7 +2033,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.573713in}{0.594444in}% +\pgfsys@transformshift{3.573723in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2052,7 +2052,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.573713in}{2.801389in}% +\pgfsys@transformshift{3.573723in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2066,8 +2066,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{3.657043in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{3.657043in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{3.657071in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{3.657071in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2085,7 +2085,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.657043in}{0.594444in}% +\pgfsys@transformshift{3.657071in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2104,7 +2104,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.657043in}{2.801389in}% +\pgfsys@transformshift{3.657071in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2118,8 +2118,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{3.740373in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{3.740373in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{3.740418in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{3.740418in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2137,7 +2137,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.740373in}{0.594444in}% +\pgfsys@transformshift{3.740418in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2156,7 +2156,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.740373in}{2.801389in}% +\pgfsys@transformshift{3.740418in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2234,8 +2234,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.500000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.197126in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.197126in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.236231in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.236231in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2253,7 +2253,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.197126in}% +\pgfsys@transformshift{0.512847in}{1.236231in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2272,7 +2272,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.197126in}% +\pgfsys@transformshift{3.801389in}{1.236231in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2280,7 +2280,7 @@ \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \pgfsetstrokecolor{textcolor}% \pgfsetfillcolor{textcolor}% -\pgftext[x=0.276736in, y=1.148932in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont 80}% +\pgftext[x=0.276736in, y=1.188037in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont 80}% \end{pgfscope}% \begin{pgfscope}% \pgfpathrectangle{\pgfqpoint{0.512847in}{0.594444in}}{\pgfqpoint{3.288542in}{2.206944in}}% @@ -2292,8 +2292,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.500000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.799808in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.799808in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.878018in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.878018in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2311,7 +2311,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.799808in}% +\pgfsys@transformshift{0.512847in}{1.878018in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2330,7 +2330,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.799808in}% +\pgfsys@transformshift{3.801389in}{1.878018in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2338,7 +2338,7 @@ \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \pgfsetstrokecolor{textcolor}% \pgfsetfillcolor{textcolor}% -\pgftext[x=0.207292in, y=1.751613in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont 160}% +\pgftext[x=0.207292in, y=1.829824in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont 160}% \end{pgfscope}% \begin{pgfscope}% \pgfpathrectangle{\pgfqpoint{0.512847in}{0.594444in}}{\pgfqpoint{3.288542in}{2.206944in}}% @@ -2350,8 +2350,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.500000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.402489in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.402489in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.519805in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.519805in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2369,7 +2369,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.402489in}% +\pgfsys@transformshift{0.512847in}{2.519805in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2388,7 +2388,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.402489in}% +\pgfsys@transformshift{3.801389in}{2.519805in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2396,7 +2396,7 @@ \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \pgfsetstrokecolor{textcolor}% \pgfsetfillcolor{textcolor}% -\pgftext[x=0.207292in, y=2.354295in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont 240}% +\pgftext[x=0.207292in, y=2.471610in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont 240}% \end{pgfscope}% \begin{pgfscope}% \pgfpathrectangle{\pgfqpoint{0.512847in}{0.594444in}}{\pgfqpoint{3.288542in}{2.206944in}}% @@ -2408,8 +2408,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{0.654713in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{0.654713in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{0.658623in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{0.658623in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2427,7 +2427,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{0.654713in}% +\pgfsys@transformshift{0.512847in}{0.658623in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2446,7 +2446,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{0.654713in}% +\pgfsys@transformshift{3.801389in}{0.658623in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2460,8 +2460,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{0.714981in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{0.714981in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{0.722802in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{0.722802in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2479,7 +2479,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{0.714981in}% +\pgfsys@transformshift{0.512847in}{0.722802in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2498,7 +2498,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{0.714981in}% +\pgfsys@transformshift{3.801389in}{0.722802in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2512,8 +2512,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{0.775249in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{0.775249in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{0.786980in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{0.786980in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2531,7 +2531,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{0.775249in}% +\pgfsys@transformshift{0.512847in}{0.786980in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2550,7 +2550,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{0.775249in}% +\pgfsys@transformshift{3.801389in}{0.786980in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2564,8 +2564,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{0.835517in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{0.835517in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{0.851159in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{0.851159in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2583,7 +2583,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{0.835517in}% +\pgfsys@transformshift{0.512847in}{0.851159in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2602,7 +2602,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{0.835517in}% +\pgfsys@transformshift{3.801389in}{0.851159in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2616,8 +2616,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{0.895785in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{0.895785in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{0.915338in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{0.915338in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2635,7 +2635,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{0.895785in}% +\pgfsys@transformshift{0.512847in}{0.915338in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2654,7 +2654,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{0.895785in}% +\pgfsys@transformshift{3.801389in}{0.915338in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2668,8 +2668,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{0.956053in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{0.956053in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{0.979517in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{0.979517in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2687,7 +2687,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{0.956053in}% +\pgfsys@transformshift{0.512847in}{0.979517in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2706,7 +2706,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{0.956053in}% +\pgfsys@transformshift{3.801389in}{0.979517in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2720,8 +2720,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.016322in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.016322in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.043695in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.043695in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2739,7 +2739,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.016322in}% +\pgfsys@transformshift{0.512847in}{1.043695in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2758,7 +2758,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.016322in}% +\pgfsys@transformshift{3.801389in}{1.043695in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2772,8 +2772,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.076590in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.076590in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.107874in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.107874in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2791,7 +2791,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.076590in}% +\pgfsys@transformshift{0.512847in}{1.107874in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2810,7 +2810,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.076590in}% +\pgfsys@transformshift{3.801389in}{1.107874in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2824,8 +2824,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.136858in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.136858in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.172053in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.172053in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2843,7 +2843,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.136858in}% +\pgfsys@transformshift{0.512847in}{1.172053in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2862,7 +2862,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.136858in}% +\pgfsys@transformshift{3.801389in}{1.172053in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2876,8 +2876,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.257394in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.257394in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.300410in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.300410in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2895,7 +2895,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.257394in}% +\pgfsys@transformshift{0.512847in}{1.300410in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2914,7 +2914,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.257394in}% +\pgfsys@transformshift{3.801389in}{1.300410in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2928,8 +2928,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.317662in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.317662in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.364589in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.364589in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2947,7 +2947,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.317662in}% +\pgfsys@transformshift{0.512847in}{1.364589in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2966,7 +2966,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.317662in}% +\pgfsys@transformshift{3.801389in}{1.364589in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2980,8 +2980,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.377930in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.377930in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.428767in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.428767in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2999,7 +2999,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.377930in}% +\pgfsys@transformshift{0.512847in}{1.428767in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3018,7 +3018,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.377930in}% +\pgfsys@transformshift{3.801389in}{1.428767in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3032,8 +3032,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.438199in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.438199in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.492946in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.492946in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3051,7 +3051,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.438199in}% +\pgfsys@transformshift{0.512847in}{1.492946in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3070,7 +3070,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.438199in}% +\pgfsys@transformshift{3.801389in}{1.492946in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3084,8 +3084,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.498467in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.498467in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.557125in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.557125in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3103,7 +3103,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.498467in}% +\pgfsys@transformshift{0.512847in}{1.557125in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3122,7 +3122,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.498467in}% +\pgfsys@transformshift{3.801389in}{1.557125in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3136,8 +3136,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.558735in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.558735in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.621303in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.621303in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3155,7 +3155,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.558735in}% +\pgfsys@transformshift{0.512847in}{1.621303in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3174,7 +3174,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.558735in}% +\pgfsys@transformshift{3.801389in}{1.621303in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3188,8 +3188,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.619003in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.619003in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.685482in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.685482in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3207,7 +3207,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.619003in}% +\pgfsys@transformshift{0.512847in}{1.685482in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3226,7 +3226,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.619003in}% +\pgfsys@transformshift{3.801389in}{1.685482in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3240,8 +3240,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.679271in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.679271in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.749661in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.749661in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3259,7 +3259,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.679271in}% +\pgfsys@transformshift{0.512847in}{1.749661in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3278,7 +3278,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.679271in}% +\pgfsys@transformshift{3.801389in}{1.749661in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3292,8 +3292,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.739539in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.739539in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.813839in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.813839in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3311,7 +3311,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.739539in}% +\pgfsys@transformshift{0.512847in}{1.813839in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3330,7 +3330,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.739539in}% +\pgfsys@transformshift{3.801389in}{1.813839in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3344,8 +3344,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.860076in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.860076in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.942197in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.942197in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3363,7 +3363,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.860076in}% +\pgfsys@transformshift{0.512847in}{1.942197in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3382,7 +3382,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.860076in}% +\pgfsys@transformshift{3.801389in}{1.942197in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3396,8 +3396,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.920344in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.920344in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.006375in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.006375in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3415,7 +3415,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.920344in}% +\pgfsys@transformshift{0.512847in}{2.006375in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3434,7 +3434,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.920344in}% +\pgfsys@transformshift{3.801389in}{2.006375in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3448,8 +3448,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.980612in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.980612in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.070554in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.070554in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3467,7 +3467,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.980612in}% +\pgfsys@transformshift{0.512847in}{2.070554in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3486,7 +3486,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.980612in}% +\pgfsys@transformshift{3.801389in}{2.070554in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3500,8 +3500,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.040880in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.040880in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.134733in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.134733in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3519,7 +3519,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.040880in}% +\pgfsys@transformshift{0.512847in}{2.134733in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3538,7 +3538,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.040880in}% +\pgfsys@transformshift{3.801389in}{2.134733in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3552,8 +3552,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.101148in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.101148in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.198912in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.198912in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3571,7 +3571,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.101148in}% +\pgfsys@transformshift{0.512847in}{2.198912in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3590,7 +3590,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.101148in}% +\pgfsys@transformshift{3.801389in}{2.198912in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3604,8 +3604,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.161416in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.161416in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.263090in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.263090in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3623,7 +3623,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.161416in}% +\pgfsys@transformshift{0.512847in}{2.263090in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3642,7 +3642,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.161416in}% +\pgfsys@transformshift{3.801389in}{2.263090in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3656,8 +3656,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.221685in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.221685in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.327269in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.327269in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3675,7 +3675,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.221685in}% +\pgfsys@transformshift{0.512847in}{2.327269in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3694,7 +3694,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.221685in}% +\pgfsys@transformshift{3.801389in}{2.327269in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3708,8 +3708,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.281953in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.281953in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.391448in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.391448in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3727,7 +3727,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.281953in}% +\pgfsys@transformshift{0.512847in}{2.391448in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3746,7 +3746,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.281953in}% +\pgfsys@transformshift{3.801389in}{2.391448in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3760,8 +3760,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.342221in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.342221in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.455626in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.455626in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3779,7 +3779,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.342221in}% +\pgfsys@transformshift{0.512847in}{2.455626in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3798,7 +3798,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.342221in}% +\pgfsys@transformshift{3.801389in}{2.455626in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3812,8 +3812,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.462757in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.462757in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.583984in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.583984in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3831,7 +3831,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.462757in}% +\pgfsys@transformshift{0.512847in}{2.583984in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3850,7 +3850,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.462757in}% +\pgfsys@transformshift{3.801389in}{2.583984in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3864,8 +3864,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.523025in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.523025in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.648162in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.648162in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3883,7 +3883,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.523025in}% +\pgfsys@transformshift{0.512847in}{2.648162in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3902,7 +3902,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.523025in}% +\pgfsys@transformshift{3.801389in}{2.648162in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3916,8 +3916,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.583294in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.583294in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.712341in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.712341in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3935,7 +3935,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.583294in}% +\pgfsys@transformshift{0.512847in}{2.712341in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3954,7 +3954,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.583294in}% +\pgfsys@transformshift{3.801389in}{2.712341in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3968,8 +3968,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.643562in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.643562in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.776520in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.776520in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3987,7 +3987,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.643562in}% +\pgfsys@transformshift{0.512847in}{2.776520in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -4006,111 +4006,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.643562in}% -\pgfsys@useobject{currentmarker}{}% -\end{pgfscope}% -\end{pgfscope}% -\begin{pgfscope}% -\pgfpathrectangle{\pgfqpoint{0.512847in}{0.594444in}}{\pgfqpoint{3.288542in}{2.206944in}}% -\pgfusepath{clip}% -\pgfsetrectcap% -\pgfsetroundjoin% -\pgfsetlinewidth{0.803000pt}% -\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}% -\pgfsetstrokecolor{currentstroke}% -\pgfsetstrokeopacity{0.300000}% -\pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.703830in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.703830in}}% -\pgfusepath{stroke}% -\end{pgfscope}% -\begin{pgfscope}% -\pgfsetbuttcap% -\pgfsetroundjoin% -\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}% -\pgfsetfillcolor{currentfill}% -\pgfsetlinewidth{0.602250pt}% -\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% -\pgfsetstrokecolor{currentstroke}% -\pgfsetdash{}{0pt}% -\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% -\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% -\pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}% -\pgfusepath{stroke,fill}% -}% -\begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.703830in}% -\pgfsys@useobject{currentmarker}{}% -\end{pgfscope}% -\end{pgfscope}% -\begin{pgfscope}% -\pgfsetbuttcap% -\pgfsetroundjoin% -\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}% -\pgfsetfillcolor{currentfill}% -\pgfsetlinewidth{0.602250pt}% -\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% -\pgfsetstrokecolor{currentstroke}% -\pgfsetdash{}{0pt}% -\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{0.000000in}}{\pgfqpoint{0.027778in}{0.000000in}}{% -\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% -\pgfpathlineto{\pgfqpoint{0.027778in}{0.000000in}}% -\pgfusepath{stroke,fill}% -}% -\begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.703830in}% -\pgfsys@useobject{currentmarker}{}% -\end{pgfscope}% -\end{pgfscope}% -\begin{pgfscope}% -\pgfpathrectangle{\pgfqpoint{0.512847in}{0.594444in}}{\pgfqpoint{3.288542in}{2.206944in}}% -\pgfusepath{clip}% -\pgfsetrectcap% -\pgfsetroundjoin% -\pgfsetlinewidth{0.803000pt}% -\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}% -\pgfsetstrokecolor{currentstroke}% -\pgfsetstrokeopacity{0.300000}% -\pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.764098in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.764098in}}% -\pgfusepath{stroke}% -\end{pgfscope}% -\begin{pgfscope}% -\pgfsetbuttcap% -\pgfsetroundjoin% -\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}% -\pgfsetfillcolor{currentfill}% -\pgfsetlinewidth{0.602250pt}% -\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% -\pgfsetstrokecolor{currentstroke}% -\pgfsetdash{}{0pt}% -\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% -\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% -\pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}% -\pgfusepath{stroke,fill}% -}% -\begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.764098in}% -\pgfsys@useobject{currentmarker}{}% -\end{pgfscope}% -\end{pgfscope}% -\begin{pgfscope}% -\pgfsetbuttcap% -\pgfsetroundjoin% -\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}% -\pgfsetfillcolor{currentfill}% -\pgfsetlinewidth{0.602250pt}% -\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% -\pgfsetstrokecolor{currentstroke}% -\pgfsetdash{}{0pt}% -\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{0.000000in}}{\pgfqpoint{0.027778in}{0.000000in}}{% -\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% -\pgfpathlineto{\pgfqpoint{0.027778in}{0.000000in}}% -\pgfusepath{stroke,fill}% -}% -\begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.764098in}% +\pgfsys@transformshift{3.801389in}{2.776520in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% diff --git a/prog/python/qqgg/figs/xs/xs_integrand.pdf b/prog/python/qqgg/figs/xs/xs_integrand.pdf index 0e9e6c6f8d59e6a52bae91c3b75ecdb91e1dfe9e..6ea1183b9e71c4f7bb129e56d2622d499d72e010 100644 GIT binary patch delta 19 acmbQ+$2hl-af6o=i?M-$$!0&N^DF>FPX=}X delta 19 acmbQ+$2hl-af6o=i=nx(!Dc_F^DF>Fat3+;