diff --git a/doc/ellint_carlson.qbk b/doc/ellint_carlson.qbk new file mode 100644 index 000000000..6842078cf --- /dev/null +++ b/doc/ellint_carlson.qbk @@ -0,0 +1,173 @@ +[/ +Copyright (c) 2006 Xiaogang Zhang +Copyright (c) 2006 John Maddock +Use, modification and distribution are subject to the +Boost Software License, Version 1.0. (See accompanying file +LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +] + +[section:ellint_carlson Elliptic Integrals - Carlson Form] + +[caution __caution ] + +[heading Synopsis] + +`` + #include +`` + + namespace boost { namespace math { + + template + T ellint_rf(T x, T y, T z) + + }} // namespaces + + +`` + #include +`` + + namespace boost { namespace math { + + template + T ellint_rd(T x, T y, T z) + + }} // namespaces + + +`` + #include +`` + + namespace boost { namespace math { + + template + T ellint_rj(T x, T y, T z, T p) + + }} // namespaces + + +`` + #include +`` + + namespace boost { namespace math { + + template + T ellint_rc(T x, T y) + + }} // namespaces + + +[heading Description] + +These functions return Carlson's symmetrical elliptic integrals, the functions +have complicated behavior over all their possible domains, but the following +graph gives an idea of their behavior: + +[$../graphs/ellint_c.png] + + template + T ellint_rf(T x, T y, T z) + +Returns Carlson's Elliptic Integral R[sub F]: + +[$../equations/ellint9.png] + +Requires that all of the arguments are non-negative, and at most +one may be zero. Otherwise returns the result of __domain_error. + + template + T ellint_rd(T x, T y, T z) + +Returns Carlson's elliptic integral R[sub D]: + +[$../equations/ellint10.png] + +Requires that x and y are non-negative, with at most one of them +zero, and that z >= 0. Otherwise returns the result of __domain_error. + + template + T ellint_rj(T x, T y, T z, T p) + +Returns Carlson's elliptic integral R[sub J]: + +[$../equations/ellint11.png] + +Requires that x, y and z are non-negative, with at most one of them +zero, and that ['p != 0]. Otherwise returns the result of __domain_error. + +When ['p < 0] the function returns the Cauchy principle value using the relation: + +[$../equations/ellint17.png] + + template + T ellint_rc(T x, T y) + +Returns Carlson's elliptic integral R[sub C]: + +[$../equations/ellint12.png] + +Requires that ['x > 0] and that ['y != 0]. +Otherwise returns the result of __domain_error. + +When ['y < 0] the function returns the Cauchy principle value using the relation: + +[$../equations/ellint18.png] + +[heading Testing] + +There are two sets of tests: spot tests compare selected values with test data +given in: + +[:B. C. Carlson, ['[@http://arxiv.org/abs/math.CA/9409227 +Numerical computation of real or complex elliptic integrals]]. Numerical Algorithms, +Volume 10, Number 1 / March, 1995, p13-26.] + +While random test data generated using NTL::RR at 1000-bit precision and our +implementation checks for rounding-errors and/or regressions. + +There are also sanity checks that use the inter-relations between the integrals +to verify their correctness: see the above Carlson paper for details. + +[heading Accuracy] + +These functions are computed using only basic arithmetic operations, so +there isn't much variation in accuracy over differing platforms. +Note that only results for the widest floating point type on the +system are given as narrower types have __zero_error. All values +are relative errors in units of epsilon. + +[table Errors Rates in the Carlson Elliptic Integrals +[[Significand Size] [Platform and Compiler] [R[sub F]] [R[sub D]] [R[sub J]] [R[sub C]]] +[[53] [Win32 / Visual C++ 8.0] [Peek=2.9 Mean=0.75] [Peek=2.6 Mean=0.9] [Peek=108 Mean=6.9] [Peek=2.4 Mean=0.6] ] +[[64] [Red Hat Linux / G++ 3.4] [Peek=2.5 Mean=0.75] [Peek=2.7 Mean=0.9] [Peek=105 Mean=8] [Peek=1.9 Mean=0.7] ] +[[113] [HP-UX / HP aCC 6] [Peek=5.3 Mean=1.6] [Peek=2.9 Mean=0.99] [Peek=180 Mean=12] [Peek=1.8 Mean=0.7] ] +] + +[heading Implementation] + +The key of Carlson's algorithm [[link ellint_ref_carlson79 Carlson79]] is the +duplication theorem: + +[$../equations/ellint13.png] + +By applying it repeatedly, ['x], ['y], ['z] get +closer and closer. When they are nearly equal, the special case equation + +[$../equations/ellint16.png] + +is used. More specifically, ['[R F]] is evaluated from a Taylor series +expansion to the fifth order. The calculations of the other three integrals +are analogous. + +For ['p < 0] in ['R[sub J](x, y, z, p)] and ['y < 0] in ['R[sub C](x, y)], +the integrals are singular and their Cauchy principal values are returned via the +relations: + +[$../equations/ellint17.png] + +[$../equations/ellint18.png] + +[endsect] diff --git a/doc/ellint_introduction.qbk b/doc/ellint_introduction.qbk new file mode 100644 index 000000000..70d191a99 --- /dev/null +++ b/doc/ellint_introduction.qbk @@ -0,0 +1,208 @@ +[/ +Copyright (c) 2006 Xiaogang Zhang +Use, modification and distribution are subject to the +Boost Software License, Version 1.0. (See accompanying file +LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +] + +[section:ellint_intro Elliptic Integral Overview] + +The main reference for the elliptic integrals is: + +[:M. Abramowitz and I. A. Stegun (Eds.) (1964) +Handbook of Mathematical Functions with Formulas, Graphs, and +Mathematical Tables, +National Bureau of Standards Applied Mathematics Series, U.S. Government Printing Office, Washington, D.C.] + +Mathworld also contain a lot of useful background information: + +[:[@http://mathworld.wolfram.com/EllipticIntegral.html Weisstein, Eric W. +"Elliptic Integral." From MathWorld--A Wolfram Web Resource.]] + +As does [@http://en.wikipedia.org/wiki/Elliptic_integral Wikipedia]. + +[h4 Notation] + +All variables are real numbers unless otherwise noted. + + + +[h4 [#ellint_def]Definition] + +[$../equations/ellint1.png] + +is called elliptic integral if ['R(t, s)] is a rational function +of ['t] and ['s], and ['s[super 2]] is a cubic or quartic polynomial +in ['t]. + +Elliptic integrals generally can not be expressed in terms of +elementary functions. However, Legendre showed that all elliptic +integrals can be reduced to the following three canonical forms: + +Elliptic Integral of the First Kind (Legendre form) + +[$../equations/ellint2.png] + +Elliptic Integral of the Second Kind (Legendre form) + +[$../equations/ellint3.png] + +Elliptic Integral of the Third Kind (Legendre form) + +[$../equations/ellint4.png] + +where + +[$../equations/ellint5.png] + +[note ['[phi]] is called the amplitude. \n + ['k] is called the modulus. \n + ['[alpha]] is called the modular angle. \n + ['n] is called the characteristic.] + +[caution Perhaps more than any other special functions the elliptic +integrals are expressed in a variety of different ways. In particular +the final parameter /k/ (the modulus) may be expressed using a modular +angle [alpha], or a parameter /m/. These are related by:\n\n +k = sin[alpha]\n +m = k[super 2] = sin[super 2][alpha]\n\n +So that the integral of the third kind (for example) may be expressed as +either:\n\n +[Pi](n, [phi], k)\n +[Pi](n, [phi] \\ [alpha])\n +[Pi](n, [phi]| m)\n\n +To further complicate matters, some texts refer to the ['complement +of the parameter m], or 1 - m, where:\n\n +1 - m = 1 - k[super 2] = cos[super 2][alpha]\n\n +This implementation uses /k/ throughout: this matches the requirements +of the [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1836.pdf +Technical Report on C++ Library Extensions]. However, you should +be extra careful when using these functions!] + +When ['[phi]] = ['[pi]] / 2, the elliptic integrals are called ['complete]. + +Complete Elliptic Integral of the First Kind (Legendre form) + +[$../equations/ellint6.png] + +Complete Elliptic Integral of the Second Kind (Legendre form) + +[$../equations/ellint7.png] + +Complete Elliptic Integral of the Third Kind (Legendre form) + +[$../equations/ellint8.png] + +Carlson [[link ellint_ref_carlson77 Carlson77]] [[link ellint_ref_carlson78 Carlson78]] gives an alternative definition of +elliptic integral's canonical forms: + +Carlson's Elliptic Integral of the First Kind + +[$../equations/ellint9.png] + +where ['x], ['y], ['z] are nonnegative and at most one of them +may be zero. + +Carlson's Elliptic Integral of the Second Kind + +[$../equations/ellint10.png] + +where ['x], ['y] are nonnegative, at most one of them may be zero, +and ['z] must be positive. + +Carlson's Elliptic Integral of the Third Kind + +[$../equations/ellint11.png] + +where ['x], ['y], ['z] are nonnegative, at most one of them may be +zero, and ['p] must be nonzero. + +Carlson's Degenerate Elliptic Integral + +[$../equations/ellint12.png] + +where ['x] is nonnegative and ['y] is nonzero. + +[note ['R[sub C](x, y) = R[sub F](x, y, y)] \n + ['R[sub D](x, y, z) = R[sub J](x, y, z, z)]] + + + +[h4 [#ellint_theorem]Duplication Theorem] + +Carlson proved in [[link ellint_ref_carlson78 Carlson78]] that + +[$../equations/ellint13.png] + +[h4 [#ellint_formula]Carlson's Formulas] + +The Legendre form and Carlson form of elliptic integrals are related +by equations: + +[$../equations/ellint14.png] + +In particular, + +[$../equations/ellint15.png] + +[h4 Numerical Algorithms] + +The conventional methods for computing elliptic integrals are Gauss +and Landen transformations, which converge quadratically and work +well for elliptic integrals of the first and second kinds. +Unfortunately they suffer from loss of significant digits for the +third kind. Carlson's algorithm [[link ellint_ref_carlson79 Carlson79]] [[link ellint_ref_carlson78 Carlson78]], by contrast, +provides a unified method for all three kinds of elliptic integrals +with satisfactory precisions. + +[h4 [#ellint_refs]References] + +# [#ellint_ref_AS]M. Abramowitz and I. A. Stegun (Eds.) (1964) +Handbook of Mathematical Functions with Formulas, Graphs, and +Mathematical Tables, +National Bureau of Standards Applied Mathematics Series, U.S. Government Printing Office, Washington, D.C. +# [#ellint_ref_carlson79]B.C. Carlson, ['Computing elliptic integrals by duplication], + Numerische Mathematik, vol 33, 1 (1979). +# [#ellint_ref_carlson77]B.C. Carlson, ['Elliptic Integrals of the First Kind], + SIAM Journal on Mathematical Analysis, vol 8, 231 (1977). +# [#ellint_ref_carlson78]B.C. Carlson, ['Short Proofs of Three Theorems on Elliptic Integrals], + SIAM Journal on Mathematical Analysis, vol 9, 524 (1978). +# [#ellint_ref_carlson81]B.C. Carlson and E.M. Notis, ['ALGORITHM 577: Algorithms for Incomplete + Elliptic Integrals], ACM Transactions on Mathematmal Software, + vol 7, 398 (1981). +# B. C. Carlson, ['On computing elliptic integrals and functions]. J. Math. and +Phys., 44 (1965), pp. 36-51. +# B. C. Carlson, ['A table of elliptic integrals of the second kind]. Math. Comp., 49 +(1987), pp. 595-606. (Supplement, ibid., pp. S13-S17.) +# B. C. Carlson, ['A table of elliptic integrals of the third kind]. Math. Comp., 51 (1988), +pp. 267-280. (Supplement, ibid., pp. S1-S5.) +# B. C. Carlson, ['A table of elliptic integrals: cubic cases]. Math. Comp., 53 (1989), pp. +327-333. +# B. C. Carlson, ['A table of elliptic integrals: one quadratic factor]. Math. Comp., 56 (1991), +pp. 267-280. +# B. C. Carlson, ['A table of elliptic integrals: two quadratic factors]. Math. Comp., 59 +(1992), pp. 165-180. +# B. C. Carlson, ['[@http://arxiv.org/abs/math.CA/9409227 +Numerical computation of real or complex elliptic integrals]]. Numerical Algorithms, +Volume 10, Number 1 / March, 1995, p13-26. +# B. C. Carlson and John L. Gustafson, ['[@http://arxiv.org/abs/math.CA/9310223 +Asymptotic Approximations for Symmetric Elliptic Integrals]], +SIAM Journal on Mathematical Analysis, Volume 25, Issue 2 (March 1994), 288-303. + + +The following references, while not directly relevent to our implementation, +may also be of interest: + +# R. Burlisch, ['Numerical Compuation of Elliptic Integrals and Elliptic Functions.] +Numerical Mathematik 7, 78-90. +# R. Burlisch, ['An extension of the Bartky Transformation to Incomplete +Elliptic Integrals of the Third Kind]. Numerical Mathematik 13, 266-284. +# R. Burlisch, ['Numerical Compuation of Elliptic Integrals and Elliptic Functions. III]. +Numerical Mathematik 13, 305-315. +# T. Fukushima and H. Ishizaki, ['[@http://adsabs.harvard.edu/abs/1994CeMDA..59..237F +Numerical Computation of Incomplete Elliptic Integrals of a General Form.]] +Celestial Mechanics and Dynamical Astronomy, Volume 59, Number 3 / July, 1994, +237-251. + + +[endsect] diff --git a/doc/ellint_legendre.qbk b/doc/ellint_legendre.qbk new file mode 100644 index 000000000..ccdc4943d --- /dev/null +++ b/doc/ellint_legendre.qbk @@ -0,0 +1,287 @@ +[/ +Copyright (c) 2006 Xiaogang Zhang +Copyright (c) 2006 John Maddock +Use, modification and distribution are subject to the +Boost Software License, Version 1.0. (See accompanying file +LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +] + +[section Elliptic Integrals of the First Kind - Legendre Form] + +[caution __caution] + +[heading Synopsis] + +`` + #include +`` + + namespace boost { namespace math { + + template + T ellint_1(T k, T phi); + + template + T ellint_1(T k); + + }} // namespaces + +[heading Description] + +These two functions evaluate the incomplete elliptic integral of the first kind +['F([phi], k)] and it's complete counterpart ['K(k) = F([pi]/2, k)]. + +[$../graphs/ellint_1.png] + + template + T ellint_1(T k, T phi); + +Returns the incomplete elliptic integral of the first kind ['F([phi], k)]: + +[$../equations/ellint2.png] + +Requires -1 <= k <= 1, otherwise returns the result of __domain_error. + + template + T ellint_1(T k); + +Returns the complete elliptic integral of the first kind ['K(k)]: + +[$../equations/ellint6.png] + +Requires -1 <= k <= 1, otherwise returns the result of __domain_error. + +[heading Accuracy] + +These functions are computed using only basic arithmetic operations, so +there isn't much variation in accuracy over differing platforms. +Note that only results for the widest floating point type on the +system are given as narrower types have __zero_error. All values +are relative errors in units of epsilon. + +[table Errors Rates in the Elliptic Integrals of the First Kind +[[Significand Size] [Platform and Compiler] [F([phi], k)] [K(k)] ] +[[53] [Win32 / Visual C++ 8.0] [Peek=3 Mean=0.8] [Peek=1.8 Mean=0.7] ] +[[64] [Red Hat Linux / G++ 3.4] [Peek=2.6 Mean=1.7] [Peek=2.2 Mean=1.8] ] +[[113] [HP-UX / HP aCC 6] [Peek=4.6 Mean=1.5] [Peek=3.7 Mean=1.5] ] +] + + +[heading Testing] + +The tests use a mixture of spot test values calculated using the online +calculator at [@functions.wolfram.com +functions.wolfram.com], and random test data generated using +NTL::RR at 1000-bit precision and this implementation. + +[heading Implementation] + +These functions are implemented in terms of Carlson's integrals +using the relations: + +[$../equations/ellint19.png] + +and + +[$../equations/ellint20.png] + + +[endsect] + +[section Elliptic Integrals of the Second Kind - Legendre Form] + +[caution __caution] + +[heading Synopsis] + +`` + #include +`` + + namespace boost { namespace math { + + template + T ellint_2(T k, T phi); + + template + T ellint_2(T k); + + }} // namespaces + +[heading Description] + +These two functions evaluate the incomplete elliptic integral of the second kind +['E([phi], k)] and it's complete counterpart ['E(k) = E([pi]/2, k)]. + +[$../graphs/ellint_2.png] + + template + T ellint_2(T k, T phi); + +Returns the incomplete elliptic integral of the second kind ['E([phi], k)]: + +[$../equations/ellint3.png] + +Requires -1 <= k <= 1, otherwise returns the result of __domain_error. + + template + T ellint_2(T k); + +Returns the complete elliptic integral of the first kind ['E(k)]: + +[$../equations/ellint7.png] + +Requires -1 <= k <= 1, otherwise returns the result of __domain_error. + +[heading Accuracy] + +These functions are computed using only basic arithmetic operations, so +there isn't much variation in accuracy over differing platforms. +Note that only results for the widest floating point type on the +system are given as narrower types have __zero_error. All values +are relative errors in units of epsilon. + +[table Errors Rates in the Elliptic Integrals of the Second Kind +[[Significand Size] [Platform and Compiler] [F([phi], k)] [K(k)] ] +[[53] [Win32 / Visual C++ 8.0] [Peek=4.6 Mean=1.2] [Peek=3.5 Mean=1.0] ] +[[64] [Red Hat Linux / G++ 3.4] [Peek=4.3 Mean=1.1] [Peek=4.6 Mean=1.2] ] +[[113] [HP-UX / HP aCC 6] [Peek=5.8 Mean=2.2] [Peek=10.8 Mean=2.3] ] +] + + +[heading Testing] + +The tests use a mixture of spot test values calculated using the online +calculator at [@functions.wolfram.com +functions.wolfram.com], and random test data generated using +NTL::RR at 1000-bit precision and this implementation. + +[heading Implementation] + +These functions are implemented in terms of Carlson's integrals +using the relations: + +[$../equations/ellint21.png] + +and + +[$../equations/ellint22.png] + + +[endsect] + +[section Elliptic Integrals of the Third Kind - Legendre Form] + +[caution __caution] + +[heading Synopsis] + +`` + #include +`` + + namespace boost { namespace math { + + template + T ellint_3(T k, T n, T phi); + + template + T ellint_3(T k, T n); + + }} // namespaces + +[heading Description] + +These two functions evaluate the incomplete elliptic integral of the third kind +['[Pi](n, [phi], k)] and it's complete counterpart ['[Pi](n, k) = E(n, [pi]/2, k)]. + +[$../graphs/ellint_3.png] + + template + T ellint_3(T k, T n, T phi); + +Returns the incomplete elliptic integral of the third kind ['[Pi](n, [phi], k)]: + +[$../equations/ellint4.png] + +Requires ['-1 <= k <= 1] and ['n < 1/sin[super 2]([phi])], otherwise +returns the result of __domain_error. + +In addition, the region where ['n > 1] and [phi][space] ['is not in the range] +\[0, [pi]\/2\] is currently unsupported and returns the result of __domain_error. +For this reason it is recomended that you keep [phi][space] inside it's "natural" range +of \[0, [pi]\/2\]. + + template + T ellint_3(T k, T n); + +Returns the complete elliptic integral of the first kind ['[Pi](n, k)]: + +[$../equations/ellint8.png] + +Requires ['-1 <= k <= 1] and ['n < 1], otherwise returns the result of __domain_error. + +[heading Accuracy] + +These functions are computed using only basic arithmetic operations, so +there isn't much variation in accuracy over differing platforms. +Note that only results for the widest floating point type on the +system are given as narrower types have __zero_error. All values +are relative errors in units of epsilon. + +[table Errors Rates in the Elliptic Integrals of the Third Kind +[[Significand Size] [Platform and Compiler] [[Pi](n, [phi], k)] [[Pi](n, k)] ] +[[53] [Win32 / Visual C++ 8.0] [Peek=29 Mean=2.2] [Peek=3 Mean=0.8] ] +[[64] [Red Hat Linux / G++ 3.4] [Peek=14 Mean=1.3] [Peek=2.3 Mean=0.8] ] +[[113] [HP-UX / HP aCC 6] [Peek=10 Mean=1.4] [Peek=4.2 Mean=1.1] ] +] + + +[heading Testing] + +The tests use a mixture of spot test values calculated using the online +calculator at [@functions.wolfram.com +functions.wolfram.com], and random test data generated using +NTL::RR at 1000-bit precision and this implementation. + +[heading Implementation] + +The implementation for [Pi](n, [phi], k) first siphons off the special cases: + +['[Pi](0, [phi], k) = F([phi], k)] + +['[Pi](n, [pi]/2, k) = [Pi](n, k)] + +and + +[$../equations/ellint23.png] + +Then if n < 0 the relations (A&S 17.7.15/16): + +[$../equations/ellint24.png] + +are used to shift /n/ to the range \[0, 1\]. + +Then the relations: + +['[Pi](n, -[phi], k) = -[Pi](n, [phi], k)] + +['[Pi](n, [phi]+m[pi], k) = [Pi](n, [phi], k) + 2m[Pi](n, k)] + +are used to move [phi][space] to the range \[0, [pi]\/2\]. + +The functions are then implemented in terms of Carlson's integrals +using the relations: + +[$../equations/ellint25.png] + +and + +[$../equations/ellint26.png] + +The remaining problem area occurs when n > 1 and [phi][space] is outside +the range \[0, [pi]\/2\]. In this range the reduction formula for +large [phi][space] can no longer be applied. Likewise the identities 17.7.7/8 +in A&S for reducing n to the range \[0,1\] appear to be no longer applicable. + +[endsect] diff --git a/doc/equations/ellint.xml b/doc/equations/ellint.xml new file mode 100644 index 000000000..9bdcd88be Binary files /dev/null and b/doc/equations/ellint.xml differ diff --git a/doc/equations/ellint1.png b/doc/equations/ellint1.png new file mode 100644 index 000000000..e73bb5147 Binary files /dev/null and b/doc/equations/ellint1.png differ diff --git a/doc/equations/ellint1.tex b/doc/equations/ellint1.tex new file mode 100644 index 000000000..9ec2fd348 --- /dev/null +++ b/doc/equations/ellint1.tex @@ -0,0 +1,9 @@ +\documentclass[12pt]{article} +\pagestyle{empty} +\begin{document} + +\begin{displaymath} +\int R(t,s) \; dt +\end{displaymath} + +\end{document} diff --git a/doc/equations/ellint10.png b/doc/equations/ellint10.png new file mode 100644 index 000000000..027a0e83c Binary files /dev/null and b/doc/equations/ellint10.png differ diff --git a/doc/equations/ellint10.tex b/doc/equations/ellint10.tex new file mode 100644 index 000000000..f8c7e36ad --- /dev/null +++ b/doc/equations/ellint10.tex @@ -0,0 +1,9 @@ +\documentclass[12pt]{article} +\pagestyle{empty} +\begin{document} + +\begin{displaymath} +R_D(x, y, z) = \frac{3}{2} \int_{0}^{\infty} [(t+x)(t+y)]^{-\frac{1}{2}} (t+z)^{-\frac{3}{2}} dt +\end{displaymath} + +\end{document} diff --git a/doc/equations/ellint11.png b/doc/equations/ellint11.png new file mode 100644 index 000000000..092cb7111 Binary files /dev/null and b/doc/equations/ellint11.png differ diff --git a/doc/equations/ellint11.tex b/doc/equations/ellint11.tex new file mode 100644 index 000000000..fc8775706 --- /dev/null +++ b/doc/equations/ellint11.tex @@ -0,0 +1,9 @@ +\documentclass[12pt]{article} +\pagestyle{empty} +\begin{document} + +\begin{displaymath} +R_J(x, y, z, p) = \frac{3}{2} \int_{0}^{\infty} (t+p)^{-1} [(t+x)(t+y)(t+z)]^{-\frac{1}{2}} dt +\end{displaymath} + +\end{document} diff --git a/doc/equations/ellint12.png b/doc/equations/ellint12.png new file mode 100644 index 000000000..00ad81905 Binary files /dev/null and b/doc/equations/ellint12.png differ diff --git a/doc/equations/ellint12.tex b/doc/equations/ellint12.tex new file mode 100644 index 000000000..0fd7ad2ac --- /dev/null +++ b/doc/equations/ellint12.tex @@ -0,0 +1,9 @@ +\documentclass[12pt]{article} +\pagestyle{empty} +\begin{document} + +\begin{displaymath} +R_C(x, y) = \frac{1}{2} \int_{0}^{\infty} (t+x)^{-\frac{1}{2}} (t+y)^{-1} dt +\end{displaymath} + +\end{document} diff --git a/doc/equations/ellint13.png b/doc/equations/ellint13.png new file mode 100644 index 000000000..043f12b6a Binary files /dev/null and b/doc/equations/ellint13.png differ diff --git a/doc/equations/ellint13.tex b/doc/equations/ellint13.tex new file mode 100644 index 000000000..7b311c7cc --- /dev/null +++ b/doc/equations/ellint13.tex @@ -0,0 +1,12 @@ +\documentclass[12pt]{article} +\usepackage{amsmath,amssymb} +\pagestyle{empty} +\begin{document} + +\begin{align} +R_F(x, y, z) &= 2R_F(x+\lambda, y+\lambda, z+\lambda) \notag \\ + &= R_F\left(\frac{x+\lambda}{4}, \frac{y+\lambda}{4}, \frac{z+\lambda}{4}\right) \notag \\ +\lambda &= \sqrt{xy} + \sqrt{yz} + \sqrt{zx} \notag +\end{align} + +\end{document} diff --git a/doc/equations/ellint14.png b/doc/equations/ellint14.png new file mode 100644 index 000000000..a90df8ab7 Binary files /dev/null and b/doc/equations/ellint14.png differ diff --git a/doc/equations/ellint14.tex b/doc/equations/ellint14.tex new file mode 100644 index 000000000..09834886a --- /dev/null +++ b/doc/equations/ellint14.tex @@ -0,0 +1,14 @@ +\documentclass[12pt]{article} +\usepackage{amsmath,amssymb} +\pagestyle{empty} +\begin{document} + +\begin{align} +F(\phi, k) &= \sin\phi R_F(\cos^2\phi, 1-k^2\sin^2\phi, 1) \notag \\ +E(\phi, k) &= \sin\phi R_F(\cos^2\phi, 1-k^2\sin^2\phi, 1) - + \frac{1}{3}k^2\sin^3\phi R_D(\cos^2\phi, 1-k^2\sin^2\phi, 1) \notag \\ +\Pi(n, \phi, k) &= \sin\phi R_F(\cos^2\phi, 1-k^2\sin^2\phi, 1) + + \frac{1}{3}n\sin^3\phi R_J(\cos^2\phi, 1-k^2\sin^2\phi, 1, 1-n\sin^2\phi) \notag +\end{align} + +\end{document} diff --git a/doc/equations/ellint15.png b/doc/equations/ellint15.png new file mode 100644 index 000000000..d8b1c3ae9 Binary files /dev/null and b/doc/equations/ellint15.png differ diff --git a/doc/equations/ellint15.tex b/doc/equations/ellint15.tex new file mode 100644 index 000000000..3fb85f9ee --- /dev/null +++ b/doc/equations/ellint15.tex @@ -0,0 +1,12 @@ +\documentclass[12pt]{article} +\usepackage{amsmath,amssymb} +\pagestyle{empty} +\begin{document} + +\begin{align} +K(k) &= R_F(0, 1-k^2, 1) \notag \\ +E(k) &= R_F(0, 1-k^2, 1) - \frac{1}{3}k^2R_D(0, 1-k^2, 1) \notag \\ +\Pi(n, k) &= R_F(0, 1-k^2, 1) + \frac{1}{3}nR_J(0, 1-k^2, 1, 1-n) \notag +\end{align} + +\end{document} diff --git a/doc/equations/ellint16.png b/doc/equations/ellint16.png new file mode 100644 index 000000000..2679625ab Binary files /dev/null and b/doc/equations/ellint16.png differ diff --git a/doc/equations/ellint16.tex b/doc/equations/ellint16.tex new file mode 100644 index 000000000..b6352a0ef --- /dev/null +++ b/doc/equations/ellint16.tex @@ -0,0 +1,9 @@ +\documentclass[12pt]{article} +\pagestyle{empty} +\begin{document} + +\begin{displaymath} +R_F(x, x, x) = \frac{1}{\sqrt{x}} +\end{displaymath} + +\end{document} diff --git a/doc/equations/ellint17.png b/doc/equations/ellint17.png new file mode 100644 index 000000000..13840f2e8 Binary files /dev/null and b/doc/equations/ellint17.png differ diff --git a/doc/equations/ellint18.png b/doc/equations/ellint18.png new file mode 100644 index 000000000..068456a65 Binary files /dev/null and b/doc/equations/ellint18.png differ diff --git a/doc/equations/ellint19.png b/doc/equations/ellint19.png new file mode 100644 index 000000000..074fc1e10 Binary files /dev/null and b/doc/equations/ellint19.png differ diff --git a/doc/equations/ellint2.png b/doc/equations/ellint2.png new file mode 100644 index 000000000..e5be3a0f9 Binary files /dev/null and b/doc/equations/ellint2.png differ diff --git a/doc/equations/ellint2.tex b/doc/equations/ellint2.tex new file mode 100644 index 000000000..c9a032de8 --- /dev/null +++ b/doc/equations/ellint2.tex @@ -0,0 +1,9 @@ +\documentclass[12pt]{article} +\pagestyle{empty} +\begin{document} + +\begin{displaymath} +F(\phi, k) = \int_0^\phi \frac{d\theta}{\sqrt{1-k^2\sin^2\theta}} +\end{displaymath} + +\end{document} diff --git a/doc/equations/ellint20.png b/doc/equations/ellint20.png new file mode 100644 index 000000000..fa94c4904 Binary files /dev/null and b/doc/equations/ellint20.png differ diff --git a/doc/equations/ellint21.png b/doc/equations/ellint21.png new file mode 100644 index 000000000..76cdfa225 Binary files /dev/null and b/doc/equations/ellint21.png differ diff --git a/doc/equations/ellint22.png b/doc/equations/ellint22.png new file mode 100644 index 000000000..dba416e2b Binary files /dev/null and b/doc/equations/ellint22.png differ diff --git a/doc/equations/ellint23.png b/doc/equations/ellint23.png new file mode 100644 index 000000000..cc56ea0a7 Binary files /dev/null and b/doc/equations/ellint23.png differ diff --git a/doc/equations/ellint24.png b/doc/equations/ellint24.png new file mode 100644 index 000000000..dd51a1465 Binary files /dev/null and b/doc/equations/ellint24.png differ diff --git a/doc/equations/ellint25.png b/doc/equations/ellint25.png new file mode 100644 index 000000000..4b7b4cb06 Binary files /dev/null and b/doc/equations/ellint25.png differ diff --git a/doc/equations/ellint26.png b/doc/equations/ellint26.png new file mode 100644 index 000000000..add60172a Binary files /dev/null and b/doc/equations/ellint26.png differ diff --git a/doc/equations/ellint3.png b/doc/equations/ellint3.png new file mode 100644 index 000000000..30f8f04f5 Binary files /dev/null and b/doc/equations/ellint3.png differ diff --git a/doc/equations/ellint3.tex b/doc/equations/ellint3.tex new file mode 100644 index 000000000..fd88478aa --- /dev/null +++ b/doc/equations/ellint3.tex @@ -0,0 +1,9 @@ +\documentclass[12pt]{article} +\pagestyle{empty} +\begin{document} + +\begin{displaymath} +E(\phi, k) = \int_0^\phi \sqrt{1-k^2\sin^2\theta} \; d\theta +\end{displaymath} + +\end{document} diff --git a/doc/equations/ellint4.png b/doc/equations/ellint4.png new file mode 100644 index 000000000..e9b52beb2 Binary files /dev/null and b/doc/equations/ellint4.png differ diff --git a/doc/equations/ellint4.tex b/doc/equations/ellint4.tex new file mode 100644 index 000000000..e7aa7fe9f --- /dev/null +++ b/doc/equations/ellint4.tex @@ -0,0 +1,9 @@ +\documentclass[12pt]{article} +\pagestyle{empty} +\begin{document} + +\begin{displaymath} +\Pi(n, \phi, k) = \int_0^\phi \frac{d\theta}{(1-n\sin^2\theta)\sqrt{1-k^2\sin^2\theta}} +\end{displaymath} + +\end{document} diff --git a/doc/equations/ellint5.png b/doc/equations/ellint5.png new file mode 100644 index 000000000..07f3fa7c9 Binary files /dev/null and b/doc/equations/ellint5.png differ diff --git a/doc/equations/ellint5.tex b/doc/equations/ellint5.tex new file mode 100644 index 000000000..d68f345d4 --- /dev/null +++ b/doc/equations/ellint5.tex @@ -0,0 +1,9 @@ +\documentclass[12pt]{article} +\pagestyle{empty} +\begin{document} + +\begin{displaymath} +k = \sin\alpha, \;\;\;\; |k| \le 1 +\end{displaymath} + +\end{document} diff --git a/doc/equations/ellint6.png b/doc/equations/ellint6.png new file mode 100644 index 000000000..217e652b2 Binary files /dev/null and b/doc/equations/ellint6.png differ diff --git a/doc/equations/ellint6.tex b/doc/equations/ellint6.tex new file mode 100644 index 000000000..c5a066d74 --- /dev/null +++ b/doc/equations/ellint6.tex @@ -0,0 +1,9 @@ +\documentclass[12pt]{article} +\pagestyle{empty} +\begin{document} + +\begin{displaymath} +K(k) = F(\frac{\pi}{2}, k) = \int_0^\frac{\pi}{2} \frac{d\theta}{\sqrt{1-k^2\sin^2\theta}} +\end{displaymath} + +\end{document} diff --git a/doc/equations/ellint7.png b/doc/equations/ellint7.png new file mode 100644 index 000000000..061a93e60 Binary files /dev/null and b/doc/equations/ellint7.png differ diff --git a/doc/equations/ellint7.tex b/doc/equations/ellint7.tex new file mode 100644 index 000000000..0b5b189fb --- /dev/null +++ b/doc/equations/ellint7.tex @@ -0,0 +1,9 @@ +\documentclass[12pt]{article} +\pagestyle{empty} +\begin{document} + +\begin{displaymath} +E(k) = E(\frac{\pi}{2}, k) = \int_0^\frac{\pi}{2} \sqrt{1-k^2\sin^2\theta} \; d\theta +\end{displaymath} + +\end{document} diff --git a/doc/equations/ellint8.png b/doc/equations/ellint8.png new file mode 100644 index 000000000..912f7a7a8 Binary files /dev/null and b/doc/equations/ellint8.png differ diff --git a/doc/equations/ellint8.tex b/doc/equations/ellint8.tex new file mode 100644 index 000000000..de36a9ee0 --- /dev/null +++ b/doc/equations/ellint8.tex @@ -0,0 +1,10 @@ +\documentclass[12pt]{article} +\pagestyle{empty} +\begin{document} + +\begin{displaymath} +\Pi(n, k) = \Pi(n, \frac{\pi}{2}, k) + = \int_0^\frac{\pi}{2} \frac{d\theta}{(1-n\sin^2\theta)\sqrt{1-k^2\sin^2\theta}} +\end{displaymath} + +\end{document} diff --git a/doc/equations/ellint9.png b/doc/equations/ellint9.png new file mode 100644 index 000000000..f4fdd9541 Binary files /dev/null and b/doc/equations/ellint9.png differ diff --git a/doc/equations/ellint9.tex b/doc/equations/ellint9.tex new file mode 100644 index 000000000..0b164d0ab --- /dev/null +++ b/doc/equations/ellint9.tex @@ -0,0 +1,9 @@ +\documentclass[12pt]{article} +\pagestyle{empty} +\begin{document} + +\begin{displaymath} +R_F(x, y, z) = \frac{1}{2} \int_{0}^{\infty} [(t+x)(t+y)(t+z)]^{-\frac{1}{2}} dt +\end{displaymath} + +\end{document} diff --git a/doc/graphs/ellint_1.png b/doc/graphs/ellint_1.png new file mode 100644 index 000000000..f5e193b95 Binary files /dev/null and b/doc/graphs/ellint_1.png differ diff --git a/doc/graphs/ellint_1.ps b/doc/graphs/ellint_1.ps new file mode 100644 index 000000000..2b20f8efb --- /dev/null +++ b/doc/graphs/ellint_1.ps @@ -0,0 +1,14673 @@ +%!PS-Adobe-3.0 +%%LanguageLevel: 2 +%%Title: Graph +%%Creator: RJS +%%CreationDate: 13:02:45 27/12/2006 +%%DocumentMedia: plain 841 595 0 () () +%%BoundingBox: 0 0 841 595 +newpath +0 595.2 moveto +841.8 595.2 lineto +841.8 0 lineto +0 0 lineto +0.05 setlinewidth +[] 0 setdash +1 1 1 setrgbcolor +closepath +fill +newpath +0 595.2 moveto +841.8 595.2 lineto +841.8 0 lineto +0 0 lineto +0.05 setlinewidth +[] 0 setdash +1 1 1 setrgbcolor +closepath +stroke +/Arial findfont +24 scalefont +setfont +0 0 0 setrgbcolor +newpath +250.65 500.35 moveto +(Elliptic Integrals of the First Kind) show +/Arial findfont +16 scalefont +setfont +0 0 0 setrgbcolor +newpath +420.9 481.35 moveto +() show +/Arial findfont +14 scalefont +setfont +0 0 0 setrgbcolor +newpath +417.525 73.35 moveto +(k) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +422.0692 487.35 moveto +() show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +132.841 89.35 moveto +(-0.8) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +203.0856 89.35 moveto +(-0.6) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +273.3301 89.35 moveto +(-0.4) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +343.5746 89.35 moveto +(-0.2) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +419.4442 89.35 moveto +(0) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +485.5637 89.35 moveto +(0.2) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +555.8082 89.35 moveto +(0.4) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +626.0527 89.35 moveto +(0.6) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +696.2973 89.35 moveto +(0.8) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +398.5692 158.1776 moveto +(0.5) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +406.8192 224.2121 moveto +(1) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +398.5692 290.2466 moveto +(1.5) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +406.8192 356.281 moveto +(2) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +398.5692 422.3155 moveto +(2.5) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +406.8192 488.35 moveto +(3) show +141.091 109.35 moveto +141.091 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +211.3356 109.35 moveto +211.3356 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +281.5801 109.35 moveto +281.5801 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +351.8246 109.35 moveto +351.8246 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +422.0692 109.35 moveto +422.0692 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +492.3137 109.35 moveto +492.3137 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +562.5582 109.35 moveto +562.5582 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +632.8027 109.35 moveto +632.8027 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +703.0473 109.35 moveto +703.0473 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +422.0692 162.1776 moveto +414.5692 162.1776 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +422.0692 228.2121 moveto +414.5692 228.2121 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +422.0692 294.2466 moveto +414.5692 294.2466 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +422.0692 360.281 moveto +414.5692 360.281 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +422.0692 426.3155 moveto +414.5692 426.3155 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +422.0692 492.35 moveto +414.5692 492.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +422.0692 492.35 moveto +422.0692 109.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +70.85 109.35 moveto +770.95 109.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +70.85 109.3721 moveto +73.19146 109.3718 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +73.19146 109.3718 moveto +75.53296 109.3715 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +75.53296 109.3715 moveto +77.87442 109.3712 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +77.87442 109.3712 moveto +80.21588 109.3709 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +80.21588 109.3709 moveto +82.55734 109.3706 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +82.55734 109.3706 moveto +84.89883 109.3703 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +84.89883 109.3703 moveto +87.2403 109.3701 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +87.2403 109.3701 moveto +89.58179 109.3698 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +89.58179 109.3698 moveto +91.92326 109.3695 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +91.92326 109.3695 moveto +94.26472 109.3692 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +94.26472 109.3692 moveto +96.60618 109.3689 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +96.60618 109.3689 moveto +98.94768 109.3687 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +98.94768 109.3687 moveto +101.2891 109.3684 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +101.2891 109.3684 moveto +103.6306 109.3681 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +103.6306 109.3681 moveto +105.9721 109.3679 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +105.9721 109.3679 moveto +108.3136 109.3676 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +108.3136 109.3676 moveto +110.655 109.3673 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +110.655 109.3673 moveto +112.9965 109.3671 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +112.9965 109.3671 moveto +115.338 109.3668 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +115.338 109.3668 moveto +117.6794 109.3666 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +117.6794 109.3666 moveto +120.0209 109.3663 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +120.0209 109.3663 moveto +122.3624 109.3661 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +122.3624 109.3661 moveto +124.7038 109.3658 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +124.7038 109.3658 moveto +127.0453 109.3655 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +127.0453 109.3655 moveto +129.3868 109.3653 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +129.3868 109.3653 moveto +131.7283 109.365 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +131.7283 109.365 moveto +134.0697 109.3648 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +134.0697 109.3648 moveto +136.4112 109.3646 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +136.4112 109.3646 moveto +138.7527 109.3644 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +138.7527 109.3644 moveto +141.0941 109.3641 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +141.0941 109.3641 moveto +143.4356 109.3639 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +143.4356 109.3639 moveto +145.7771 109.3636 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +145.7771 109.3636 moveto +148.1186 109.3634 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +148.1186 109.3634 moveto +150.4601 109.3632 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +150.4601 109.3632 moveto +152.8015 109.3629 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +152.8015 109.3629 moveto +155.143 109.3627 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +155.143 109.3627 moveto +157.4845 109.3625 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +157.4845 109.3625 moveto +159.8259 109.3623 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +159.8259 109.3623 moveto +162.1674 109.3621 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +162.1674 109.3621 moveto +164.5089 109.3619 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +164.5089 109.3619 moveto +166.8503 109.3616 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +166.8503 109.3616 moveto +169.1918 109.3614 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +169.1918 109.3614 moveto +171.5333 109.3612 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +171.5333 109.3612 moveto +173.8747 109.361 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +173.8747 109.361 moveto +176.2162 109.3608 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +176.2162 109.3608 moveto +178.5577 109.3606 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +178.5577 109.3606 moveto +180.8992 109.3604 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +180.8992 109.3604 moveto +183.2406 109.3602 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +183.2406 109.3602 moveto +185.5821 109.36 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +185.5821 109.36 moveto +187.9236 109.3598 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +187.9236 109.3598 moveto +190.265 109.3596 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +190.265 109.3596 moveto +192.6065 109.3594 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +192.6065 109.3594 moveto +194.948 109.3592 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +194.948 109.3592 moveto +197.2895 109.359 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +197.2895 109.359 moveto +199.631 109.3588 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +199.631 109.3588 moveto +201.9724 109.3586 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +201.9724 109.3586 moveto +204.3139 109.3585 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +204.3139 109.3585 moveto +206.6553 109.3583 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +206.6553 109.3583 moveto +208.9968 109.3581 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +208.9968 109.3581 moveto +211.3383 109.3579 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +211.3383 109.3579 moveto +213.6798 109.3577 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +213.6798 109.3577 moveto +216.0212 109.3576 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +216.0212 109.3576 moveto +218.3627 109.3574 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +218.3627 109.3574 moveto +220.7042 109.3572 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +220.7042 109.3572 moveto +223.0457 109.3571 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +223.0457 109.3571 moveto +225.3871 109.3569 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +225.3871 109.3569 moveto +227.7286 109.3567 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +227.7286 109.3567 moveto +230.0701 109.3566 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +230.0701 109.3566 moveto +232.4115 109.3564 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +232.4115 109.3564 moveto +234.753 109.3563 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +234.753 109.3563 moveto +237.0945 109.3561 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +237.0945 109.3561 moveto +239.436 109.356 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +239.436 109.356 moveto +241.7774 109.3558 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +241.7774 109.3558 moveto +244.1189 109.3556 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +244.1189 109.3556 moveto +246.4604 109.3555 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +246.4604 109.3555 moveto +248.8019 109.3554 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +248.8019 109.3554 moveto +251.1433 109.3552 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +251.1433 109.3552 moveto +253.4848 109.3551 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +253.4848 109.3551 moveto +255.8263 109.3549 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +255.8263 109.3549 moveto +258.1677 109.3548 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +258.1677 109.3548 moveto +260.5092 109.3546 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +260.5092 109.3546 moveto +262.8507 109.3545 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +262.8507 109.3545 moveto +265.1921 109.3544 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +265.1921 109.3544 moveto +267.5336 109.3542 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +267.5336 109.3542 moveto +269.8751 109.3541 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +269.8751 109.3541 moveto +272.2166 109.354 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +272.2166 109.354 moveto +274.558 109.3539 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +274.558 109.3539 moveto +276.8995 109.3538 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +276.8995 109.3538 moveto +279.241 109.3536 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +279.241 109.3536 moveto +281.5825 109.3535 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +281.5825 109.3535 moveto +283.9239 109.3534 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +283.9239 109.3534 moveto +286.2654 109.3533 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +286.2654 109.3533 moveto +288.6069 109.3532 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +288.6069 109.3532 moveto +290.9483 109.3531 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +290.9483 109.3531 moveto +293.2898 109.353 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +293.2898 109.353 moveto +295.6313 109.3528 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +295.6313 109.3528 moveto +297.9727 109.3527 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +297.9727 109.3527 moveto +300.3142 109.3526 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +300.3142 109.3526 moveto +302.6557 109.3525 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +302.6557 109.3525 moveto +304.9972 109.3524 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +304.9972 109.3524 moveto +307.3386 109.3523 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +307.3386 109.3523 moveto +309.6801 109.3522 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +309.6801 109.3522 moveto +312.0216 109.3521 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +312.0216 109.3521 moveto +314.363 109.3521 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +314.363 109.3521 moveto +316.7046 109.352 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +316.7046 109.352 moveto +319.046 109.3519 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +319.046 109.3519 moveto +321.3875 109.3518 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +321.3875 109.3518 moveto +323.7289 109.3517 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +323.7289 109.3517 moveto +326.0704 109.3517 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +326.0704 109.3517 moveto +328.4119 109.3516 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +328.4119 109.3516 moveto +330.7533 109.3515 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +330.7533 109.3515 moveto +333.0948 109.3514 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +333.0948 109.3514 moveto +335.4363 109.3513 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +335.4363 109.3513 moveto +337.7778 109.3513 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +337.7778 109.3513 moveto +340.1192 109.3512 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +340.1192 109.3512 moveto +342.4607 109.3511 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +342.4607 109.3511 moveto +344.8022 109.3511 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +344.8022 109.3511 moveto +347.1436 109.351 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +347.1436 109.351 moveto +349.4851 109.3509 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +349.4851 109.3509 moveto +351.8266 109.3509 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +351.8266 109.3509 moveto +354.1681 109.3508 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +354.1681 109.3508 moveto +356.5096 109.3508 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +356.5096 109.3508 moveto +358.851 109.3507 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +358.851 109.3507 moveto +361.1925 109.3507 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +361.1925 109.3507 moveto +363.534 109.3506 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +363.534 109.3506 moveto +365.8754 109.3506 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +365.8754 109.3506 moveto +368.2169 109.3505 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +368.2169 109.3505 moveto +370.5583 109.3505 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +370.5583 109.3505 moveto +372.8998 109.3504 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +372.8998 109.3504 moveto +375.2413 109.3504 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +375.2413 109.3504 moveto +377.5828 109.3503 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +377.5828 109.3503 moveto +379.9243 109.3503 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +379.9243 109.3503 moveto +382.2657 109.3503 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +382.2657 109.3503 moveto +384.6072 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +384.6072 109.3502 moveto +386.9487 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +386.9487 109.3502 moveto +389.2901 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +389.2901 109.3502 moveto +391.6316 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +391.6316 109.3502 moveto +393.9731 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +393.9731 109.3502 moveto +396.3145 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +396.3145 109.3501 moveto +398.656 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +398.656 109.3501 moveto +400.9975 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +400.9975 109.3501 moveto +403.339 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +403.339 109.3501 moveto +405.6804 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +405.6804 109.3501 moveto +408.0219 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +408.0219 109.3501 moveto +410.3634 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +410.3634 109.3501 moveto +412.7048 109.35 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +412.7048 109.35 moveto +415.0464 109.35 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +415.0464 109.35 moveto +417.3878 109.35 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +417.3878 109.35 moveto +419.7292 109.35 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +419.7292 109.35 moveto +422.0708 109.35 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +422.0708 109.35 moveto +424.4122 109.35 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +424.4122 109.35 moveto +426.7537 109.35 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +426.7537 109.35 moveto +429.0952 109.35 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +429.0952 109.35 moveto +431.4366 109.35 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +431.4366 109.35 moveto +433.7781 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +433.7781 109.3501 moveto +436.1196 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +436.1196 109.3501 moveto +438.461 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +438.461 109.3501 moveto +440.8025 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +440.8025 109.3501 moveto +443.144 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +443.144 109.3501 moveto +445.4854 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +445.4854 109.3501 moveto +447.8269 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +447.8269 109.3501 moveto +450.1684 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +450.1684 109.3502 moveto +452.5099 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +452.5099 109.3502 moveto +454.8513 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +454.8513 109.3502 moveto +457.1928 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +457.1928 109.3502 moveto +459.5343 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +459.5343 109.3502 moveto +461.8757 109.3503 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +461.8757 109.3503 moveto +464.2172 109.3503 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +464.2172 109.3503 moveto +466.5587 109.3503 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +466.5587 109.3503 moveto +468.9001 109.3504 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +468.9001 109.3504 moveto +471.2416 109.3504 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +471.2416 109.3504 moveto +473.5831 109.3505 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +473.5831 109.3505 moveto +475.9246 109.3505 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +475.9246 109.3505 moveto +478.2661 109.3506 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +478.2661 109.3506 moveto +480.6075 109.3506 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +480.6075 109.3506 moveto +482.949 109.3507 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +482.949 109.3507 moveto +485.2905 109.3507 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +485.2905 109.3507 moveto +487.6319 109.3508 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +487.6319 109.3508 moveto +489.9734 109.3508 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +489.9734 109.3508 moveto +492.3149 109.3509 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +492.3149 109.3509 moveto +494.6563 109.3509 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +494.6563 109.3509 moveto +496.9979 109.351 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +496.9979 109.351 moveto +499.3393 109.3511 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +499.3393 109.3511 moveto +501.6808 109.3511 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +501.6808 109.3511 moveto +504.0223 109.3512 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +504.0223 109.3512 moveto +506.3637 109.3513 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +506.3637 109.3513 moveto +508.7052 109.3513 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +508.7052 109.3513 moveto +511.0467 109.3514 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +511.0467 109.3514 moveto +513.3881 109.3515 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +513.3881 109.3515 moveto +515.7296 109.3516 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +515.7296 109.3516 moveto +518.0711 109.3517 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +518.0711 109.3517 moveto +520.4125 109.3517 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +520.4125 109.3517 moveto +522.754 109.3518 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +522.754 109.3518 moveto +525.0955 109.3519 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +525.0955 109.3519 moveto +527.437 109.352 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +527.437 109.352 moveto +529.7784 109.3521 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +529.7784 109.3521 moveto +532.1199 109.3521 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +532.1199 109.3521 moveto +534.4614 109.3522 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +534.4614 109.3522 moveto +536.8029 109.3523 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +536.8029 109.3523 moveto +539.1443 109.3524 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +539.1443 109.3524 moveto +541.4858 109.3525 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +541.4858 109.3525 moveto +543.8273 109.3526 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +543.8273 109.3526 moveto +546.1687 109.3527 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +546.1687 109.3527 moveto +548.5102 109.3528 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +548.5102 109.3528 moveto +550.8517 109.353 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +550.8517 109.353 moveto +553.1932 109.3531 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +553.1932 109.3531 moveto +555.5346 109.3532 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +555.5346 109.3532 moveto +557.8761 109.3533 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +557.8761 109.3533 moveto +560.2176 109.3534 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +560.2176 109.3534 moveto +562.559 109.3535 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +562.559 109.3535 moveto +564.9005 109.3536 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +564.9005 109.3536 moveto +567.242 109.3538 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +567.242 109.3538 moveto +569.5834 109.3539 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +569.5834 109.3539 moveto +571.9249 109.354 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +571.9249 109.354 moveto +574.2664 109.3541 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +574.2664 109.3541 moveto +576.6078 109.3542 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +576.6078 109.3542 moveto +578.9493 109.3544 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +578.9493 109.3544 moveto +581.2908 109.3545 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +581.2908 109.3545 moveto +583.6323 109.3546 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +583.6323 109.3546 moveto +585.9738 109.3548 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +585.9738 109.3548 moveto +588.3152 109.3549 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +588.3152 109.3549 moveto +590.6567 109.3551 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +590.6567 109.3551 moveto +592.9982 109.3552 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +592.9982 109.3552 moveto +595.3396 109.3554 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +595.3396 109.3554 moveto +597.6811 109.3555 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +597.6811 109.3555 moveto +600.0226 109.3556 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +600.0226 109.3556 moveto +602.364 109.3558 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +602.364 109.3558 moveto +604.7055 109.356 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +604.7055 109.356 moveto +607.047 109.3561 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +607.047 109.3561 moveto +609.3885 109.3563 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +609.3885 109.3563 moveto +611.7299 109.3564 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +611.7299 109.3564 moveto +614.0714 109.3566 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +614.0714 109.3566 moveto +616.4129 109.3567 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +616.4129 109.3567 moveto +618.7543 109.3569 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +618.7543 109.3569 moveto +621.0958 109.3571 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +621.0958 109.3571 moveto +623.4373 109.3572 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +623.4373 109.3572 moveto +625.7787 109.3574 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +625.7787 109.3574 moveto +628.1203 109.3576 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +628.1203 109.3576 moveto +630.4617 109.3577 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +630.4617 109.3577 moveto +632.8032 109.3579 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +632.8032 109.3579 moveto +635.1447 109.3581 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +635.1447 109.3581 moveto +637.4861 109.3583 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +637.4861 109.3583 moveto +639.8276 109.3585 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +639.8276 109.3585 moveto +642.1691 109.3586 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +642.1691 109.3586 moveto +644.5105 109.3588 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +644.5105 109.3588 moveto +646.852 109.359 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +646.852 109.359 moveto +649.1935 109.3592 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +649.1935 109.3592 moveto +651.535 109.3594 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +651.535 109.3594 moveto +653.8764 109.3596 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +653.8764 109.3596 moveto +656.2179 109.3598 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +656.2179 109.3598 moveto +658.5593 109.36 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +658.5593 109.36 moveto +660.9008 109.3602 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +660.9008 109.3602 moveto +663.2423 109.3604 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +663.2423 109.3604 moveto +665.5837 109.3606 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +665.5837 109.3606 moveto +667.9252 109.3608 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +667.9252 109.3608 moveto +670.2667 109.361 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +670.2667 109.361 moveto +672.6082 109.3612 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +672.6082 109.3612 moveto +674.9496 109.3614 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +674.9496 109.3614 moveto +677.2912 109.3616 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +677.2912 109.3616 moveto +679.6326 109.3619 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +679.6326 109.3619 moveto +681.9741 109.3621 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +681.9741 109.3621 moveto +684.3156 109.3623 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +684.3156 109.3623 moveto +686.657 109.3625 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +686.657 109.3625 moveto +688.9985 109.3627 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +688.9985 109.3627 moveto +691.34 109.3629 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +691.34 109.3629 moveto +693.6815 109.3632 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +693.6815 109.3632 moveto +696.0229 109.3634 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +696.0229 109.3634 moveto +698.3644 109.3636 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +698.3644 109.3636 moveto +700.7059 109.3639 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +700.7059 109.3639 moveto +703.0473 109.3641 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +703.0473 109.3641 moveto +705.3888 109.3644 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +705.3888 109.3644 moveto +707.7303 109.3646 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +707.7303 109.3646 moveto +710.0717 109.3648 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +710.0717 109.3648 moveto +712.4133 109.365 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +712.4133 109.365 moveto +714.7547 109.3653 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +714.7547 109.3653 moveto +717.0961 109.3655 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +717.0961 109.3655 moveto +719.4376 109.3658 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +719.4376 109.3658 moveto +721.7791 109.3661 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +721.7791 109.3661 moveto +724.1205 109.3663 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +724.1205 109.3663 moveto +726.462 109.3666 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +726.462 109.3666 moveto +728.8035 109.3668 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +728.8035 109.3668 moveto +731.145 109.3671 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +731.145 109.3671 moveto +733.4865 109.3673 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +733.4865 109.3673 moveto +735.8279 109.3676 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +735.8279 109.3676 moveto +738.1694 109.3679 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +738.1694 109.3679 moveto +740.5109 109.3681 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +740.5109 109.3681 moveto +742.8524 109.3684 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +742.8524 109.3684 moveto +745.1938 109.3687 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +745.1938 109.3687 moveto +747.5353 109.3689 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +747.5353 109.3689 moveto +749.8768 109.3692 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +749.8768 109.3692 moveto +752.2182 109.3695 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +752.2182 109.3695 moveto +754.5597 109.3698 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +754.5597 109.3698 moveto +756.9012 109.3701 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +756.9012 109.3701 moveto +759.2426 109.3703 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +759.2426 109.3703 moveto +761.5842 109.3706 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +761.5842 109.3706 moveto +763.9256 109.3709 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +763.9256 109.3709 moveto +766.267 109.3712 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +766.267 109.3712 moveto +768.6085 109.3715 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +768.6085 109.3715 moveto +770.95 109.3718 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +70.85 109.3721 moveto +70.85 109.3721 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +73.19146 109.3718 moveto +73.19146 109.3718 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +75.53296 109.3715 moveto +75.53296 109.3715 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +77.87442 109.3712 moveto +77.87442 109.3712 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +80.21588 109.3709 moveto +80.21588 109.3709 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +82.55734 109.3706 moveto +82.55734 109.3706 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +84.89883 109.3703 moveto +84.89883 109.3703 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +87.2403 109.3701 moveto +87.2403 109.3701 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +89.58179 109.3698 moveto +89.58179 109.3698 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +91.92326 109.3695 moveto +91.92326 109.3695 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +94.26472 109.3692 moveto +94.26472 109.3692 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +96.60618 109.3689 moveto +96.60618 109.3689 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +98.94768 109.3687 moveto +98.94768 109.3687 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +101.2891 109.3684 moveto +101.2891 109.3684 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +103.6306 109.3681 moveto +103.6306 109.3681 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +105.9721 109.3679 moveto +105.9721 109.3679 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +108.3136 109.3676 moveto +108.3136 109.3676 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +110.655 109.3673 moveto +110.655 109.3673 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +112.9965 109.3671 moveto +112.9965 109.3671 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +115.338 109.3668 moveto +115.338 109.3668 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +117.6794 109.3666 moveto +117.6794 109.3666 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +120.0209 109.3663 moveto +120.0209 109.3663 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +122.3624 109.3661 moveto +122.3624 109.3661 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +124.7038 109.3658 moveto +124.7038 109.3658 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +127.0453 109.3655 moveto +127.0453 109.3655 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +129.3868 109.3653 moveto +129.3868 109.3653 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +131.7283 109.365 moveto +131.7283 109.365 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +134.0697 109.3648 moveto +134.0697 109.3648 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +136.4112 109.3646 moveto +136.4112 109.3646 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +138.7527 109.3644 moveto +138.7527 109.3644 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +141.0941 109.3641 moveto +141.0941 109.3641 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +143.4356 109.3639 moveto +143.4356 109.3639 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +145.7771 109.3636 moveto +145.7771 109.3636 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +148.1186 109.3634 moveto +148.1186 109.3634 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +150.4601 109.3632 moveto +150.4601 109.3632 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +152.8015 109.3629 moveto +152.8015 109.3629 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +155.143 109.3627 moveto +155.143 109.3627 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +157.4845 109.3625 moveto +157.4845 109.3625 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +159.8259 109.3623 moveto +159.8259 109.3623 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +162.1674 109.3621 moveto +162.1674 109.3621 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +164.5089 109.3619 moveto +164.5089 109.3619 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +166.8503 109.3616 moveto +166.8503 109.3616 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +169.1918 109.3614 moveto +169.1918 109.3614 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +171.5333 109.3612 moveto +171.5333 109.3612 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +173.8747 109.361 moveto +173.8747 109.361 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +176.2162 109.3608 moveto +176.2162 109.3608 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +178.5577 109.3606 moveto +178.5577 109.3606 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +180.8992 109.3604 moveto +180.8992 109.3604 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +183.2406 109.3602 moveto +183.2406 109.3602 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +185.5821 109.36 moveto +185.5821 109.36 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +187.9236 109.3598 moveto +187.9236 109.3598 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +190.265 109.3596 moveto +190.265 109.3596 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +192.6065 109.3594 moveto +192.6065 109.3594 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +194.948 109.3592 moveto +194.948 109.3592 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +197.2895 109.359 moveto +197.2895 109.359 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +199.631 109.3588 moveto +199.631 109.3588 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +201.9724 109.3586 moveto +201.9724 109.3586 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +204.3139 109.3585 moveto +204.3139 109.3585 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +206.6553 109.3583 moveto +206.6553 109.3583 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +208.9968 109.3581 moveto +208.9968 109.3581 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +211.3383 109.3579 moveto +211.3383 109.3579 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +213.6798 109.3577 moveto +213.6798 109.3577 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +216.0212 109.3576 moveto +216.0212 109.3576 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +218.3627 109.3574 moveto +218.3627 109.3574 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +220.7042 109.3572 moveto +220.7042 109.3572 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +223.0457 109.3571 moveto +223.0457 109.3571 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +225.3871 109.3569 moveto +225.3871 109.3569 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +227.7286 109.3567 moveto +227.7286 109.3567 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +230.0701 109.3566 moveto +230.0701 109.3566 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +232.4115 109.3564 moveto +232.4115 109.3564 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +234.753 109.3563 moveto +234.753 109.3563 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +237.0945 109.3561 moveto +237.0945 109.3561 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +239.436 109.356 moveto +239.436 109.356 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +241.7774 109.3558 moveto +241.7774 109.3558 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +244.1189 109.3556 moveto +244.1189 109.3556 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +246.4604 109.3555 moveto +246.4604 109.3555 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +248.8019 109.3554 moveto +248.8019 109.3554 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +251.1433 109.3552 moveto +251.1433 109.3552 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +253.4848 109.3551 moveto +253.4848 109.3551 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +255.8263 109.3549 moveto +255.8263 109.3549 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +258.1677 109.3548 moveto +258.1677 109.3548 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +260.5092 109.3546 moveto +260.5092 109.3546 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +262.8507 109.3545 moveto +262.8507 109.3545 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +265.1921 109.3544 moveto +265.1921 109.3544 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +267.5336 109.3542 moveto +267.5336 109.3542 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +269.8751 109.3541 moveto +269.8751 109.3541 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +272.2166 109.354 moveto +272.2166 109.354 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +274.558 109.3539 moveto +274.558 109.3539 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +276.8995 109.3538 moveto +276.8995 109.3538 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +279.241 109.3536 moveto +279.241 109.3536 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +281.5825 109.3535 moveto +281.5825 109.3535 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +283.9239 109.3534 moveto +283.9239 109.3534 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +286.2654 109.3533 moveto +286.2654 109.3533 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +288.6069 109.3532 moveto +288.6069 109.3532 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +290.9483 109.3531 moveto +290.9483 109.3531 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +293.2898 109.353 moveto +293.2898 109.353 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +295.6313 109.3528 moveto +295.6313 109.3528 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +297.9727 109.3527 moveto +297.9727 109.3527 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +300.3142 109.3526 moveto +300.3142 109.3526 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +302.6557 109.3525 moveto +302.6557 109.3525 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +304.9972 109.3524 moveto +304.9972 109.3524 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +307.3386 109.3523 moveto +307.3386 109.3523 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +309.6801 109.3522 moveto +309.6801 109.3522 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +312.0216 109.3521 moveto +312.0216 109.3521 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +314.363 109.3521 moveto +314.363 109.3521 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +316.7046 109.352 moveto +316.7046 109.352 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +319.046 109.3519 moveto +319.046 109.3519 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +321.3875 109.3518 moveto +321.3875 109.3518 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +323.7289 109.3517 moveto +323.7289 109.3517 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +326.0704 109.3517 moveto +326.0704 109.3517 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +328.4119 109.3516 moveto +328.4119 109.3516 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +330.7533 109.3515 moveto +330.7533 109.3515 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +333.0948 109.3514 moveto +333.0948 109.3514 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +335.4363 109.3513 moveto +335.4363 109.3513 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +337.7778 109.3513 moveto +337.7778 109.3513 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +340.1192 109.3512 moveto +340.1192 109.3512 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +342.4607 109.3511 moveto +342.4607 109.3511 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +344.8022 109.3511 moveto +344.8022 109.3511 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +347.1436 109.351 moveto +347.1436 109.351 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +349.4851 109.3509 moveto +349.4851 109.3509 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +351.8266 109.3509 moveto +351.8266 109.3509 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +354.1681 109.3508 moveto +354.1681 109.3508 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +356.5096 109.3508 moveto +356.5096 109.3508 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +358.851 109.3507 moveto +358.851 109.3507 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +361.1925 109.3507 moveto +361.1925 109.3507 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +363.534 109.3506 moveto +363.534 109.3506 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +365.8754 109.3506 moveto +365.8754 109.3506 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +368.2169 109.3505 moveto +368.2169 109.3505 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +370.5583 109.3505 moveto +370.5583 109.3505 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +372.8998 109.3504 moveto +372.8998 109.3504 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +375.2413 109.3504 moveto +375.2413 109.3504 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +377.5828 109.3503 moveto +377.5828 109.3503 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +379.9243 109.3503 moveto +379.9243 109.3503 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +382.2657 109.3503 moveto +382.2657 109.3503 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +384.6072 109.3502 moveto +384.6072 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +386.9487 109.3502 moveto +386.9487 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +389.2901 109.3502 moveto +389.2901 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +391.6316 109.3502 moveto +391.6316 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +393.9731 109.3502 moveto +393.9731 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +396.3145 109.3501 moveto +396.3145 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +398.656 109.3501 moveto +398.656 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +400.9975 109.3501 moveto +400.9975 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +403.339 109.3501 moveto +403.339 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +405.6804 109.3501 moveto +405.6804 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +408.0219 109.3501 moveto +408.0219 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +410.3634 109.3501 moveto +410.3634 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +412.7048 109.35 moveto +412.7048 109.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +415.0464 109.35 moveto +415.0464 109.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +417.3878 109.35 moveto +417.3878 109.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +419.7292 109.35 moveto +419.7292 109.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +422.0708 109.35 moveto +422.0708 109.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +424.4122 109.35 moveto +424.4122 109.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +426.7537 109.35 moveto +426.7537 109.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +429.0952 109.35 moveto +429.0952 109.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +431.4366 109.35 moveto +431.4366 109.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +433.7781 109.3501 moveto +433.7781 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +436.1196 109.3501 moveto +436.1196 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +438.461 109.3501 moveto +438.461 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +440.8025 109.3501 moveto +440.8025 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +443.144 109.3501 moveto +443.144 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +445.4854 109.3501 moveto +445.4854 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +447.8269 109.3501 moveto +447.8269 109.3501 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +450.1684 109.3502 moveto +450.1684 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +452.5099 109.3502 moveto +452.5099 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +454.8513 109.3502 moveto +454.8513 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +457.1928 109.3502 moveto +457.1928 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +459.5343 109.3502 moveto +459.5343 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +461.8757 109.3503 moveto +461.8757 109.3503 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +464.2172 109.3503 moveto +464.2172 109.3503 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +466.5587 109.3503 moveto +466.5587 109.3503 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +468.9001 109.3504 moveto +468.9001 109.3504 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +471.2416 109.3504 moveto +471.2416 109.3504 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +473.5831 109.3505 moveto +473.5831 109.3505 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +475.9246 109.3505 moveto +475.9246 109.3505 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +478.2661 109.3506 moveto +478.2661 109.3506 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +480.6075 109.3506 moveto +480.6075 109.3506 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +482.949 109.3507 moveto +482.949 109.3507 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +485.2905 109.3507 moveto +485.2905 109.3507 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +487.6319 109.3508 moveto +487.6319 109.3508 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +489.9734 109.3508 moveto +489.9734 109.3508 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +492.3149 109.3509 moveto +492.3149 109.3509 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +494.6563 109.3509 moveto +494.6563 109.3509 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +496.9979 109.351 moveto +496.9979 109.351 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +499.3393 109.3511 moveto +499.3393 109.3511 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +501.6808 109.3511 moveto +501.6808 109.3511 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +504.0223 109.3512 moveto +504.0223 109.3512 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +506.3637 109.3513 moveto +506.3637 109.3513 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +508.7052 109.3513 moveto +508.7052 109.3513 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +511.0467 109.3514 moveto +511.0467 109.3514 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +513.3881 109.3515 moveto +513.3881 109.3515 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +515.7296 109.3516 moveto +515.7296 109.3516 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +518.0711 109.3517 moveto +518.0711 109.3517 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +520.4125 109.3517 moveto +520.4125 109.3517 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +522.754 109.3518 moveto +522.754 109.3518 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +525.0955 109.3519 moveto +525.0955 109.3519 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +527.437 109.352 moveto +527.437 109.352 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +529.7784 109.3521 moveto +529.7784 109.3521 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +532.1199 109.3521 moveto +532.1199 109.3521 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +534.4614 109.3522 moveto +534.4614 109.3522 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +536.8029 109.3523 moveto +536.8029 109.3523 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +539.1443 109.3524 moveto +539.1443 109.3524 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +541.4858 109.3525 moveto +541.4858 109.3525 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +543.8273 109.3526 moveto +543.8273 109.3526 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +546.1687 109.3527 moveto +546.1687 109.3527 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +548.5102 109.3528 moveto +548.5102 109.3528 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +550.8517 109.353 moveto +550.8517 109.353 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +553.1932 109.3531 moveto +553.1932 109.3531 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +555.5346 109.3532 moveto +555.5346 109.3532 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +557.8761 109.3533 moveto +557.8761 109.3533 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +560.2176 109.3534 moveto +560.2176 109.3534 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +562.559 109.3535 moveto +562.559 109.3535 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +564.9005 109.3536 moveto +564.9005 109.3536 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +567.242 109.3538 moveto +567.242 109.3538 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +569.5834 109.3539 moveto +569.5834 109.3539 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +571.9249 109.354 moveto +571.9249 109.354 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +574.2664 109.3541 moveto +574.2664 109.3541 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +576.6078 109.3542 moveto +576.6078 109.3542 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +578.9493 109.3544 moveto +578.9493 109.3544 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +581.2908 109.3545 moveto +581.2908 109.3545 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +583.6323 109.3546 moveto +583.6323 109.3546 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +585.9738 109.3548 moveto +585.9738 109.3548 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +588.3152 109.3549 moveto +588.3152 109.3549 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +590.6567 109.3551 moveto +590.6567 109.3551 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +592.9982 109.3552 moveto +592.9982 109.3552 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +595.3396 109.3554 moveto +595.3396 109.3554 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +597.6811 109.3555 moveto +597.6811 109.3555 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +600.0226 109.3556 moveto +600.0226 109.3556 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +602.364 109.3558 moveto +602.364 109.3558 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +604.7055 109.356 moveto +604.7055 109.356 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +607.047 109.3561 moveto +607.047 109.3561 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +609.3885 109.3563 moveto +609.3885 109.3563 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +611.7299 109.3564 moveto +611.7299 109.3564 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +614.0714 109.3566 moveto +614.0714 109.3566 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +616.4129 109.3567 moveto +616.4129 109.3567 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +618.7543 109.3569 moveto +618.7543 109.3569 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +621.0958 109.3571 moveto +621.0958 109.3571 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +623.4373 109.3572 moveto +623.4373 109.3572 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +625.7787 109.3574 moveto +625.7787 109.3574 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +628.1203 109.3576 moveto +628.1203 109.3576 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +630.4617 109.3577 moveto +630.4617 109.3577 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +632.8032 109.3579 moveto +632.8032 109.3579 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +635.1447 109.3581 moveto +635.1447 109.3581 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +637.4861 109.3583 moveto +637.4861 109.3583 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +639.8276 109.3585 moveto +639.8276 109.3585 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +642.1691 109.3586 moveto +642.1691 109.3586 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +644.5105 109.3588 moveto +644.5105 109.3588 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +646.852 109.359 moveto +646.852 109.359 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +649.1935 109.3592 moveto +649.1935 109.3592 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +651.535 109.3594 moveto +651.535 109.3594 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +653.8764 109.3596 moveto +653.8764 109.3596 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +656.2179 109.3598 moveto +656.2179 109.3598 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +658.5593 109.36 moveto +658.5593 109.36 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +660.9008 109.3602 moveto +660.9008 109.3602 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +663.2423 109.3604 moveto +663.2423 109.3604 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +665.5837 109.3606 moveto +665.5837 109.3606 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +667.9252 109.3608 moveto +667.9252 109.3608 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +670.2667 109.361 moveto +670.2667 109.361 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +672.6082 109.3612 moveto +672.6082 109.3612 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +674.9496 109.3614 moveto +674.9496 109.3614 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +677.2912 109.3616 moveto +677.2912 109.3616 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +679.6326 109.3619 moveto +679.6326 109.3619 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +681.9741 109.3621 moveto +681.9741 109.3621 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +684.3156 109.3623 moveto +684.3156 109.3623 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +686.657 109.3625 moveto +686.657 109.3625 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +688.9985 109.3627 moveto +688.9985 109.3627 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +691.34 109.3629 moveto +691.34 109.3629 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +693.6815 109.3632 moveto +693.6815 109.3632 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +696.0229 109.3634 moveto +696.0229 109.3634 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +698.3644 109.3636 moveto +698.3644 109.3636 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +700.7059 109.3639 moveto +700.7059 109.3639 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +703.0473 109.3641 moveto +703.0473 109.3641 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +705.3888 109.3644 moveto +705.3888 109.3644 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +707.7303 109.3646 moveto +707.7303 109.3646 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +710.0717 109.3648 moveto +710.0717 109.3648 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +712.4133 109.365 moveto +712.4133 109.365 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +714.7547 109.3653 moveto +714.7547 109.3653 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +717.0961 109.3655 moveto +717.0961 109.3655 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +719.4376 109.3658 moveto +719.4376 109.3658 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +721.7791 109.3661 moveto +721.7791 109.3661 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +724.1205 109.3663 moveto +724.1205 109.3663 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +726.462 109.3666 moveto +726.462 109.3666 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +728.8035 109.3668 moveto +728.8035 109.3668 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +731.145 109.3671 moveto +731.145 109.3671 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +733.4865 109.3673 moveto +733.4865 109.3673 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +735.8279 109.3676 moveto +735.8279 109.3676 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +738.1694 109.3679 moveto +738.1694 109.3679 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +740.5109 109.3681 moveto +740.5109 109.3681 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +742.8524 109.3684 moveto +742.8524 109.3684 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +745.1938 109.3687 moveto +745.1938 109.3687 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +747.5353 109.3689 moveto +747.5353 109.3689 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +749.8768 109.3692 moveto +749.8768 109.3692 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +752.2182 109.3695 moveto +752.2182 109.3695 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +754.5597 109.3698 moveto +754.5597 109.3698 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +756.9012 109.3701 moveto +756.9012 109.3701 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +759.2426 109.3703 moveto +759.2426 109.3703 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +761.5842 109.3706 moveto +761.5842 109.3706 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +763.9256 109.3709 moveto +763.9256 109.3709 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +766.267 109.3712 moveto +766.267 109.3712 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +768.6085 109.3715 moveto +768.6085 109.3715 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +770.95 109.3718 moveto +770.95 109.3718 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +70.85 206.0465 moveto +73.19146 205.8539 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +73.19146 205.8539 moveto +75.53296 205.6646 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +75.53296 205.6646 moveto +77.87442 205.4783 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +77.87442 205.4783 moveto +80.21588 205.295 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +80.21588 205.295 moveto +82.55734 205.1147 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +82.55734 205.1147 moveto +84.89883 204.9373 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +84.89883 204.9373 moveto +87.2403 204.7627 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +87.2403 204.7627 moveto +89.58179 204.5909 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +89.58179 204.5909 moveto +91.92326 204.4218 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +91.92326 204.4218 moveto +94.26472 204.2553 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +94.26472 204.2553 moveto +96.60618 204.0914 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +96.60618 204.0914 moveto +98.94768 203.9301 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +98.94768 203.9301 moveto +101.2891 203.7712 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +101.2891 203.7712 moveto +103.6306 203.6148 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +103.6306 203.6148 moveto +105.9721 203.4607 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +105.9721 203.4607 moveto +108.3136 203.309 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +108.3136 203.309 moveto +110.655 203.1597 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +110.655 203.1597 moveto +112.9965 203.0125 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +112.9965 203.0125 moveto +115.338 202.8676 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +115.338 202.8676 moveto +117.6794 202.7248 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +117.6794 202.7248 moveto +120.0209 202.5841 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +120.0209 202.5841 moveto +122.3624 202.4456 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +122.3624 202.4456 moveto +124.7038 202.3091 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +124.7038 202.3091 moveto +127.0453 202.1746 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +127.0453 202.1746 moveto +129.3868 202.0421 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +129.3868 202.0421 moveto +131.7283 201.9115 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +131.7283 201.9115 moveto +134.0697 201.7829 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +134.0697 201.7829 moveto +136.4112 201.6562 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +136.4112 201.6562 moveto +138.7527 201.5313 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +138.7527 201.5313 moveto +141.0941 201.4082 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +141.0941 201.4082 moveto +143.4356 201.2869 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +143.4356 201.2869 moveto +145.7771 201.1673 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +145.7771 201.1673 moveto +148.1186 201.0495 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +148.1186 201.0495 moveto +150.4601 200.9335 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +150.4601 200.9335 moveto +152.8015 200.819 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +152.8015 200.819 moveto +155.143 200.7063 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +155.143 200.7063 moveto +157.4845 200.5951 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +157.4845 200.5951 moveto +159.8259 200.4856 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +159.8259 200.4856 moveto +162.1674 200.3777 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +162.1674 200.3777 moveto +164.5089 200.2713 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +164.5089 200.2713 moveto +166.8503 200.1665 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +166.8503 200.1665 moveto +169.1918 200.0631 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +169.1918 200.0631 moveto +171.5333 199.9613 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +171.5333 199.9613 moveto +173.8747 199.861 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +173.8747 199.861 moveto +176.2162 199.7621 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +176.2162 199.7621 moveto +178.5577 199.6646 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +178.5577 199.6646 moveto +180.8992 199.5686 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +180.8992 199.5686 moveto +183.2406 199.4739 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +183.2406 199.4739 moveto +185.5821 199.3806 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +185.5821 199.3806 moveto +187.9236 199.2887 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +187.9236 199.2887 moveto +190.265 199.1982 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +190.265 199.1982 moveto +192.6065 199.1089 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +192.6065 199.1089 moveto +194.948 199.021 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +194.948 199.021 moveto +197.2895 198.9343 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +197.2895 198.9343 moveto +199.631 198.849 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +199.631 198.849 moveto +201.9724 198.7649 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +201.9724 198.7649 moveto +204.3139 198.682 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +204.3139 198.682 moveto +206.6553 198.6004 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +206.6553 198.6004 moveto +208.9968 198.5201 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +208.9968 198.5201 moveto +211.3383 198.4409 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +211.3383 198.4409 moveto +213.6798 198.3629 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +213.6798 198.3629 moveto +216.0212 198.2861 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +216.0212 198.2861 moveto +218.3627 198.2104 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +218.3627 198.2104 moveto +220.7042 198.136 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +220.7042 198.136 moveto +223.0457 198.0626 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +223.0457 198.0626 moveto +225.3871 197.9904 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +225.3871 197.9904 moveto +227.7286 197.9193 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +227.7286 197.9193 moveto +230.0701 197.8493 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +230.0701 197.8493 moveto +232.4115 197.7805 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +232.4115 197.7805 moveto +234.753 197.7127 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +234.753 197.7127 moveto +237.0945 197.646 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +237.0945 197.646 moveto +239.436 197.5803 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +239.436 197.5803 moveto +241.7774 197.5157 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +241.7774 197.5157 moveto +244.1189 197.4521 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +244.1189 197.4521 moveto +246.4604 197.3896 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +246.4604 197.3896 moveto +248.8019 197.3281 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +248.8019 197.3281 moveto +251.1433 197.2677 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +251.1433 197.2677 moveto +253.4848 197.2082 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +253.4848 197.2082 moveto +255.8263 197.1497 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +255.8263 197.1497 moveto +258.1677 197.0923 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +258.1677 197.0923 moveto +260.5092 197.0358 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +260.5092 197.0358 moveto +262.8507 196.9803 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +262.8507 196.9803 moveto +265.1921 196.9257 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +265.1921 196.9257 moveto +267.5336 196.8721 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +267.5336 196.8721 moveto +269.8751 196.8195 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +269.8751 196.8195 moveto +272.2166 196.7678 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +272.2166 196.7678 moveto +274.558 196.717 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +274.558 196.717 moveto +276.8995 196.6672 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +276.8995 196.6672 moveto +279.241 196.6183 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +279.241 196.6183 moveto +281.5825 196.5703 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +281.5825 196.5703 moveto +283.9239 196.5232 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +283.9239 196.5232 moveto +286.2654 196.477 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +286.2654 196.477 moveto +288.6069 196.4317 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +288.6069 196.4317 moveto +290.9483 196.3874 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +290.9483 196.3874 moveto +293.2898 196.3439 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +293.2898 196.3439 moveto +295.6313 196.3013 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +295.6313 196.3013 moveto +297.9727 196.2595 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +297.9727 196.2595 moveto +300.3142 196.2186 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +300.3142 196.2186 moveto +302.6557 196.1786 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +302.6557 196.1786 moveto +304.9972 196.1394 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +304.9972 196.1394 moveto +307.3386 196.1012 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +307.3386 196.1012 moveto +309.6801 196.0637 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +309.6801 196.0637 moveto +312.0216 196.0271 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +312.0216 196.0271 moveto +314.363 195.9913 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +314.363 195.9913 moveto +316.7046 195.9563 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +316.7046 195.9563 moveto +319.046 195.9222 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +319.046 195.9222 moveto +321.3875 195.8889 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +321.3875 195.8889 moveto +323.7289 195.8565 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +323.7289 195.8565 moveto +326.0704 195.8248 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +326.0704 195.8248 moveto +328.4119 195.794 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +328.4119 195.794 moveto +330.7533 195.764 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +330.7533 195.764 moveto +333.0948 195.7347 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +333.0948 195.7347 moveto +335.4363 195.7063 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +335.4363 195.7063 moveto +337.7778 195.6787 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +337.7778 195.6787 moveto +340.1192 195.6519 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +340.1192 195.6519 moveto +342.4607 195.6258 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +342.4607 195.6258 moveto +344.8022 195.6006 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +344.8022 195.6006 moveto +347.1436 195.5761 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +347.1436 195.5761 moveto +349.4851 195.5524 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +349.4851 195.5524 moveto +351.8266 195.5295 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +351.8266 195.5295 moveto +354.1681 195.5074 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +354.1681 195.5074 moveto +356.5096 195.4861 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +356.5096 195.4861 moveto +358.851 195.4655 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +358.851 195.4655 moveto +361.1925 195.4457 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +361.1925 195.4457 moveto +363.534 195.4267 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +363.534 195.4267 moveto +365.8754 195.4084 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +365.8754 195.4084 moveto +368.2169 195.3909 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +368.2169 195.3909 moveto +370.5583 195.3741 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +370.5583 195.3741 moveto +372.8998 195.3581 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +372.8998 195.3581 moveto +375.2413 195.3429 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +375.2413 195.3429 moveto +377.5828 195.3284 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +377.5828 195.3284 moveto +379.9243 195.3147 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +379.9243 195.3147 moveto +382.2657 195.3017 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +382.2657 195.3017 moveto +384.6072 195.2895 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +384.6072 195.2895 moveto +386.9487 195.278 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +386.9487 195.278 moveto +389.2901 195.2672 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +389.2901 195.2672 moveto +391.6316 195.2572 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +391.6316 195.2572 moveto +393.9731 195.248 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +393.9731 195.248 moveto +396.3145 195.2395 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +396.3145 195.2395 moveto +398.656 195.2317 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +398.656 195.2317 moveto +400.9975 195.2247 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +400.9975 195.2247 moveto +403.339 195.2184 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +403.339 195.2184 moveto +405.6804 195.2129 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +405.6804 195.2129 moveto +408.0219 195.2081 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +408.0219 195.2081 moveto +410.3634 195.2041 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +410.3634 195.2041 moveto +412.7048 195.2007 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +412.7048 195.2007 moveto +415.0464 195.1982 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +415.0464 195.1982 moveto +417.3878 195.1963 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +417.3878 195.1963 moveto +419.7292 195.1952 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +419.7292 195.1952 moveto +422.0708 195.1948 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +422.0708 195.1948 moveto +424.4122 195.1952 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +424.4122 195.1952 moveto +426.7537 195.1963 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +426.7537 195.1963 moveto +429.0952 195.1982 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +429.0952 195.1982 moveto +431.4366 195.2007 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +431.4366 195.2007 moveto +433.7781 195.2041 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +433.7781 195.2041 moveto +436.1196 195.2081 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +436.1196 195.2081 moveto +438.461 195.2129 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +438.461 195.2129 moveto +440.8025 195.2184 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +440.8025 195.2184 moveto +443.144 195.2247 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +443.144 195.2247 moveto +445.4854 195.2317 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +445.4854 195.2317 moveto +447.8269 195.2395 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +447.8269 195.2395 moveto +450.1684 195.248 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +450.1684 195.248 moveto +452.5099 195.2572 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +452.5099 195.2572 moveto +454.8513 195.2672 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +454.8513 195.2672 moveto +457.1928 195.278 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +457.1928 195.278 moveto +459.5343 195.2895 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +459.5343 195.2895 moveto +461.8757 195.3017 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +461.8757 195.3017 moveto +464.2172 195.3147 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +464.2172 195.3147 moveto +466.5587 195.3284 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +466.5587 195.3284 moveto +468.9001 195.3429 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +468.9001 195.3429 moveto +471.2416 195.3581 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +471.2416 195.3581 moveto +473.5831 195.3741 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +473.5831 195.3741 moveto +475.9246 195.3909 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +475.9246 195.3909 moveto +478.2661 195.4084 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +478.2661 195.4084 moveto +480.6075 195.4267 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +480.6075 195.4267 moveto +482.949 195.4457 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +482.949 195.4457 moveto +485.2905 195.4655 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +485.2905 195.4655 moveto +487.6319 195.4861 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +487.6319 195.4861 moveto +489.9734 195.5074 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +489.9734 195.5074 moveto +492.3149 195.5296 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +492.3149 195.5296 moveto +494.6563 195.5525 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +494.6563 195.5525 moveto +496.9979 195.5762 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +496.9979 195.5762 moveto +499.3393 195.6006 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +499.3393 195.6006 moveto +501.6808 195.6259 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +501.6808 195.6259 moveto +504.0223 195.6519 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +504.0223 195.6519 moveto +506.3637 195.6787 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +506.3637 195.6787 moveto +508.7052 195.7063 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +508.7052 195.7063 moveto +511.0467 195.7348 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +511.0467 195.7348 moveto +513.3881 195.764 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +513.3881 195.764 moveto +515.7296 195.794 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +515.7296 195.794 moveto +518.0711 195.8249 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +518.0711 195.8249 moveto +520.4125 195.8565 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +520.4125 195.8565 moveto +522.754 195.889 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +522.754 195.889 moveto +525.0955 195.9223 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +525.0955 195.9223 moveto +527.437 195.9564 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +527.437 195.9564 moveto +529.7784 195.9913 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +529.7784 195.9913 moveto +532.1199 196.0271 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +532.1199 196.0271 moveto +534.4614 196.0637 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +534.4614 196.0637 moveto +536.8029 196.1012 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +536.8029 196.1012 moveto +539.1443 196.1395 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +539.1443 196.1395 moveto +541.4858 196.1786 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +541.4858 196.1786 moveto +543.8273 196.2187 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +543.8273 196.2187 moveto +546.1687 196.2596 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +546.1687 196.2596 moveto +548.5102 196.3013 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +548.5102 196.3013 moveto +550.8517 196.3439 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +550.8517 196.3439 moveto +553.1932 196.3874 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +553.1932 196.3874 moveto +555.5346 196.4318 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +555.5346 196.4318 moveto +557.8761 196.4771 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +557.8761 196.4771 moveto +560.2176 196.5233 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +560.2176 196.5233 moveto +562.559 196.5704 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +562.559 196.5704 moveto +564.9005 196.6183 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +564.9005 196.6183 moveto +567.242 196.6672 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +567.242 196.6672 moveto +569.5834 196.7171 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +569.5834 196.7171 moveto +571.9249 196.7679 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +571.9249 196.7679 moveto +574.2664 196.8195 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +574.2664 196.8195 moveto +576.6078 196.8722 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +576.6078 196.8722 moveto +578.9493 196.9258 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +578.9493 196.9258 moveto +581.2908 196.9803 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +581.2908 196.9803 moveto +583.6323 197.0358 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +583.6323 197.0358 moveto +585.9738 197.0923 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +585.9738 197.0923 moveto +588.3152 197.1498 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +588.3152 197.1498 moveto +590.6567 197.2083 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +590.6567 197.2083 moveto +592.9982 197.2677 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +592.9982 197.2677 moveto +595.3396 197.3282 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +595.3396 197.3282 moveto +597.6811 197.3897 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +597.6811 197.3897 moveto +600.0226 197.4522 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +600.0226 197.4522 moveto +602.364 197.5158 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +602.364 197.5158 moveto +604.7055 197.5804 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +604.7055 197.5804 moveto +607.047 197.646 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +607.047 197.646 moveto +609.3885 197.7128 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +609.3885 197.7128 moveto +611.7299 197.7805 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +611.7299 197.7805 moveto +614.0714 197.8494 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +614.0714 197.8494 moveto +616.4129 197.9194 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +616.4129 197.9194 moveto +618.7543 197.9905 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +618.7543 197.9905 moveto +621.0958 198.0627 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +621.0958 198.0627 moveto +623.4373 198.1361 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +623.4373 198.1361 moveto +625.7787 198.2106 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +625.7787 198.2106 moveto +628.1203 198.2862 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +628.1203 198.2862 moveto +630.4617 198.363 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +630.4617 198.363 moveto +632.8032 198.441 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +632.8032 198.441 moveto +635.1447 198.5202 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +635.1447 198.5202 moveto +637.4861 198.6006 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +637.4861 198.6006 moveto +639.8276 198.6822 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +639.8276 198.6822 moveto +642.1691 198.765 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +642.1691 198.765 moveto +644.5105 198.8491 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +644.5105 198.8491 moveto +646.852 198.9344 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +646.852 198.9344 moveto +649.1935 199.0211 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +649.1935 199.0211 moveto +651.535 199.109 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +651.535 199.109 moveto +653.8764 199.1983 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +653.8764 199.1983 moveto +656.2179 199.2888 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +656.2179 199.2888 moveto +658.5593 199.3808 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +658.5593 199.3808 moveto +660.9008 199.474 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +660.9008 199.474 moveto +663.2423 199.5687 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +663.2423 199.5687 moveto +665.5837 199.6647 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +665.5837 199.6647 moveto +667.9252 199.7622 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +667.9252 199.7622 moveto +670.2667 199.8611 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +670.2667 199.8611 moveto +672.6082 199.9615 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +672.6082 199.9615 moveto +674.9496 200.0633 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +674.9496 200.0633 moveto +677.2912 200.1666 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +677.2912 200.1666 moveto +679.6326 200.2715 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +679.6326 200.2715 moveto +681.9741 200.3778 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +681.9741 200.3778 moveto +684.3156 200.4858 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +684.3156 200.4858 moveto +686.657 200.5953 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +686.657 200.5953 moveto +688.9985 200.7064 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +688.9985 200.7064 moveto +691.34 200.8192 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +691.34 200.8192 moveto +693.6815 200.9336 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +693.6815 200.9336 moveto +696.0229 201.0497 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +696.0229 201.0497 moveto +698.3644 201.1675 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +698.3644 201.1675 moveto +700.7059 201.287 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +700.7059 201.287 moveto +703.0473 201.4083 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +703.0473 201.4083 moveto +705.3888 201.5314 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +705.3888 201.5314 moveto +707.7303 201.6563 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +707.7303 201.6563 moveto +710.0717 201.7831 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +710.0717 201.7831 moveto +712.4133 201.9117 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +712.4133 201.9117 moveto +714.7547 202.0423 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +714.7547 202.0423 moveto +717.0961 202.1748 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +717.0961 202.1748 moveto +719.4376 202.3093 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +719.4376 202.3093 moveto +721.7791 202.4458 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +721.7791 202.4458 moveto +724.1205 202.5843 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +724.1205 202.5843 moveto +726.462 202.725 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +726.462 202.725 moveto +728.8035 202.8678 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +728.8035 202.8678 moveto +731.145 203.0127 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +731.145 203.0127 moveto +733.4865 203.1598 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +733.4865 203.1598 moveto +735.8279 203.3092 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +735.8279 203.3092 moveto +738.1694 203.4609 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +738.1694 203.4609 moveto +740.5109 203.615 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +740.5109 203.615 moveto +742.8524 203.7714 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +742.8524 203.7714 moveto +745.1938 203.9303 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +745.1938 203.9303 moveto +747.5353 204.0916 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +747.5353 204.0916 moveto +749.8768 204.2555 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +749.8768 204.2555 moveto +752.2182 204.422 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +752.2182 204.422 moveto +754.5597 204.5911 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +754.5597 204.5911 moveto +756.9012 204.7629 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +756.9012 204.7629 moveto +759.2426 204.9375 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +759.2426 204.9375 moveto +761.5842 205.1149 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +761.5842 205.1149 moveto +763.9256 205.2952 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +763.9256 205.2952 moveto +766.267 205.4785 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +766.267 205.4785 moveto +768.6085 205.6648 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +768.6085 205.6648 moveto +770.95 205.8542 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +70.85 206.0465 moveto +70.85 206.0465 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +73.19146 205.8539 moveto +73.19146 205.8539 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +75.53296 205.6646 moveto +75.53296 205.6646 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +77.87442 205.4783 moveto +77.87442 205.4783 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +80.21588 205.295 moveto +80.21588 205.295 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +82.55734 205.1147 moveto +82.55734 205.1147 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +84.89883 204.9373 moveto +84.89883 204.9373 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +87.2403 204.7627 moveto +87.2403 204.7627 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +89.58179 204.5909 moveto +89.58179 204.5909 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +91.92326 204.4218 moveto +91.92326 204.4218 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +94.26472 204.2553 moveto +94.26472 204.2553 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +96.60618 204.0914 moveto +96.60618 204.0914 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +98.94768 203.9301 moveto +98.94768 203.9301 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +101.2891 203.7712 moveto +101.2891 203.7712 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +103.6306 203.6148 moveto +103.6306 203.6148 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +105.9721 203.4607 moveto +105.9721 203.4607 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +108.3136 203.309 moveto +108.3136 203.309 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +110.655 203.1597 moveto +110.655 203.1597 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +112.9965 203.0125 moveto +112.9965 203.0125 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +115.338 202.8676 moveto +115.338 202.8676 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +117.6794 202.7248 moveto +117.6794 202.7248 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +120.0209 202.5841 moveto +120.0209 202.5841 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +122.3624 202.4456 moveto +122.3624 202.4456 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +124.7038 202.3091 moveto +124.7038 202.3091 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +127.0453 202.1746 moveto +127.0453 202.1746 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +129.3868 202.0421 moveto +129.3868 202.0421 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +131.7283 201.9115 moveto +131.7283 201.9115 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +134.0697 201.7829 moveto +134.0697 201.7829 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +136.4112 201.6562 moveto +136.4112 201.6562 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +138.7527 201.5313 moveto +138.7527 201.5313 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +141.0941 201.4082 moveto +141.0941 201.4082 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +143.4356 201.2869 moveto +143.4356 201.2869 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +145.7771 201.1673 moveto +145.7771 201.1673 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +148.1186 201.0495 moveto +148.1186 201.0495 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +150.4601 200.9335 moveto +150.4601 200.9335 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +152.8015 200.819 moveto +152.8015 200.819 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +155.143 200.7063 moveto +155.143 200.7063 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +157.4845 200.5951 moveto +157.4845 200.5951 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +159.8259 200.4856 moveto +159.8259 200.4856 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +162.1674 200.3777 moveto +162.1674 200.3777 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +164.5089 200.2713 moveto +164.5089 200.2713 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +166.8503 200.1665 moveto +166.8503 200.1665 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +169.1918 200.0631 moveto +169.1918 200.0631 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +171.5333 199.9613 moveto +171.5333 199.9613 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +173.8747 199.861 moveto +173.8747 199.861 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +176.2162 199.7621 moveto +176.2162 199.7621 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +178.5577 199.6646 moveto +178.5577 199.6646 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +180.8992 199.5686 moveto +180.8992 199.5686 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +183.2406 199.4739 moveto +183.2406 199.4739 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +185.5821 199.3806 moveto +185.5821 199.3806 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +187.9236 199.2887 moveto +187.9236 199.2887 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +190.265 199.1982 moveto +190.265 199.1982 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +192.6065 199.1089 moveto +192.6065 199.1089 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +194.948 199.021 moveto +194.948 199.021 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +197.2895 198.9343 moveto +197.2895 198.9343 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +199.631 198.849 moveto +199.631 198.849 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +201.9724 198.7649 moveto +201.9724 198.7649 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +204.3139 198.682 moveto +204.3139 198.682 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +206.6553 198.6004 moveto +206.6553 198.6004 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +208.9968 198.5201 moveto +208.9968 198.5201 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +211.3383 198.4409 moveto +211.3383 198.4409 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +213.6798 198.3629 moveto +213.6798 198.3629 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +216.0212 198.2861 moveto +216.0212 198.2861 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +218.3627 198.2104 moveto +218.3627 198.2104 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +220.7042 198.136 moveto +220.7042 198.136 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +223.0457 198.0626 moveto +223.0457 198.0626 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +225.3871 197.9904 moveto +225.3871 197.9904 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +227.7286 197.9193 moveto +227.7286 197.9193 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +230.0701 197.8493 moveto +230.0701 197.8493 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +232.4115 197.7805 moveto +232.4115 197.7805 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +234.753 197.7127 moveto +234.753 197.7127 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +237.0945 197.646 moveto +237.0945 197.646 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +239.436 197.5803 moveto +239.436 197.5803 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +241.7774 197.5157 moveto +241.7774 197.5157 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +244.1189 197.4521 moveto +244.1189 197.4521 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +246.4604 197.3896 moveto +246.4604 197.3896 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +248.8019 197.3281 moveto +248.8019 197.3281 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +251.1433 197.2677 moveto +251.1433 197.2677 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +253.4848 197.2082 moveto +253.4848 197.2082 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +255.8263 197.1497 moveto +255.8263 197.1497 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +258.1677 197.0923 moveto +258.1677 197.0923 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +260.5092 197.0358 moveto +260.5092 197.0358 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +262.8507 196.9803 moveto +262.8507 196.9803 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +265.1921 196.9257 moveto +265.1921 196.9257 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +267.5336 196.8721 moveto +267.5336 196.8721 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +269.8751 196.8195 moveto +269.8751 196.8195 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +272.2166 196.7678 moveto +272.2166 196.7678 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +274.558 196.717 moveto +274.558 196.717 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +276.8995 196.6672 moveto +276.8995 196.6672 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +279.241 196.6183 moveto +279.241 196.6183 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +281.5825 196.5703 moveto +281.5825 196.5703 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +283.9239 196.5232 moveto +283.9239 196.5232 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +286.2654 196.477 moveto +286.2654 196.477 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +288.6069 196.4317 moveto +288.6069 196.4317 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +290.9483 196.3874 moveto +290.9483 196.3874 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +293.2898 196.3439 moveto +293.2898 196.3439 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +295.6313 196.3013 moveto +295.6313 196.3013 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +297.9727 196.2595 moveto +297.9727 196.2595 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +300.3142 196.2186 moveto +300.3142 196.2186 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +302.6557 196.1786 moveto +302.6557 196.1786 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +304.9972 196.1394 moveto +304.9972 196.1394 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +307.3386 196.1012 moveto +307.3386 196.1012 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +309.6801 196.0637 moveto +309.6801 196.0637 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +312.0216 196.0271 moveto +312.0216 196.0271 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +314.363 195.9913 moveto +314.363 195.9913 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +316.7046 195.9563 moveto +316.7046 195.9563 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +319.046 195.9222 moveto +319.046 195.9222 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +321.3875 195.8889 moveto +321.3875 195.8889 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +323.7289 195.8565 moveto +323.7289 195.8565 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +326.0704 195.8248 moveto +326.0704 195.8248 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +328.4119 195.794 moveto +328.4119 195.794 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +330.7533 195.764 moveto +330.7533 195.764 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +333.0948 195.7347 moveto +333.0948 195.7347 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +335.4363 195.7063 moveto +335.4363 195.7063 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +337.7778 195.6787 moveto +337.7778 195.6787 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +340.1192 195.6519 moveto +340.1192 195.6519 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +342.4607 195.6258 moveto +342.4607 195.6258 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +344.8022 195.6006 moveto +344.8022 195.6006 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +347.1436 195.5761 moveto +347.1436 195.5761 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +349.4851 195.5524 moveto +349.4851 195.5524 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +351.8266 195.5295 moveto +351.8266 195.5295 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +354.1681 195.5074 moveto +354.1681 195.5074 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +356.5096 195.4861 moveto +356.5096 195.4861 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +358.851 195.4655 moveto +358.851 195.4655 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +361.1925 195.4457 moveto +361.1925 195.4457 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +363.534 195.4267 moveto +363.534 195.4267 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +365.8754 195.4084 moveto +365.8754 195.4084 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +368.2169 195.3909 moveto +368.2169 195.3909 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +370.5583 195.3741 moveto +370.5583 195.3741 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +372.8998 195.3581 moveto +372.8998 195.3581 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +375.2413 195.3429 moveto +375.2413 195.3429 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +377.5828 195.3284 moveto +377.5828 195.3284 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +379.9243 195.3147 moveto +379.9243 195.3147 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +382.2657 195.3017 moveto +382.2657 195.3017 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +384.6072 195.2895 moveto +384.6072 195.2895 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +386.9487 195.278 moveto +386.9487 195.278 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +389.2901 195.2672 moveto +389.2901 195.2672 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +391.6316 195.2572 moveto +391.6316 195.2572 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +393.9731 195.248 moveto +393.9731 195.248 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +396.3145 195.2395 moveto +396.3145 195.2395 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +398.656 195.2317 moveto +398.656 195.2317 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +400.9975 195.2247 moveto +400.9975 195.2247 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +403.339 195.2184 moveto +403.339 195.2184 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +405.6804 195.2129 moveto +405.6804 195.2129 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +408.0219 195.2081 moveto +408.0219 195.2081 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +410.3634 195.2041 moveto +410.3634 195.2041 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +412.7048 195.2007 moveto +412.7048 195.2007 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +415.0464 195.1982 moveto +415.0464 195.1982 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +417.3878 195.1963 moveto +417.3878 195.1963 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +419.7292 195.1952 moveto +419.7292 195.1952 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +422.0708 195.1948 moveto +422.0708 195.1948 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +424.4122 195.1952 moveto +424.4122 195.1952 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +426.7537 195.1963 moveto +426.7537 195.1963 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +429.0952 195.1982 moveto +429.0952 195.1982 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +431.4366 195.2007 moveto +431.4366 195.2007 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +433.7781 195.2041 moveto +433.7781 195.2041 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +436.1196 195.2081 moveto +436.1196 195.2081 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +438.461 195.2129 moveto +438.461 195.2129 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +440.8025 195.2184 moveto +440.8025 195.2184 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +443.144 195.2247 moveto +443.144 195.2247 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +445.4854 195.2317 moveto +445.4854 195.2317 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +447.8269 195.2395 moveto +447.8269 195.2395 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +450.1684 195.248 moveto +450.1684 195.248 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +452.5099 195.2572 moveto +452.5099 195.2572 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +454.8513 195.2672 moveto +454.8513 195.2672 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +457.1928 195.278 moveto +457.1928 195.278 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +459.5343 195.2895 moveto +459.5343 195.2895 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +461.8757 195.3017 moveto +461.8757 195.3017 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +464.2172 195.3147 moveto +464.2172 195.3147 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +466.5587 195.3284 moveto +466.5587 195.3284 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +468.9001 195.3429 moveto +468.9001 195.3429 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +471.2416 195.3581 moveto +471.2416 195.3581 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +473.5831 195.3741 moveto +473.5831 195.3741 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +475.9246 195.3909 moveto +475.9246 195.3909 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +478.2661 195.4084 moveto +478.2661 195.4084 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +480.6075 195.4267 moveto +480.6075 195.4267 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +482.949 195.4457 moveto +482.949 195.4457 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +485.2905 195.4655 moveto +485.2905 195.4655 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +487.6319 195.4861 moveto +487.6319 195.4861 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +489.9734 195.5074 moveto +489.9734 195.5074 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +492.3149 195.5296 moveto +492.3149 195.5296 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +494.6563 195.5525 moveto +494.6563 195.5525 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +496.9979 195.5762 moveto +496.9979 195.5762 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +499.3393 195.6006 moveto +499.3393 195.6006 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +501.6808 195.6259 moveto +501.6808 195.6259 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +504.0223 195.6519 moveto +504.0223 195.6519 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +506.3637 195.6787 moveto +506.3637 195.6787 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +508.7052 195.7063 moveto +508.7052 195.7063 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +511.0467 195.7348 moveto +511.0467 195.7348 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +513.3881 195.764 moveto +513.3881 195.764 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +515.7296 195.794 moveto +515.7296 195.794 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +518.0711 195.8249 moveto +518.0711 195.8249 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +520.4125 195.8565 moveto +520.4125 195.8565 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +522.754 195.889 moveto +522.754 195.889 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +525.0955 195.9223 moveto +525.0955 195.9223 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +527.437 195.9564 moveto +527.437 195.9564 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +529.7784 195.9913 moveto +529.7784 195.9913 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +532.1199 196.0271 moveto +532.1199 196.0271 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +534.4614 196.0637 moveto +534.4614 196.0637 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +536.8029 196.1012 moveto +536.8029 196.1012 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +539.1443 196.1395 moveto +539.1443 196.1395 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +541.4858 196.1786 moveto +541.4858 196.1786 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +543.8273 196.2187 moveto +543.8273 196.2187 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +546.1687 196.2596 moveto +546.1687 196.2596 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +548.5102 196.3013 moveto +548.5102 196.3013 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +550.8517 196.3439 moveto +550.8517 196.3439 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +553.1932 196.3874 moveto +553.1932 196.3874 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +555.5346 196.4318 moveto +555.5346 196.4318 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +557.8761 196.4771 moveto +557.8761 196.4771 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +560.2176 196.5233 moveto +560.2176 196.5233 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +562.559 196.5704 moveto +562.559 196.5704 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +564.9005 196.6183 moveto +564.9005 196.6183 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +567.242 196.6672 moveto +567.242 196.6672 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +569.5834 196.7171 moveto +569.5834 196.7171 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +571.9249 196.7679 moveto +571.9249 196.7679 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +574.2664 196.8195 moveto +574.2664 196.8195 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +576.6078 196.8722 moveto +576.6078 196.8722 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +578.9493 196.9258 moveto +578.9493 196.9258 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +581.2908 196.9803 moveto +581.2908 196.9803 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +583.6323 197.0358 moveto +583.6323 197.0358 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +585.9738 197.0923 moveto +585.9738 197.0923 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +588.3152 197.1498 moveto +588.3152 197.1498 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +590.6567 197.2083 moveto +590.6567 197.2083 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +592.9982 197.2677 moveto +592.9982 197.2677 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +595.3396 197.3282 moveto +595.3396 197.3282 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +597.6811 197.3897 moveto +597.6811 197.3897 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +600.0226 197.4522 moveto +600.0226 197.4522 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +602.364 197.5158 moveto +602.364 197.5158 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +604.7055 197.5804 moveto +604.7055 197.5804 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +607.047 197.646 moveto +607.047 197.646 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +609.3885 197.7128 moveto +609.3885 197.7128 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +611.7299 197.7805 moveto +611.7299 197.7805 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +614.0714 197.8494 moveto +614.0714 197.8494 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +616.4129 197.9194 moveto +616.4129 197.9194 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +618.7543 197.9905 moveto +618.7543 197.9905 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +621.0958 198.0627 moveto +621.0958 198.0627 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +623.4373 198.1361 moveto +623.4373 198.1361 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +625.7787 198.2106 moveto +625.7787 198.2106 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +628.1203 198.2862 moveto +628.1203 198.2862 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +630.4617 198.363 moveto +630.4617 198.363 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +632.8032 198.441 moveto +632.8032 198.441 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +635.1447 198.5202 moveto +635.1447 198.5202 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +637.4861 198.6006 moveto +637.4861 198.6006 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +639.8276 198.6822 moveto +639.8276 198.6822 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +642.1691 198.765 moveto +642.1691 198.765 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +644.5105 198.8491 moveto +644.5105 198.8491 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +646.852 198.9344 moveto +646.852 198.9344 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +649.1935 199.0211 moveto +649.1935 199.0211 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +651.535 199.109 moveto +651.535 199.109 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +653.8764 199.1983 moveto +653.8764 199.1983 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +656.2179 199.2888 moveto +656.2179 199.2888 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +658.5593 199.3808 moveto +658.5593 199.3808 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +660.9008 199.474 moveto +660.9008 199.474 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +663.2423 199.5687 moveto +663.2423 199.5687 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +665.5837 199.6647 moveto +665.5837 199.6647 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +667.9252 199.7622 moveto +667.9252 199.7622 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +670.2667 199.8611 moveto +670.2667 199.8611 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +672.6082 199.9615 moveto +672.6082 199.9615 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +674.9496 200.0633 moveto +674.9496 200.0633 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +677.2912 200.1666 moveto +677.2912 200.1666 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +679.6326 200.2715 moveto +679.6326 200.2715 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +681.9741 200.3778 moveto +681.9741 200.3778 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +684.3156 200.4858 moveto +684.3156 200.4858 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +686.657 200.5953 moveto +686.657 200.5953 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +688.9985 200.7064 moveto +688.9985 200.7064 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +691.34 200.8192 moveto +691.34 200.8192 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +693.6815 200.9336 moveto +693.6815 200.9336 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +696.0229 201.0497 moveto +696.0229 201.0497 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +698.3644 201.1675 moveto +698.3644 201.1675 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +700.7059 201.287 moveto +700.7059 201.287 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +703.0473 201.4083 moveto +703.0473 201.4083 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +705.3888 201.5314 moveto +705.3888 201.5314 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +707.7303 201.6563 moveto +707.7303 201.6563 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +710.0717 201.7831 moveto +710.0717 201.7831 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +712.4133 201.9117 moveto +712.4133 201.9117 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +714.7547 202.0423 moveto +714.7547 202.0423 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +717.0961 202.1748 moveto +717.0961 202.1748 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +719.4376 202.3093 moveto +719.4376 202.3093 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +721.7791 202.4458 moveto +721.7791 202.4458 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +724.1205 202.5843 moveto +724.1205 202.5843 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +726.462 202.725 moveto +726.462 202.725 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +728.8035 202.8678 moveto +728.8035 202.8678 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +731.145 203.0127 moveto +731.145 203.0127 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +733.4865 203.1598 moveto +733.4865 203.1598 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +735.8279 203.3092 moveto +735.8279 203.3092 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +738.1694 203.4609 moveto +738.1694 203.4609 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +740.5109 203.615 moveto +740.5109 203.615 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +742.8524 203.7714 moveto +742.8524 203.7714 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +745.1938 203.9303 moveto +745.1938 203.9303 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +747.5353 204.0916 moveto +747.5353 204.0916 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +749.8768 204.2555 moveto +749.8768 204.2555 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +752.2182 204.422 moveto +752.2182 204.422 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +754.5597 204.5911 moveto +754.5597 204.5911 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +756.9012 204.7629 moveto +756.9012 204.7629 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +759.2426 204.9375 moveto +759.2426 204.9375 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +761.5842 205.1149 moveto +761.5842 205.1149 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +763.9256 205.2952 moveto +763.9256 205.2952 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +766.267 205.4785 moveto +766.267 205.4785 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +768.6085 205.6648 moveto +768.6085 205.6648 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +770.95 205.8542 moveto +770.95 205.8542 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +70.85 336.6975 moveto +73.19146 333.4627 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +73.19146 333.4627 moveto +75.53296 330.5181 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +75.53296 330.5181 moveto +77.87442 327.8157 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +77.87442 327.8157 moveto +80.21588 325.3191 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +80.21588 325.3191 moveto +82.55734 322.9996 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +82.55734 322.9996 moveto +84.89883 320.8343 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +84.89883 320.8343 moveto +87.2403 318.8045 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +87.2403 318.8045 moveto +89.58179 316.8949 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +89.58179 316.8949 moveto +91.92326 315.0927 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +91.92326 315.0927 moveto +94.26472 313.3871 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +94.26472 313.3871 moveto +96.60618 311.7687 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +96.60618 311.7687 moveto +98.94768 310.2296 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +98.94768 310.2296 moveto +101.2891 308.7629 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +101.2891 308.7629 moveto +103.6306 307.3627 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +103.6306 307.3627 moveto +105.9721 306.0237 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +105.9721 306.0237 moveto +108.3136 304.741 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +108.3136 304.741 moveto +110.655 303.5108 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +110.655 303.5108 moveto +112.9965 302.3292 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +112.9965 302.3292 moveto +115.338 301.1928 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +115.338 301.1928 moveto +117.6794 300.0991 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +117.6794 300.0991 moveto +120.0209 299.0448 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +120.0209 299.0448 moveto +122.3624 298.0278 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +122.3624 298.0278 moveto +124.7038 297.0459 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +124.7038 297.0459 moveto +127.0453 296.0971 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +127.0453 296.0971 moveto +129.3868 295.1794 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +129.3868 295.1794 moveto +131.7283 294.2912 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +131.7283 294.2912 moveto +134.0697 293.4309 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +134.0697 293.4309 moveto +136.4112 292.5971 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +136.4112 292.5971 moveto +138.7527 291.7885 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +138.7527 291.7885 moveto +141.0941 291.004 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +141.0941 291.004 moveto +143.4356 290.2421 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +143.4356 290.2421 moveto +145.7771 289.5021 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +145.7771 289.5021 moveto +148.1186 288.783 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +148.1186 288.783 moveto +150.4601 288.0837 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +150.4601 288.0837 moveto +152.8015 287.4034 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +152.8015 287.4034 moveto +155.143 286.7413 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +155.143 286.7413 moveto +157.4845 286.0967 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +157.4845 286.0967 moveto +159.8259 285.469 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +159.8259 285.469 moveto +162.1674 284.8573 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +162.1674 284.8573 moveto +164.5089 284.2611 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +164.5089 284.2611 moveto +166.8503 283.68 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +166.8503 283.68 moveto +169.1918 283.1131 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +169.1918 283.1131 moveto +171.5333 282.5602 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +171.5333 282.5602 moveto +173.8747 282.0205 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +173.8747 282.0205 moveto +176.2162 281.4939 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +176.2162 281.4939 moveto +178.5577 280.9797 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +178.5577 280.9797 moveto +180.8992 280.4776 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +180.8992 280.4776 moveto +183.2406 279.9871 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +183.2406 279.9871 moveto +185.5821 279.5078 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +185.5821 279.5078 moveto +187.9236 279.0396 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +187.9236 279.0396 moveto +190.265 278.582 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +190.265 278.582 moveto +192.6065 278.1347 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +192.6065 278.1347 moveto +194.948 277.6973 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +194.948 277.6973 moveto +197.2895 277.2695 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +197.2895 277.2695 moveto +199.631 276.8512 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +199.631 276.8512 moveto +201.9724 276.4421 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +201.9724 276.4421 moveto +204.3139 276.0419 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +204.3139 276.0419 moveto +206.6553 275.6503 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +206.6553 275.6503 moveto +208.9968 275.2671 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +208.9968 275.2671 moveto +211.3383 274.8921 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +211.3383 274.8921 moveto +213.6798 274.5251 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +213.6798 274.5251 moveto +216.0212 274.166 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +216.0212 274.166 moveto +218.3627 273.8143 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +218.3627 273.8143 moveto +220.7042 273.4701 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +220.7042 273.4701 moveto +223.0457 273.1332 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +223.0457 273.1332 moveto +225.3871 272.8033 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +225.3871 272.8033 moveto +227.7286 272.4803 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +227.7286 272.4803 moveto +230.0701 272.164 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +230.0701 272.164 moveto +232.4115 271.8542 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +232.4115 271.8542 moveto +234.753 271.551 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +234.753 271.551 moveto +237.0945 271.254 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +237.0945 271.254 moveto +239.436 270.9632 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +239.436 270.9632 moveto +241.7774 270.6784 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +241.7774 270.6784 moveto +244.1189 270.3997 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +244.1189 270.3997 moveto +246.4604 270.1267 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +246.4604 270.1267 moveto +248.8019 269.8592 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +248.8019 269.8592 moveto +251.1433 269.5975 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +251.1433 269.5975 moveto +253.4848 269.3411 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +253.4848 269.3411 moveto +255.8263 269.0901 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +255.8263 269.0901 moveto +258.1677 268.8443 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +258.1677 268.8443 moveto +260.5092 268.6038 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +260.5092 268.6038 moveto +262.8507 268.3682 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +262.8507 268.3682 moveto +265.1921 268.1377 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +265.1921 268.1377 moveto +267.5336 267.912 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +267.5336 267.912 moveto +269.8751 267.6912 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +269.8751 267.6912 moveto +272.2166 267.475 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +272.2166 267.475 moveto +274.558 267.2635 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +274.558 267.2635 moveto +276.8995 267.0566 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +276.8995 267.0566 moveto +279.241 266.8542 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +279.241 266.8542 moveto +281.5825 266.6563 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +281.5825 266.6563 moveto +283.9239 266.4627 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +283.9239 266.4627 moveto +286.2654 266.2733 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +286.2654 266.2733 moveto +288.6069 266.0883 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +288.6069 266.0883 moveto +290.9483 265.9073 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +290.9483 265.9073 moveto +293.2898 265.7305 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +293.2898 265.7305 moveto +295.6313 265.5577 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +295.6313 265.5577 moveto +297.9727 265.389 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +297.9727 265.389 moveto +300.3142 265.2241 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +300.3142 265.2241 moveto +302.6557 265.0633 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +302.6557 265.0633 moveto +304.9972 264.9061 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +304.9972 264.9061 moveto +307.3386 264.7529 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +307.3386 264.7529 moveto +309.6801 264.6034 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +309.6801 264.6034 moveto +312.0216 264.4576 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +312.0216 264.4576 moveto +314.363 264.3154 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +314.363 264.3154 moveto +316.7046 264.1768 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +316.7046 264.1768 moveto +319.046 264.0418 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +319.046 264.0418 moveto +321.3875 263.9105 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +321.3875 263.9105 moveto +323.7289 263.7825 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +323.7289 263.7825 moveto +326.0704 263.6581 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +326.0704 263.6581 moveto +328.4119 263.5371 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +328.4119 263.5371 moveto +330.7533 263.4194 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +330.7533 263.4194 moveto +333.0948 263.3052 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +333.0948 263.3052 moveto +335.4363 263.1942 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +335.4363 263.1942 moveto +337.7778 263.0866 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +337.7778 263.0866 moveto +340.1192 262.9821 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +340.1192 262.9821 moveto +342.4607 262.881 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +342.4607 262.881 moveto +344.8022 262.7831 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +344.8022 262.7831 moveto +347.1436 262.6884 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +347.1436 262.6884 moveto +349.4851 262.5968 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +349.4851 262.5968 moveto +351.8266 262.5084 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +351.8266 262.5084 moveto +354.1681 262.4231 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +354.1681 262.4231 moveto +356.5096 262.3408 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +356.5096 262.3408 moveto +358.851 262.2617 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +358.851 262.2617 moveto +361.1925 262.1855 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +361.1925 262.1855 moveto +363.534 262.1125 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +363.534 262.1125 moveto +365.8754 262.0424 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +365.8754 262.0424 moveto +368.2169 261.9754 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +368.2169 261.9754 moveto +370.5583 261.9112 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +370.5583 261.9112 moveto +372.8998 261.8502 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +372.8998 261.8502 moveto +375.2413 261.7919 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +375.2413 261.7919 moveto +377.5828 261.7366 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +377.5828 261.7366 moveto +379.9243 261.6843 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +379.9243 261.6843 moveto +382.2657 261.6349 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +382.2657 261.6349 moveto +384.6072 261.5883 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +384.6072 261.5883 moveto +386.9487 261.5447 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +386.9487 261.5447 moveto +389.2901 261.5039 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +389.2901 261.5039 moveto +391.6316 261.4659 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +391.6316 261.4659 moveto +393.9731 261.4307 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +393.9731 261.4307 moveto +396.3145 261.3985 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +396.3145 261.3985 moveto +398.656 261.369 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +398.656 261.369 moveto +400.9975 261.3425 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +400.9975 261.3425 moveto +403.339 261.3187 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +403.339 261.3187 moveto +405.6804 261.2977 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +405.6804 261.2977 moveto +408.0219 261.2795 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +408.0219 261.2795 moveto +410.3634 261.2642 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +410.3634 261.2642 moveto +412.7048 261.2516 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +412.7048 261.2516 moveto +415.0464 261.2419 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +415.0464 261.2419 moveto +417.3878 261.2349 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +417.3878 261.2349 moveto +419.7292 261.2308 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +419.7292 261.2308 moveto +422.0708 261.2293 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +422.0708 261.2293 moveto +424.4122 261.2308 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +424.4122 261.2308 moveto +426.7537 261.2349 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +426.7537 261.2349 moveto +429.0952 261.2419 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +429.0952 261.2419 moveto +431.4366 261.2516 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +431.4366 261.2516 moveto +433.7781 261.2642 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +433.7781 261.2642 moveto +436.1196 261.2796 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +436.1196 261.2796 moveto +438.461 261.2977 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +438.461 261.2977 moveto +440.8025 261.3187 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +440.8025 261.3187 moveto +443.144 261.3425 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +443.144 261.3425 moveto +445.4854 261.3692 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +445.4854 261.3692 moveto +447.8269 261.3987 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +447.8269 261.3987 moveto +450.1684 261.4309 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +450.1684 261.4309 moveto +452.5099 261.466 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +452.5099 261.466 moveto +454.8513 261.5039 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +454.8513 261.5039 moveto +457.1928 261.5447 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +457.1928 261.5447 moveto +459.5343 261.5884 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +459.5343 261.5884 moveto +461.8757 261.6349 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +461.8757 261.6349 moveto +464.2172 261.6844 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +464.2172 261.6844 moveto +466.5587 261.7367 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +466.5587 261.7367 moveto +468.9001 261.7919 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +468.9001 261.7919 moveto +471.2416 261.8502 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +471.2416 261.8502 moveto +473.5831 261.9113 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +473.5831 261.9113 moveto +475.9246 261.9754 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +475.9246 261.9754 moveto +478.2661 262.0424 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +478.2661 262.0424 moveto +480.6075 262.1126 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +480.6075 262.1126 moveto +482.949 262.1856 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +482.949 262.1856 moveto +485.2905 262.2618 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +485.2905 262.2618 moveto +487.6319 262.3409 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +487.6319 262.3409 moveto +489.9734 262.4232 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +489.9734 262.4232 moveto +492.3149 262.5085 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +492.3149 262.5085 moveto +494.6563 262.5969 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +494.6563 262.5969 moveto +496.9979 262.6886 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +496.9979 262.6886 moveto +499.3393 262.7832 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +499.3393 262.7832 moveto +501.6808 262.8811 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +501.6808 262.8811 moveto +504.0223 262.9823 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +504.0223 262.9823 moveto +506.3637 263.0867 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +506.3637 263.0867 moveto +508.7052 263.1944 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +508.7052 263.1944 moveto +511.0467 263.3053 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +511.0467 263.3053 moveto +513.3881 263.4195 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +513.3881 263.4195 moveto +515.7296 263.5372 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +515.7296 263.5372 moveto +518.0711 263.6582 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +518.0711 263.6582 moveto +520.4125 263.7827 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +520.4125 263.7827 moveto +522.754 263.9106 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +522.754 263.9106 moveto +525.0955 264.0421 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +525.0955 264.0421 moveto +527.437 264.177 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +527.437 264.177 moveto +529.7784 264.3156 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +529.7784 264.3156 moveto +532.1199 264.4577 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +532.1199 264.4577 moveto +534.4614 264.6035 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +534.4614 264.6035 moveto +536.8029 264.7531 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +536.8029 264.7531 moveto +539.1443 264.9064 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +539.1443 264.9064 moveto +541.4858 265.0634 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +541.4858 265.0634 moveto +543.8273 265.2244 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +543.8273 265.2244 moveto +546.1687 265.3892 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +546.1687 265.3892 moveto +548.5102 265.558 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +548.5102 265.558 moveto +550.8517 265.7307 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +550.8517 265.7307 moveto +553.1932 265.9074 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +553.1932 265.9074 moveto +555.5346 266.0884 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +555.5346 266.0884 moveto +557.8761 266.2736 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +557.8761 266.2736 moveto +560.2176 266.4628 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +560.2176 266.4628 moveto +562.559 266.6566 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +562.559 266.6566 moveto +564.9005 266.8545 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +564.9005 266.8545 moveto +567.242 267.0569 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +567.242 267.0569 moveto +569.5834 267.2638 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +569.5834 267.2638 moveto +571.9249 267.4753 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +571.9249 267.4753 moveto +574.2664 267.6915 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +574.2664 267.6915 moveto +576.6078 267.9123 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +576.6078 267.9123 moveto +578.9493 268.138 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +578.9493 268.138 moveto +581.2908 268.3686 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +581.2908 268.3686 moveto +583.6323 268.6041 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +583.6323 268.6041 moveto +585.9738 268.8447 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +585.9738 268.8447 moveto +588.3152 269.0905 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +588.3152 269.0905 moveto +590.6567 269.3414 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +590.6567 269.3414 moveto +592.9982 269.5977 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +592.9982 269.5977 moveto +595.3396 269.8596 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +595.3396 269.8596 moveto +597.6811 270.1269 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +597.6811 270.1269 moveto +600.0226 270.4001 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +600.0226 270.4001 moveto +602.364 270.6788 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +602.364 270.6788 moveto +604.7055 270.9636 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +604.7055 270.9636 moveto +607.047 271.2544 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +607.047 271.2544 moveto +609.3885 271.5514 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +609.3885 271.5514 moveto +611.7299 271.8547 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +611.7299 271.8547 moveto +614.0714 272.1644 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +614.0714 272.1644 moveto +616.4129 272.4807 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +616.4129 272.4807 moveto +618.7543 272.8037 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +618.7543 272.8037 moveto +621.0958 273.1336 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +621.0958 273.1336 moveto +623.4373 273.4707 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +623.4373 273.4707 moveto +625.7787 273.8148 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +625.7787 273.8148 moveto +628.1203 274.1664 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +628.1203 274.1664 moveto +630.4617 274.5256 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +630.4617 274.5256 moveto +632.8032 274.8926 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +632.8032 274.8926 moveto +635.1447 275.2676 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +635.1447 275.2676 moveto +637.4861 275.6508 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +637.4861 275.6508 moveto +639.8276 276.0424 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +639.8276 276.0424 moveto +642.1691 276.4426 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +642.1691 276.4426 moveto +644.5105 276.8518 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +644.5105 276.8518 moveto +646.852 277.2701 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +646.852 277.2701 moveto +649.1935 277.6978 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +649.1935 277.6978 moveto +651.535 278.1352 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +651.535 278.1352 moveto +653.8764 278.5826 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +653.8764 278.5826 moveto +656.2179 279.0403 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +656.2179 279.0403 moveto +658.5593 279.5085 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +658.5593 279.5085 moveto +660.9008 279.9877 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +660.9008 279.9877 moveto +663.2423 280.4782 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +663.2423 280.4782 moveto +665.5837 280.9803 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +665.5837 280.9803 moveto +667.9252 281.4945 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +667.9252 281.4945 moveto +670.2667 282.0213 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +670.2667 282.0213 moveto +672.6082 282.5608 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +672.6082 282.5608 moveto +674.9496 283.1138 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +674.9496 283.1138 moveto +677.2912 283.6806 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +677.2912 283.6806 moveto +679.6326 284.2619 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +679.6326 284.2619 moveto +681.9741 284.858 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +681.9741 284.858 moveto +684.3156 285.4698 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +684.3156 285.4698 moveto +686.657 286.0976 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +686.657 286.0976 moveto +688.9985 286.7422 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +688.9985 286.7422 moveto +691.34 287.4042 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +691.34 287.4042 moveto +693.6815 288.0846 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +693.6815 288.0846 moveto +696.0229 288.7839 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +696.0229 288.7839 moveto +698.3644 289.5032 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +698.3644 289.5032 moveto +700.7059 290.2431 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +700.7059 290.2431 moveto +703.0473 291.0049 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +703.0473 291.0049 moveto +705.3888 291.7897 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +705.3888 291.7897 moveto +707.7303 292.5982 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +707.7303 292.5982 moveto +710.0717 293.4321 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +710.0717 293.4321 moveto +712.4133 294.2924 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +712.4133 294.2924 moveto +714.7547 295.1805 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +714.7547 295.1805 moveto +717.0961 296.0983 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +717.0961 296.0983 moveto +719.4376 297.0472 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +719.4376 297.0472 moveto +721.7791 298.0291 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +721.7791 298.0291 moveto +724.1205 299.0462 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +724.1205 299.0462 moveto +726.462 300.1005 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +726.462 300.1005 moveto +728.8035 301.1944 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +728.8035 301.1944 moveto +731.145 302.3308 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +731.145 302.3308 moveto +733.4865 303.5124 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +733.4865 303.5124 moveto +735.8279 304.7427 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +735.8279 304.7427 moveto +738.1694 306.0254 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +738.1694 306.0254 moveto +740.5109 307.3646 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +740.5109 307.3646 moveto +742.8524 308.7649 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +742.8524 308.7649 moveto +745.1938 310.2317 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +745.1938 310.2317 moveto +747.5353 311.7708 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +747.5353 311.7708 moveto +749.8768 313.3893 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +749.8768 313.3893 moveto +752.2182 315.0951 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +752.2182 315.0951 moveto +754.5597 316.8974 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +754.5597 316.8974 moveto +756.9012 318.8072 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +756.9012 318.8072 moveto +759.2426 320.8371 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +759.2426 320.8371 moveto +761.5842 323.0026 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +761.5842 323.0026 moveto +763.9256 325.3224 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +763.9256 325.3224 moveto +766.267 327.8193 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +766.267 327.8193 moveto +768.6085 330.5219 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +768.6085 330.5219 moveto +770.95 333.4669 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +70.85 336.6975 moveto +70.85 336.6975 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +73.19146 333.4627 moveto +73.19146 333.4627 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +75.53296 330.5181 moveto +75.53296 330.5181 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +77.87442 327.8157 moveto +77.87442 327.8157 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +80.21588 325.3191 moveto +80.21588 325.3191 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +82.55734 322.9996 moveto +82.55734 322.9996 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +84.89883 320.8343 moveto +84.89883 320.8343 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +87.2403 318.8045 moveto +87.2403 318.8045 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +89.58179 316.8949 moveto +89.58179 316.8949 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +91.92326 315.0927 moveto +91.92326 315.0927 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +94.26472 313.3871 moveto +94.26472 313.3871 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +96.60618 311.7687 moveto +96.60618 311.7687 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +98.94768 310.2296 moveto +98.94768 310.2296 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +101.2891 308.7629 moveto +101.2891 308.7629 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +103.6306 307.3627 moveto +103.6306 307.3627 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +105.9721 306.0237 moveto +105.9721 306.0237 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +108.3136 304.741 moveto +108.3136 304.741 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +110.655 303.5108 moveto +110.655 303.5108 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +112.9965 302.3292 moveto +112.9965 302.3292 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +115.338 301.1928 moveto +115.338 301.1928 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +117.6794 300.0991 moveto +117.6794 300.0991 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +120.0209 299.0448 moveto +120.0209 299.0448 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +122.3624 298.0278 moveto +122.3624 298.0278 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +124.7038 297.0459 moveto +124.7038 297.0459 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +127.0453 296.0971 moveto +127.0453 296.0971 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +129.3868 295.1794 moveto +129.3868 295.1794 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +131.7283 294.2912 moveto +131.7283 294.2912 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +134.0697 293.4309 moveto +134.0697 293.4309 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +136.4112 292.5971 moveto +136.4112 292.5971 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +138.7527 291.7885 moveto +138.7527 291.7885 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +141.0941 291.004 moveto +141.0941 291.004 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +143.4356 290.2421 moveto +143.4356 290.2421 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +145.7771 289.5021 moveto +145.7771 289.5021 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +148.1186 288.783 moveto +148.1186 288.783 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +150.4601 288.0837 moveto +150.4601 288.0837 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +152.8015 287.4034 moveto +152.8015 287.4034 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +155.143 286.7413 moveto +155.143 286.7413 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +157.4845 286.0967 moveto +157.4845 286.0967 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +159.8259 285.469 moveto +159.8259 285.469 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +162.1674 284.8573 moveto +162.1674 284.8573 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +164.5089 284.2611 moveto +164.5089 284.2611 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +166.8503 283.68 moveto +166.8503 283.68 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +169.1918 283.1131 moveto +169.1918 283.1131 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +171.5333 282.5602 moveto +171.5333 282.5602 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +173.8747 282.0205 moveto +173.8747 282.0205 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +176.2162 281.4939 moveto +176.2162 281.4939 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +178.5577 280.9797 moveto +178.5577 280.9797 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +180.8992 280.4776 moveto +180.8992 280.4776 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +183.2406 279.9871 moveto +183.2406 279.9871 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +185.5821 279.5078 moveto +185.5821 279.5078 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +187.9236 279.0396 moveto +187.9236 279.0396 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +190.265 278.582 moveto +190.265 278.582 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +192.6065 278.1347 moveto +192.6065 278.1347 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +194.948 277.6973 moveto +194.948 277.6973 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +197.2895 277.2695 moveto +197.2895 277.2695 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +199.631 276.8512 moveto +199.631 276.8512 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +201.9724 276.4421 moveto +201.9724 276.4421 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +204.3139 276.0419 moveto +204.3139 276.0419 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +206.6553 275.6503 moveto +206.6553 275.6503 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +208.9968 275.2671 moveto +208.9968 275.2671 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +211.3383 274.8921 moveto +211.3383 274.8921 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +213.6798 274.5251 moveto +213.6798 274.5251 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +216.0212 274.166 moveto +216.0212 274.166 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +218.3627 273.8143 moveto +218.3627 273.8143 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +220.7042 273.4701 moveto +220.7042 273.4701 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +223.0457 273.1332 moveto +223.0457 273.1332 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +225.3871 272.8033 moveto +225.3871 272.8033 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +227.7286 272.4803 moveto +227.7286 272.4803 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +230.0701 272.164 moveto +230.0701 272.164 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +232.4115 271.8542 moveto +232.4115 271.8542 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +234.753 271.551 moveto +234.753 271.551 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +237.0945 271.254 moveto +237.0945 271.254 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +239.436 270.9632 moveto +239.436 270.9632 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +241.7774 270.6784 moveto +241.7774 270.6784 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +244.1189 270.3997 moveto +244.1189 270.3997 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +246.4604 270.1267 moveto +246.4604 270.1267 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +248.8019 269.8592 moveto +248.8019 269.8592 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +251.1433 269.5975 moveto +251.1433 269.5975 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +253.4848 269.3411 moveto +253.4848 269.3411 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +255.8263 269.0901 moveto +255.8263 269.0901 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +258.1677 268.8443 moveto +258.1677 268.8443 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +260.5092 268.6038 moveto +260.5092 268.6038 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +262.8507 268.3682 moveto +262.8507 268.3682 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +265.1921 268.1377 moveto +265.1921 268.1377 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +267.5336 267.912 moveto +267.5336 267.912 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +269.8751 267.6912 moveto +269.8751 267.6912 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +272.2166 267.475 moveto +272.2166 267.475 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +274.558 267.2635 moveto +274.558 267.2635 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +276.8995 267.0566 moveto +276.8995 267.0566 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +279.241 266.8542 moveto +279.241 266.8542 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +281.5825 266.6563 moveto +281.5825 266.6563 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +283.9239 266.4627 moveto +283.9239 266.4627 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +286.2654 266.2733 moveto +286.2654 266.2733 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +288.6069 266.0883 moveto +288.6069 266.0883 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +290.9483 265.9073 moveto +290.9483 265.9073 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +293.2898 265.7305 moveto +293.2898 265.7305 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +295.6313 265.5577 moveto +295.6313 265.5577 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +297.9727 265.389 moveto +297.9727 265.389 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +300.3142 265.2241 moveto +300.3142 265.2241 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +302.6557 265.0633 moveto +302.6557 265.0633 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +304.9972 264.9061 moveto +304.9972 264.9061 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +307.3386 264.7529 moveto +307.3386 264.7529 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +309.6801 264.6034 moveto +309.6801 264.6034 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +312.0216 264.4576 moveto +312.0216 264.4576 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +314.363 264.3154 moveto +314.363 264.3154 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +316.7046 264.1768 moveto +316.7046 264.1768 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +319.046 264.0418 moveto +319.046 264.0418 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +321.3875 263.9105 moveto +321.3875 263.9105 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +323.7289 263.7825 moveto +323.7289 263.7825 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +326.0704 263.6581 moveto +326.0704 263.6581 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +328.4119 263.5371 moveto +328.4119 263.5371 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +330.7533 263.4194 moveto +330.7533 263.4194 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +333.0948 263.3052 moveto +333.0948 263.3052 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +335.4363 263.1942 moveto +335.4363 263.1942 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +337.7778 263.0866 moveto +337.7778 263.0866 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +340.1192 262.9821 moveto +340.1192 262.9821 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +342.4607 262.881 moveto +342.4607 262.881 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +344.8022 262.7831 moveto +344.8022 262.7831 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +347.1436 262.6884 moveto +347.1436 262.6884 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +349.4851 262.5968 moveto +349.4851 262.5968 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +351.8266 262.5084 moveto +351.8266 262.5084 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +354.1681 262.4231 moveto +354.1681 262.4231 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +356.5096 262.3408 moveto +356.5096 262.3408 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +358.851 262.2617 moveto +358.851 262.2617 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +361.1925 262.1855 moveto +361.1925 262.1855 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +363.534 262.1125 moveto +363.534 262.1125 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +365.8754 262.0424 moveto +365.8754 262.0424 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +368.2169 261.9754 moveto +368.2169 261.9754 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +370.5583 261.9112 moveto +370.5583 261.9112 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +372.8998 261.8502 moveto +372.8998 261.8502 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +375.2413 261.7919 moveto +375.2413 261.7919 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +377.5828 261.7366 moveto +377.5828 261.7366 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +379.9243 261.6843 moveto +379.9243 261.6843 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +382.2657 261.6349 moveto +382.2657 261.6349 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +384.6072 261.5883 moveto +384.6072 261.5883 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +386.9487 261.5447 moveto +386.9487 261.5447 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +389.2901 261.5039 moveto +389.2901 261.5039 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +391.6316 261.4659 moveto +391.6316 261.4659 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +393.9731 261.4307 moveto +393.9731 261.4307 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +396.3145 261.3985 moveto +396.3145 261.3985 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +398.656 261.369 moveto +398.656 261.369 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +400.9975 261.3425 moveto +400.9975 261.3425 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +403.339 261.3187 moveto +403.339 261.3187 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +405.6804 261.2977 moveto +405.6804 261.2977 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +408.0219 261.2795 moveto +408.0219 261.2795 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +410.3634 261.2642 moveto +410.3634 261.2642 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +412.7048 261.2516 moveto +412.7048 261.2516 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +415.0464 261.2419 moveto +415.0464 261.2419 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +417.3878 261.2349 moveto +417.3878 261.2349 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +419.7292 261.2308 moveto +419.7292 261.2308 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +422.0708 261.2293 moveto +422.0708 261.2293 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +424.4122 261.2308 moveto +424.4122 261.2308 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +426.7537 261.2349 moveto +426.7537 261.2349 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +429.0952 261.2419 moveto +429.0952 261.2419 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +431.4366 261.2516 moveto +431.4366 261.2516 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +433.7781 261.2642 moveto +433.7781 261.2642 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +436.1196 261.2796 moveto +436.1196 261.2796 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +438.461 261.2977 moveto +438.461 261.2977 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +440.8025 261.3187 moveto +440.8025 261.3187 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +443.144 261.3425 moveto +443.144 261.3425 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +445.4854 261.3692 moveto +445.4854 261.3692 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +447.8269 261.3987 moveto +447.8269 261.3987 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +450.1684 261.4309 moveto +450.1684 261.4309 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +452.5099 261.466 moveto +452.5099 261.466 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +454.8513 261.5039 moveto +454.8513 261.5039 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +457.1928 261.5447 moveto +457.1928 261.5447 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +459.5343 261.5884 moveto +459.5343 261.5884 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +461.8757 261.6349 moveto +461.8757 261.6349 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +464.2172 261.6844 moveto +464.2172 261.6844 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +466.5587 261.7367 moveto +466.5587 261.7367 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +468.9001 261.7919 moveto +468.9001 261.7919 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +471.2416 261.8502 moveto +471.2416 261.8502 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +473.5831 261.9113 moveto +473.5831 261.9113 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +475.9246 261.9754 moveto +475.9246 261.9754 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +478.2661 262.0424 moveto +478.2661 262.0424 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +480.6075 262.1126 moveto +480.6075 262.1126 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +482.949 262.1856 moveto +482.949 262.1856 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +485.2905 262.2618 moveto +485.2905 262.2618 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +487.6319 262.3409 moveto +487.6319 262.3409 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +489.9734 262.4232 moveto +489.9734 262.4232 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +492.3149 262.5085 moveto +492.3149 262.5085 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +494.6563 262.5969 moveto +494.6563 262.5969 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +496.9979 262.6886 moveto +496.9979 262.6886 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +499.3393 262.7832 moveto +499.3393 262.7832 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +501.6808 262.8811 moveto +501.6808 262.8811 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +504.0223 262.9823 moveto +504.0223 262.9823 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +506.3637 263.0867 moveto +506.3637 263.0867 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +508.7052 263.1944 moveto +508.7052 263.1944 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +511.0467 263.3053 moveto +511.0467 263.3053 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +513.3881 263.4195 moveto +513.3881 263.4195 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +515.7296 263.5372 moveto +515.7296 263.5372 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +518.0711 263.6582 moveto +518.0711 263.6582 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +520.4125 263.7827 moveto +520.4125 263.7827 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +522.754 263.9106 moveto +522.754 263.9106 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +525.0955 264.0421 moveto +525.0955 264.0421 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +527.437 264.177 moveto +527.437 264.177 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +529.7784 264.3156 moveto +529.7784 264.3156 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +532.1199 264.4577 moveto +532.1199 264.4577 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +534.4614 264.6035 moveto +534.4614 264.6035 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +536.8029 264.7531 moveto +536.8029 264.7531 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +539.1443 264.9064 moveto +539.1443 264.9064 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +541.4858 265.0634 moveto +541.4858 265.0634 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +543.8273 265.2244 moveto +543.8273 265.2244 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +546.1687 265.3892 moveto +546.1687 265.3892 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +548.5102 265.558 moveto +548.5102 265.558 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +550.8517 265.7307 moveto +550.8517 265.7307 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +553.1932 265.9074 moveto +553.1932 265.9074 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +555.5346 266.0884 moveto +555.5346 266.0884 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +557.8761 266.2736 moveto +557.8761 266.2736 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +560.2176 266.4628 moveto +560.2176 266.4628 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +562.559 266.6566 moveto +562.559 266.6566 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +564.9005 266.8545 moveto +564.9005 266.8545 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +567.242 267.0569 moveto +567.242 267.0569 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +569.5834 267.2638 moveto +569.5834 267.2638 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +571.9249 267.4753 moveto +571.9249 267.4753 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +574.2664 267.6915 moveto +574.2664 267.6915 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +576.6078 267.9123 moveto +576.6078 267.9123 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +578.9493 268.138 moveto +578.9493 268.138 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +581.2908 268.3686 moveto +581.2908 268.3686 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +583.6323 268.6041 moveto +583.6323 268.6041 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +585.9738 268.8447 moveto +585.9738 268.8447 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +588.3152 269.0905 moveto +588.3152 269.0905 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +590.6567 269.3414 moveto +590.6567 269.3414 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +592.9982 269.5977 moveto +592.9982 269.5977 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +595.3396 269.8596 moveto +595.3396 269.8596 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +597.6811 270.1269 moveto +597.6811 270.1269 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +600.0226 270.4001 moveto +600.0226 270.4001 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +602.364 270.6788 moveto +602.364 270.6788 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +604.7055 270.9636 moveto +604.7055 270.9636 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +607.047 271.2544 moveto +607.047 271.2544 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +609.3885 271.5514 moveto +609.3885 271.5514 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +611.7299 271.8547 moveto +611.7299 271.8547 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +614.0714 272.1644 moveto +614.0714 272.1644 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +616.4129 272.4807 moveto +616.4129 272.4807 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +618.7543 272.8037 moveto +618.7543 272.8037 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +621.0958 273.1336 moveto +621.0958 273.1336 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +623.4373 273.4707 moveto +623.4373 273.4707 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +625.7787 273.8148 moveto +625.7787 273.8148 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +628.1203 274.1664 moveto +628.1203 274.1664 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +630.4617 274.5256 moveto +630.4617 274.5256 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +632.8032 274.8926 moveto +632.8032 274.8926 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +635.1447 275.2676 moveto +635.1447 275.2676 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +637.4861 275.6508 moveto +637.4861 275.6508 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +639.8276 276.0424 moveto +639.8276 276.0424 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +642.1691 276.4426 moveto +642.1691 276.4426 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +644.5105 276.8518 moveto +644.5105 276.8518 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +646.852 277.2701 moveto +646.852 277.2701 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +649.1935 277.6978 moveto +649.1935 277.6978 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +651.535 278.1352 moveto +651.535 278.1352 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +653.8764 278.5826 moveto +653.8764 278.5826 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +656.2179 279.0403 moveto +656.2179 279.0403 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +658.5593 279.5085 moveto +658.5593 279.5085 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +660.9008 279.9877 moveto +660.9008 279.9877 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +663.2423 280.4782 moveto +663.2423 280.4782 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +665.5837 280.9803 moveto +665.5837 280.9803 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +667.9252 281.4945 moveto +667.9252 281.4945 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +670.2667 282.0213 moveto +670.2667 282.0213 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +672.6082 282.5608 moveto +672.6082 282.5608 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +674.9496 283.1138 moveto +674.9496 283.1138 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +677.2912 283.6806 moveto +677.2912 283.6806 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +679.6326 284.2619 moveto +679.6326 284.2619 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +681.9741 284.858 moveto +681.9741 284.858 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +684.3156 285.4698 moveto +684.3156 285.4698 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +686.657 286.0976 moveto +686.657 286.0976 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +688.9985 286.7422 moveto +688.9985 286.7422 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +691.34 287.4042 moveto +691.34 287.4042 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +693.6815 288.0846 moveto +693.6815 288.0846 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +696.0229 288.7839 moveto +696.0229 288.7839 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +698.3644 289.5032 moveto +698.3644 289.5032 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +700.7059 290.2431 moveto +700.7059 290.2431 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +703.0473 291.0049 moveto +703.0473 291.0049 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +705.3888 291.7897 moveto +705.3888 291.7897 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +707.7303 292.5982 moveto +707.7303 292.5982 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +710.0717 293.4321 moveto +710.0717 293.4321 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +712.4133 294.2924 moveto +712.4133 294.2924 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +714.7547 295.1805 moveto +714.7547 295.1805 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +717.0961 296.0983 moveto +717.0961 296.0983 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +719.4376 297.0472 moveto +719.4376 297.0472 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +721.7791 298.0291 moveto +721.7791 298.0291 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +724.1205 299.0462 moveto +724.1205 299.0462 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +726.462 300.1005 moveto +726.462 300.1005 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +728.8035 301.1944 moveto +728.8035 301.1944 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +731.145 302.3308 moveto +731.145 302.3308 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +733.4865 303.5124 moveto +733.4865 303.5124 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +735.8279 304.7427 moveto +735.8279 304.7427 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +738.1694 306.0254 moveto +738.1694 306.0254 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +740.5109 307.3646 moveto +740.5109 307.3646 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +742.8524 308.7649 moveto +742.8524 308.7649 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +745.1938 310.2317 moveto +745.1938 310.2317 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +747.5353 311.7708 moveto +747.5353 311.7708 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +749.8768 313.3893 moveto +749.8768 313.3893 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +752.2182 315.0951 moveto +752.2182 315.0951 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +754.5597 316.8974 moveto +754.5597 316.8974 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +756.9012 318.8072 moveto +756.9012 318.8072 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +759.2426 320.8371 moveto +759.2426 320.8371 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +761.5842 323.0026 moveto +761.5842 323.0026 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +763.9256 325.3224 moveto +763.9256 325.3224 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +766.267 327.8193 moveto +766.267 327.8193 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +768.6085 330.5219 moveto +768.6085 330.5219 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +770.95 333.4669 moveto +770.95 333.4669 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +78.22848 492.35 moveto +80.21588 476.972 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +80.21588 476.972 moveto +82.55734 463.0629 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +82.55734 463.0629 moveto +84.89883 451.8087 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +84.89883 451.8087 moveto +87.2403 442.3817 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +87.2403 442.3817 moveto +89.58179 434.2889 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +89.58179 434.2889 moveto +91.92326 427.2125 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +91.92326 427.2125 moveto +94.26472 420.9358 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +94.26472 420.9358 moveto +96.60618 415.3048 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +96.60618 415.3048 moveto +98.94768 410.2055 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +98.94768 410.2055 moveto +101.2891 405.5519 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +101.2891 405.5519 moveto +103.6306 401.2768 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +103.6306 401.2768 moveto +105.9721 397.3275 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +105.9721 397.3275 moveto +108.3136 393.6611 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +108.3136 393.6611 moveto +110.655 390.2429 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +110.655 390.2429 moveto +112.9965 387.044 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +112.9965 387.044 moveto +115.338 384.0404 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +115.338 384.0404 moveto +117.6794 381.2116 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +117.6794 381.2116 moveto +120.0209 378.5404 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +120.0209 378.5404 moveto +122.3624 376.0118 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +122.3624 376.0118 moveto +124.7038 373.6128 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +124.7038 373.6128 moveto +127.0453 371.3323 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +127.0453 371.3323 moveto +129.3868 369.1604 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +129.3868 369.1604 moveto +131.7283 367.0885 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +131.7283 367.0885 moveto +134.0697 365.1088 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +134.0697 365.1088 moveto +136.4112 363.2146 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +136.4112 363.2146 moveto +138.7527 361.3995 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +138.7527 361.3995 moveto +141.0941 359.6583 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +141.0941 359.6583 moveto +143.4356 357.9862 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +143.4356 357.9862 moveto +145.7771 356.3784 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +145.7771 356.3784 moveto +148.1186 354.8309 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +148.1186 354.8309 moveto +150.4601 353.3403 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +150.4601 353.3403 moveto +152.8015 351.903 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +152.8015 351.903 moveto +155.143 350.516 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +155.143 350.516 moveto +157.4845 349.1765 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +157.4845 349.1765 moveto +159.8259 347.8821 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +159.8259 347.8821 moveto +162.1674 346.6301 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +162.1674 346.6301 moveto +164.5089 345.4187 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +164.5089 345.4187 moveto +166.8503 344.2455 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +166.8503 344.2455 moveto +169.1918 343.1088 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +169.1918 343.1088 moveto +171.5333 342.0068 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +171.5333 342.0068 moveto +173.8747 340.938 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +173.8747 340.938 moveto +176.2162 339.9007 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +176.2162 339.9007 moveto +178.5577 338.8938 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +178.5577 338.8938 moveto +180.8992 337.9157 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +180.8992 337.9157 moveto +183.2406 336.9652 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +183.2406 336.9652 moveto +185.5821 336.0414 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +185.5821 336.0414 moveto +187.9236 335.1429 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +187.9236 335.1429 moveto +190.265 334.269 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +190.265 334.269 moveto +192.6065 333.4185 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +192.6065 333.4185 moveto +194.948 332.5905 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +194.948 332.5905 moveto +197.2895 331.7844 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +197.2895 331.7844 moveto +199.631 330.9992 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +199.631 330.9992 moveto +201.9724 330.2342 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +201.9724 330.2342 moveto +204.3139 329.4886 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +204.3139 329.4886 moveto +206.6553 328.762 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +206.6553 328.762 moveto +208.9968 328.0534 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +208.9968 328.0534 moveto +211.3383 327.3626 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +211.3383 327.3626 moveto +213.6798 326.6886 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +213.6798 326.6886 moveto +216.0212 326.0312 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +216.0212 326.0312 moveto +218.3627 325.3896 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +218.3627 325.3896 moveto +220.7042 324.7636 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +220.7042 324.7636 moveto +223.0457 324.1525 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +223.0457 324.1525 moveto +225.3871 323.556 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +225.3871 323.556 moveto +227.7286 322.9735 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +227.7286 322.9735 moveto +230.0701 322.4048 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +230.0701 322.4048 moveto +232.4115 321.8495 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +232.4115 321.8495 moveto +234.753 321.3072 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +234.753 321.3072 moveto +237.0945 320.7774 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +237.0945 320.7774 moveto +239.436 320.2599 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +239.436 320.2599 moveto +241.7774 319.7544 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +241.7774 319.7544 moveto +244.1189 319.2604 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +244.1189 319.2604 moveto +246.4604 318.7778 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +246.4604 318.7778 moveto +248.8019 318.3065 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +248.8019 318.3065 moveto +251.1433 317.8458 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +251.1433 317.8458 moveto +253.4848 317.3956 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +253.4848 317.3956 moveto +255.8263 316.9558 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +255.8263 316.9558 moveto +258.1677 316.5261 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +258.1677 316.5261 moveto +260.5092 316.1061 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +260.5092 316.1061 moveto +262.8507 315.6959 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +262.8507 315.6959 moveto +265.1921 315.2949 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +265.1921 315.2949 moveto +267.5336 314.9032 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +267.5336 314.9032 moveto +269.8751 314.5205 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +269.8751 314.5205 moveto +272.2166 314.1466 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +272.2166 314.1466 moveto +274.558 313.7814 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +274.558 313.7814 moveto +276.8995 313.4247 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +276.8995 313.4247 moveto +279.241 313.0761 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +279.241 313.0761 moveto +281.5825 312.7358 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +281.5825 312.7358 moveto +283.9239 312.4035 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +283.9239 312.4035 moveto +286.2654 312.079 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +286.2654 312.079 moveto +288.6069 311.7622 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +288.6069 311.7622 moveto +290.9483 311.453 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +290.9483 311.453 moveto +293.2898 311.1512 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +293.2898 311.1512 moveto +295.6313 310.8568 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +295.6313 310.8568 moveto +297.9727 310.5695 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +297.9727 310.5695 moveto +300.3142 310.2892 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +300.3142 310.2892 moveto +302.6557 310.0158 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +302.6557 310.0158 moveto +304.9972 309.7495 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +304.9972 309.7495 moveto +307.3386 309.4897 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +307.3386 309.4897 moveto +309.6801 309.2367 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +309.6801 309.2367 moveto +312.0216 308.9901 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +312.0216 308.9901 moveto +314.363 308.75 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +314.363 308.75 moveto +316.7046 308.5162 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +316.7046 308.5162 moveto +319.046 308.2887 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +319.046 308.2887 moveto +321.3875 308.0674 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +321.3875 308.0674 moveto +323.7289 307.8522 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +323.7289 307.8522 moveto +326.0704 307.643 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +326.0704 307.643 moveto +328.4119 307.4397 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +328.4119 307.4397 moveto +330.7533 307.2423 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +330.7533 307.2423 moveto +333.0948 307.0506 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +333.0948 307.0506 moveto +335.4363 306.8648 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +335.4363 306.8648 moveto +337.7778 306.6845 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +337.7778 306.6845 moveto +340.1192 306.5099 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +340.1192 306.5099 moveto +342.4607 306.3409 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +342.4607 306.3409 moveto +344.8022 306.1773 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +344.8022 306.1773 moveto +347.1436 306.0192 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +347.1436 306.0192 moveto +349.4851 305.8664 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +349.4851 305.8664 moveto +351.8266 305.719 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +351.8266 305.719 moveto +354.1681 305.5769 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +354.1681 305.5769 moveto +356.5096 305.4399 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +356.5096 305.4399 moveto +358.851 305.3081 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +358.851 305.3081 moveto +361.1925 305.1816 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +361.1925 305.1816 moveto +363.534 305.0601 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +363.534 305.0601 moveto +365.8754 304.9436 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +365.8754 304.9436 moveto +368.2169 304.8323 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +368.2169 304.8323 moveto +370.5583 304.7258 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +370.5583 304.7258 moveto +372.8998 304.6244 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +372.8998 304.6244 moveto +375.2413 304.5279 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +375.2413 304.5279 moveto +377.5828 304.4362 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +377.5828 304.4362 moveto +379.9243 304.3495 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +379.9243 304.3495 moveto +382.2657 304.2675 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +382.2657 304.2675 moveto +384.6072 304.1904 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +384.6072 304.1904 moveto +386.9487 304.118 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +386.9487 304.118 moveto +389.2901 304.0506 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +389.2901 304.0506 moveto +391.6316 303.9877 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +391.6316 303.9877 moveto +393.9731 303.9296 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +393.9731 303.9296 moveto +396.3145 303.8762 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +396.3145 303.8762 moveto +398.656 303.8276 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +398.656 303.8276 moveto +400.9975 303.7837 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +400.9975 303.7837 moveto +403.339 303.7443 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +403.339 303.7443 moveto +405.6804 303.7096 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +405.6804 303.7096 moveto +408.0219 303.6796 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +408.0219 303.6796 moveto +410.3634 303.6542 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +410.3634 303.6542 moveto +412.7048 303.6335 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +412.7048 303.6335 moveto +415.0464 303.6172 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +415.0464 303.6172 moveto +417.3878 303.6058 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +417.3878 303.6058 moveto +419.7292 303.5989 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +419.7292 303.5989 moveto +422.0708 303.5965 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +422.0708 303.5965 moveto +424.4122 303.5989 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +424.4122 303.5989 moveto +426.7537 303.6058 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +426.7537 303.6058 moveto +429.0952 303.6174 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +429.0952 303.6174 moveto +431.4366 303.6335 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +431.4366 303.6335 moveto +433.7781 303.6542 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +433.7781 303.6542 moveto +436.1196 303.6796 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +436.1196 303.6796 moveto +438.461 303.7097 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +438.461 303.7097 moveto +440.8025 303.7443 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +440.8025 303.7443 moveto +443.144 303.7837 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +443.144 303.7837 moveto +445.4854 303.8276 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +445.4854 303.8276 moveto +447.8269 303.8764 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +447.8269 303.8764 moveto +450.1684 303.9297 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +450.1684 303.9297 moveto +452.5099 303.9878 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +452.5099 303.9878 moveto +454.8513 304.0506 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +454.8513 304.0506 moveto +457.1928 304.1182 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +457.1928 304.1182 moveto +459.5343 304.1906 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +459.5343 304.1906 moveto +461.8757 304.2675 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +461.8757 304.2675 moveto +464.2172 304.3496 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +464.2172 304.3496 moveto +466.5587 304.4363 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +466.5587 304.4363 moveto +468.9001 304.528 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +468.9001 304.528 moveto +471.2416 304.6245 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +471.2416 304.6245 moveto +473.5831 304.726 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +473.5831 304.726 moveto +475.9246 304.8324 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +475.9246 304.8324 moveto +478.2661 304.9438 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +478.2661 304.9438 moveto +480.6075 305.0602 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +480.6075 305.0602 moveto +482.949 305.1817 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +482.949 305.1817 moveto +485.2905 305.3084 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +485.2905 305.3084 moveto +487.6319 305.4401 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +487.6319 305.4401 moveto +489.9734 305.577 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +489.9734 305.577 moveto +492.3149 305.7191 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +492.3149 305.7191 moveto +494.6563 305.8667 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +494.6563 305.8667 moveto +496.9979 306.0194 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +496.9979 306.0194 moveto +499.3393 306.1776 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +499.3393 306.1776 moveto +501.6808 306.3412 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +501.6808 306.3412 moveto +504.0223 306.5102 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +504.0223 306.5102 moveto +506.3637 306.6848 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +506.3637 306.6848 moveto +508.7052 306.8651 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +508.7052 306.8651 moveto +511.0467 307.0509 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +511.0467 307.0509 moveto +513.3881 307.2425 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +513.3881 307.2425 moveto +515.7296 307.44 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +515.7296 307.44 moveto +518.0711 307.6432 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +518.0711 307.6432 moveto +520.4125 307.8524 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +520.4125 307.8524 moveto +522.754 308.0677 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +522.754 308.0677 moveto +525.0955 308.289 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +525.0955 308.289 moveto +527.437 308.5165 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +527.437 308.5165 moveto +529.7784 308.7502 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +529.7784 308.7502 moveto +532.1199 308.9905 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +532.1199 308.9905 moveto +534.4614 309.237 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +534.4614 309.237 moveto +536.8029 309.4901 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +536.8029 309.4901 moveto +539.1443 309.7498 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +539.1443 309.7498 moveto +541.4858 310.0162 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +541.4858 310.0162 moveto +543.8273 310.2896 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +543.8273 310.2896 moveto +546.1687 310.5699 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +546.1687 310.5699 moveto +548.5102 310.8571 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +548.5102 310.8571 moveto +550.8517 311.1516 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +550.8517 311.1516 moveto +553.1932 311.4534 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +553.1932 311.4534 moveto +555.5346 311.7627 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +555.5346 311.7627 moveto +557.8761 312.0794 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +557.8761 312.0794 moveto +560.2176 312.4039 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +560.2176 312.4039 moveto +562.559 312.7363 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +562.559 312.7363 moveto +564.9005 313.0767 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +564.9005 313.0767 moveto +567.242 313.4251 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +567.242 313.4251 moveto +569.5834 313.782 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +569.5834 313.782 moveto +571.9249 314.1471 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +571.9249 314.1471 moveto +574.2664 314.521 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +574.2664 314.521 moveto +576.6078 314.9037 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +576.6078 314.9037 moveto +578.9493 315.2954 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +578.9493 315.2954 moveto +581.2908 315.6964 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +581.2908 315.6964 moveto +583.6323 316.1068 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +583.6323 316.1068 moveto +585.9738 316.5266 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +585.9738 316.5266 moveto +588.3152 316.9565 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +588.3152 316.9565 moveto +590.6567 317.3963 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +590.6567 317.3963 moveto +592.9982 317.8464 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +592.9982 317.8464 moveto +595.3396 318.307 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +595.3396 318.307 moveto +597.6811 318.7785 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +597.6811 318.7785 moveto +600.0226 319.2611 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +600.0226 319.2611 moveto +602.364 319.755 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +602.364 319.755 moveto +604.7055 320.2606 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +604.7055 320.2606 moveto +607.047 320.778 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +607.047 320.778 moveto +609.3885 321.3079 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +609.3885 321.3079 moveto +611.7299 321.8503 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +611.7299 321.8503 moveto +614.0714 322.4056 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +614.0714 322.4056 moveto +616.4129 322.9743 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +616.4129 322.9743 moveto +618.7543 323.5567 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +618.7543 323.5567 moveto +621.0958 324.1533 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +621.0958 324.1533 moveto +623.4373 324.7644 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +623.4373 324.7644 moveto +625.7787 325.3905 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +625.7787 325.3905 moveto +628.1203 326.032 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +628.1203 326.032 moveto +630.4617 326.6895 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +630.4617 326.6895 moveto +632.8032 327.3635 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +632.8032 327.3635 moveto +635.1447 328.0544 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +635.1447 328.0544 moveto +637.4861 328.7629 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +637.4861 328.7629 moveto +639.8276 329.4897 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +639.8276 329.4897 moveto +642.1691 330.2352 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +642.1691 330.2352 moveto +644.5105 331.0003 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +644.5105 331.0003 moveto +646.852 331.7855 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +646.852 331.7855 moveto +649.1935 332.5916 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +649.1935 332.5916 moveto +651.535 333.4195 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +651.535 333.4195 moveto +653.8764 334.2701 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +653.8764 334.2701 moveto +656.2179 335.1441 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +656.2179 335.1441 moveto +658.5593 336.0426 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +658.5593 336.0426 moveto +660.9008 336.9665 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +660.9008 336.9665 moveto +663.2423 337.917 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +663.2423 337.917 moveto +665.5837 338.8951 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +665.5837 338.8951 moveto +667.9252 339.9021 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +667.9252 339.9021 moveto +670.2667 340.9394 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +670.2667 340.9394 moveto +672.6082 342.0082 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +672.6082 342.0082 moveto +674.9496 343.1102 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +674.9496 343.1102 moveto +677.2912 344.2469 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +677.2912 344.2469 moveto +679.6326 345.4203 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +679.6326 345.4203 moveto +681.9741 346.6318 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +681.9741 346.6318 moveto +684.3156 347.8839 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +684.3156 347.8839 moveto +686.657 349.1784 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +686.657 349.1784 moveto +688.9985 350.5179 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +688.9985 350.5179 moveto +691.34 351.905 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +691.34 351.905 moveto +693.6815 353.3423 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +693.6815 353.3423 moveto +696.0229 354.8331 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +696.0229 354.8331 moveto +698.3644 356.3805 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +698.3644 356.3805 moveto +700.7059 357.9883 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +700.7059 357.9883 moveto +703.0473 359.6607 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +703.0473 359.6607 moveto +705.3888 361.4019 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +705.3888 361.4019 moveto +707.7303 363.2171 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +707.7303 363.2171 moveto +710.0717 365.1115 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +710.0717 365.1115 moveto +712.4133 367.0912 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +712.4133 367.0912 moveto +714.7547 369.1633 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +714.7547 369.1633 moveto +717.0961 371.3353 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +717.0961 371.3353 moveto +719.4376 373.6159 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +719.4376 373.6159 moveto +721.7791 376.0151 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +721.7791 376.0151 moveto +724.1205 378.5439 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +724.1205 378.5439 moveto +726.462 381.2154 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +726.462 381.2154 moveto +728.8035 384.0443 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +728.8035 384.0443 moveto +731.145 387.0482 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +731.145 387.0482 moveto +733.4865 390.2473 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +733.4865 390.2473 moveto +735.8279 393.666 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +735.8279 393.666 moveto +738.1694 397.3326 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +738.1694 397.3326 moveto +740.5109 401.2824 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +740.5109 401.2824 moveto +742.8524 405.5578 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +742.8524 405.5578 moveto +745.1938 410.2121 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +745.1938 410.2121 moveto +747.5353 415.3121 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +747.5353 415.3121 moveto +749.8768 420.9439 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +749.8768 420.9439 moveto +752.2182 427.2215 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +752.2182 427.2215 moveto +754.5597 434.2991 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +754.5597 434.2991 moveto +756.9012 442.3935 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +756.9012 442.3935 moveto +759.2426 451.8225 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +759.2426 451.8225 moveto +761.5842 463.0797 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +761.5842 463.0797 moveto +763.9256 476.9932 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +763.9256 476.9932 moveto +765.9095 492.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +80.21588 476.972 moveto +80.21588 476.972 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +82.55734 463.0629 moveto +82.55734 463.0629 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +84.89883 451.8087 moveto +84.89883 451.8087 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +87.2403 442.3817 moveto +87.2403 442.3817 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +89.58179 434.2889 moveto +89.58179 434.2889 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +91.92326 427.2125 moveto +91.92326 427.2125 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +94.26472 420.9358 moveto +94.26472 420.9358 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +96.60618 415.3048 moveto +96.60618 415.3048 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +98.94768 410.2055 moveto +98.94768 410.2055 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +101.2891 405.5519 moveto +101.2891 405.5519 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +103.6306 401.2768 moveto +103.6306 401.2768 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +105.9721 397.3275 moveto +105.9721 397.3275 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +108.3136 393.6611 moveto +108.3136 393.6611 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +110.655 390.2429 moveto +110.655 390.2429 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +112.9965 387.044 moveto +112.9965 387.044 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +115.338 384.0404 moveto +115.338 384.0404 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +117.6794 381.2116 moveto +117.6794 381.2116 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +120.0209 378.5404 moveto +120.0209 378.5404 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +122.3624 376.0118 moveto +122.3624 376.0118 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +124.7038 373.6128 moveto +124.7038 373.6128 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +127.0453 371.3323 moveto +127.0453 371.3323 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +129.3868 369.1604 moveto +129.3868 369.1604 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +131.7283 367.0885 moveto +131.7283 367.0885 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +134.0697 365.1088 moveto +134.0697 365.1088 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +136.4112 363.2146 moveto +136.4112 363.2146 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +138.7527 361.3995 moveto +138.7527 361.3995 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +141.0941 359.6583 moveto +141.0941 359.6583 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +143.4356 357.9862 moveto +143.4356 357.9862 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +145.7771 356.3784 moveto +145.7771 356.3784 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +148.1186 354.8309 moveto +148.1186 354.8309 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +150.4601 353.3403 moveto +150.4601 353.3403 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +152.8015 351.903 moveto +152.8015 351.903 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +155.143 350.516 moveto +155.143 350.516 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +157.4845 349.1765 moveto +157.4845 349.1765 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +159.8259 347.8821 moveto +159.8259 347.8821 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +162.1674 346.6301 moveto +162.1674 346.6301 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +164.5089 345.4187 moveto +164.5089 345.4187 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +166.8503 344.2455 moveto +166.8503 344.2455 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +169.1918 343.1088 moveto +169.1918 343.1088 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +171.5333 342.0068 moveto +171.5333 342.0068 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +173.8747 340.938 moveto +173.8747 340.938 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +176.2162 339.9007 moveto +176.2162 339.9007 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +178.5577 338.8938 moveto +178.5577 338.8938 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +180.8992 337.9157 moveto +180.8992 337.9157 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +183.2406 336.9652 moveto +183.2406 336.9652 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +185.5821 336.0414 moveto +185.5821 336.0414 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +187.9236 335.1429 moveto +187.9236 335.1429 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +190.265 334.269 moveto +190.265 334.269 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +192.6065 333.4185 moveto +192.6065 333.4185 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +194.948 332.5905 moveto +194.948 332.5905 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +197.2895 331.7844 moveto +197.2895 331.7844 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +199.631 330.9992 moveto +199.631 330.9992 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +201.9724 330.2342 moveto +201.9724 330.2342 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +204.3139 329.4886 moveto +204.3139 329.4886 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +206.6553 328.762 moveto +206.6553 328.762 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +208.9968 328.0534 moveto +208.9968 328.0534 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +211.3383 327.3626 moveto +211.3383 327.3626 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +213.6798 326.6886 moveto +213.6798 326.6886 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +216.0212 326.0312 moveto +216.0212 326.0312 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +218.3627 325.3896 moveto +218.3627 325.3896 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +220.7042 324.7636 moveto +220.7042 324.7636 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +223.0457 324.1525 moveto +223.0457 324.1525 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +225.3871 323.556 moveto +225.3871 323.556 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +227.7286 322.9735 moveto +227.7286 322.9735 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +230.0701 322.4048 moveto +230.0701 322.4048 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +232.4115 321.8495 moveto +232.4115 321.8495 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +234.753 321.3072 moveto +234.753 321.3072 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +237.0945 320.7774 moveto +237.0945 320.7774 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +239.436 320.2599 moveto +239.436 320.2599 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +241.7774 319.7544 moveto +241.7774 319.7544 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +244.1189 319.2604 moveto +244.1189 319.2604 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +246.4604 318.7778 moveto +246.4604 318.7778 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +248.8019 318.3065 moveto +248.8019 318.3065 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +251.1433 317.8458 moveto +251.1433 317.8458 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +253.4848 317.3956 moveto +253.4848 317.3956 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +255.8263 316.9558 moveto +255.8263 316.9558 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +258.1677 316.5261 moveto +258.1677 316.5261 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +260.5092 316.1061 moveto +260.5092 316.1061 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +262.8507 315.6959 moveto +262.8507 315.6959 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +265.1921 315.2949 moveto +265.1921 315.2949 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +267.5336 314.9032 moveto +267.5336 314.9032 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +269.8751 314.5205 moveto +269.8751 314.5205 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +272.2166 314.1466 moveto +272.2166 314.1466 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +274.558 313.7814 moveto +274.558 313.7814 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +276.8995 313.4247 moveto +276.8995 313.4247 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +279.241 313.0761 moveto +279.241 313.0761 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +281.5825 312.7358 moveto +281.5825 312.7358 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +283.9239 312.4035 moveto +283.9239 312.4035 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +286.2654 312.079 moveto +286.2654 312.079 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +288.6069 311.7622 moveto +288.6069 311.7622 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +290.9483 311.453 moveto +290.9483 311.453 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +293.2898 311.1512 moveto +293.2898 311.1512 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +295.6313 310.8568 moveto +295.6313 310.8568 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +297.9727 310.5695 moveto +297.9727 310.5695 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +300.3142 310.2892 moveto +300.3142 310.2892 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +302.6557 310.0158 moveto +302.6557 310.0158 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +304.9972 309.7495 moveto +304.9972 309.7495 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +307.3386 309.4897 moveto +307.3386 309.4897 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +309.6801 309.2367 moveto +309.6801 309.2367 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +312.0216 308.9901 moveto +312.0216 308.9901 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +314.363 308.75 moveto +314.363 308.75 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +316.7046 308.5162 moveto +316.7046 308.5162 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +319.046 308.2887 moveto +319.046 308.2887 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +321.3875 308.0674 moveto +321.3875 308.0674 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +323.7289 307.8522 moveto +323.7289 307.8522 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +326.0704 307.643 moveto +326.0704 307.643 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +328.4119 307.4397 moveto +328.4119 307.4397 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +330.7533 307.2423 moveto +330.7533 307.2423 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +333.0948 307.0506 moveto +333.0948 307.0506 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +335.4363 306.8648 moveto +335.4363 306.8648 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +337.7778 306.6845 moveto +337.7778 306.6845 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +340.1192 306.5099 moveto +340.1192 306.5099 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +342.4607 306.3409 moveto +342.4607 306.3409 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +344.8022 306.1773 moveto +344.8022 306.1773 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +347.1436 306.0192 moveto +347.1436 306.0192 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +349.4851 305.8664 moveto +349.4851 305.8664 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +351.8266 305.719 moveto +351.8266 305.719 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +354.1681 305.5769 moveto +354.1681 305.5769 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +356.5096 305.4399 moveto +356.5096 305.4399 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +358.851 305.3081 moveto +358.851 305.3081 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +361.1925 305.1816 moveto +361.1925 305.1816 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +363.534 305.0601 moveto +363.534 305.0601 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +365.8754 304.9436 moveto +365.8754 304.9436 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +368.2169 304.8323 moveto +368.2169 304.8323 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +370.5583 304.7258 moveto +370.5583 304.7258 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +372.8998 304.6244 moveto +372.8998 304.6244 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +375.2413 304.5279 moveto +375.2413 304.5279 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +377.5828 304.4362 moveto +377.5828 304.4362 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +379.9243 304.3495 moveto +379.9243 304.3495 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +382.2657 304.2675 moveto +382.2657 304.2675 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +384.6072 304.1904 moveto +384.6072 304.1904 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +386.9487 304.118 moveto +386.9487 304.118 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +389.2901 304.0506 moveto +389.2901 304.0506 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +391.6316 303.9877 moveto +391.6316 303.9877 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +393.9731 303.9296 moveto +393.9731 303.9296 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +396.3145 303.8762 moveto +396.3145 303.8762 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +398.656 303.8276 moveto +398.656 303.8276 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +400.9975 303.7837 moveto +400.9975 303.7837 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +403.339 303.7443 moveto +403.339 303.7443 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +405.6804 303.7096 moveto +405.6804 303.7096 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +408.0219 303.6796 moveto +408.0219 303.6796 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +410.3634 303.6542 moveto +410.3634 303.6542 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +412.7048 303.6335 moveto +412.7048 303.6335 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +415.0464 303.6172 moveto +415.0464 303.6172 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +417.3878 303.6058 moveto +417.3878 303.6058 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +419.7292 303.5989 moveto +419.7292 303.5989 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +422.0708 303.5965 moveto +422.0708 303.5965 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +424.4122 303.5989 moveto +424.4122 303.5989 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +426.7537 303.6058 moveto +426.7537 303.6058 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +429.0952 303.6174 moveto +429.0952 303.6174 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +431.4366 303.6335 moveto +431.4366 303.6335 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +433.7781 303.6542 moveto +433.7781 303.6542 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +436.1196 303.6796 moveto +436.1196 303.6796 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +438.461 303.7097 moveto +438.461 303.7097 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +440.8025 303.7443 moveto +440.8025 303.7443 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +443.144 303.7837 moveto +443.144 303.7837 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +445.4854 303.8276 moveto +445.4854 303.8276 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +447.8269 303.8764 moveto +447.8269 303.8764 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +450.1684 303.9297 moveto +450.1684 303.9297 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +452.5099 303.9878 moveto +452.5099 303.9878 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +454.8513 304.0506 moveto +454.8513 304.0506 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +457.1928 304.1182 moveto +457.1928 304.1182 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +459.5343 304.1906 moveto +459.5343 304.1906 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +461.8757 304.2675 moveto +461.8757 304.2675 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +464.2172 304.3496 moveto +464.2172 304.3496 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +466.5587 304.4363 moveto +466.5587 304.4363 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +468.9001 304.528 moveto +468.9001 304.528 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +471.2416 304.6245 moveto +471.2416 304.6245 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +473.5831 304.726 moveto +473.5831 304.726 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +475.9246 304.8324 moveto +475.9246 304.8324 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +478.2661 304.9438 moveto +478.2661 304.9438 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +480.6075 305.0602 moveto +480.6075 305.0602 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +482.949 305.1817 moveto +482.949 305.1817 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +485.2905 305.3084 moveto +485.2905 305.3084 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +487.6319 305.4401 moveto +487.6319 305.4401 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +489.9734 305.577 moveto +489.9734 305.577 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +492.3149 305.7191 moveto +492.3149 305.7191 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +494.6563 305.8667 moveto +494.6563 305.8667 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +496.9979 306.0194 moveto +496.9979 306.0194 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +499.3393 306.1776 moveto +499.3393 306.1776 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +501.6808 306.3412 moveto +501.6808 306.3412 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +504.0223 306.5102 moveto +504.0223 306.5102 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +506.3637 306.6848 moveto +506.3637 306.6848 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +508.7052 306.8651 moveto +508.7052 306.8651 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +511.0467 307.0509 moveto +511.0467 307.0509 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +513.3881 307.2425 moveto +513.3881 307.2425 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +515.7296 307.44 moveto +515.7296 307.44 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +518.0711 307.6432 moveto +518.0711 307.6432 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +520.4125 307.8524 moveto +520.4125 307.8524 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +522.754 308.0677 moveto +522.754 308.0677 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +525.0955 308.289 moveto +525.0955 308.289 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +527.437 308.5165 moveto +527.437 308.5165 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +529.7784 308.7502 moveto +529.7784 308.7502 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +532.1199 308.9905 moveto +532.1199 308.9905 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +534.4614 309.237 moveto +534.4614 309.237 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +536.8029 309.4901 moveto +536.8029 309.4901 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +539.1443 309.7498 moveto +539.1443 309.7498 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +541.4858 310.0162 moveto +541.4858 310.0162 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +543.8273 310.2896 moveto +543.8273 310.2896 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +546.1687 310.5699 moveto +546.1687 310.5699 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +548.5102 310.8571 moveto +548.5102 310.8571 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +550.8517 311.1516 moveto +550.8517 311.1516 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +553.1932 311.4534 moveto +553.1932 311.4534 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +555.5346 311.7627 moveto +555.5346 311.7627 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +557.8761 312.0794 moveto +557.8761 312.0794 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +560.2176 312.4039 moveto +560.2176 312.4039 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +562.559 312.7363 moveto +562.559 312.7363 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +564.9005 313.0767 moveto +564.9005 313.0767 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +567.242 313.4251 moveto +567.242 313.4251 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +569.5834 313.782 moveto +569.5834 313.782 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +571.9249 314.1471 moveto +571.9249 314.1471 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +574.2664 314.521 moveto +574.2664 314.521 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +576.6078 314.9037 moveto +576.6078 314.9037 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +578.9493 315.2954 moveto +578.9493 315.2954 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +581.2908 315.6964 moveto +581.2908 315.6964 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +583.6323 316.1068 moveto +583.6323 316.1068 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +585.9738 316.5266 moveto +585.9738 316.5266 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +588.3152 316.9565 moveto +588.3152 316.9565 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +590.6567 317.3963 moveto +590.6567 317.3963 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +592.9982 317.8464 moveto +592.9982 317.8464 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +595.3396 318.307 moveto +595.3396 318.307 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +597.6811 318.7785 moveto +597.6811 318.7785 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +600.0226 319.2611 moveto +600.0226 319.2611 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +602.364 319.755 moveto +602.364 319.755 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +604.7055 320.2606 moveto +604.7055 320.2606 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +607.047 320.778 moveto +607.047 320.778 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +609.3885 321.3079 moveto +609.3885 321.3079 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +611.7299 321.8503 moveto +611.7299 321.8503 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +614.0714 322.4056 moveto +614.0714 322.4056 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +616.4129 322.9743 moveto +616.4129 322.9743 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +618.7543 323.5567 moveto +618.7543 323.5567 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +621.0958 324.1533 moveto +621.0958 324.1533 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +623.4373 324.7644 moveto +623.4373 324.7644 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +625.7787 325.3905 moveto +625.7787 325.3905 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +628.1203 326.032 moveto +628.1203 326.032 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +630.4617 326.6895 moveto +630.4617 326.6895 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +632.8032 327.3635 moveto +632.8032 327.3635 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +635.1447 328.0544 moveto +635.1447 328.0544 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +637.4861 328.7629 moveto +637.4861 328.7629 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +639.8276 329.4897 moveto +639.8276 329.4897 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +642.1691 330.2352 moveto +642.1691 330.2352 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +644.5105 331.0003 moveto +644.5105 331.0003 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +646.852 331.7855 moveto +646.852 331.7855 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +649.1935 332.5916 moveto +649.1935 332.5916 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +651.535 333.4195 moveto +651.535 333.4195 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +653.8764 334.2701 moveto +653.8764 334.2701 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +656.2179 335.1441 moveto +656.2179 335.1441 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +658.5593 336.0426 moveto +658.5593 336.0426 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +660.9008 336.9665 moveto +660.9008 336.9665 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +663.2423 337.917 moveto +663.2423 337.917 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +665.5837 338.8951 moveto +665.5837 338.8951 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +667.9252 339.9021 moveto +667.9252 339.9021 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +670.2667 340.9394 moveto +670.2667 340.9394 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +672.6082 342.0082 moveto +672.6082 342.0082 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +674.9496 343.1102 moveto +674.9496 343.1102 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +677.2912 344.2469 moveto +677.2912 344.2469 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +679.6326 345.4203 moveto +679.6326 345.4203 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +681.9741 346.6318 moveto +681.9741 346.6318 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +684.3156 347.8839 moveto +684.3156 347.8839 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +686.657 349.1784 moveto +686.657 349.1784 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +688.9985 350.5179 moveto +688.9985 350.5179 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +691.34 351.905 moveto +691.34 351.905 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +693.6815 353.3423 moveto +693.6815 353.3423 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +696.0229 354.8331 moveto +696.0229 354.8331 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +698.3644 356.3805 moveto +698.3644 356.3805 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +700.7059 357.9883 moveto +700.7059 357.9883 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +703.0473 359.6607 moveto +703.0473 359.6607 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +705.3888 361.4019 moveto +705.3888 361.4019 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +707.7303 363.2171 moveto +707.7303 363.2171 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +710.0717 365.1115 moveto +710.0717 365.1115 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +712.4133 367.0912 moveto +712.4133 367.0912 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +714.7547 369.1633 moveto +714.7547 369.1633 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +717.0961 371.3353 moveto +717.0961 371.3353 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +719.4376 373.6159 moveto +719.4376 373.6159 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +721.7791 376.0151 moveto +721.7791 376.0151 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +724.1205 378.5439 moveto +724.1205 378.5439 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +726.462 381.2154 moveto +726.462 381.2154 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +728.8035 384.0443 moveto +728.8035 384.0443 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +731.145 387.0482 moveto +731.145 387.0482 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +733.4865 390.2473 moveto +733.4865 390.2473 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +735.8279 393.666 moveto +735.8279 393.666 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +738.1694 397.3326 moveto +738.1694 397.3326 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +740.5109 401.2824 moveto +740.5109 401.2824 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +742.8524 405.5578 moveto +742.8524 405.5578 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +745.1938 410.2121 moveto +745.1938 410.2121 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +747.5353 415.3121 moveto +747.5353 415.3121 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +749.8768 420.9439 moveto +749.8768 420.9439 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +752.2182 427.2215 moveto +752.2182 427.2215 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +754.5597 434.2991 moveto +754.5597 434.2991 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +756.9012 442.3935 moveto +756.9012 442.3935 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +759.2426 451.8225 moveto +759.2426 451.8225 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +761.5842 463.0797 moveto +761.5842 463.0797 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +763.9256 476.9932 moveto +763.9256 476.9932 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +newpath +537.3736 457.0182 moveto +665.3736 457.0182 lineto +665.3736 357.0182 lineto +537.3736 357.0182 lineto +0.5 setlinewidth +[] 0 setdash +1 1 1 setrgbcolor +closepath +fill +newpath +537.3736 457.0182 moveto +665.3736 457.0182 lineto +665.3736 357.0182 lineto +537.3736 357.0182 lineto +0.5 setlinewidth +[] 0 setdash +1 1 1 setrgbcolor +closepath +stroke +newpath +537.3736 457.0182 moveto +664.6236 457.0182 lineto +664.6236 357.7682 lineto +537.3736 357.7682 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +closepath +stroke +/Arial findfont +14 scalefont +setfont +0 0 0 setrgbcolor +newpath +592.3736 431.2682 moveto +(phi = 0.1) show +547.3736 437.0182 moveto +582.3736 437.0182 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +564.8736 437.0182 moveto +564.8736 437.0182 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +/Arial findfont +14 scalefont +setfont +0 0 0 setrgbcolor +newpath +592.3736 411.2682 moveto +(phi = 0.75) show +547.3736 417.0182 moveto +582.3736 417.0182 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +564.8736 417.0182 moveto +564.8736 417.0182 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +/Arial findfont +14 scalefont +setfont +0 0 0 setrgbcolor +newpath +592.3736 391.2682 moveto +(phi = 1.25) show +547.3736 397.0182 moveto +582.3736 397.0182 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +564.8736 397.0182 moveto +564.8736 397.0182 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +/Arial findfont +14 scalefont +setfont +0 0 0 setrgbcolor +newpath +592.3736 371.2682 moveto +(phi = PI/2) show +547.3736 377.0182 moveto +582.3736 377.0182 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +564.8736 377.0182 moveto +564.8736 377.0182 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +showpage diff --git a/doc/graphs/ellint_1.rgd b/doc/graphs/ellint_1.rgd new file mode 100644 index 000000000..d53c5649d --- /dev/null +++ b/doc/graphs/ellint_1.rgd @@ -0,0 +1,1845 @@ +[RJS Graph Data File] + +[Header] +Version=3 +Revision=1 +[End Header] + +[Data] +Row 1 Col 1="-0.99999" +Row 1 Col 2="0.1001671" +Row 1 Col 3="0.8321665" +Row 1 Col 4="1.82143" +Row 1 Col 5="6.795536" +Row 2 Col 1="-0.9933234" +Row 2 Col 2="0.1001649" +Row 2 Col 3="0.8307086" +Row 2 Col 4="1.796937" +Row 2 Col 5="3.554495" +Row 3 Col 1="-0.9866567" +Row 3 Col 2="0.1001626" +Row 3 Col 3="0.8292746" +Row 3 Col 4="1.774641" +Row 3 Col 5="3.216233" +Row 4 Col 1="-0.9799901" +Row 4 Col 2="0.1001604" +Row 4 Col 3="0.8278642" +Row 4 Col 4="1.754179" +Row 4 Col 5="3.020744" +Row 5 Col 1="-0.9733235" +Row 5 Col 2="0.1001583" +Row 5 Col 3="0.8264766" +Row 5 Col 4="1.735275" +Row 5 Col 5="2.883561" +Row 6 Col 1="-0.9666569" +Row 6 Col 2="0.1001561" +Row 6 Col 3="0.8251114" +Row 6 Col 4="1.717712" +Row 6 Col 5="2.778244" +Row 7 Col 1="-0.9599902" +Row 7 Col 2="0.1001539" +Row 7 Col 3="0.823768" +Row 7 Col 4="1.701317" +Row 7 Col 5="2.693029" +Row 8 Col 1="-0.9533236" +Row 8 Col 2="0.1001518" +Row 8 Col 3="0.8224461" +Row 8 Col 4="1.685948" +Row 8 Col 5="2.62165" +Row 9 Col 1="-0.9466569" +Row 9 Col 2="0.1001497" +Row 9 Col 3="0.8211451" +Row 9 Col 4="1.671489" +Row 9 Col 5="2.560373" +Row 10 Col 1="-0.9399903" +Row 10 Col 2="0.1001476" +Row 10 Col 3="0.8198645" +Row 10 Col 4="1.657843" +Row 10 Col 5="2.506792" +Row 11 Col 1="-0.9333237" +Row 11 Col 2="0.1001455" +Row 11 Col 3="0.818604" +Row 11 Col 4="1.644928" +Row 11 Col 5="2.459266" +Row 12 Col 1="-0.9266571" +Row 12 Col 2="0.1001434" +Row 12 Col 3="0.8173631" +Row 12 Col 4="1.632674" +Row 12 Col 5="2.416629" +Row 13 Col 1="-0.9199904" +Row 13 Col 2="0.1001413" +Row 13 Col 3="0.8161414" +Row 13 Col 4="1.62102" +Row 13 Col 5="2.378018" +Row 14 Col 1="-0.9133238" +Row 14 Col 2="0.1001393" +Row 14 Col 3="0.8149386" +Row 14 Col 4="1.609915" +Row 14 Col 5="2.342782" +Row 15 Col 1="-0.9066572" +Row 15 Col 2="0.1001372" +Row 15 Col 3="0.8137541" +Row 15 Col 4="1.599313" +Row 15 Col 5="2.310412" +Row 16 Col 1="-0.8999906" +Row 16 Col 2="0.1001352" +Row 16 Col 3="0.8125878" +Row 16 Col 4="1.589174" +Row 16 Col 5="2.280508" +Row 17 Col 1="-0.8933239" +Row 17 Col 2="0.1001332" +Row 17 Col 3="0.8114392" +Row 17 Col 4="1.579462" +Row 17 Col 5="2.252747" +Row 18 Col 1="-0.8866573" +Row 18 Col 2="0.1001312" +Row 18 Col 3="0.810308" +Row 18 Col 4="1.570147" +Row 18 Col 5="2.226865" +Row 19 Col 1="-0.8799906" +Row 19 Col 2="0.1001293" +Row 19 Col 3="0.8091938" +Row 19 Col 4="1.5612" +Row 19 Col 5="2.202644" +Row 20 Col 1="-0.873324" +Row 20 Col 2="0.1001273" +Row 20 Col 3="0.8080964" +Row 20 Col 4="1.552596" +Row 20 Col 5="2.179901" +Row 21 Col 1="-0.8666574" +Row 21 Col 2="0.1001254" +Row 21 Col 3="0.8070153" +Row 21 Col 4="1.544314" +Row 21 Col 5="2.158482" +Row 22 Col 1="-0.8599908" +Row 22 Col 2="0.1001234" +Row 22 Col 3="0.8059504" +Row 22 Col 4="1.536331" +Row 22 Col 5="2.138256" +Row 23 Col 1="-0.8533241" +Row 23 Col 2="0.1001215" +Row 23 Col 3="0.8049013" +Row 23 Col 4="1.528631" +Row 23 Col 5="2.11911" +Row 24 Col 1="-0.8466575" +Row 24 Col 2="0.1001196" +Row 24 Col 3="0.8038678" +Row 24 Col 4="1.521196" +Row 24 Col 5="2.100945" +Row 25 Col 1="-0.8399909" +Row 25 Col 2="0.1001177" +Row 25 Col 3="0.8028495" +Row 25 Col 4="1.514012" +Row 25 Col 5="2.083678" +Row 26 Col 1="-0.8333243" +Row 26 Col 2="0.1001159" +Row 26 Col 3="0.8018462" +Row 26 Col 4="1.507063" +Row 26 Col 5="2.067233" +Row 27 Col 1="-0.8266576" +Row 27 Col 2="0.100114" +Row 27 Col 3="0.8008577" +Row 27 Col 4="1.500338" +Row 27 Col 5="2.051545" +Row 28 Col 1="-0.819991" +Row 28 Col 2="0.1001122" +Row 28 Col 3="0.7998837" +Row 28 Col 4="1.493824" +Row 28 Col 5="2.036555" +Row 29 Col 1="-0.8133243" +Row 29 Col 2="0.1001104" +Row 29 Col 3="0.7989239" +Row 29 Col 4="1.487511" +Row 29 Col 5="2.022212" +Row 30 Col 1="-0.8066577" +Row 30 Col 2="0.1001086" +Row 30 Col 3="0.7979781" +Row 30 Col 4="1.481388" +Row 30 Col 5="2.008469" +Row 31 Col 1="-0.7999911" +Row 31 Col 2="0.1001068" +Row 31 Col 3="0.7970461" +Row 31 Col 4="1.475448" +Row 31 Col 5="1.995285" +Row 32 Col 1="-0.7933245" +Row 32 Col 2="0.100105" +Row 32 Col 3="0.7961277" +Row 32 Col 4="1.469679" +Row 32 Col 5="1.982624" +Row 33 Col 1="-0.7866578" +Row 33 Col 2="0.1001032" +Row 33 Col 3="0.7952226" +Row 33 Col 4="1.464076" +Row 33 Col 5="1.97045" +Row 34 Col 1="-0.7799912" +Row 34 Col 2="0.1001015" +Row 34 Col 3="0.7943306" +Row 34 Col 4="1.458631" +Row 34 Col 5="1.958733" +Row 35 Col 1="-0.7733245" +Row 35 Col 2="0.1000997" +Row 35 Col 3="0.7934516" +Row 35 Col 4="1.453336" +Row 35 Col 5="1.947446" +Row 36 Col 1="-0.7666579" +Row 36 Col 2="0.100098" +Row 36 Col 3="0.7925853" +Row 36 Col 4="1.448185" +Row 36 Col 5="1.936563" +Row 37 Col 1="-0.7599913" +Row 37 Col 2="0.1000963" +Row 37 Col 3="0.7917315" +Row 37 Col 4="1.443172" +Row 37 Col 5="1.926061" +Row 38 Col 1="-0.7533247" +Row 38 Col 2="0.1000946" +Row 38 Col 3="0.7908901" +Row 38 Col 4="1.438291" +Row 38 Col 5="1.915919" +Row 39 Col 1="-0.7466581" +Row 39 Col 2="0.100093" +Row 39 Col 3="0.7900608" +Row 39 Col 4="1.433538" +Row 39 Col 5="1.906118" +Row 40 Col 1="-0.7399914" +Row 40 Col 2="0.1000913" +Row 40 Col 3="0.7892436" +Row 40 Col 4="1.428906" +Row 40 Col 5="1.896638" +Row 41 Col 1="-0.7333248" +Row 41 Col 2="0.1000897" +Row 41 Col 3="0.7884381" +Row 41 Col 4="1.424392" +Row 41 Col 5="1.887465" +Row 42 Col 1="-0.7266582" +Row 42 Col 2="0.100088" +Row 42 Col 3="0.7876443" +Row 42 Col 4="1.419992" +Row 42 Col 5="1.878582" +Row 43 Col 1="-0.7199916" +Row 43 Col 2="0.1000864" +Row 43 Col 3="0.7868619" +Row 43 Col 4="1.4157" +Row 43 Col 5="1.869975" +Row 44 Col 1="-0.7133249" +Row 44 Col 2="0.1000848" +Row 44 Col 3="0.7860909" +Row 44 Col 4="1.411513" +Row 44 Col 5="1.861631" +Row 45 Col 1="-0.7066583" +Row 45 Col 2="0.1000832" +Row 45 Col 3="0.7853311" +Row 45 Col 4="1.407427" +Row 45 Col 5="1.853538" +Row 46 Col 1="-0.6999916" +Row 46 Col 2="0.1000817" +Row 46 Col 3="0.7845822" +Row 46 Col 4="1.403439" +Row 46 Col 5="1.845684" +Row 47 Col 1="-0.693325" +Row 47 Col 2="0.1000801" +Row 47 Col 3="0.7838442" +Row 47 Col 4="1.399546" +Row 47 Col 5="1.83806" +Row 48 Col 1="-0.6866584" +Row 48 Col 2="0.1000786" +Row 48 Col 3="0.783117" +Row 48 Col 4="1.395744" +Row 48 Col 5="1.830654" +Row 49 Col 1="-0.6799918" +Row 49 Col 2="0.1000771" +Row 49 Col 3="0.7824003" +Row 49 Col 4="1.39203" +Row 49 Col 5="1.823457" +Row 50 Col 1="-0.6733251" +Row 50 Col 2="0.1000756" +Row 50 Col 3="0.781694" +Row 50 Col 4="1.388401" +Row 50 Col 5="1.816462" +Row 51 Col 1="-0.6666585" +Row 51 Col 2="0.1000741" +Row 51 Col 3="0.7809981" +Row 51 Col 4="1.384856" +Row 51 Col 5="1.809659" +Row 52 Col 1="-0.6599919" +Row 52 Col 2="0.1000726" +Row 52 Col 3="0.7803123" +Row 52 Col 4="1.381391" +Row 52 Col 5="1.803042" +Row 53 Col 1="-0.6533253" +Row 53 Col 2="0.1000711" +Row 53 Col 3="0.7796366" +Row 53 Col 4="1.378004" +Row 53 Col 5="1.796602" +Row 54 Col 1="-0.6466586" +Row 54 Col 2="0.1000697" +Row 54 Col 3="0.7789708" +Row 54 Col 4="1.374692" +Row 54 Col 5="1.790333" +Row 55 Col 1="-0.639992" +Row 55 Col 2="0.1000683" +Row 55 Col 3="0.7783148" +Row 55 Col 4="1.371453" +Row 55 Col 5="1.784229" +Row 56 Col 1="-0.6333253" +Row 56 Col 2="0.1000668" +Row 56 Col 3="0.7776685" +Row 56 Col 4="1.368286" +Row 56 Col 5="1.778284" +Row 57 Col 1="-0.6266587" +Row 57 Col 2="0.1000654" +Row 57 Col 3="0.7770318" +Row 57 Col 4="1.365188" +Row 57 Col 5="1.772491" +Row 58 Col 1="-0.6199921" +Row 58 Col 2="0.100064" +Row 58 Col 3="0.7764045" +Row 58 Col 4="1.362158" +Row 58 Col 5="1.766846" +Row 59 Col 1="-0.6133255" +Row 59 Col 2="0.1000627" +Row 59 Col 3="0.7757866" +Row 59 Col 4="1.359193" +Row 59 Col 5="1.761344" +Row 60 Col 1="-0.6066588" +Row 60 Col 2="0.1000613" +Row 60 Col 3="0.775178" +Row 60 Col 4="1.356291" +Row 60 Col 5="1.755979" +Row 61 Col 1="-0.5999922" +Row 61 Col 2="0.10006" +Row 61 Col 3="0.7745784" +Row 61 Col 4="1.353452" +Row 61 Col 5="1.750748" +Row 62 Col 1="-0.5933256" +Row 62 Col 2="0.1000586" +Row 62 Col 3="0.7739879" +Row 62 Col 4="1.350673" +Row 62 Col 5="1.745645" +Row 63 Col 1="-0.586659" +Row 63 Col 2="0.1000573" +Row 63 Col 3="0.7734064" +Row 63 Col 4="1.347954" +Row 63 Col 5="1.740667" +Row 64 Col 1="-0.5799923" +Row 64 Col 2="0.100056" +Row 64 Col 3="0.7728337" +Row 64 Col 4="1.345291" +Row 64 Col 5="1.735809" +Row 65 Col 1="-0.5733257" +Row 65 Col 2="0.1000548" +Row 65 Col 3="0.7722697" +Row 65 Col 4="1.342685" +Row 65 Col 5="1.731069" +Row 66 Col 1="-0.566659" +Row 66 Col 2="0.1000535" +Row 66 Col 3="0.7717144" +Row 66 Col 4="1.340134" +Row 66 Col 5="1.726442" +Row 67 Col 1="-0.5599924" +Row 67 Col 2="0.1000522" +Row 67 Col 3="0.7711676" +Row 67 Col 4="1.337636" +Row 67 Col 5="1.721925" +Row 68 Col 1="-0.5533258" +Row 68 Col 2="0.100051" +Row 68 Col 3="0.7706294" +Row 68 Col 4="1.33519" +Row 68 Col 5="1.717515" +Row 69 Col 1="-0.5466592" +Row 69 Col 2="0.1000498" +Row 69 Col 3="0.7700995" +Row 69 Col 4="1.332795" +Row 69 Col 5="1.713209" +Row 70 Col 1="-0.5399925" +Row 70 Col 2="0.1000486" +Row 70 Col 3="0.7695779" +Row 70 Col 4="1.33045" +Row 70 Col 5="1.709004" +Row 71 Col 1="-0.5333259" +Row 71 Col 2="0.1000474" +Row 71 Col 3="0.7690646" +Row 71 Col 4="1.328154" +Row 71 Col 5="1.704898" +Row 72 Col 1="-0.5266593" +Row 72 Col 2="0.1000462" +Row 72 Col 3="0.7685594" +Row 72 Col 4="1.325905" +Row 72 Col 5="1.700886" +Row 73 Col 1="-0.5199926" +Row 73 Col 2="0.100045" +Row 73 Col 3="0.7680623" +Row 73 Col 4="1.323703" +Row 73 Col 5="1.696968" +Row 74 Col 1="-0.513326" +Row 74 Col 2="0.1000439" +Row 74 Col 3="0.7675731" +Row 74 Col 4="1.321547" +Row 74 Col 5="1.69314" +Row 75 Col 1="-0.5066594" +Row 75 Col 2="0.1000427" +Row 75 Col 3="0.7670919" +Row 75 Col 4="1.319436" +Row 75 Col 5="1.6894" +Row 76 Col 1="-0.4999928" +Row 76 Col 2="0.1000416" +Row 76 Col 3="0.7666185" +Row 76 Col 4="1.317369" +Row 76 Col 5="1.685746" +Row 77 Col 1="-0.4933261" +Row 77 Col 2="0.1000405" +Row 77 Col 3="0.7661529" +Row 77 Col 4="1.315344" +Row 77 Col 5="1.682177" +Row 78 Col 1="-0.4866595" +Row 78 Col 2="0.1000394" +Row 78 Col 3="0.765695" +Row 78 Col 4="1.313362" +Row 78 Col 5="1.678689" +Row 79 Col 1="-0.4799929" +Row 79 Col 2="0.1000384" +Row 79 Col 3="0.7652448" +Row 79 Col 4="1.311421" +Row 79 Col 5="1.67528" +Row 80 Col 1="-0.4733262" +Row 80 Col 2="0.1000373" +Row 80 Col 3="0.7648021" +Row 80 Col 4="1.30952" +Row 80 Col 5="1.67195" +Row 81 Col 1="-0.4666596" +Row 81 Col 2="0.1000363" +Row 81 Col 3="0.7643669" +Row 81 Col 4="1.307659" +Row 81 Col 5="1.668696" +Row 82 Col 1="-0.459993" +Row 82 Col 2="0.1000352" +Row 82 Col 3="0.7639391" +Row 82 Col 4="1.305838" +Row 82 Col 5="1.665516" +Row 83 Col 1="-0.4533263" +Row 83 Col 2="0.1000342" +Row 83 Col 3="0.7635188" +Row 83 Col 4="1.304054" +Row 83 Col 5="1.66241" +Row 84 Col 1="-0.4466597" +Row 84 Col 2="0.1000332" +Row 84 Col 3="0.7631057" +Row 84 Col 4="1.302309" +Row 84 Col 5="1.659374" +Row 85 Col 1="-0.4399931" +Row 85 Col 2="0.1000322" +Row 85 Col 3="0.7627" +Row 85 Col 4="1.3006" +Row 85 Col 5="1.656408" +Row 86 Col 1="-0.4333265" +Row 86 Col 2="0.1000313" +Row 86 Col 3="0.7623014" +Row 86 Col 4="1.298928" +Row 86 Col 5="1.65351" +Row 87 Col 1="-0.4266598" +Row 87 Col 2="0.1000303" +Row 87 Col 3="0.76191" +Row 87 Col 4="1.297291" +Row 87 Col 5="1.650679" +Row 88 Col 1="-0.4199932" +Row 88 Col 2="0.1000294" +Row 88 Col 3="0.7615256" +Row 88 Col 4="1.29569" +Row 88 Col 5="1.647914" +Row 89 Col 1="-0.4133266" +Row 89 Col 2="0.1000284" +Row 89 Col 3="0.7611483" +Row 89 Col 4="1.294123" +Row 89 Col 5="1.645213" +Row 90 Col 1="-0.4066599" +Row 90 Col 2="0.1000275" +Row 90 Col 3="0.760778" +Row 90 Col 4="1.292591" +Row 90 Col 5="1.642574" +Row 91 Col 1="-0.3999933" +Row 91 Col 2="0.1000266" +Row 91 Col 3="0.7604147" +Row 91 Col 4="1.291092" +Row 91 Col 5="1.639997" +Row 92 Col 1="-0.3933267" +Row 92 Col 2="0.1000258" +Row 92 Col 3="0.7600582" +Row 92 Col 4="1.289626" +Row 92 Col 5="1.637481" +Row 93 Col 1="-0.38666" +Row 93 Col 2="0.1000249" +Row 93 Col 3="0.7597086" +Row 93 Col 4="1.288192" +Row 93 Col 5="1.635024" +Row 94 Col 1="-0.3799934" +Row 94 Col 2="0.100024" +Row 94 Col 3="0.7593657" +Row 94 Col 4="1.286791" +Row 94 Col 5="1.632625" +Row 95 Col 1="-0.3733268" +Row 95 Col 2="0.1000232" +Row 95 Col 3="0.7590297" +Row 95 Col 4="1.285421" +Row 95 Col 5="1.630284" +Row 96 Col 1="-0.3666601" +Row 96 Col 2="0.1000224" +Row 96 Col 3="0.7587003" +Row 96 Col 4="1.284082" +Row 96 Col 5="1.627999" +Row 97 Col 1="-0.3599935" +Row 97 Col 2="0.1000216" +Row 97 Col 3="0.7583775" +Row 97 Col 4="1.282774" +Row 97 Col 5="1.625769" +Row 98 Col 1="-0.3533269" +Row 98 Col 2="0.1000208" +Row 98 Col 3="0.7580614" +Row 98 Col 4="1.281496" +Row 98 Col 5="1.623594" +Row 99 Col 1="-0.3466603" +Row 99 Col 2="0.10002" +Row 99 Col 3="0.7577519" +Row 99 Col 4="1.280248" +Row 99 Col 5="1.621472" +Row 100 Col 1="-0.3399936" +Row 100 Col 2="0.1000192" +Row 100 Col 3="0.7574489" +Row 100 Col 4="1.27903" +Row 100 Col 5="1.619402" +Row 101 Col 1="-0.333327" +Row 101 Col 2="0.1000185" +Row 101 Col 3="0.7571524" +Row 101 Col 4="1.27784" +Row 101 Col 5="1.617385" +Row 102 Col 1="-0.3266604" +Row 102 Col 2="0.1000178" +Row 102 Col 3="0.7568624" +Row 102 Col 4="1.27668" +Row 102 Col 5="1.615418" +Row 103 Col 1="-0.3199937" +Row 103 Col 2="0.100017" +Row 103 Col 3="0.7565787" +Row 103 Col 4="1.275548" +Row 103 Col 5="1.613502" +Row 104 Col 1="-0.3133271" +Row 104 Col 2="0.1000163" +Row 104 Col 3="0.7563015" +Row 104 Col 4="1.274444" +Row 104 Col 5="1.611635" +Row 105 Col 1="-0.3066605" +Row 105 Col 2="0.1000156" +Row 105 Col 3="0.7560306" +Row 105 Col 4="1.273367" +Row 105 Col 5="1.609817" +Row 106 Col 1="-0.2999938" +Row 106 Col 2="0.100015" +Row 106 Col 3="0.755766" +Row 106 Col 4="1.272318" +Row 106 Col 5="1.608047" +Row 107 Col 1="-0.2933272" +Row 107 Col 2="0.1000143" +Row 107 Col 3="0.7555077" +Row 107 Col 4="1.271296" +Row 107 Col 5="1.606324" +Row 108 Col 1="-0.2866606" +Row 108 Col 2="0.1000137" +Row 108 Col 3="0.7552557" +Row 108 Col 4="1.270301" +Row 108 Col 5="1.604649" +Row 109 Col 1="-0.279994" +Row 109 Col 2="0.100013" +Row 109 Col 3="0.7550099" +Row 109 Col 4="1.269332" +Row 109 Col 5="1.603019" +Row 110 Col 1="-0.2733273" +Row 110 Col 2="0.1000124" +Row 110 Col 3="0.7547702" +Row 110 Col 4="1.26839" +Row 110 Col 5="1.601435" +Row 111 Col 1="-0.2666607" +Row 111 Col 2="0.1000118" +Row 111 Col 3="0.7545367" +Row 111 Col 4="1.267474" +Row 111 Col 5="1.599896" +Row 112 Col 1="-0.2599941" +Row 112 Col 2="0.1000112" +Row 112 Col 3="0.7543094" +Row 112 Col 4="1.266583" +Row 112 Col 5="1.598401" +Row 113 Col 1="-0.2533274" +Row 113 Col 2="0.1000107" +Row 113 Col 3="0.7540881" +Row 113 Col 4="1.265718" +Row 113 Col 5="1.59695" +Row 114 Col 1="-0.2466608" +Row 114 Col 2="0.1000101" +Row 114 Col 3="0.7538729" +Row 114 Col 4="1.264878" +Row 114 Col 5="1.595543" +Row 115 Col 1="-0.2399942" +Row 115 Col 2="0.1000096" +Row 115 Col 3="0.7536637" +Row 115 Col 4="1.264063" +Row 115 Col 5="1.594178" +Row 116 Col 1="-0.2333276" +Row 116 Col 2="0.1000091" +Row 116 Col 3="0.7534606" +Row 116 Col 4="1.263272" +Row 116 Col 5="1.592856" +Row 117 Col 1="-0.2266609" +Row 117 Col 2="0.1000085" +Row 117 Col 3="0.7532635" +Row 117 Col 4="1.262506" +Row 117 Col 5="1.591576" +Row 118 Col 1="-0.2199943" +Row 118 Col 2="0.1000081" +Row 118 Col 3="0.7530723" +Row 118 Col 4="1.261765" +Row 118 Col 5="1.590337" +Row 119 Col 1="-0.2133277" +Row 119 Col 2="0.1000076" +Row 119 Col 3="0.7528871" +Row 119 Col 4="1.261048" +Row 119 Col 5="1.58914" +Row 120 Col 1="-0.206661" +Row 120 Col 2="0.1000071" +Row 120 Col 3="0.7527078" +Row 120 Col 4="1.260354" +Row 120 Col 5="1.587983" +Row 121 Col 1="-0.1999944" +Row 121 Col 2="0.1000067" +Row 121 Col 3="0.7525344" +Row 121 Col 4="1.259685" +Row 121 Col 5="1.586867" +Row 122 Col 1="-0.1933278" +Row 122 Col 2="0.1000062" +Row 122 Col 3="0.7523669" +Row 122 Col 4="1.259039" +Row 122 Col 5="1.585791" +Row 123 Col 1="-0.1866611" +Row 123 Col 2="0.1000058" +Row 123 Col 3="0.7522052" +Row 123 Col 4="1.258416" +Row 123 Col 5="1.584754" +Row 124 Col 1="-0.1799945" +Row 124 Col 2="0.1000054" +Row 124 Col 3="0.7520494" +Row 124 Col 4="1.257817" +Row 124 Col 5="1.583756" +Row 125 Col 1="-0.1733279" +Row 125 Col 2="0.100005" +Row 125 Col 3="0.7518995" +Row 125 Col 4="1.25724" +Row 125 Col 5="1.582798" +Row 126 Col 1="-0.1666612" +Row 126 Col 2="0.1000046" +Row 126 Col 3="0.7517553" +Row 126 Col 4="1.256687" +Row 126 Col 5="1.581878" +Row 127 Col 1="-0.1599946" +Row 127 Col 2="0.1000043" +Row 127 Col 3="0.7516169" +Row 127 Col 4="1.256157" +Row 127 Col 5="1.580996" +Row 128 Col 1="-0.153328" +Row 128 Col 2="0.1000039" +Row 128 Col 3="0.7514843" +Row 128 Col 4="1.255649" +Row 128 Col 5="1.580153" +Row 129 Col 1="-0.1466614" +Row 129 Col 2="0.1000036" +Row 129 Col 3="0.7513574" +Row 129 Col 4="1.255163" +Row 129 Col 5="1.579347" +Row 130 Col 1="-0.1399947" +Row 130 Col 2="0.1000033" +Row 130 Col 3="0.7512363" +Row 130 Col 4="1.254701" +Row 130 Col 5="1.578579" +Row 131 Col 1="-0.1333281" +Row 131 Col 2="0.100003" +Row 131 Col 3="0.7511209" +Row 131 Col 4="1.25426" +Row 131 Col 5="1.577848" +Row 132 Col 1="-0.1266615" +Row 132 Col 2="0.1000027" +Row 132 Col 3="0.7510112" +Row 132 Col 4="1.253841" +Row 132 Col 5="1.577154" +Row 133 Col 1="-0.1199948" +Row 133 Col 2="0.1000024" +Row 133 Col 3="0.7509073" +Row 133 Col 4="1.253445" +Row 133 Col 5="1.576497" +Row 134 Col 1="-0.1133282" +Row 134 Col 2="0.1000021" +Row 134 Col 3="0.750809" +Row 134 Col 4="1.253071" +Row 134 Col 5="1.575877" +Row 135 Col 1="-0.1066616" +Row 135 Col 2="0.1000019" +Row 135 Col 3="0.7507164" +Row 135 Col 4="1.252718" +Row 135 Col 5="1.575293" +Row 136 Col 1="-0.09999494" +Row 136 Col 2="0.1000017" +Row 136 Col 3="0.7506294" +Row 136 Col 4="1.252388" +Row 136 Col 5="1.574745" +Row 137 Col 1="-0.09332831" +Row 137 Col 2="0.1000014" +Row 137 Col 3="0.7505481" +Row 137 Col 4="1.252079" +Row 137 Col 5="1.574234" +Row 138 Col 1="-0.08666168" +Row 138 Col 2="0.1000012" +Row 138 Col 3="0.7504725" +Row 138 Col 4="1.251791" +Row 138 Col 5="1.573758" +Row 139 Col 1="-0.07999505" +Row 139 Col 2="0.1000011" +Row 139 Col 3="0.7504025" +Row 139 Col 4="1.251525" +Row 139 Col 5="1.573318" +Row 140 Col 1="-0.07332843" +Row 140 Col 2="0.1000009" +Row 140 Col 3="0.7503381" +Row 140 Col 4="1.251281" +Row 140 Col 5="1.572914" +Row 141 Col 1="-0.0666618" +Row 141 Col 2="0.1000007" +Row 141 Col 3="0.7502794" +Row 141 Col 4="1.251058" +Row 141 Col 5="1.572546" +Row 142 Col 1="-0.05999516" +Row 142 Col 2="0.1000006" +Row 142 Col 3="0.7502263" +Row 142 Col 4="1.250857" +Row 142 Col 5="1.572213" +Row 143 Col 1="-0.05332853" +Row 143 Col 2="0.1000005" +Row 143 Col 3="0.7501787" +Row 143 Col 4="1.250677" +Row 143 Col 5="1.571915" +Row 144 Col 1="-0.04666191" +Row 144 Col 2="0.1000004" +Row 144 Col 3="0.7501368" +Row 144 Col 4="1.250518" +Row 144 Col 5="1.571652" +Row 145 Col 1="-0.03999528" +Row 145 Col 2="0.1000003" +Row 145 Col 3="0.7501005" +Row 145 Col 4="1.25038" +Row 145 Col 5="1.571425" +Row 146 Col 1="-0.03332864" +Row 146 Col 2="0.1000002" +Row 146 Col 3="0.7500698" +Row 146 Col 4="1.250264" +Row 146 Col 5="1.571233" +Row 147 Col 1="-0.02666201" +Row 147 Col 2="0.1000001" +Row 147 Col 3="0.7500447" +Row 147 Col 4="1.250169" +Row 147 Col 5="1.571076" +Row 148 Col 1="-0.01999538" +Row 148 Col 2="0.1000001" +Row 148 Col 3="0.7500251" +Row 148 Col 4="1.250095" +Row 148 Col 5="1.570953" +Row 149 Col 1="-0.01332875" +Row 149 Col 2="0.1" +Row 149 Col 3="0.7500112" +Row 149 Col 4="1.250042" +Row 149 Col 5="1.570866" +Row 150 Col 1="-0.006662124" +Row 150 Col 2="0.1" +Row 150 Col 3="0.7500028" +Row 150 Col 4="1.250011" +Row 150 Col 5="1.570814" +Row 151 Col 1="0.000004506128" +Row 151 Col 2="0.1" +Row 151 Col 3="0.75" +Row 151 Col 4="1.25" +Row 151 Col 5="1.570796" +Row 152 Col 1="0.006671136" +Row 152 Col 2="0.1" +Row 152 Col 3="0.7500028" +Row 152 Col 4="1.250011" +Row 152 Col 5="1.570814" +Row 153 Col 1="0.01333777" +Row 153 Col 2="0.1" +Row 153 Col 3="0.7500112" +Row 153 Col 4="1.250042" +Row 153 Col 5="1.570866" +Row 154 Col 1="0.0200044" +Row 154 Col 2="0.1000001" +Row 154 Col 3="0.7500251" +Row 154 Col 4="1.250095" +Row 154 Col 5="1.570954" +Row 155 Col 1="0.02667103" +Row 155 Col 2="0.1000001" +Row 155 Col 3="0.7500447" +Row 155 Col 4="1.250169" +Row 155 Col 5="1.571076" +Row 156 Col 1="0.03333766" +Row 156 Col 2="0.1000002" +Row 156 Col 3="0.7500698" +Row 156 Col 4="1.250264" +Row 156 Col 5="1.571233" +Row 157 Col 1="0.04000429" +Row 157 Col 2="0.1000003" +Row 157 Col 3="0.7501006" +Row 157 Col 4="1.250381" +Row 157 Col 5="1.571425" +Row 158 Col 1="0.04667092" +Row 158 Col 2="0.1000004" +Row 158 Col 3="0.7501369" +Row 158 Col 4="1.250518" +Row 158 Col 5="1.571653" +Row 159 Col 1="0.05333755" +Row 159 Col 2="0.1000005" +Row 159 Col 3="0.7501788" +Row 159 Col 4="1.250677" +Row 159 Col 5="1.571915" +Row 160 Col 1="0.06000417" +Row 160 Col 2="0.1000006" +Row 160 Col 3="0.7502263" +Row 160 Col 4="1.250857" +Row 160 Col 5="1.572213" +Row 161 Col 1="0.06667081" +Row 161 Col 2="0.1000007" +Row 161 Col 3="0.7502795" +Row 161 Col 4="1.251059" +Row 161 Col 5="1.572546" +Row 162 Col 1="0.07333744" +Row 162 Col 2="0.1000009" +Row 162 Col 3="0.7503382" +Row 162 Col 4="1.251282" +Row 162 Col 5="1.572915" +Row 163 Col 1="0.08000407" +Row 163 Col 2="0.1000011" +Row 163 Col 3="0.7504026" +Row 163 Col 4="1.251526" +Row 163 Col 5="1.573319" +Row 164 Col 1="0.0866707" +Row 164 Col 2="0.1000012" +Row 164 Col 3="0.7504726" +Row 164 Col 4="1.251792" +Row 164 Col 5="1.573759" +Row 165 Col 1="0.09333733" +Row 165 Col 2="0.1000014" +Row 165 Col 3="0.7505483" +Row 165 Col 4="1.252079" +Row 165 Col 5="1.574234" +Row 166 Col 1="0.100004" +Row 166 Col 2="0.1000017" +Row 166 Col 3="0.7506295" +Row 166 Col 4="1.252388" +Row 166 Col 5="1.574746" +Row 167 Col 1="0.1066706" +Row 167 Col 2="0.1000019" +Row 167 Col 3="0.7507165" +Row 167 Col 4="1.252719" +Row 167 Col 5="1.575294" +Row 168 Col 1="0.1133372" +Row 168 Col 2="0.1000021" +Row 168 Col 3="0.7508091" +Row 168 Col 4="1.253071" +Row 168 Col 5="1.575877" +Row 169 Col 1="0.1200038" +Row 169 Col 2="0.1000024" +Row 169 Col 3="0.7509074" +Row 169 Col 4="1.253446" +Row 169 Col 5="1.576498" +Row 170 Col 1="0.1266705" +Row 170 Col 2="0.1000027" +Row 170 Col 3="0.7510114" +Row 170 Col 4="1.253842" +Row 170 Col 5="1.577155" +Row 171 Col 1="0.1333371" +Row 171 Col 2="0.100003" +Row 171 Col 3="0.7511211" +Row 171 Col 4="1.25426" +Row 171 Col 5="1.577849" +Row 172 Col 1="0.1400037" +Row 172 Col 2="0.1000033" +Row 172 Col 3="0.7512365" +Row 172 Col 4="1.254701" +Row 172 Col 5="1.57858" +Row 173 Col 1="0.1466704" +Row 173 Col 2="0.1000036" +Row 173 Col 3="0.7513576" +Row 173 Col 4="1.255164" +Row 173 Col 5="1.579348" +Row 174 Col 1="0.153337" +Row 174 Col 2="0.1000039" +Row 174 Col 3="0.7514844" +Row 174 Col 4="1.255649" +Row 174 Col 5="1.580154" +Row 175 Col 1="0.1600036" +Row 175 Col 2="0.1000043" +Row 175 Col 3="0.7516171" +Row 175 Col 4="1.256157" +Row 175 Col 5="1.580997" +Row 176 Col 1="0.1666703" +Row 176 Col 2="0.1000046" +Row 176 Col 3="0.7517555" +Row 176 Col 4="1.256688" +Row 176 Col 5="1.581879" +Row 177 Col 1="0.1733369" +Row 177 Col 2="0.100005" +Row 177 Col 3="0.7518997" +Row 177 Col 4="1.257241" +Row 177 Col 5="1.582799" +Row 178 Col 1="0.1800035" +Row 178 Col 2="0.1000054" +Row 178 Col 3="0.7520496" +Row 178 Col 4="1.257818" +Row 178 Col 5="1.583758" +Row 179 Col 1="0.1866702" +Row 179 Col 2="0.1000058" +Row 179 Col 3="0.7522055" +Row 179 Col 4="1.258417" +Row 179 Col 5="1.584755" +Row 180 Col 1="0.1933368" +Row 180 Col 2="0.1000062" +Row 180 Col 3="0.7523671" +Row 180 Col 4="1.25904" +Row 180 Col 5="1.585792" +Row 181 Col 1="0.2000034" +Row 181 Col 2="0.1000067" +Row 181 Col 3="0.7525346" +Row 181 Col 4="1.259686" +Row 181 Col 5="1.586868" +Row 182 Col 1="0.20667" +Row 182 Col 2="0.1000071" +Row 182 Col 3="0.752708" +Row 182 Col 4="1.260355" +Row 182 Col 5="1.587985" +Row 183 Col 1="0.2133367" +Row 183 Col 2="0.1000076" +Row 183 Col 3="0.7528873" +Row 183 Col 4="1.261049" +Row 183 Col 5="1.589142" +Row 184 Col 1="0.2200033" +Row 184 Col 2="0.1000081" +Row 184 Col 3="0.7530726" +Row 184 Col 4="1.261766" +Row 184 Col 5="1.590339" +Row 185 Col 1="0.2266699" +Row 185 Col 2="0.1000085" +Row 185 Col 3="0.7532637" +Row 185 Col 4="1.262507" +Row 185 Col 5="1.591578" +Row 186 Col 1="0.2333366" +Row 186 Col 2="0.1000091" +Row 186 Col 3="0.7534609" +Row 186 Col 4="1.263273" +Row 186 Col 5="1.592858" +Row 187 Col 1="0.2400032" +Row 187 Col 2="0.1000096" +Row 187 Col 3="0.753664" +Row 187 Col 4="1.264064" +Row 187 Col 5="1.59418" +Row 188 Col 1="0.2466698" +Row 188 Col 2="0.1000101" +Row 188 Col 3="0.7538732" +Row 188 Col 4="1.264879" +Row 188 Col 5="1.595545" +Row 189 Col 1="0.2533365" +Row 189 Col 2="0.1000107" +Row 189 Col 3="0.7540884" +Row 189 Col 4="1.265719" +Row 189 Col 5="1.596952" +Row 190 Col 1="0.2600031" +Row 190 Col 2="0.1000112" +Row 190 Col 3="0.7543097" +Row 190 Col 4="1.266584" +Row 190 Col 5="1.598403" +Row 191 Col 1="0.2666697" +Row 191 Col 2="0.1000118" +Row 191 Col 3="0.754537" +Row 191 Col 4="1.267475" +Row 191 Col 5="1.599898" +Row 192 Col 1="0.2733364" +Row 192 Col 2="0.1000124" +Row 192 Col 3="0.7547705" +Row 192 Col 4="1.268391" +Row 192 Col 5="1.601437" +Row 193 Col 1="0.280003" +Row 193 Col 2="0.100013" +Row 193 Col 3="0.7550102" +Row 193 Col 4="1.269334" +Row 193 Col 5="1.603021" +Row 194 Col 1="0.2866696" +Row 194 Col 2="0.1000137" +Row 194 Col 3="0.755256" +Row 194 Col 4="1.270302" +Row 194 Col 5="1.604651" +Row 195 Col 1="0.2933362" +Row 195 Col 2="0.1000143" +Row 195 Col 3="0.7555081" +Row 195 Col 4="1.271298" +Row 195 Col 5="1.606327" +Row 196 Col 1="0.3000028" +Row 196 Col 2="0.100015" +Row 196 Col 3="0.7557664" +Row 196 Col 4="1.272319" +Row 196 Col 5="1.608049" +Row 197 Col 1="0.3066695" +Row 197 Col 2="0.1000156" +Row 197 Col 3="0.756031" +Row 197 Col 4="1.273369" +Row 197 Col 5="1.609819" +Row 198 Col 1="0.3133361" +Row 198 Col 2="0.1000163" +Row 198 Col 3="0.7563019" +Row 198 Col 4="1.274445" +Row 198 Col 5="1.611638" +Row 199 Col 1="0.3200027" +Row 199 Col 2="0.100017" +Row 199 Col 3="0.7565791" +Row 199 Col 4="1.275549" +Row 199 Col 5="1.613505" +Row 200 Col 1="0.3266694" +Row 200 Col 2="0.1000178" +Row 200 Col 3="0.7568628" +Row 200 Col 4="1.276681" +Row 200 Col 5="1.615421" +Row 201 Col 1="0.333336" +Row 201 Col 2="0.1000185" +Row 201 Col 3="0.7571528" +Row 201 Col 4="1.277842" +Row 201 Col 5="1.617388" +Row 202 Col 1="0.3400026" +Row 202 Col 2="0.1000192" +Row 202 Col 3="0.7574493" +Row 202 Col 4="1.279031" +Row 202 Col 5="1.619405" +Row 203 Col 1="0.3466693" +Row 203 Col 2="0.10002" +Row 203 Col 3="0.7577523" +Row 203 Col 4="1.28025" +Row 203 Col 5="1.621475" +Row 204 Col 1="0.3533359" +Row 204 Col 2="0.1000208" +Row 204 Col 3="0.7580619" +Row 204 Col 4="1.281498" +Row 204 Col 5="1.623597" +Row 205 Col 1="0.3600025" +Row 205 Col 2="0.1000216" +Row 205 Col 3="0.758378" +Row 205 Col 4="1.282776" +Row 205 Col 5="1.625772" +Row 206 Col 1="0.3666691" +Row 206 Col 2="0.1000224" +Row 206 Col 3="0.7587007" +Row 206 Col 4="1.284084" +Row 206 Col 5="1.628002" +Row 207 Col 1="0.3733358" +Row 207 Col 2="0.1000232" +Row 207 Col 3="0.7590301" +Row 207 Col 4="1.285422" +Row 207 Col 5="1.630287" +Row 208 Col 1="0.3800024" +Row 208 Col 2="0.100024" +Row 208 Col 3="0.7593662" +Row 208 Col 4="1.286792" +Row 208 Col 5="1.632629" +Row 209 Col 1="0.386669" +Row 209 Col 2="0.1000249" +Row 209 Col 3="0.759709" +Row 209 Col 4="1.288194" +Row 209 Col 5="1.635027" +Row 210 Col 1="0.3933357" +Row 210 Col 2="0.1000258" +Row 210 Col 3="0.7600587" +Row 210 Col 4="1.289627" +Row 210 Col 5="1.637484" +Row 211 Col 1="0.4000023" +Row 211 Col 2="0.1000266" +Row 211 Col 3="0.7604152" +Row 211 Col 4="1.291094" +Row 211 Col 5="1.640001" +Row 212 Col 1="0.4066689" +Row 212 Col 2="0.1000275" +Row 212 Col 3="0.7607785" +Row 212 Col 4="1.292593" +Row 212 Col 5="1.642578" +Row 213 Col 1="0.4133356" +Row 213 Col 2="0.1000284" +Row 213 Col 3="0.7611488" +Row 213 Col 4="1.294125" +Row 213 Col 5="1.645216" +Row 214 Col 1="0.4200022" +Row 214 Col 2="0.1000294" +Row 214 Col 3="0.7615261" +Row 214 Col 4="1.295692" +Row 214 Col 5="1.647918" +Row 215 Col 1="0.4266688" +Row 215 Col 2="0.1000303" +Row 215 Col 3="0.7619105" +Row 215 Col 4="1.297293" +Row 215 Col 5="1.650683" +Row 216 Col 1="0.4333355" +Row 216 Col 2="0.1000313" +Row 216 Col 3="0.7623019" +Row 216 Col 4="1.29893" +Row 216 Col 5="1.653514" +Row 217 Col 1="0.4400021" +Row 217 Col 2="0.1000322" +Row 217 Col 3="0.7627005" +Row 217 Col 4="1.300602" +Row 217 Col 5="1.656412" +Row 218 Col 1="0.4466687" +Row 218 Col 2="0.1000332" +Row 218 Col 3="0.7631063" +Row 218 Col 4="1.302311" +Row 218 Col 5="1.659378" +Row 219 Col 1="0.4533353" +Row 219 Col 2="0.1000342" +Row 219 Col 3="0.7635193" +Row 219 Col 4="1.304057" +Row 219 Col 5="1.662414" +Row 220 Col 1="0.460002" +Row 220 Col 2="0.1000352" +Row 220 Col 3="0.7639397" +Row 220 Col 4="1.30584" +Row 220 Col 5="1.665521" +Row 221 Col 1="0.4666686" +Row 221 Col 2="0.1000363" +Row 221 Col 3="0.7643675" +Row 221 Col 4="1.307662" +Row 221 Col 5="1.6687" +Row 222 Col 1="0.4733352" +Row 222 Col 2="0.1000373" +Row 222 Col 3="0.7648027" +Row 222 Col 4="1.309523" +Row 222 Col 5="1.671955" +Row 223 Col 1="0.4800019" +Row 223 Col 2="0.1000384" +Row 223 Col 3="0.7652454" +Row 223 Col 4="1.311423" +Row 223 Col 5="1.675285" +Row 224 Col 1="0.4866685" +Row 224 Col 2="0.1000394" +Row 224 Col 3="0.7656956" +Row 224 Col 4="1.313364" +Row 224 Col 5="1.678693" +Row 225 Col 1="0.4933351" +Row 225 Col 2="0.1000405" +Row 225 Col 3="0.7661535" +Row 225 Col 4="1.315347" +Row 225 Col 5="1.682181" +Row 226 Col 1="0.5000018" +Row 226 Col 2="0.1000416" +Row 226 Col 3="0.7666192" +Row 226 Col 4="1.317371" +Row 226 Col 5="1.685751" +Row 227 Col 1="0.5066684" +Row 227 Col 2="0.1000427" +Row 227 Col 3="0.7670925" +Row 227 Col 4="1.319439" +Row 227 Col 5="1.689405" +Row 228 Col 1="0.513335" +Row 228 Col 2="0.1000439" +Row 228 Col 3="0.7675738" +Row 228 Col 4="1.32155" +Row 228 Col 5="1.693145" +Row 229 Col 1="0.5200016" +Row 229 Col 2="0.100045" +Row 229 Col 3="0.7680629" +Row 229 Col 4="1.323706" +Row 229 Col 5="1.696973" +Row 230 Col 1="0.5266683" +Row 230 Col 2="0.1000462" +Row 230 Col 3="0.7685601" +Row 230 Col 4="1.325908" +Row 230 Col 5="1.700891" +Row 231 Col 1="0.5333349" +Row 231 Col 2="0.1000474" +Row 231 Col 3="0.7690653" +Row 231 Col 4="1.328157" +Row 231 Col 5="1.704903" +Row 232 Col 1="0.5400015" +Row 232 Col 2="0.1000486" +Row 232 Col 3="0.7695786" +Row 232 Col 4="1.330453" +Row 232 Col 5="1.70901" +Row 233 Col 1="0.5466682" +Row 233 Col 2="0.1000498" +Row 233 Col 3="0.7701002" +Row 233 Col 4="1.332798" +Row 233 Col 5="1.713215" +Row 234 Col 1="0.5533348" +Row 234 Col 2="0.100051" +Row 234 Col 3="0.7706301" +Row 234 Col 4="1.335193" +Row 234 Col 5="1.717521" +Row 235 Col 1="0.5600014" +Row 235 Col 2="0.1000522" +Row 235 Col 3="0.7711684" +Row 235 Col 4="1.337639" +Row 235 Col 5="1.721931" +Row 236 Col 1="0.566668" +Row 236 Col 2="0.1000535" +Row 236 Col 3="0.7717151" +Row 236 Col 4="1.340137" +Row 236 Col 5="1.726448" +Row 237 Col 1="0.5733347" +Row 237 Col 2="0.1000548" +Row 237 Col 3="0.7722705" +Row 237 Col 4="1.342689" +Row 237 Col 5="1.731075" +Row 238 Col 1="0.5800013" +Row 238 Col 2="0.100056" +Row 238 Col 3="0.7728344" +Row 238 Col 4="1.345295" +Row 238 Col 5="1.735816" +Row 239 Col 1="0.586668" +Row 239 Col 2="0.1000573" +Row 239 Col 3="0.7734072" +Row 239 Col 4="1.347957" +Row 239 Col 5="1.740673" +Row 240 Col 1="0.5933346" +Row 240 Col 2="0.1000586" +Row 240 Col 3="0.7739887" +Row 240 Col 4="1.350677" +Row 240 Col 5="1.745652" +Row 241 Col 1="0.6000012" +Row 241 Col 2="0.10006" +Row 241 Col 3="0.7745792" +Row 241 Col 4="1.353456" +Row 241 Col 5="1.750755" +Row 242 Col 1="0.6066678" +Row 242 Col 2="0.1000613" +Row 242 Col 3="0.7751788" +Row 242 Col 4="1.356295" +Row 242 Col 5="1.755986" +Row 243 Col 1="0.6133345" +Row 243 Col 2="0.1000627" +Row 243 Col 3="0.7757875" +Row 243 Col 4="1.359197" +Row 243 Col 5="1.761351" +Row 244 Col 1="0.6200011" +Row 244 Col 2="0.100064" +Row 244 Col 3="0.7764054" +Row 244 Col 4="1.362162" +Row 244 Col 5="1.766854" +Row 245 Col 1="0.6266677" +Row 245 Col 2="0.1000654" +Row 245 Col 3="0.7770327" +Row 245 Col 4="1.365192" +Row 245 Col 5="1.772499" +Row 246 Col 1="0.6333343" +Row 246 Col 2="0.1000668" +Row 246 Col 3="0.7776694" +Row 246 Col 4="1.36829" +Row 246 Col 5="1.778292" +Row 247 Col 1="0.640001" +Row 247 Col 2="0.1000683" +Row 247 Col 3="0.7783157" +Row 247 Col 4="1.371458" +Row 247 Col 5="1.784237" +Row 248 Col 1="0.6466676" +Row 248 Col 2="0.1000697" +Row 248 Col 3="0.7789717" +Row 248 Col 4="1.374696" +Row 248 Col 5="1.790341" +Row 249 Col 1="0.6533343" +Row 249 Col 2="0.1000711" +Row 249 Col 3="0.7796375" +Row 249 Col 4="1.378008" +Row 249 Col 5="1.79661" +Row 250 Col 1="0.6600009" +Row 250 Col 2="0.1000726" +Row 250 Col 3="0.7803132" +Row 250 Col 4="1.381396" +Row 250 Col 5="1.80305" +Row 251 Col 1="0.6666675" +Row 251 Col 2="0.1000741" +Row 251 Col 3="0.780999" +Row 251 Col 4="1.384861" +Row 251 Col 5="1.809668" +Row 252 Col 1="0.6733341" +Row 252 Col 2="0.1000756" +Row 252 Col 3="0.781695" +Row 252 Col 4="1.388406" +Row 252 Col 5="1.816471" +Row 253 Col 1="0.6800008" +Row 253 Col 2="0.1000771" +Row 253 Col 3="0.7824012" +Row 253 Col 4="1.392035" +Row 253 Col 5="1.823467" +Row 254 Col 1="0.6866674" +Row 254 Col 2="0.1000786" +Row 254 Col 3="0.7831179" +Row 254 Col 4="1.395749" +Row 254 Col 5="1.830664" +Row 255 Col 1="0.693334" +Row 255 Col 2="0.1000801" +Row 255 Col 3="0.7838452" +Row 255 Col 4="1.399551" +Row 255 Col 5="1.83807" +Row 256 Col 1="0.7000006" +Row 256 Col 2="0.1000817" +Row 256 Col 3="0.7845832" +Row 256 Col 4="1.403444" +Row 256 Col 5="1.845695" +Row 257 Col 1="0.7066673" +Row 257 Col 2="0.1000833" +Row 257 Col 3="0.7853321" +Row 257 Col 4="1.407433" +Row 257 Col 5="1.853549" +Row 258 Col 1="0.7133339" +Row 258 Col 2="0.1000848" +Row 258 Col 3="0.786092" +Row 258 Col 4="1.411518" +Row 258 Col 5="1.861642" +Row 259 Col 1="0.7200006" +Row 259 Col 2="0.1000864" +Row 259 Col 3="0.786863" +Row 259 Col 4="1.415705" +Row 259 Col 5="1.869986" +Row 260 Col 1="0.7266672" +Row 260 Col 2="0.100088" +Row 260 Col 3="0.7876453" +Row 260 Col 4="1.419997" +Row 260 Col 5="1.878593" +Row 261 Col 1="0.7333338" +Row 261 Col 2="0.1000897" +Row 261 Col 3="0.7884392" +Row 261 Col 4="1.424398" +Row 261 Col 5="1.887477" +Row 262 Col 1="0.7400004" +Row 262 Col 2="0.1000913" +Row 262 Col 3="0.7892447" +Row 262 Col 4="1.428912" +Row 262 Col 5="1.896651" +Row 263 Col 1="0.7466671" +Row 263 Col 2="0.100093" +Row 263 Col 3="0.7900619" +Row 263 Col 4="1.433544" +Row 263 Col 5="1.906131" +Row 264 Col 1="0.7533337" +Row 264 Col 2="0.1000946" +Row 264 Col 3="0.7908912" +Row 264 Col 4="1.438298" +Row 264 Col 5="1.915933" +Row 265 Col 1="0.7600003" +Row 265 Col 2="0.1000963" +Row 265 Col 3="0.7917327" +Row 265 Col 4="1.443178" +Row 265 Col 5="1.926075" +Row 266 Col 1="0.7666669" +Row 266 Col 2="0.100098" +Row 266 Col 3="0.7925864" +Row 266 Col 4="1.448191" +Row 266 Col 5="1.936578" +Row 267 Col 1="0.7733336" +Row 267 Col 2="0.1000997" +Row 267 Col 3="0.7934528" +Row 267 Col 4="1.453343" +Row 267 Col 5="1.947461" +Row 268 Col 1="0.7800002" +Row 268 Col 2="0.1001015" +Row 268 Col 3="0.7943318" +Row 268 Col 4="1.458638" +Row 268 Col 5="1.958749" +Row 269 Col 1="0.7866669" +Row 269 Col 2="0.1001032" +Row 269 Col 3="0.7952238" +Row 269 Col 4="1.464084" +Row 269 Col 5="1.970466" +Row 270 Col 1="0.7933335" +Row 270 Col 2="0.100105" +Row 270 Col 3="0.7961289" +Row 270 Col 4="1.469687" +Row 270 Col 5="1.98264" +Row 271 Col 1="0.8000001" +Row 271 Col 2="0.1001068" +Row 271 Col 3="0.7970473" +Row 271 Col 4="1.475455" +Row 271 Col 5="1.995303" +Row 272 Col 1="0.8066667" +Row 272 Col 2="0.1001086" +Row 272 Col 3="0.7979794" +Row 272 Col 4="1.481397" +Row 272 Col 5="2.008487" +Row 273 Col 1="0.8133334" +Row 273 Col 2="0.1001104" +Row 273 Col 3="0.7989252" +Row 273 Col 4="1.487519" +Row 273 Col 5="2.022231" +Row 274 Col 1="0.82" +Row 274 Col 2="0.1001122" +Row 274 Col 3="0.799885" +Row 274 Col 4="1.493833" +Row 274 Col 5="2.036575" +Row 275 Col 1="0.8266667" +Row 275 Col 2="0.100114" +Row 275 Col 3="0.800859" +Row 275 Col 4="1.500347" +Row 275 Col 5="2.051565" +Row 276 Col 1="0.8333333" +Row 276 Col 2="0.1001159" +Row 276 Col 3="0.8018476" +Row 276 Col 4="1.507072" +Row 276 Col 5="2.067255" +Row 277 Col 1="0.8399999" +Row 277 Col 2="0.1001177" +Row 277 Col 3="0.8028509" +Row 277 Col 4="1.514021" +Row 277 Col 5="2.083701" +Row 278 Col 1="0.8466665" +Row 278 Col 2="0.1001196" +Row 278 Col 3="0.8038692" +Row 278 Col 4="1.521206" +Row 278 Col 5="2.100969" +Row 279 Col 1="0.8533332" +Row 279 Col 2="0.1001215" +Row 279 Col 3="0.8049027" +Row 279 Col 4="1.528641" +Row 279 Col 5="2.119135" +Row 280 Col 1="0.8599998" +Row 280 Col 2="0.1001234" +Row 280 Col 3="0.8059518" +Row 280 Col 4="1.536342" +Row 280 Col 5="2.138283" +Row 281 Col 1="0.8666664" +Row 281 Col 2="0.1001254" +Row 281 Col 3="0.8070168" +Row 281 Col 4="1.544325" +Row 281 Col 5="2.158511" +Row 282 Col 1="0.873333" +Row 282 Col 2="0.1001273" +Row 282 Col 3="0.8080978" +Row 282 Col 4="1.552608" +Row 282 Col 5="2.179931" +Row 283 Col 1="0.8799997" +Row 283 Col 2="0.1001293" +Row 283 Col 3="0.8091953" +Row 283 Col 4="1.561212" +Row 283 Col 5="2.202676" +Row 284 Col 1="0.8866663" +Row 284 Col 2="0.1001312" +Row 284 Col 3="0.8103095" +Row 284 Col 4="1.570159" +Row 284 Col 5="2.226899" +Row 285 Col 1="0.893333" +Row 285 Col 2="0.1001332" +Row 285 Col 3="0.8114408" +Row 285 Col 4="1.579475" +Row 285 Col 5="2.252784" +Row 286 Col 1="0.8999996" +Row 286 Col 2="0.1001352" +Row 286 Col 3="0.8125894" +Row 286 Col 4="1.589187" +Row 286 Col 5="2.280547" +Row 287 Col 1="0.9066662" +Row 287 Col 2="0.1001372" +Row 287 Col 3="0.8137557" +Row 287 Col 4="1.599327" +Row 287 Col 5="2.310454" +Row 288 Col 1="0.9133328" +Row 288 Col 2="0.1001393" +Row 288 Col 3="0.8149402" +Row 288 Col 4="1.60993" +Row 288 Col 5="2.342827" +Row 289 Col 1="0.9199995" +Row 289 Col 2="0.1001413" +Row 289 Col 3="0.8161431" +Row 289 Col 4="1.621036" +Row 289 Col 5="2.378068" +Row 290 Col 1="0.9266661" +Row 290 Col 2="0.1001434" +Row 290 Col 3="0.8173648" +Row 290 Col 4="1.63269" +Row 290 Col 5="2.416684" +Row 291 Col 1="0.9333327" +Row 291 Col 2="0.1001455" +Row 291 Col 3="0.8186057" +Row 291 Col 4="1.644945" +Row 291 Col 5="2.459327" +Row 292 Col 1="0.9399993" +Row 292 Col 2="0.1001476" +Row 292 Col 3="0.8198662" +Row 292 Col 4="1.657861" +Row 292 Col 5="2.50686" +Row 293 Col 1="0.9466659" +Row 293 Col 2="0.1001497" +Row 293 Col 3="0.8211468" +Row 293 Col 4="1.671508" +Row 293 Col 5="2.56045" +Row 294 Col 1="0.9533326" +Row 294 Col 2="0.1001518" +Row 294 Col 3="0.8224479" +Row 294 Col 4="1.685968" +Row 294 Col 5="2.621739" +Row 295 Col 1="0.9599992" +Row 295 Col 2="0.1001539" +Row 295 Col 3="0.8237698" +Row 295 Col 4="1.701338" +Row 295 Col 5="2.693134" +Row 296 Col 1="0.9666659" +Row 296 Col 2="0.1001561" +Row 296 Col 3="0.8251132" +Row 296 Col 4="1.717735" +Row 296 Col 5="2.778371" +Row 297 Col 1="0.9733325" +Row 297 Col 2="0.1001583" +Row 297 Col 3="0.8264784" +Row 297 Col 4="1.7353" +Row 297 Col 5="2.883721" +Row 298 Col 1="0.9799991" +Row 298 Col 2="0.1001604" +Row 298 Col 3="0.827866" +Row 298 Col 4="1.754206" +Row 298 Col 5="3.020959" +Row 299 Col 1="0.9866657" +Row 299 Col 2="0.1001626" +Row 299 Col 3="0.8292766" +Row 299 Col 4="1.77467" +Row 299 Col 5="3.21656" +Row 300 Col 1="0.9933324" +Row 300 Col 2="0.1001649" +Row 300 Col 3="0.8307105" +Row 300 Col 4="1.796969" +Row 300 Col 5="3.555158" +[End Data] + +[Titles] +Title="Elliptic Integrals of the First Kind" +Heading="" +XAxisTitle="k" +YAxisTitle="" +[End Titles] + +[Title Options] +Title="00000000000000000024Arial" +Heading="00000000000000000016Arial" +YAxisTitle="00000000000000014.25Arial" +XAxisTitle="00000000000000000010Arial" +YAxisVertical="0" +[End Title Options] + +[Background] +Graph Background=16777215 +Page Colour=16777215 +Print Graph Background=1 +Print Page Colour=0 +[End Background] + +[Axis] +XMin=0 +XMax=3 +YMin=0 +YMax=3 +MaxMinOptions="100101" +Axis Style=1 +Logarithmic X Axis=0 +Logarithmic Y Axis=0 +Border Style=0 +[End Axis] + +[Data Lines] +Options="117000002550000000016777216117000327680000000016777216117104857600000000016777216117000000000000000016777216611000000000000000016777216611000000000000000016777216" +[End Data Lines] + +[Data Markers] +Size 1=5 +Size 2=5 +Size 3=5 +Size 4=5 +Size 5=5 +Size 6=5 +[End Data Markers] + +[Data Labels] +Options="000100" +Primary Font="00000000000000000010Arial" +Secondary Font="00000000000000000010Arial" +Spacing X Primary=.2 +Spacing Y Primary=.5 +Spacing X Secondary=1 +Spacing Y Secondary=1 +Spacing Adjustment=1 +[End Data Labels] + +[Axis Markers] +Options 1=1 +Spacing 1=.2 +Colour 1="00000000" +Options 2=1 +Spacing 2=.5 +Colour 2="00000000" +Options 3=0 +Spacing 3=1 +Colour 3="00000000" +Options 4=0 +Spacing 4=1 +Colour 4="00000000" +Style=1 +[End Axis Markers] + +[Gridlines] +Options="100000" +Spacing X Primary=.2 +Spacing Y Primary=.5 +Spacing X Secondary=1 +Spacing Y Secondary=1 +Colour 1="00000000" +Colour 2="00000000" +Colour 3="14671839" +Colour 4="14671839" +[End Gridlines] + +[Legend] +X Position=18.9573462356875 +Y Position=4.87474617489107 +Style=1 +Font="00000000000000014.25Arial" +[End Legend] + +[Best Fit Line 1] +Options1="0100000000" +Options2="0100000000" +Options3="0100000000" +Options4="0100000000" +Options5="0100000000" +Options6="0100000000" +Options7="0100000000" +Options8="0100000000" +Options9="0100000000" +[End Best Fit Line 1] + +[Best Fit Line 2] +Options1="0100000000" +Options2="0100000000" +Options3="0100000000" +Options4="0100000000" +Options5="0100000000" +Options6="0100000000" +Options7="0100000000" +Options8="0100000000" +Options9="0100000000" +[End Best Fit Line 2] + +[Best Fit Line 3] +Options1="0100000000" +Options2="0100000000" +Options3="0100000000" +Options4="0100000000" +Options5="0100000000" +Options6="0100000000" +Options7="0100000000" +Options8="0100000000" +Options9="0100000000" +[End Best Fit Line 3] + +[Best Fit Line 4] +Options1="0100000000" +Options2="0100000000" +Options3="0100000000" +Options4="0100000000" +Options5="0100000000" +Options6="0100000000" +Options7="0100000000" +Options8="0100000000" +Options9="0100000000" +[End Best Fit Line 4] + +[Best Fit Line 5] +Options1="0100000000" +Options2="0100000000" +Options3="0100000000" +Options4="0100000000" +Options5="0100000000" +Options6="0100000000" +Options7="0100000000" +Options8="0100000000" +Options9="0100000000" +[End Best Fit Line 5] + +[Best Fit Line 6] +Options1="0100000000" +Options2="0100000000" +Options3="0100000000" +Options4="0100000000" +Options5="0100000000" +Options6="0100000000" +Options7="0100000000" +Options8="0100000000" +Options9="0100000000" +[End Best Fit Line 6] + +[Best Fit Data 1] +Options1=0 +Options2=0 +Options3=0 +Options4=0 +Options5=0 +Options6=0 +X Position=5 +Y Position=5 +Style=1 +Font="00000000000000000010Arial" +Correlation Coefficient=0 +Accuracy=8 +SF Or DP=0 +Display Accuracy=0 +Display Trailing Zeros=0 +[End Best Fit Data 1] + +[Best Fit Data 2] +Options1=0 +Options2=0 +Options3=0 +Options4=0 +Options5=0 +Options6=0 +X Position=8 +Y Position=5 +Style=1 +Font="00000000000000000010Arial" +Correlation Coefficient=0 +Accuracy=8 +SF Or DP=0 +Display Accuracy=0 +Display Trailing Zeros=0 +[End Best Fit Data 2] + +[Best Fit Data 3] +Options1=0 +Options2=0 +Options3=0 +Options4=0 +Options5=0 +Options6=0 +X Position=11 +Y Position=5 +Style=1 +Font="00000000000000000010Arial" +Correlation Coefficient=0 +Accuracy=8 +SF Or DP=0 +Display Accuracy=0 +Display Trailing Zeros=0 +[End Best Fit Data 3] + +[Best Fit Data 4] +Options1=0 +Options2=0 +Options3=0 +Options4=0 +Options5=0 +Options6=0 +X Position=14 +Y Position=5 +Style=1 +Font="00000000000000000010Arial" +Correlation Coefficient=0 +Accuracy=8 +SF Or DP=0 +Display Accuracy=0 +Display Trailing Zeros=0 +[End Best Fit Data 4] + +[Best Fit Data 5] +Options1=0 +Options2=0 +Options3=0 +Options4=0 +Options5=0 +Options6=0 +X Position=17 +Y Position=5 +Style=1 +Font="00000000000000000010Arial" +Correlation Coefficient=0 +Accuracy=8 +SF Or DP=0 +Display Accuracy=0 +Display Trailing Zeros=0 +[End Best Fit Data 5] + +[Best Fit Data 6] +Options1=0 +Options2=0 +Options3=0 +Options4=0 +Options5=0 +Options6=0 +X Position=20 +Y Position=5 +Style=1 +Font="00000000000000000010Arial" +Correlation Coefficient=0 +Accuracy=8 +SF Or DP=0 +Display Accuracy=0 +Display Trailing Zeros=0 +[End Best Fit Data 6] + +[Equations] +Equation 1="" +Equation 2="" +Equation 3="" +Equation 4="" +Equation 5="" +Equation 6="" +Equation 7="" +Equation 8="" +Equation 9="" +Equation 10="" +Equation 11="" +Equation 12="" +Angle Measurement=0 +[End Equations] + +[Equation Options] +Equation 1="0100000000" +Equation 2="0100000000" +Equation 3="0100000000" +Equation 4="0100000000" +Equation 5="0100000000" +Equation 6="0100000000" +Equation 7="0100000000" +Equation 8="0100000000" +Equation 9="0100000000" +Equation 10="0100000000" +Equation 11="0100000000" +Equation 12="0100000000" +[End Equation Options] + +[Print Setup & Margins] +Paper Size=9 +Orientation=2 +Left=2.5 +Right=2.5 +Top=2.5 +Bottom=2.5 +[End Print Setup & Margins] + +[Datasheet] +Column Width 1=1500 +Column Width 2=1500 +Column Width 3=1500 +Column Width 4=1500 +Column Width 5=1500 +Column Width 6=1500 +Column Width 7=1500 +Data Titles 1="phi = 0.1" +Data Titles 2="phi = 0.75" +Data Titles 3="phi = 1.25" +Data Titles 4="phi = PI/2" +Data Titles 5="Y5 Data" +Data Titles 6="Y6 Data" +[End Datasheet] + +[Other Graph Options] +Zoom Factor=1 +Auto Redraw=1 +[End Other Graph Options] + +[End] diff --git a/doc/graphs/ellint_2.png b/doc/graphs/ellint_2.png new file mode 100644 index 000000000..0ea89723b Binary files /dev/null and b/doc/graphs/ellint_2.png differ diff --git a/doc/graphs/ellint_2.ps b/doc/graphs/ellint_2.ps new file mode 100644 index 000000000..2a9be5672 --- /dev/null +++ b/doc/graphs/ellint_2.ps @@ -0,0 +1,14797 @@ +%!PS-Adobe-3.0 +%%LanguageLevel: 2 +%%Title: Graph +%%Creator: RJS +%%CreationDate: 17:10:13 27/12/2006 +%%DocumentMedia: plain 841 595 0 () () +%%BoundingBox: 0 0 841 595 +newpath +0 595.2 moveto +841.8 595.2 lineto +841.8 0 lineto +0 0 lineto +0.05 setlinewidth +[] 0 setdash +1 1 1 setrgbcolor +closepath +fill +newpath +0 595.2 moveto +841.8 595.2 lineto +841.8 0 lineto +0 0 lineto +0.05 setlinewidth +[] 0 setdash +1 1 1 setrgbcolor +closepath +stroke +/Arial findfont +24 scalefont +setfont +0 0 0 setrgbcolor +newpath +234.525 500.35 moveto +(Elliptic Integrals of the Second Kind) show +/Arial findfont +16 scalefont +setfont +0 0 0 setrgbcolor +newpath +420.9 481.35 moveto +() show +/Arial findfont +14 scalefont +setfont +0 0 0 setrgbcolor +newpath +417.525 73.35 moveto +(k) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +420.9 487.35 moveto +() show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +98.54772 89.35 moveto +(-1) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +158.0682 89.35 moveto +(-0.8) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +221.7136 89.35 moveto +(-0.6) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +285.3591 89.35 moveto +(-0.4) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +349.0045 89.35 moveto +(-0.2) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +418.275 89.35 moveto +(0) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +477.7955 89.35 moveto +(0.2) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +541.4409 89.35 moveto +(0.4) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +605.0864 89.35 moveto +(0.6) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +668.7319 89.35 moveto +(0.8) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +736.5023 89.35 moveto +(1) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +397.4 129.3249 moveto +(0.2) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +397.4 177.1949 moveto +(0.4) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +397.4 225.0649 moveto +(0.6) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +397.4 272.9349 moveto +(0.8) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +405.65 320.805 moveto +(1) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +397.4 368.675 moveto +(1.2) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +397.4 416.545 moveto +(1.4) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +397.4 464.415 moveto +(1.6) show +102.6727 109.35 moveto +102.6727 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +166.3182 109.35 moveto +166.3182 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +229.9636 109.35 moveto +229.9636 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +293.6091 109.35 moveto +293.6091 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +357.2545 109.35 moveto +357.2545 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9 109.35 moveto +420.9 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +484.5455 109.35 moveto +484.5455 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +548.1909 109.35 moveto +548.1909 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +611.8364 109.35 moveto +611.8364 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +675.4819 109.35 moveto +675.4819 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +739.1273 109.35 moveto +739.1273 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9 133.3249 moveto +413.4 133.3249 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9 181.1949 moveto +413.4 181.1949 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9 229.0649 moveto +413.4 229.0649 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9 276.9349 moveto +413.4 276.9349 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9 324.805 moveto +413.4 324.805 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9 372.675 moveto +413.4 372.675 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9 420.545 moveto +413.4 420.545 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9 468.415 moveto +413.4 468.415 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9 492.35 moveto +420.9 109.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +70.85 109.35 moveto +770.95 109.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +102.6759 109.35 moveto +104.7974 109.3505 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +104.7974 109.3505 moveto +106.9189 109.3511 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +106.9189 109.3511 moveto +109.0404 109.3516 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +109.0404 109.3516 moveto +111.1619 109.3521 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +111.1619 109.3521 moveto +113.2834 109.3526 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +113.2834 109.3526 moveto +115.4049 109.3531 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +115.4049 109.3531 moveto +117.5264 109.3537 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +117.5264 109.3537 moveto +119.648 109.3541 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +119.648 109.3541 moveto +121.7694 109.3546 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +121.7694 109.3546 moveto +123.8909 109.3551 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +123.8909 109.3551 moveto +126.0124 109.3557 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +126.0124 109.3557 moveto +128.134 109.3562 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +128.134 109.3562 moveto +130.2555 109.3566 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +130.2555 109.3566 moveto +132.377 109.3571 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +132.377 109.3571 moveto +134.4985 109.3576 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +134.4985 109.3576 moveto +136.62 109.3581 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +136.62 109.3581 moveto +138.7415 109.3585 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +138.7415 109.3585 moveto +140.863 109.359 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +140.863 109.359 moveto +142.9845 109.3595 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +142.9845 109.3595 moveto +145.106 109.3599 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +145.106 109.3599 moveto +147.2275 109.3604 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +147.2275 109.3604 moveto +149.349 109.3608 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +149.349 109.3608 moveto +151.4705 109.3613 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +151.4705 109.3613 moveto +153.592 109.3618 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +153.592 109.3618 moveto +155.7135 109.3622 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +155.7135 109.3622 moveto +157.835 109.3626 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +157.835 109.3626 moveto +159.9565 109.3631 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +159.9565 109.3631 moveto +162.078 109.3635 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +162.078 109.3635 moveto +164.1995 109.3639 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +164.1995 109.3639 moveto +166.321 109.3644 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +166.321 109.3644 moveto +168.4425 109.3648 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +168.4425 109.3648 moveto +170.564 109.3652 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +170.564 109.3652 moveto +172.6855 109.3656 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +172.6855 109.3656 moveto +174.8071 109.3661 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +174.8071 109.3661 moveto +176.9286 109.3665 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +176.9286 109.3665 moveto +179.05 109.3668 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +179.05 109.3668 moveto +181.1715 109.3672 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +181.1715 109.3672 moveto +183.293 109.3677 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +183.293 109.3677 moveto +185.4146 109.3681 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +185.4146 109.3681 moveto +187.5361 109.3685 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +187.5361 109.3685 moveto +189.6575 109.3689 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +189.6575 109.3689 moveto +191.779 109.3692 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +191.779 109.3692 moveto +193.9006 109.3696 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +193.9006 109.3696 moveto +196.0221 109.37 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +196.0221 109.37 moveto +198.1436 109.3704 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +198.1436 109.3704 moveto +200.2651 109.3707 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +200.2651 109.3707 moveto +202.3866 109.3711 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +202.3866 109.3711 moveto +204.5081 109.3714 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +204.5081 109.3714 moveto +206.6296 109.3718 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +206.6296 109.3718 moveto +208.7511 109.3722 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +208.7511 109.3722 moveto +210.8726 109.3725 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +210.8726 109.3725 moveto +212.9941 109.3729 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +212.9941 109.3729 moveto +215.1156 109.3732 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +215.1156 109.3732 moveto +217.2371 109.3735 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +217.2371 109.3735 moveto +219.3586 109.3739 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +219.3586 109.3739 moveto +221.4801 109.3742 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +221.4801 109.3742 moveto +223.6016 109.3746 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +223.6016 109.3746 moveto +225.7231 109.3749 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +225.7231 109.3749 moveto +227.8446 109.3752 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +227.8446 109.3752 moveto +229.9661 109.3755 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +229.9661 109.3755 moveto +232.0876 109.3758 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +232.0876 109.3758 moveto +234.2091 109.3762 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +234.2091 109.3762 moveto +236.3306 109.3765 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +236.3306 109.3765 moveto +238.4521 109.3768 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +238.4521 109.3768 moveto +240.5737 109.3771 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +240.5737 109.3771 moveto +242.6951 109.3774 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +242.6951 109.3774 moveto +244.8167 109.3777 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +244.8167 109.3777 moveto +246.9381 109.378 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +246.9381 109.378 moveto +249.0597 109.3783 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +249.0597 109.3783 moveto +251.1812 109.3786 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +251.1812 109.3786 moveto +253.3026 109.3788 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +253.3026 109.3788 moveto +255.4242 109.3791 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +255.4242 109.3791 moveto +257.5457 109.3794 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +257.5457 109.3794 moveto +259.6672 109.3796 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +259.6672 109.3796 moveto +261.7887 109.3799 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +261.7887 109.3799 moveto +263.9102 109.3802 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +263.9102 109.3802 moveto +266.0317 109.3804 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +266.0317 109.3804 moveto +268.1532 109.3807 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +268.1532 109.3807 moveto +270.2747 109.381 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +270.2747 109.381 moveto +272.3962 109.3812 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +272.3962 109.3812 moveto +274.5177 109.3814 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +274.5177 109.3814 moveto +276.6392 109.3817 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +276.6392 109.3817 moveto +278.7607 109.3819 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +278.7607 109.3819 moveto +280.8822 109.3822 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +280.8822 109.3822 moveto +283.0037 109.3824 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +283.0037 109.3824 moveto +285.1252 109.3826 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +285.1252 109.3826 moveto +287.2467 109.3829 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +287.2467 109.3829 moveto +289.3682 109.3831 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +289.3682 109.3831 moveto +291.4897 109.3833 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +291.4897 109.3833 moveto +293.6112 109.3835 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +293.6112 109.3835 moveto +295.7327 109.3837 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +295.7327 109.3837 moveto +297.8542 109.3839 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +297.8542 109.3839 moveto +299.9757 109.3841 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +299.9757 109.3841 moveto +302.0973 109.3843 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +302.0973 109.3843 moveto +304.2188 109.3845 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +304.2188 109.3845 moveto +306.3403 109.3847 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +306.3403 109.3847 moveto +308.4618 109.3849 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +308.4618 109.3849 moveto +310.5832 109.3851 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +310.5832 109.3851 moveto +312.7048 109.3853 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +312.7048 109.3853 moveto +314.8263 109.3855 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +314.8263 109.3855 moveto +316.9478 109.3856 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +316.9478 109.3856 moveto +319.0693 109.3858 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +319.0693 109.3858 moveto +321.1908 109.386 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +321.1908 109.386 moveto +323.3123 109.3861 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +323.3123 109.3861 moveto +325.4338 109.3863 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +325.4338 109.3863 moveto +327.5553 109.3864 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +327.5553 109.3864 moveto +329.6768 109.3866 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +329.6768 109.3866 moveto +331.7983 109.3868 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +331.7983 109.3868 moveto +333.9198 109.3869 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +333.9198 109.3869 moveto +336.0413 109.3871 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +336.0413 109.3871 moveto +338.1628 109.3872 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +338.1628 109.3872 moveto +340.2843 109.3873 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +340.2843 109.3873 moveto +342.4058 109.3875 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +342.4058 109.3875 moveto +344.5273 109.3876 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +344.5273 109.3876 moveto +346.6488 109.3877 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +346.6488 109.3877 moveto +348.7703 109.3878 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +348.7703 109.3878 moveto +350.8918 109.3879 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +350.8918 109.3879 moveto +353.0133 109.388 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +353.0133 109.388 moveto +355.1349 109.3882 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +355.1349 109.3882 moveto +357.2563 109.3883 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +357.2563 109.3883 moveto +359.3778 109.3884 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +359.3778 109.3884 moveto +361.4994 109.3885 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +361.4994 109.3885 moveto +363.6208 109.3886 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +363.6208 109.3886 moveto +365.7423 109.3887 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +365.7423 109.3887 moveto +367.8639 109.3888 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +367.8639 109.3888 moveto +369.9854 109.3889 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +369.9854 109.3889 moveto +372.1069 109.3889 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +372.1069 109.3889 moveto +374.2284 109.389 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +374.2284 109.389 moveto +376.3499 109.3891 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +376.3499 109.3891 moveto +378.4714 109.3892 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +378.4714 109.3892 moveto +380.5929 109.3892 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +380.5929 109.3892 moveto +382.7144 109.3893 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +382.7144 109.3893 moveto +384.8359 109.3894 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +384.8359 109.3894 moveto +386.9574 109.3894 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +386.9574 109.3894 moveto +389.0789 109.3895 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +389.0789 109.3895 moveto +391.2004 109.3895 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +391.2004 109.3895 moveto +393.3219 109.3895 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +393.3219 109.3895 moveto +395.4434 109.3896 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +395.4434 109.3896 moveto +397.5649 109.3896 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +397.5649 109.3896 moveto +399.6864 109.3897 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +399.6864 109.3897 moveto +401.8079 109.3897 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +401.8079 109.3897 moveto +403.9294 109.3897 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +403.9294 109.3897 moveto +406.0509 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +406.0509 109.3898 moveto +408.1724 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +408.1724 109.3898 moveto +410.2939 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +410.2939 109.3898 moveto +412.4154 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +412.4154 109.3898 moveto +414.5369 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +414.5369 109.3898 moveto +416.6584 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +416.6584 109.3898 moveto +418.7799 109.3899 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +418.7799 109.3899 moveto +420.9014 109.3899 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +420.9014 109.3899 moveto +423.0229 109.3899 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +423.0229 109.3899 moveto +425.1444 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +425.1444 109.3898 moveto +427.266 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +427.266 109.3898 moveto +429.3875 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +429.3875 109.3898 moveto +431.5089 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +431.5089 109.3898 moveto +433.6305 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +433.6305 109.3898 moveto +435.752 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +435.752 109.3898 moveto +437.8735 109.3897 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +437.8735 109.3897 moveto +439.995 109.3897 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +439.995 109.3897 moveto +442.1165 109.3897 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +442.1165 109.3897 moveto +444.238 109.3896 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +444.238 109.3896 moveto +446.3595 109.3896 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +446.3595 109.3896 moveto +448.481 109.3895 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +448.481 109.3895 moveto +450.6025 109.3895 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +450.6025 109.3895 moveto +452.724 109.3895 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +452.724 109.3895 moveto +454.8455 109.3894 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +454.8455 109.3894 moveto +456.967 109.3894 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +456.967 109.3894 moveto +459.0885 109.3893 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +459.0885 109.3893 moveto +461.21 109.3892 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +461.21 109.3892 moveto +463.3315 109.3892 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +463.3315 109.3892 moveto +465.453 109.3891 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +465.453 109.3891 moveto +467.5745 109.389 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +467.5745 109.389 moveto +469.696 109.3889 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +469.696 109.3889 moveto +471.8175 109.3889 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +471.8175 109.3889 moveto +473.939 109.3888 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +473.939 109.3888 moveto +476.0605 109.3887 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +476.0605 109.3887 moveto +478.182 109.3886 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +478.182 109.3886 moveto +480.3036 109.3885 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +480.3036 109.3885 moveto +482.425 109.3884 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +482.425 109.3884 moveto +484.5465 109.3883 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +484.5465 109.3883 moveto +486.668 109.3882 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +486.668 109.3882 moveto +488.7896 109.388 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +488.7896 109.388 moveto +490.911 109.3879 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +490.911 109.3879 moveto +493.0326 109.3878 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +493.0326 109.3878 moveto +495.1541 109.3877 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +495.1541 109.3877 moveto +497.2756 109.3876 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +497.2756 109.3876 moveto +499.3971 109.3875 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +499.3971 109.3875 moveto +501.5186 109.3873 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +501.5186 109.3873 moveto +503.6401 109.3872 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +503.6401 109.3872 moveto +505.7616 109.3871 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +505.7616 109.3871 moveto +507.8831 109.3869 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +507.8831 109.3869 moveto +510.0046 109.3868 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +510.0046 109.3868 moveto +512.1261 109.3866 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +512.1261 109.3866 moveto +514.2476 109.3864 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +514.2476 109.3864 moveto +516.3691 109.3863 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +516.3691 109.3863 moveto +518.4906 109.3861 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +518.4906 109.3861 moveto +520.6121 109.386 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +520.6121 109.386 moveto +522.7336 109.3858 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +522.7336 109.3858 moveto +524.8552 109.3856 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +524.8552 109.3856 moveto +526.9766 109.3855 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +526.9766 109.3855 moveto +529.0981 109.3853 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +529.0981 109.3853 moveto +531.2197 109.3851 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +531.2197 109.3851 moveto +533.3411 109.3849 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +533.3411 109.3849 moveto +535.4626 109.3847 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +535.4626 109.3847 moveto +537.5842 109.3845 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +537.5842 109.3845 moveto +539.7056 109.3843 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +539.7056 109.3843 moveto +541.8271 109.3841 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +541.8271 109.3841 moveto +543.9487 109.3839 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +543.9487 109.3839 moveto +546.0702 109.3837 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +546.0702 109.3837 moveto +548.1917 109.3835 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +548.1917 109.3835 moveto +550.3132 109.3833 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +550.3132 109.3833 moveto +552.4347 109.3831 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +552.4347 109.3831 moveto +554.5562 109.3829 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +554.5562 109.3829 moveto +556.6777 109.3826 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +556.6777 109.3826 moveto +558.7992 109.3824 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +558.7992 109.3824 moveto +560.9207 109.3822 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +560.9207 109.3822 moveto +563.0422 109.3819 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +563.0422 109.3819 moveto +565.1637 109.3817 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +565.1637 109.3817 moveto +567.2852 109.3814 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +567.2852 109.3814 moveto +569.4067 109.3812 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +569.4067 109.3812 moveto +571.5282 109.381 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +571.5282 109.381 moveto +573.6497 109.3807 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +573.6497 109.3807 moveto +575.7712 109.3804 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +575.7712 109.3804 moveto +577.8927 109.3802 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +577.8927 109.3802 moveto +580.0142 109.3799 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +580.0142 109.3799 moveto +582.1357 109.3796 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +582.1357 109.3796 moveto +584.2572 109.3794 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +584.2572 109.3794 moveto +586.3787 109.3791 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +586.3787 109.3791 moveto +588.5002 109.3788 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +588.5002 109.3788 moveto +590.6218 109.3786 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +590.6218 109.3786 moveto +592.7432 109.3783 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +592.7432 109.3783 moveto +594.8647 109.378 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +594.8647 109.378 moveto +596.9863 109.3777 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +596.9863 109.3777 moveto +599.1077 109.3774 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +599.1077 109.3774 moveto +601.2292 109.3771 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +601.2292 109.3771 moveto +603.3508 109.3768 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +603.3508 109.3768 moveto +605.4722 109.3765 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +605.4722 109.3765 moveto +607.5938 109.3762 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +607.5938 109.3762 moveto +609.7153 109.3758 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +609.7153 109.3758 moveto +611.8368 109.3755 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +611.8368 109.3755 moveto +613.9583 109.3752 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +613.9583 109.3752 moveto +616.0798 109.3749 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +616.0798 109.3749 moveto +618.2013 109.3746 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +618.2013 109.3746 moveto +620.3228 109.3742 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +620.3228 109.3742 moveto +622.4443 109.3739 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +622.4443 109.3739 moveto +624.5658 109.3735 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +624.5658 109.3735 moveto +626.6873 109.3732 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +626.6873 109.3732 moveto +628.8088 109.3729 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +628.8088 109.3729 moveto +630.9303 109.3725 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +630.9303 109.3725 moveto +633.0518 109.3722 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +633.0518 109.3722 moveto +635.1733 109.3718 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +635.1733 109.3718 moveto +637.2949 109.3714 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +637.2949 109.3714 moveto +639.4163 109.3711 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +639.4163 109.3711 moveto +641.5378 109.3707 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +641.5378 109.3707 moveto +643.6593 109.3704 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +643.6593 109.3704 moveto +645.7808 109.37 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +645.7808 109.37 moveto +647.9023 109.3696 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +647.9023 109.3696 moveto +650.0239 109.3692 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +650.0239 109.3692 moveto +652.1453 109.3689 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +652.1453 109.3689 moveto +654.2668 109.3685 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +654.2668 109.3685 moveto +656.3884 109.3681 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +656.3884 109.3681 moveto +658.5098 109.3677 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +658.5098 109.3677 moveto +660.6313 109.3672 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +660.6313 109.3672 moveto +662.7529 109.3668 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +662.7529 109.3668 moveto +664.8743 109.3665 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +664.8743 109.3665 moveto +666.9958 109.3661 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +666.9958 109.3661 moveto +669.1174 109.3656 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +669.1174 109.3656 moveto +671.2389 109.3652 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +671.2389 109.3652 moveto +673.3604 109.3648 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +673.3604 109.3648 moveto +675.4819 109.3644 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +675.4819 109.3644 moveto +677.6033 109.3639 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +677.6033 109.3639 moveto +679.7249 109.3635 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +679.7249 109.3635 moveto +681.8464 109.3631 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +681.8464 109.3631 moveto +683.9679 109.3626 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +683.9679 109.3626 moveto +686.0894 109.3622 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +686.0894 109.3622 moveto +688.2109 109.3618 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +688.2109 109.3618 moveto +690.3324 109.3613 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +690.3324 109.3613 moveto +692.4539 109.3608 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +692.4539 109.3608 moveto +694.5754 109.3604 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +694.5754 109.3604 moveto +696.6969 109.3599 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +696.6969 109.3599 moveto +698.8184 109.3595 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +698.8184 109.3595 moveto +700.9399 109.359 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +700.9399 109.359 moveto +703.0614 109.3585 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +703.0614 109.3585 moveto +705.1829 109.3581 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +705.1829 109.3581 moveto +707.3044 109.3576 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +707.3044 109.3576 moveto +709.426 109.3571 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +709.426 109.3571 moveto +711.5474 109.3566 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +711.5474 109.3566 moveto +713.6689 109.3562 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +713.6689 109.3562 moveto +715.7905 109.3556 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +715.7905 109.3556 moveto +717.9119 109.3551 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +717.9119 109.3551 moveto +720.0334 109.3546 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +720.0334 109.3546 moveto +722.155 109.3541 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +722.155 109.3541 moveto +724.2764 109.3537 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +724.2764 109.3537 moveto +726.3979 109.3531 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +726.3979 109.3531 moveto +728.5195 109.3526 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +728.5195 109.3526 moveto +730.641 109.3521 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +730.641 109.3521 moveto +732.7625 109.3516 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +732.7625 109.3516 moveto +734.884 109.3511 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +734.884 109.3511 moveto +737.0055 109.3505 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +102.6759 109.35 moveto +102.6759 109.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +104.7974 109.3505 moveto +104.7974 109.3505 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +106.9189 109.3511 moveto +106.9189 109.3511 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +109.0404 109.3516 moveto +109.0404 109.3516 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +111.1619 109.3521 moveto +111.1619 109.3521 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +113.2834 109.3526 moveto +113.2834 109.3526 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +115.4049 109.3531 moveto +115.4049 109.3531 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +117.5264 109.3537 moveto +117.5264 109.3537 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +119.648 109.3541 moveto +119.648 109.3541 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +121.7694 109.3546 moveto +121.7694 109.3546 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +123.8909 109.3551 moveto +123.8909 109.3551 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +126.0124 109.3557 moveto +126.0124 109.3557 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +128.134 109.3562 moveto +128.134 109.3562 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +130.2555 109.3566 moveto +130.2555 109.3566 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +132.377 109.3571 moveto +132.377 109.3571 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +134.4985 109.3576 moveto +134.4985 109.3576 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +136.62 109.3581 moveto +136.62 109.3581 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +138.7415 109.3585 moveto +138.7415 109.3585 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +140.863 109.359 moveto +140.863 109.359 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +142.9845 109.3595 moveto +142.9845 109.3595 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +145.106 109.3599 moveto +145.106 109.3599 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +147.2275 109.3604 moveto +147.2275 109.3604 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +149.349 109.3608 moveto +149.349 109.3608 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +151.4705 109.3613 moveto +151.4705 109.3613 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +153.592 109.3618 moveto +153.592 109.3618 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +155.7135 109.3622 moveto +155.7135 109.3622 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +157.835 109.3626 moveto +157.835 109.3626 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +159.9565 109.3631 moveto +159.9565 109.3631 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +162.078 109.3635 moveto +162.078 109.3635 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +164.1995 109.3639 moveto +164.1995 109.3639 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +166.321 109.3644 moveto +166.321 109.3644 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +168.4425 109.3648 moveto +168.4425 109.3648 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +170.564 109.3652 moveto +170.564 109.3652 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +172.6855 109.3656 moveto +172.6855 109.3656 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +174.8071 109.3661 moveto +174.8071 109.3661 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +176.9286 109.3665 moveto +176.9286 109.3665 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +179.05 109.3668 moveto +179.05 109.3668 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +181.1715 109.3672 moveto +181.1715 109.3672 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +183.293 109.3677 moveto +183.293 109.3677 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +185.4146 109.3681 moveto +185.4146 109.3681 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +187.5361 109.3685 moveto +187.5361 109.3685 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +189.6575 109.3689 moveto +189.6575 109.3689 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +191.779 109.3692 moveto +191.779 109.3692 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +193.9006 109.3696 moveto +193.9006 109.3696 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +196.0221 109.37 moveto +196.0221 109.37 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +198.1436 109.3704 moveto +198.1436 109.3704 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +200.2651 109.3707 moveto +200.2651 109.3707 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +202.3866 109.3711 moveto +202.3866 109.3711 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +204.5081 109.3714 moveto +204.5081 109.3714 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +206.6296 109.3718 moveto +206.6296 109.3718 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +208.7511 109.3722 moveto +208.7511 109.3722 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +210.8726 109.3725 moveto +210.8726 109.3725 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +212.9941 109.3729 moveto +212.9941 109.3729 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +215.1156 109.3732 moveto +215.1156 109.3732 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +217.2371 109.3735 moveto +217.2371 109.3735 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +219.3586 109.3739 moveto +219.3586 109.3739 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +221.4801 109.3742 moveto +221.4801 109.3742 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +223.6016 109.3746 moveto +223.6016 109.3746 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +225.7231 109.3749 moveto +225.7231 109.3749 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +227.8446 109.3752 moveto +227.8446 109.3752 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +229.9661 109.3755 moveto +229.9661 109.3755 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +232.0876 109.3758 moveto +232.0876 109.3758 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +234.2091 109.3762 moveto +234.2091 109.3762 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +236.3306 109.3765 moveto +236.3306 109.3765 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +238.4521 109.3768 moveto +238.4521 109.3768 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +240.5737 109.3771 moveto +240.5737 109.3771 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +242.6951 109.3774 moveto +242.6951 109.3774 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +244.8167 109.3777 moveto +244.8167 109.3777 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +246.9381 109.378 moveto +246.9381 109.378 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +249.0597 109.3783 moveto +249.0597 109.3783 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +251.1812 109.3786 moveto +251.1812 109.3786 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +253.3026 109.3788 moveto +253.3026 109.3788 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +255.4242 109.3791 moveto +255.4242 109.3791 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +257.5457 109.3794 moveto +257.5457 109.3794 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +259.6672 109.3796 moveto +259.6672 109.3796 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +261.7887 109.3799 moveto +261.7887 109.3799 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +263.9102 109.3802 moveto +263.9102 109.3802 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +266.0317 109.3804 moveto +266.0317 109.3804 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +268.1532 109.3807 moveto +268.1532 109.3807 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +270.2747 109.381 moveto +270.2747 109.381 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +272.3962 109.3812 moveto +272.3962 109.3812 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +274.5177 109.3814 moveto +274.5177 109.3814 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +276.6392 109.3817 moveto +276.6392 109.3817 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +278.7607 109.3819 moveto +278.7607 109.3819 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +280.8822 109.3822 moveto +280.8822 109.3822 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +283.0037 109.3824 moveto +283.0037 109.3824 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +285.1252 109.3826 moveto +285.1252 109.3826 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +287.2467 109.3829 moveto +287.2467 109.3829 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +289.3682 109.3831 moveto +289.3682 109.3831 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +291.4897 109.3833 moveto +291.4897 109.3833 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +293.6112 109.3835 moveto +293.6112 109.3835 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +295.7327 109.3837 moveto +295.7327 109.3837 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +297.8542 109.3839 moveto +297.8542 109.3839 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +299.9757 109.3841 moveto +299.9757 109.3841 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +302.0973 109.3843 moveto +302.0973 109.3843 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +304.2188 109.3845 moveto +304.2188 109.3845 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +306.3403 109.3847 moveto +306.3403 109.3847 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +308.4618 109.3849 moveto +308.4618 109.3849 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +310.5832 109.3851 moveto +310.5832 109.3851 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +312.7048 109.3853 moveto +312.7048 109.3853 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +314.8263 109.3855 moveto +314.8263 109.3855 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +316.9478 109.3856 moveto +316.9478 109.3856 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +319.0693 109.3858 moveto +319.0693 109.3858 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +321.1908 109.386 moveto +321.1908 109.386 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +323.3123 109.3861 moveto +323.3123 109.3861 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +325.4338 109.3863 moveto +325.4338 109.3863 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +327.5553 109.3864 moveto +327.5553 109.3864 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +329.6768 109.3866 moveto +329.6768 109.3866 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +331.7983 109.3868 moveto +331.7983 109.3868 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +333.9198 109.3869 moveto +333.9198 109.3869 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +336.0413 109.3871 moveto +336.0413 109.3871 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +338.1628 109.3872 moveto +338.1628 109.3872 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +340.2843 109.3873 moveto +340.2843 109.3873 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +342.4058 109.3875 moveto +342.4058 109.3875 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +344.5273 109.3876 moveto +344.5273 109.3876 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +346.6488 109.3877 moveto +346.6488 109.3877 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +348.7703 109.3878 moveto +348.7703 109.3878 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +350.8918 109.3879 moveto +350.8918 109.3879 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +353.0133 109.388 moveto +353.0133 109.388 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +355.1349 109.3882 moveto +355.1349 109.3882 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +357.2563 109.3883 moveto +357.2563 109.3883 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +359.3778 109.3884 moveto +359.3778 109.3884 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +361.4994 109.3885 moveto +361.4994 109.3885 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +363.6208 109.3886 moveto +363.6208 109.3886 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +365.7423 109.3887 moveto +365.7423 109.3887 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +367.8639 109.3888 moveto +367.8639 109.3888 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +369.9854 109.3889 moveto +369.9854 109.3889 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +372.1069 109.3889 moveto +372.1069 109.3889 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +374.2284 109.389 moveto +374.2284 109.389 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +376.3499 109.3891 moveto +376.3499 109.3891 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +378.4714 109.3892 moveto +378.4714 109.3892 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +380.5929 109.3892 moveto +380.5929 109.3892 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +382.7144 109.3893 moveto +382.7144 109.3893 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +384.8359 109.3894 moveto +384.8359 109.3894 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +386.9574 109.3894 moveto +386.9574 109.3894 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +389.0789 109.3895 moveto +389.0789 109.3895 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +391.2004 109.3895 moveto +391.2004 109.3895 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +393.3219 109.3895 moveto +393.3219 109.3895 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +395.4434 109.3896 moveto +395.4434 109.3896 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +397.5649 109.3896 moveto +397.5649 109.3896 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +399.6864 109.3897 moveto +399.6864 109.3897 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +401.8079 109.3897 moveto +401.8079 109.3897 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +403.9294 109.3897 moveto +403.9294 109.3897 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +406.0509 109.3898 moveto +406.0509 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +408.1724 109.3898 moveto +408.1724 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +410.2939 109.3898 moveto +410.2939 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +412.4154 109.3898 moveto +412.4154 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +414.5369 109.3898 moveto +414.5369 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +416.6584 109.3898 moveto +416.6584 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +418.7799 109.3899 moveto +418.7799 109.3899 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9014 109.3899 moveto +420.9014 109.3899 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +423.0229 109.3899 moveto +423.0229 109.3899 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +425.1444 109.3898 moveto +425.1444 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +427.266 109.3898 moveto +427.266 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +429.3875 109.3898 moveto +429.3875 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +431.5089 109.3898 moveto +431.5089 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +433.6305 109.3898 moveto +433.6305 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +435.752 109.3898 moveto +435.752 109.3898 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +437.8735 109.3897 moveto +437.8735 109.3897 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +439.995 109.3897 moveto +439.995 109.3897 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +442.1165 109.3897 moveto +442.1165 109.3897 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +444.238 109.3896 moveto +444.238 109.3896 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +446.3595 109.3896 moveto +446.3595 109.3896 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +448.481 109.3895 moveto +448.481 109.3895 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +450.6025 109.3895 moveto +450.6025 109.3895 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +452.724 109.3895 moveto +452.724 109.3895 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +454.8455 109.3894 moveto +454.8455 109.3894 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +456.967 109.3894 moveto +456.967 109.3894 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +459.0885 109.3893 moveto +459.0885 109.3893 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +461.21 109.3892 moveto +461.21 109.3892 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +463.3315 109.3892 moveto +463.3315 109.3892 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +465.453 109.3891 moveto +465.453 109.3891 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +467.5745 109.389 moveto +467.5745 109.389 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +469.696 109.3889 moveto +469.696 109.3889 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +471.8175 109.3889 moveto +471.8175 109.3889 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +473.939 109.3888 moveto +473.939 109.3888 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +476.0605 109.3887 moveto +476.0605 109.3887 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +478.182 109.3886 moveto +478.182 109.3886 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +480.3036 109.3885 moveto +480.3036 109.3885 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +482.425 109.3884 moveto +482.425 109.3884 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +484.5465 109.3883 moveto +484.5465 109.3883 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +486.668 109.3882 moveto +486.668 109.3882 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +488.7896 109.388 moveto +488.7896 109.388 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +490.911 109.3879 moveto +490.911 109.3879 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +493.0326 109.3878 moveto +493.0326 109.3878 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +495.1541 109.3877 moveto +495.1541 109.3877 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +497.2756 109.3876 moveto +497.2756 109.3876 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +499.3971 109.3875 moveto +499.3971 109.3875 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +501.5186 109.3873 moveto +501.5186 109.3873 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +503.6401 109.3872 moveto +503.6401 109.3872 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +505.7616 109.3871 moveto +505.7616 109.3871 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +507.8831 109.3869 moveto +507.8831 109.3869 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +510.0046 109.3868 moveto +510.0046 109.3868 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +512.1261 109.3866 moveto +512.1261 109.3866 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +514.2476 109.3864 moveto +514.2476 109.3864 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +516.3691 109.3863 moveto +516.3691 109.3863 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +518.4906 109.3861 moveto +518.4906 109.3861 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +520.6121 109.386 moveto +520.6121 109.386 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +522.7336 109.3858 moveto +522.7336 109.3858 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +524.8552 109.3856 moveto +524.8552 109.3856 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +526.9766 109.3855 moveto +526.9766 109.3855 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +529.0981 109.3853 moveto +529.0981 109.3853 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +531.2197 109.3851 moveto +531.2197 109.3851 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +533.3411 109.3849 moveto +533.3411 109.3849 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +535.4626 109.3847 moveto +535.4626 109.3847 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +537.5842 109.3845 moveto +537.5842 109.3845 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +539.7056 109.3843 moveto +539.7056 109.3843 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +541.8271 109.3841 moveto +541.8271 109.3841 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +543.9487 109.3839 moveto +543.9487 109.3839 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +546.0702 109.3837 moveto +546.0702 109.3837 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +548.1917 109.3835 moveto +548.1917 109.3835 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +550.3132 109.3833 moveto +550.3132 109.3833 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +552.4347 109.3831 moveto +552.4347 109.3831 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +554.5562 109.3829 moveto +554.5562 109.3829 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +556.6777 109.3826 moveto +556.6777 109.3826 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +558.7992 109.3824 moveto +558.7992 109.3824 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +560.9207 109.3822 moveto +560.9207 109.3822 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +563.0422 109.3819 moveto +563.0422 109.3819 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +565.1637 109.3817 moveto +565.1637 109.3817 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +567.2852 109.3814 moveto +567.2852 109.3814 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +569.4067 109.3812 moveto +569.4067 109.3812 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +571.5282 109.381 moveto +571.5282 109.381 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +573.6497 109.3807 moveto +573.6497 109.3807 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +575.7712 109.3804 moveto +575.7712 109.3804 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +577.8927 109.3802 moveto +577.8927 109.3802 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +580.0142 109.3799 moveto +580.0142 109.3799 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +582.1357 109.3796 moveto +582.1357 109.3796 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +584.2572 109.3794 moveto +584.2572 109.3794 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +586.3787 109.3791 moveto +586.3787 109.3791 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +588.5002 109.3788 moveto +588.5002 109.3788 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +590.6218 109.3786 moveto +590.6218 109.3786 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +592.7432 109.3783 moveto +592.7432 109.3783 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +594.8647 109.378 moveto +594.8647 109.378 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +596.9863 109.3777 moveto +596.9863 109.3777 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +599.1077 109.3774 moveto +599.1077 109.3774 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +601.2292 109.3771 moveto +601.2292 109.3771 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +603.3508 109.3768 moveto +603.3508 109.3768 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +605.4722 109.3765 moveto +605.4722 109.3765 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +607.5938 109.3762 moveto +607.5938 109.3762 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +609.7153 109.3758 moveto +609.7153 109.3758 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +611.8368 109.3755 moveto +611.8368 109.3755 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +613.9583 109.3752 moveto +613.9583 109.3752 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +616.0798 109.3749 moveto +616.0798 109.3749 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +618.2013 109.3746 moveto +618.2013 109.3746 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +620.3228 109.3742 moveto +620.3228 109.3742 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +622.4443 109.3739 moveto +622.4443 109.3739 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +624.5658 109.3735 moveto +624.5658 109.3735 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +626.6873 109.3732 moveto +626.6873 109.3732 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +628.8088 109.3729 moveto +628.8088 109.3729 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +630.9303 109.3725 moveto +630.9303 109.3725 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +633.0518 109.3722 moveto +633.0518 109.3722 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +635.1733 109.3718 moveto +635.1733 109.3718 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +637.2949 109.3714 moveto +637.2949 109.3714 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +639.4163 109.3711 moveto +639.4163 109.3711 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +641.5378 109.3707 moveto +641.5378 109.3707 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +643.6593 109.3704 moveto +643.6593 109.3704 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +645.7808 109.37 moveto +645.7808 109.37 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +647.9023 109.3696 moveto +647.9023 109.3696 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +650.0239 109.3692 moveto +650.0239 109.3692 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +652.1453 109.3689 moveto +652.1453 109.3689 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +654.2668 109.3685 moveto +654.2668 109.3685 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +656.3884 109.3681 moveto +656.3884 109.3681 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +658.5098 109.3677 moveto +658.5098 109.3677 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +660.6313 109.3672 moveto +660.6313 109.3672 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +662.7529 109.3668 moveto +662.7529 109.3668 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +664.8743 109.3665 moveto +664.8743 109.3665 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +666.9958 109.3661 moveto +666.9958 109.3661 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +669.1174 109.3656 moveto +669.1174 109.3656 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +671.2389 109.3652 moveto +671.2389 109.3652 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +673.3604 109.3648 moveto +673.3604 109.3648 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +675.4819 109.3644 moveto +675.4819 109.3644 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +677.6033 109.3639 moveto +677.6033 109.3639 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +679.7249 109.3635 moveto +679.7249 109.3635 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +681.8464 109.3631 moveto +681.8464 109.3631 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +683.9679 109.3626 moveto +683.9679 109.3626 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +686.0894 109.3622 moveto +686.0894 109.3622 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +688.2109 109.3618 moveto +688.2109 109.3618 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +690.3324 109.3613 moveto +690.3324 109.3613 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +692.4539 109.3608 moveto +692.4539 109.3608 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +694.5754 109.3604 moveto +694.5754 109.3604 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +696.6969 109.3599 moveto +696.6969 109.3599 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +698.8184 109.3595 moveto +698.8184 109.3595 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +700.9399 109.359 moveto +700.9399 109.359 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +703.0614 109.3585 moveto +703.0614 109.3585 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +705.1829 109.3581 moveto +705.1829 109.3581 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +707.3044 109.3576 moveto +707.3044 109.3576 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +709.426 109.3571 moveto +709.426 109.3571 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +711.5474 109.3566 moveto +711.5474 109.3566 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +713.6689 109.3562 moveto +713.6689 109.3562 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +715.7905 109.3556 moveto +715.7905 109.3556 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +717.9119 109.3551 moveto +717.9119 109.3551 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +720.0334 109.3546 moveto +720.0334 109.3546 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +722.155 109.3541 moveto +722.155 109.3541 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +724.2764 109.3537 moveto +724.2764 109.3537 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +726.3979 109.3531 moveto +726.3979 109.3531 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +728.5195 109.3526 moveto +728.5195 109.3526 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +730.641 109.3521 moveto +730.641 109.3521 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +732.7625 109.3516 moveto +732.7625 109.3516 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +734.884 109.3511 moveto +734.884 109.3511 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +737.0055 109.3505 moveto +737.0055 109.3505 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +102.6759 248.6055 moveto +104.7974 248.8445 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +104.7974 248.8445 moveto +106.9189 249.0812 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +106.9189 249.0812 moveto +109.0404 249.3156 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +109.0404 249.3156 moveto +111.1619 249.5478 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +111.1619 249.5478 moveto +113.2834 249.7776 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +113.2834 249.7776 moveto +115.4049 250.0052 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +115.4049 250.0052 moveto +117.5264 250.2307 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +117.5264 250.2307 moveto +119.648 250.4539 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +119.648 250.4539 moveto +121.7694 250.6749 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +121.7694 250.6749 moveto +123.8909 250.8938 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +123.8909 250.8938 moveto +126.0124 251.1106 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +126.0124 251.1106 moveto +128.134 251.3252 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +128.134 251.3252 moveto +130.2555 251.5377 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +130.2555 251.5377 moveto +132.377 251.7482 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +132.377 251.7482 moveto +134.4985 251.9565 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +134.4985 251.9565 moveto +136.62 252.1629 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +136.62 252.1629 moveto +138.7415 252.3671 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +138.7415 252.3671 moveto +140.863 252.5694 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +140.863 252.5694 moveto +142.9845 252.7697 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +142.9845 252.7697 moveto +145.106 252.9679 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +145.106 252.9679 moveto +147.2275 253.1642 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +147.2275 253.1642 moveto +149.349 253.3586 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +149.349 253.3586 moveto +151.4705 253.5509 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +151.4705 253.5509 moveto +153.592 253.7414 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +153.592 253.7414 moveto +155.7135 253.9299 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +155.7135 253.9299 moveto +157.835 254.1166 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +157.835 254.1166 moveto +159.9565 254.3013 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +159.9565 254.3013 moveto +162.078 254.4841 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +162.078 254.4841 moveto +164.1995 254.6651 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +164.1995 254.6651 moveto +166.321 254.8442 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +166.321 254.8442 moveto +168.4425 255.0215 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +168.4425 255.0215 moveto +170.564 255.197 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +170.564 255.197 moveto +172.6855 255.3706 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +172.6855 255.3706 moveto +174.8071 255.5424 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +174.8071 255.5424 moveto +176.9286 255.7124 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +176.9286 255.7124 moveto +179.05 255.8806 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +179.05 255.8806 moveto +181.1715 256.0471 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +181.1715 256.0471 moveto +183.293 256.2118 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +183.293 256.2118 moveto +185.4146 256.3746 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +185.4146 256.3746 moveto +187.5361 256.5358 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +187.5361 256.5358 moveto +189.6575 256.6952 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +189.6575 256.6952 moveto +191.779 256.8529 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +191.779 256.8529 moveto +193.9006 257.0089 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +193.9006 257.0089 moveto +196.0221 257.1631 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +196.0221 257.1631 moveto +198.1436 257.3157 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +198.1436 257.3157 moveto +200.2651 257.4666 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +200.2651 257.4666 moveto +202.3866 257.6158 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +202.3866 257.6158 moveto +204.5081 257.7632 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +204.5081 257.7632 moveto +206.6296 257.9091 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +206.6296 257.9091 moveto +208.7511 258.0532 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +208.7511 258.0532 moveto +210.8726 258.1957 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +210.8726 258.1957 moveto +212.9941 258.3366 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +212.9941 258.3366 moveto +215.1156 258.4758 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +215.1156 258.4758 moveto +217.2371 258.6134 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +217.2371 258.6134 moveto +219.3586 258.7494 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +219.3586 258.7494 moveto +221.4801 258.8838 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +221.4801 258.8838 moveto +223.6016 259.0165 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +223.6016 259.0165 moveto +225.7231 259.1477 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +225.7231 259.1477 moveto +227.8446 259.2772 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +227.8446 259.2772 moveto +229.9661 259.4052 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +229.9661 259.4052 moveto +232.0876 259.5315 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +232.0876 259.5315 moveto +234.2091 259.6563 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +234.2091 259.6563 moveto +236.3306 259.7796 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +236.3306 259.7796 moveto +238.4521 259.9012 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +238.4521 259.9012 moveto +240.5737 260.0213 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +240.5737 260.0213 moveto +242.6951 260.1399 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +242.6951 260.1399 moveto +244.8167 260.2569 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +244.8167 260.2569 moveto +246.9381 260.3724 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +246.9381 260.3724 moveto +249.0597 260.4863 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +249.0597 260.4863 moveto +251.1812 260.5988 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +251.1812 260.5988 moveto +253.3026 260.7096 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +253.3026 260.7096 moveto +255.4242 260.819 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +255.4242 260.819 moveto +257.5457 260.9268 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +257.5457 260.9268 moveto +259.6672 261.0332 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +259.6672 261.0332 moveto +261.7887 261.1381 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +261.7887 261.1381 moveto +263.9102 261.2414 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +263.9102 261.2414 moveto +266.0317 261.3433 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +266.0317 261.3433 moveto +268.1532 261.4436 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +268.1532 261.4436 moveto +270.2747 261.5425 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +270.2747 261.5425 moveto +272.3962 261.6399 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +272.3962 261.6399 moveto +274.5177 261.7358 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +274.5177 261.7358 moveto +276.6392 261.8303 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +276.6392 261.8303 moveto +278.7607 261.9232 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +278.7607 261.9232 moveto +280.8822 262.0148 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +280.8822 262.0148 moveto +283.0037 262.1048 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +283.0037 262.1048 moveto +285.1252 262.1935 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +285.1252 262.1935 moveto +287.2467 262.2806 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +287.2467 262.2806 moveto +289.3682 262.3663 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +289.3682 262.3663 moveto +291.4897 262.4506 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +291.4897 262.4506 moveto +293.6112 262.5334 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +293.6112 262.5334 moveto +295.7327 262.6148 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +295.7327 262.6148 moveto +297.8542 262.6948 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +297.8542 262.6948 moveto +299.9757 262.7733 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +299.9757 262.7733 moveto +302.0973 262.8504 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +302.0973 262.8504 moveto +304.2188 262.9261 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +304.2188 262.9261 moveto +306.3403 263.0004 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +306.3403 263.0004 moveto +308.4618 263.0733 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +308.4618 263.0733 moveto +310.5832 263.1447 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +310.5832 263.1447 moveto +312.7048 263.2147 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +312.7048 263.2147 moveto +314.8263 263.2834 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +314.8263 263.2834 moveto +316.9478 263.3506 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +316.9478 263.3506 moveto +319.0693 263.4164 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +319.0693 263.4164 moveto +321.1908 263.4808 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +321.1908 263.4808 moveto +323.3123 263.5438 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +323.3123 263.5438 moveto +325.4338 263.6054 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +325.4338 263.6054 moveto +327.5553 263.6657 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +327.5553 263.6657 moveto +329.6768 263.7246 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +329.6768 263.7246 moveto +331.7983 263.782 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +331.7983 263.782 moveto +333.9198 263.8381 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +333.9198 263.8381 moveto +336.0413 263.8928 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +336.0413 263.8928 moveto +338.1628 263.9461 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +338.1628 263.9461 moveto +340.2843 263.9981 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +340.2843 263.9981 moveto +342.4058 264.0487 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +342.4058 264.0487 moveto +344.5273 264.0979 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +344.5273 264.0979 moveto +346.6488 264.1457 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +346.6488 264.1457 moveto +348.7703 264.1921 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +348.7703 264.1921 moveto +350.8918 264.2372 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +350.8918 264.2372 moveto +353.0133 264.281 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +353.0133 264.281 moveto +355.1349 264.3233 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +355.1349 264.3233 moveto +357.2563 264.3643 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +357.2563 264.3643 moveto +359.3778 264.404 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +359.3778 264.404 moveto +361.4994 264.4423 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +361.4994 264.4423 moveto +363.6208 264.4792 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +363.6208 264.4792 moveto +365.7423 264.5148 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +365.7423 264.5148 moveto +367.8639 264.549 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +367.8639 264.549 moveto +369.9854 264.5819 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +369.9854 264.5819 moveto +372.1069 264.6134 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +372.1069 264.6134 moveto +374.2284 264.6435 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +374.2284 264.6435 moveto +376.3499 264.6724 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +376.3499 264.6724 moveto +378.4714 264.6998 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +378.4714 264.6998 moveto +380.5929 264.726 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +380.5929 264.726 moveto +382.7144 264.7507 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +382.7144 264.7507 moveto +384.8359 264.7741 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +384.8359 264.7741 moveto +386.9574 264.7962 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +386.9574 264.7962 moveto +389.0789 264.817 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +389.0789 264.817 moveto +391.2004 264.8364 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +391.2004 264.8364 moveto +393.3219 264.8545 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +393.3219 264.8545 moveto +395.4434 264.8712 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +395.4434 264.8712 moveto +397.5649 264.8866 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +397.5649 264.8866 moveto +399.6864 264.9006 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +399.6864 264.9006 moveto +401.8079 264.9133 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +401.8079 264.9133 moveto +403.9294 264.9247 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +403.9294 264.9247 moveto +406.0509 264.9347 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +406.0509 264.9347 moveto +408.1724 264.9434 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +408.1724 264.9434 moveto +410.2939 264.9507 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +410.2939 264.9507 moveto +412.4154 264.9567 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +412.4154 264.9567 moveto +414.5369 264.9614 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +414.5369 264.9614 moveto +416.6584 264.9648 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +416.6584 264.9648 moveto +418.7799 264.9668 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +418.7799 264.9668 moveto +420.9014 264.9674 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +420.9014 264.9674 moveto +423.0229 264.9668 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +423.0229 264.9668 moveto +425.1444 264.9648 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +425.1444 264.9648 moveto +427.266 264.9614 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +427.266 264.9614 moveto +429.3875 264.9567 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +429.3875 264.9567 moveto +431.5089 264.9507 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +431.5089 264.9507 moveto +433.6305 264.9434 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +433.6305 264.9434 moveto +435.752 264.9347 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +435.752 264.9347 moveto +437.8735 264.9247 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +437.8735 264.9247 moveto +439.995 264.9133 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +439.995 264.9133 moveto +442.1165 264.9006 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +442.1165 264.9006 moveto +444.238 264.8865 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +444.238 264.8865 moveto +446.3595 264.8712 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +446.3595 264.8712 moveto +448.481 264.8544 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +448.481 264.8544 moveto +450.6025 264.8364 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +450.6025 264.8364 moveto +452.724 264.817 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +452.724 264.817 moveto +454.8455 264.7962 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +454.8455 264.7962 moveto +456.967 264.7741 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +456.967 264.7741 moveto +459.0885 264.7507 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +459.0885 264.7507 moveto +461.21 264.7259 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +461.21 264.7259 moveto +463.3315 264.6998 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +463.3315 264.6998 moveto +465.453 264.6723 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +465.453 264.6723 moveto +467.5745 264.6435 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +467.5745 264.6435 moveto +469.696 264.6133 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +469.696 264.6133 moveto +471.8175 264.5818 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +471.8175 264.5818 moveto +473.939 264.549 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +473.939 264.549 moveto +476.0605 264.5147 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +476.0605 264.5147 moveto +478.182 264.4792 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +478.182 264.4792 moveto +480.3036 264.4422 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +480.3036 264.4422 moveto +482.425 264.4039 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +482.425 264.4039 moveto +484.5465 264.3643 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +484.5465 264.3643 moveto +486.668 264.3233 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +486.668 264.3233 moveto +488.7896 264.2809 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +488.7896 264.2809 moveto +490.911 264.2372 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +490.911 264.2372 moveto +493.0326 264.1921 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +493.0326 264.1921 moveto +495.1541 264.1456 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +495.1541 264.1456 moveto +497.2756 264.0978 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +497.2756 264.0978 moveto +499.3971 264.0486 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +499.3971 264.0486 moveto +501.5186 263.998 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +501.5186 263.998 moveto +503.6401 263.9461 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +503.6401 263.9461 moveto +505.7616 263.8928 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +505.7616 263.8928 moveto +507.8831 263.838 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +507.8831 263.838 moveto +510.0046 263.782 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +510.0046 263.782 moveto +512.1261 263.7245 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +512.1261 263.7245 moveto +514.2476 263.6656 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +514.2476 263.6656 moveto +516.3691 263.6054 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +516.3691 263.6054 moveto +518.4906 263.5438 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +518.4906 263.5438 moveto +520.6121 263.4807 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +520.6121 263.4807 moveto +522.7336 263.4163 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +522.7336 263.4163 moveto +524.8552 263.3505 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +524.8552 263.3505 moveto +526.9766 263.2833 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +526.9766 263.2833 moveto +529.0981 263.2147 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +529.0981 263.2147 moveto +531.2197 263.1446 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +531.2197 263.1446 moveto +533.3411 263.0732 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +533.3411 263.0732 moveto +535.4626 263.0003 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +535.4626 263.0003 moveto +537.5842 262.926 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +537.5842 262.926 moveto +539.7056 262.8503 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +539.7056 262.8503 moveto +541.8271 262.7732 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +541.8271 262.7732 moveto +543.9487 262.6947 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +543.9487 262.6947 moveto +546.0702 262.6147 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +546.0702 262.6147 moveto +548.1917 262.5333 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +548.1917 262.5333 moveto +550.3132 262.4505 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +550.3132 262.4505 moveto +552.4347 262.3662 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +552.4347 262.3662 moveto +554.5562 262.2805 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +554.5562 262.2805 moveto +556.6777 262.1933 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +556.6777 262.1933 moveto +558.7992 262.1047 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +558.7992 262.1047 moveto +560.9207 262.0146 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +560.9207 262.0146 moveto +563.0422 261.9231 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +563.0422 261.9231 moveto +565.1637 261.8302 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +565.1637 261.8302 moveto +567.2852 261.7357 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +567.2852 261.7357 moveto +569.4067 261.6398 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +569.4067 261.6398 moveto +571.5282 261.5424 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +571.5282 261.5424 moveto +573.6497 261.4435 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +573.6497 261.4435 moveto +575.7712 261.3431 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +575.7712 261.3431 moveto +577.8927 261.2413 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +577.8927 261.2413 moveto +580.0142 261.1379 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +580.0142 261.1379 moveto +582.1357 261.0331 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +582.1357 261.0331 moveto +584.2572 260.9267 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +584.2572 260.9267 moveto +586.3787 260.8189 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +586.3787 260.8189 moveto +588.5002 260.7095 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +588.5002 260.7095 moveto +590.6218 260.5986 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +590.6218 260.5986 moveto +592.7432 260.4862 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +592.7432 260.4862 moveto +594.8647 260.3723 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +594.8647 260.3723 moveto +596.9863 260.2568 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +596.9863 260.2568 moveto +599.1077 260.1397 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +599.1077 260.1397 moveto +601.2292 260.0212 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +601.2292 260.0212 moveto +603.3508 259.9011 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +603.3508 259.9011 moveto +605.4722 259.7794 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +605.4722 259.7794 moveto +607.5938 259.6562 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +607.5938 259.6562 moveto +609.7153 259.5313 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +609.7153 259.5313 moveto +611.8368 259.405 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +611.8368 259.405 moveto +613.9583 259.277 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +613.9583 259.277 moveto +616.0798 259.1475 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +616.0798 259.1475 moveto +618.2013 259.0163 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +618.2013 259.0163 moveto +620.3228 258.8836 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +620.3228 258.8836 moveto +622.4443 258.7492 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +622.4443 258.7492 moveto +624.5658 258.6133 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +624.5658 258.6133 moveto +626.6873 258.4756 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +626.6873 258.4756 moveto +628.8088 258.3364 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +628.8088 258.3364 moveto +630.9303 258.1955 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +630.9303 258.1955 moveto +633.0518 258.053 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +633.0518 258.053 moveto +635.1733 257.9088 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +635.1733 257.9088 moveto +637.2949 257.763 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +637.2949 257.763 moveto +639.4163 257.6155 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +639.4163 257.6155 moveto +641.5378 257.4664 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +641.5378 257.4664 moveto +643.6593 257.3155 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +643.6593 257.3155 moveto +645.7808 257.1629 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +645.7808 257.1629 moveto +647.9023 257.0087 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +647.9023 257.0087 moveto +650.0239 256.8527 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +650.0239 256.8527 moveto +652.1453 256.695 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +652.1453 256.695 moveto +654.2668 256.5356 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +654.2668 256.5356 moveto +656.3884 256.3744 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +656.3884 256.3744 moveto +658.5098 256.2115 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +658.5098 256.2115 moveto +660.6313 256.0468 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +660.6313 256.0468 moveto +662.7529 255.8804 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +662.7529 255.8804 moveto +664.8743 255.7122 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +664.8743 255.7122 moveto +666.9958 255.5422 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +666.9958 255.5422 moveto +669.1174 255.3703 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +669.1174 255.3703 moveto +671.2389 255.1967 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +671.2389 255.1967 moveto +673.3604 255.0213 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +673.3604 255.0213 moveto +675.4819 254.844 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +675.4819 254.844 moveto +677.6033 254.6649 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +677.6033 254.6649 moveto +679.7249 254.4839 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +679.7249 254.4839 moveto +681.8464 254.301 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +681.8464 254.301 moveto +683.9679 254.1163 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +683.9679 254.1163 moveto +686.0894 253.9297 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +686.0894 253.9297 moveto +688.2109 253.7411 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +688.2109 253.7411 moveto +690.3324 253.5507 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +690.3324 253.5507 moveto +692.4539 253.3583 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +692.4539 253.3583 moveto +694.5754 253.164 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +694.5754 253.164 moveto +696.6969 252.9677 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +696.6969 252.9677 moveto +698.8184 252.7694 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +698.8184 252.7694 moveto +700.9399 252.5691 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +700.9399 252.5691 moveto +703.0614 252.3669 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +703.0614 252.3669 moveto +705.1829 252.1626 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +705.1829 252.1626 moveto +707.3044 251.9563 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +707.3044 251.9563 moveto +709.426 251.7479 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +709.426 251.7479 moveto +711.5474 251.5375 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +711.5474 251.5375 moveto +713.6689 251.3249 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +713.6689 251.3249 moveto +715.7905 251.1103 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +715.7905 251.1103 moveto +717.9119 250.8935 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +717.9119 250.8935 moveto +720.0334 250.6746 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +720.0334 250.6746 moveto +722.155 250.4536 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +722.155 250.4536 moveto +724.2764 250.2303 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +724.2764 250.2303 moveto +726.3979 250.005 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +726.3979 250.005 moveto +728.5195 249.7773 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +728.5195 249.7773 moveto +730.641 249.5474 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +730.641 249.5474 moveto +732.7625 249.3153 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +732.7625 249.3153 moveto +734.884 249.0809 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +734.884 249.0809 moveto +737.0055 248.8442 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +102.6759 248.6055 moveto +102.6759 248.6055 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +104.7974 248.8445 moveto +104.7974 248.8445 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +106.9189 249.0812 moveto +106.9189 249.0812 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +109.0404 249.3156 moveto +109.0404 249.3156 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +111.1619 249.5478 moveto +111.1619 249.5478 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +113.2834 249.7776 moveto +113.2834 249.7776 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +115.4049 250.0052 moveto +115.4049 250.0052 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +117.5264 250.2307 moveto +117.5264 250.2307 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +119.648 250.4539 moveto +119.648 250.4539 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +121.7694 250.6749 moveto +121.7694 250.6749 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +123.8909 250.8938 moveto +123.8909 250.8938 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +126.0124 251.1106 moveto +126.0124 251.1106 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +128.134 251.3252 moveto +128.134 251.3252 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +130.2555 251.5377 moveto +130.2555 251.5377 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +132.377 251.7482 moveto +132.377 251.7482 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +134.4985 251.9565 moveto +134.4985 251.9565 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +136.62 252.1629 moveto +136.62 252.1629 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +138.7415 252.3671 moveto +138.7415 252.3671 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +140.863 252.5694 moveto +140.863 252.5694 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +142.9845 252.7697 moveto +142.9845 252.7697 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +145.106 252.9679 moveto +145.106 252.9679 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +147.2275 253.1642 moveto +147.2275 253.1642 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +149.349 253.3586 moveto +149.349 253.3586 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +151.4705 253.5509 moveto +151.4705 253.5509 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +153.592 253.7414 moveto +153.592 253.7414 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +155.7135 253.9299 moveto +155.7135 253.9299 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +157.835 254.1166 moveto +157.835 254.1166 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +159.9565 254.3013 moveto +159.9565 254.3013 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +162.078 254.4841 moveto +162.078 254.4841 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +164.1995 254.6651 moveto +164.1995 254.6651 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +166.321 254.8442 moveto +166.321 254.8442 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +168.4425 255.0215 moveto +168.4425 255.0215 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +170.564 255.197 moveto +170.564 255.197 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +172.6855 255.3706 moveto +172.6855 255.3706 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +174.8071 255.5424 moveto +174.8071 255.5424 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +176.9286 255.7124 moveto +176.9286 255.7124 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +179.05 255.8806 moveto +179.05 255.8806 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +181.1715 256.0471 moveto +181.1715 256.0471 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +183.293 256.2118 moveto +183.293 256.2118 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +185.4146 256.3746 moveto +185.4146 256.3746 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +187.5361 256.5358 moveto +187.5361 256.5358 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +189.6575 256.6952 moveto +189.6575 256.6952 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +191.779 256.8529 moveto +191.779 256.8529 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +193.9006 257.0089 moveto +193.9006 257.0089 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +196.0221 257.1631 moveto +196.0221 257.1631 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +198.1436 257.3157 moveto +198.1436 257.3157 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +200.2651 257.4666 moveto +200.2651 257.4666 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +202.3866 257.6158 moveto +202.3866 257.6158 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +204.5081 257.7632 moveto +204.5081 257.7632 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +206.6296 257.9091 moveto +206.6296 257.9091 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +208.7511 258.0532 moveto +208.7511 258.0532 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +210.8726 258.1957 moveto +210.8726 258.1957 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +212.9941 258.3366 moveto +212.9941 258.3366 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +215.1156 258.4758 moveto +215.1156 258.4758 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +217.2371 258.6134 moveto +217.2371 258.6134 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +219.3586 258.7494 moveto +219.3586 258.7494 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +221.4801 258.8838 moveto +221.4801 258.8838 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +223.6016 259.0165 moveto +223.6016 259.0165 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +225.7231 259.1477 moveto +225.7231 259.1477 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +227.8446 259.2772 moveto +227.8446 259.2772 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +229.9661 259.4052 moveto +229.9661 259.4052 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +232.0876 259.5315 moveto +232.0876 259.5315 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +234.2091 259.6563 moveto +234.2091 259.6563 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +236.3306 259.7796 moveto +236.3306 259.7796 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +238.4521 259.9012 moveto +238.4521 259.9012 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +240.5737 260.0213 moveto +240.5737 260.0213 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +242.6951 260.1399 moveto +242.6951 260.1399 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +244.8167 260.2569 moveto +244.8167 260.2569 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +246.9381 260.3724 moveto +246.9381 260.3724 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +249.0597 260.4863 moveto +249.0597 260.4863 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +251.1812 260.5988 moveto +251.1812 260.5988 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +253.3026 260.7096 moveto +253.3026 260.7096 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +255.4242 260.819 moveto +255.4242 260.819 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +257.5457 260.9268 moveto +257.5457 260.9268 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +259.6672 261.0332 moveto +259.6672 261.0332 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +261.7887 261.1381 moveto +261.7887 261.1381 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +263.9102 261.2414 moveto +263.9102 261.2414 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +266.0317 261.3433 moveto +266.0317 261.3433 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +268.1532 261.4436 moveto +268.1532 261.4436 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +270.2747 261.5425 moveto +270.2747 261.5425 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +272.3962 261.6399 moveto +272.3962 261.6399 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +274.5177 261.7358 moveto +274.5177 261.7358 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +276.6392 261.8303 moveto +276.6392 261.8303 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +278.7607 261.9232 moveto +278.7607 261.9232 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +280.8822 262.0148 moveto +280.8822 262.0148 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +283.0037 262.1048 moveto +283.0037 262.1048 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +285.1252 262.1935 moveto +285.1252 262.1935 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +287.2467 262.2806 moveto +287.2467 262.2806 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +289.3682 262.3663 moveto +289.3682 262.3663 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +291.4897 262.4506 moveto +291.4897 262.4506 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +293.6112 262.5334 moveto +293.6112 262.5334 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +295.7327 262.6148 moveto +295.7327 262.6148 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +297.8542 262.6948 moveto +297.8542 262.6948 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +299.9757 262.7733 moveto +299.9757 262.7733 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +302.0973 262.8504 moveto +302.0973 262.8504 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +304.2188 262.9261 moveto +304.2188 262.9261 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +306.3403 263.0004 moveto +306.3403 263.0004 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +308.4618 263.0733 moveto +308.4618 263.0733 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +310.5832 263.1447 moveto +310.5832 263.1447 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +312.7048 263.2147 moveto +312.7048 263.2147 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +314.8263 263.2834 moveto +314.8263 263.2834 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +316.9478 263.3506 moveto +316.9478 263.3506 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +319.0693 263.4164 moveto +319.0693 263.4164 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +321.1908 263.4808 moveto +321.1908 263.4808 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +323.3123 263.5438 moveto +323.3123 263.5438 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +325.4338 263.6054 moveto +325.4338 263.6054 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +327.5553 263.6657 moveto +327.5553 263.6657 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +329.6768 263.7246 moveto +329.6768 263.7246 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +331.7983 263.782 moveto +331.7983 263.782 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +333.9198 263.8381 moveto +333.9198 263.8381 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +336.0413 263.8928 moveto +336.0413 263.8928 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +338.1628 263.9461 moveto +338.1628 263.9461 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +340.2843 263.9981 moveto +340.2843 263.9981 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +342.4058 264.0487 moveto +342.4058 264.0487 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +344.5273 264.0979 moveto +344.5273 264.0979 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +346.6488 264.1457 moveto +346.6488 264.1457 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +348.7703 264.1921 moveto +348.7703 264.1921 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +350.8918 264.2372 moveto +350.8918 264.2372 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +353.0133 264.281 moveto +353.0133 264.281 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +355.1349 264.3233 moveto +355.1349 264.3233 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +357.2563 264.3643 moveto +357.2563 264.3643 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +359.3778 264.404 moveto +359.3778 264.404 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +361.4994 264.4423 moveto +361.4994 264.4423 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +363.6208 264.4792 moveto +363.6208 264.4792 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +365.7423 264.5148 moveto +365.7423 264.5148 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +367.8639 264.549 moveto +367.8639 264.549 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +369.9854 264.5819 moveto +369.9854 264.5819 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +372.1069 264.6134 moveto +372.1069 264.6134 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +374.2284 264.6435 moveto +374.2284 264.6435 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +376.3499 264.6724 moveto +376.3499 264.6724 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +378.4714 264.6998 moveto +378.4714 264.6998 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +380.5929 264.726 moveto +380.5929 264.726 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +382.7144 264.7507 moveto +382.7144 264.7507 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +384.8359 264.7741 moveto +384.8359 264.7741 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +386.9574 264.7962 moveto +386.9574 264.7962 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +389.0789 264.817 moveto +389.0789 264.817 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +391.2004 264.8364 moveto +391.2004 264.8364 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +393.3219 264.8545 moveto +393.3219 264.8545 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +395.4434 264.8712 moveto +395.4434 264.8712 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +397.5649 264.8866 moveto +397.5649 264.8866 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +399.6864 264.9006 moveto +399.6864 264.9006 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +401.8079 264.9133 moveto +401.8079 264.9133 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +403.9294 264.9247 moveto +403.9294 264.9247 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +406.0509 264.9347 moveto +406.0509 264.9347 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +408.1724 264.9434 moveto +408.1724 264.9434 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +410.2939 264.9507 moveto +410.2939 264.9507 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +412.4154 264.9567 moveto +412.4154 264.9567 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +414.5369 264.9614 moveto +414.5369 264.9614 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +416.6584 264.9648 moveto +416.6584 264.9648 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +418.7799 264.9668 moveto +418.7799 264.9668 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9014 264.9674 moveto +420.9014 264.9674 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +423.0229 264.9668 moveto +423.0229 264.9668 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +425.1444 264.9648 moveto +425.1444 264.9648 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +427.266 264.9614 moveto +427.266 264.9614 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +429.3875 264.9567 moveto +429.3875 264.9567 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +431.5089 264.9507 moveto +431.5089 264.9507 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +433.6305 264.9434 moveto +433.6305 264.9434 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +435.752 264.9347 moveto +435.752 264.9347 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +437.8735 264.9247 moveto +437.8735 264.9247 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +439.995 264.9133 moveto +439.995 264.9133 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +442.1165 264.9006 moveto +442.1165 264.9006 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +444.238 264.8865 moveto +444.238 264.8865 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +446.3595 264.8712 moveto +446.3595 264.8712 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +448.481 264.8544 moveto +448.481 264.8544 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +450.6025 264.8364 moveto +450.6025 264.8364 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +452.724 264.817 moveto +452.724 264.817 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +454.8455 264.7962 moveto +454.8455 264.7962 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +456.967 264.7741 moveto +456.967 264.7741 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +459.0885 264.7507 moveto +459.0885 264.7507 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +461.21 264.7259 moveto +461.21 264.7259 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +463.3315 264.6998 moveto +463.3315 264.6998 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +465.453 264.6723 moveto +465.453 264.6723 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +467.5745 264.6435 moveto +467.5745 264.6435 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +469.696 264.6133 moveto +469.696 264.6133 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +471.8175 264.5818 moveto +471.8175 264.5818 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +473.939 264.549 moveto +473.939 264.549 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +476.0605 264.5147 moveto +476.0605 264.5147 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +478.182 264.4792 moveto +478.182 264.4792 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +480.3036 264.4422 moveto +480.3036 264.4422 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +482.425 264.4039 moveto +482.425 264.4039 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +484.5465 264.3643 moveto +484.5465 264.3643 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +486.668 264.3233 moveto +486.668 264.3233 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +488.7896 264.2809 moveto +488.7896 264.2809 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +490.911 264.2372 moveto +490.911 264.2372 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +493.0326 264.1921 moveto +493.0326 264.1921 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +495.1541 264.1456 moveto +495.1541 264.1456 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +497.2756 264.0978 moveto +497.2756 264.0978 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +499.3971 264.0486 moveto +499.3971 264.0486 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +501.5186 263.998 moveto +501.5186 263.998 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +503.6401 263.9461 moveto +503.6401 263.9461 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +505.7616 263.8928 moveto +505.7616 263.8928 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +507.8831 263.838 moveto +507.8831 263.838 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +510.0046 263.782 moveto +510.0046 263.782 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +512.1261 263.7245 moveto +512.1261 263.7245 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +514.2476 263.6656 moveto +514.2476 263.6656 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +516.3691 263.6054 moveto +516.3691 263.6054 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +518.4906 263.5438 moveto +518.4906 263.5438 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +520.6121 263.4807 moveto +520.6121 263.4807 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +522.7336 263.4163 moveto +522.7336 263.4163 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +524.8552 263.3505 moveto +524.8552 263.3505 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +526.9766 263.2833 moveto +526.9766 263.2833 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +529.0981 263.2147 moveto +529.0981 263.2147 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +531.2197 263.1446 moveto +531.2197 263.1446 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +533.3411 263.0732 moveto +533.3411 263.0732 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +535.4626 263.0003 moveto +535.4626 263.0003 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +537.5842 262.926 moveto +537.5842 262.926 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +539.7056 262.8503 moveto +539.7056 262.8503 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +541.8271 262.7732 moveto +541.8271 262.7732 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +543.9487 262.6947 moveto +543.9487 262.6947 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +546.0702 262.6147 moveto +546.0702 262.6147 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +548.1917 262.5333 moveto +548.1917 262.5333 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +550.3132 262.4505 moveto +550.3132 262.4505 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +552.4347 262.3662 moveto +552.4347 262.3662 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +554.5562 262.2805 moveto +554.5562 262.2805 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +556.6777 262.1933 moveto +556.6777 262.1933 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +558.7992 262.1047 moveto +558.7992 262.1047 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +560.9207 262.0146 moveto +560.9207 262.0146 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +563.0422 261.9231 moveto +563.0422 261.9231 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +565.1637 261.8302 moveto +565.1637 261.8302 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +567.2852 261.7357 moveto +567.2852 261.7357 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +569.4067 261.6398 moveto +569.4067 261.6398 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +571.5282 261.5424 moveto +571.5282 261.5424 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +573.6497 261.4435 moveto +573.6497 261.4435 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +575.7712 261.3431 moveto +575.7712 261.3431 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +577.8927 261.2413 moveto +577.8927 261.2413 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +580.0142 261.1379 moveto +580.0142 261.1379 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +582.1357 261.0331 moveto +582.1357 261.0331 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +584.2572 260.9267 moveto +584.2572 260.9267 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +586.3787 260.8189 moveto +586.3787 260.8189 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +588.5002 260.7095 moveto +588.5002 260.7095 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +590.6218 260.5986 moveto +590.6218 260.5986 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +592.7432 260.4862 moveto +592.7432 260.4862 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +594.8647 260.3723 moveto +594.8647 260.3723 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +596.9863 260.2568 moveto +596.9863 260.2568 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +599.1077 260.1397 moveto +599.1077 260.1397 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +601.2292 260.0212 moveto +601.2292 260.0212 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +603.3508 259.9011 moveto +603.3508 259.9011 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +605.4722 259.7794 moveto +605.4722 259.7794 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +607.5938 259.6562 moveto +607.5938 259.6562 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +609.7153 259.5313 moveto +609.7153 259.5313 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +611.8368 259.405 moveto +611.8368 259.405 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +613.9583 259.277 moveto +613.9583 259.277 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +616.0798 259.1475 moveto +616.0798 259.1475 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +618.2013 259.0163 moveto +618.2013 259.0163 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +620.3228 258.8836 moveto +620.3228 258.8836 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +622.4443 258.7492 moveto +622.4443 258.7492 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +624.5658 258.6133 moveto +624.5658 258.6133 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +626.6873 258.4756 moveto +626.6873 258.4756 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +628.8088 258.3364 moveto +628.8088 258.3364 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +630.9303 258.1955 moveto +630.9303 258.1955 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +633.0518 258.053 moveto +633.0518 258.053 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +635.1733 257.9088 moveto +635.1733 257.9088 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +637.2949 257.763 moveto +637.2949 257.763 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +639.4163 257.6155 moveto +639.4163 257.6155 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +641.5378 257.4664 moveto +641.5378 257.4664 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +643.6593 257.3155 moveto +643.6593 257.3155 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +645.7808 257.1629 moveto +645.7808 257.1629 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +647.9023 257.0087 moveto +647.9023 257.0087 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +650.0239 256.8527 moveto +650.0239 256.8527 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +652.1453 256.695 moveto +652.1453 256.695 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +654.2668 256.5356 moveto +654.2668 256.5356 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +656.3884 256.3744 moveto +656.3884 256.3744 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +658.5098 256.2115 moveto +658.5098 256.2115 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +660.6313 256.0468 moveto +660.6313 256.0468 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +662.7529 255.8804 moveto +662.7529 255.8804 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +664.8743 255.7122 moveto +664.8743 255.7122 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +666.9958 255.5422 moveto +666.9958 255.5422 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +669.1174 255.3703 moveto +669.1174 255.3703 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +671.2389 255.1967 moveto +671.2389 255.1967 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +673.3604 255.0213 moveto +673.3604 255.0213 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +675.4819 254.844 moveto +675.4819 254.844 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +677.6033 254.6649 moveto +677.6033 254.6649 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +679.7249 254.4839 moveto +679.7249 254.4839 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +681.8464 254.301 moveto +681.8464 254.301 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +683.9679 254.1163 moveto +683.9679 254.1163 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +686.0894 253.9297 moveto +686.0894 253.9297 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +688.2109 253.7411 moveto +688.2109 253.7411 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +690.3324 253.5507 moveto +690.3324 253.5507 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +692.4539 253.3583 moveto +692.4539 253.3583 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +694.5754 253.164 moveto +694.5754 253.164 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +696.6969 252.9677 moveto +696.6969 252.9677 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +698.8184 252.7694 moveto +698.8184 252.7694 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +700.9399 252.5691 moveto +700.9399 252.5691 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +703.0614 252.3669 moveto +703.0614 252.3669 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +705.1829 252.1626 moveto +705.1829 252.1626 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +707.3044 251.9563 moveto +707.3044 251.9563 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +709.426 251.7479 moveto +709.426 251.7479 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +711.5474 251.5375 moveto +711.5474 251.5375 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +713.6689 251.3249 moveto +713.6689 251.3249 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +715.7905 251.1103 moveto +715.7905 251.1103 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +717.9119 250.8935 moveto +717.9119 250.8935 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +720.0334 250.6746 moveto +720.0334 250.6746 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +722.155 250.4536 moveto +722.155 250.4536 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +724.2764 250.2303 moveto +724.2764 250.2303 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +726.3979 250.005 moveto +726.3979 250.005 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +728.5195 249.7773 moveto +728.5195 249.7773 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +730.641 249.5474 moveto +730.641 249.5474 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +732.7625 249.3153 moveto +732.7625 249.3153 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +734.884 249.0809 moveto +734.884 249.0809 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +737.0055 248.8442 moveto +737.0055 248.8442 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +102.6759 312.5965 moveto +104.7974 313.9687 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +104.7974 313.9687 moveto +106.9189 315.3034 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +106.9189 315.3034 moveto +109.0404 316.6036 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +109.0404 316.6036 moveto +111.1619 317.8717 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +111.1619 317.8717 moveto +113.2834 319.11 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +113.2834 319.11 moveto +115.4049 320.3203 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +115.4049 320.3203 moveto +117.5264 321.5042 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +117.5264 321.5042 moveto +119.648 322.6632 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +119.648 322.6632 moveto +121.7694 323.7985 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +121.7694 323.7985 moveto +123.8909 324.9112 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +123.8909 324.9112 moveto +126.0124 326.0024 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +126.0124 326.0024 moveto +128.134 327.0733 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +128.134 327.0733 moveto +130.2555 328.124 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +130.2555 328.124 moveto +132.377 329.1561 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +132.377 329.1561 moveto +134.4985 330.17 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +134.4985 330.17 moveto +136.62 331.1659 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +136.62 331.1659 moveto +138.7415 332.1451 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +138.7415 332.1451 moveto +140.863 333.108 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +140.863 333.108 moveto +142.9845 334.0549 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +142.9845 334.0549 moveto +145.106 334.9862 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +145.106 334.9862 moveto +147.2275 335.9027 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +147.2275 335.9027 moveto +149.349 336.8045 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +149.349 336.8045 moveto +151.4705 337.6923 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +151.4705 337.6923 moveto +153.592 338.5661 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +153.592 338.5661 moveto +155.7135 339.4268 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +155.7135 339.4268 moveto +157.835 340.2741 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +157.835 340.2741 moveto +159.9565 341.109 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +159.9565 341.109 moveto +162.078 341.9312 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +162.078 341.9312 moveto +164.1995 342.7411 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +164.1995 342.7411 moveto +166.321 343.5394 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +166.321 343.5394 moveto +168.4425 344.3256 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +168.4425 344.3256 moveto +170.564 345.1006 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +170.564 345.1006 moveto +172.6855 345.8644 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +172.6855 345.8644 moveto +174.8071 346.6172 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +174.8071 346.6172 moveto +176.9286 347.3591 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +176.9286 347.3591 moveto +179.05 348.0906 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +179.05 348.0906 moveto +181.1715 348.8118 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +181.1715 348.8118 moveto +183.293 349.5226 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +183.293 349.5226 moveto +185.4146 350.2234 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +185.4146 350.2234 moveto +187.5361 350.9142 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +187.5361 350.9142 moveto +189.6575 351.5956 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +189.6575 351.5956 moveto +191.779 352.2673 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +191.779 352.2673 moveto +193.9006 352.9295 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +193.9006 352.9295 moveto +196.0221 353.5827 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +196.0221 353.5827 moveto +198.1436 354.2266 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +198.1436 354.2266 moveto +200.2651 354.8616 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +200.2651 354.8616 moveto +202.3866 355.4877 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +202.3866 355.4877 moveto +204.5081 356.1052 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +204.5081 356.1052 moveto +206.6296 356.7139 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +206.6296 356.7139 moveto +208.7511 357.3142 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +208.7511 357.3142 moveto +210.8726 357.9061 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +210.8726 357.9061 moveto +212.9941 358.4897 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +212.9941 358.4897 moveto +215.1156 359.065 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +215.1156 359.065 moveto +217.2371 359.6325 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +217.2371 359.6325 moveto +219.3586 360.1919 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +219.3586 360.1919 moveto +221.4801 360.7434 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +221.4801 360.7434 moveto +223.6016 361.2869 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +223.6016 361.2869 moveto +225.7231 361.8228 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +225.7231 361.8228 moveto +227.8446 362.3513 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +227.8446 362.3513 moveto +229.9661 362.8719 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +229.9661 362.8719 moveto +232.0876 363.3853 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +232.0876 363.3853 moveto +234.2091 363.8913 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +234.2091 363.8913 moveto +236.3306 364.3899 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +236.3306 364.3899 moveto +238.4521 364.8813 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +238.4521 364.8813 moveto +240.5737 365.3652 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +240.5737 365.3652 moveto +242.6951 365.8425 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +242.6951 365.8425 moveto +244.8167 366.3123 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +244.8167 366.3123 moveto +246.9381 366.7755 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +246.9381 366.7755 moveto +249.0597 367.2314 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +249.0597 367.2314 moveto +251.1812 367.6807 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +251.1812 367.6807 moveto +253.3026 368.1233 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +253.3026 368.1233 moveto +255.4242 368.5589 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +255.4242 368.5589 moveto +257.5457 368.988 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +257.5457 368.988 moveto +259.6672 369.4105 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +259.6672 369.4105 moveto +261.7887 369.8262 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +261.7887 369.8262 moveto +263.9102 370.2355 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +263.9102 370.2355 moveto +266.0317 370.6383 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +266.0317 370.6383 moveto +268.1532 371.0347 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +268.1532 371.0347 moveto +270.2747 371.4246 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +270.2747 371.4246 moveto +272.3962 371.8083 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +272.3962 371.8083 moveto +274.5177 372.1857 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +274.5177 372.1857 moveto +276.6392 372.5567 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +276.6392 372.5567 moveto +278.7607 372.9217 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +278.7607 372.9217 moveto +280.8822 373.2805 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +280.8822 373.2805 moveto +283.0037 373.6331 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +283.0037 373.6331 moveto +285.1252 373.9797 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +285.1252 373.9797 moveto +287.2467 374.32 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +287.2467 374.32 moveto +289.3682 374.6544 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +289.3682 374.6544 moveto +291.4897 374.983 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +291.4897 374.983 moveto +293.6112 375.3054 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +293.6112 375.3054 moveto +295.7327 375.6221 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +295.7327 375.6221 moveto +297.8542 375.9328 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +297.8542 375.9328 moveto +299.9757 376.2377 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +299.9757 376.2377 moveto +302.0973 376.5367 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +302.0973 376.5367 moveto +304.2188 376.8298 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +304.2188 376.8298 moveto +306.3403 377.1173 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +306.3403 377.1173 moveto +308.4618 377.399 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +308.4618 377.399 moveto +310.5832 377.6752 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +310.5832 377.6752 moveto +312.7048 377.9457 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +312.7048 377.9457 moveto +314.8263 378.2104 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +314.8263 378.2104 moveto +316.9478 378.4694 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +316.9478 378.4694 moveto +319.0693 378.7229 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +319.0693 378.7229 moveto +321.1908 378.9708 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +321.1908 378.9708 moveto +323.3123 379.2133 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +323.3123 379.2133 moveto +325.4338 379.45 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +325.4338 379.45 moveto +327.5553 379.6815 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +327.5553 379.6815 moveto +329.6768 379.9074 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +329.6768 379.9074 moveto +331.7983 380.1276 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +331.7983 380.1276 moveto +333.9198 380.3425 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +333.9198 380.3425 moveto +336.0413 380.5522 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +336.0413 380.5522 moveto +338.1628 380.7564 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +338.1628 380.7564 moveto +340.2843 380.955 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +340.2843 380.955 moveto +342.4058 381.1484 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +342.4058 381.1484 moveto +344.5273 381.3363 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +344.5273 381.3363 moveto +346.6488 381.519 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +346.6488 381.519 moveto +348.7703 381.6963 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +348.7703 381.6963 moveto +350.8918 381.8684 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +350.8918 381.8684 moveto +353.0133 382.0352 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +353.0133 382.0352 moveto +355.1349 382.1968 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +355.1349 382.1968 moveto +357.2563 382.3528 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +357.2563 382.3528 moveto +359.3778 382.5039 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +359.3778 382.5039 moveto +361.4994 382.6496 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +361.4994 382.6496 moveto +363.6208 382.7901 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +363.6208 382.7901 moveto +365.7423 382.9254 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +365.7423 382.9254 moveto +367.8639 383.0556 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +367.8639 383.0556 moveto +369.9854 383.1805 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +369.9854 383.1805 moveto +372.1069 383.3002 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +372.1069 383.3002 moveto +374.2284 383.4149 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +374.2284 383.4149 moveto +376.3499 383.5242 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +376.3499 383.5242 moveto +378.4714 383.6284 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +378.4714 383.6284 moveto +380.5929 383.7274 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +380.5929 383.7274 moveto +382.7144 383.8215 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +382.7144 383.8215 moveto +384.8359 383.9103 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +384.8359 383.9103 moveto +386.9574 383.9941 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +386.9574 383.9941 moveto +389.0789 384.0728 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +389.0789 384.0728 moveto +391.2004 384.1463 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +391.2004 384.1463 moveto +393.3219 384.2148 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +393.3219 384.2148 moveto +395.4434 384.2779 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +395.4434 384.2779 moveto +397.5649 384.3363 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +397.5649 384.3363 moveto +399.6864 384.3895 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +399.6864 384.3895 moveto +401.8079 384.4376 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +401.8079 384.4376 moveto +403.9294 384.4807 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +403.9294 384.4807 moveto +406.0509 384.5185 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +406.0509 384.5185 moveto +408.1724 384.5515 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +408.1724 384.5515 moveto +410.2939 384.5793 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +410.2939 384.5793 moveto +412.4154 384.602 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +412.4154 384.602 moveto +414.5369 384.6197 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +414.5369 384.6197 moveto +416.6584 384.6324 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +416.6584 384.6324 moveto +418.7799 384.6398 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +418.7799 384.6398 moveto +420.9014 384.6425 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +420.9014 384.6425 moveto +423.0229 384.6398 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +423.0229 384.6398 moveto +425.1444 384.6324 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +425.1444 384.6324 moveto +427.266 384.6197 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +427.266 384.6197 moveto +429.3875 384.602 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +429.3875 384.602 moveto +431.5089 384.5793 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +431.5089 384.5793 moveto +433.6305 384.5515 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +433.6305 384.5515 moveto +435.752 384.5185 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +435.752 384.5185 moveto +437.8735 384.4807 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +437.8735 384.4807 moveto +439.995 384.4376 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +439.995 384.4376 moveto +442.1165 384.3895 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +442.1165 384.3895 moveto +444.238 384.3363 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +444.238 384.3363 moveto +446.3595 384.2779 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +446.3595 384.2779 moveto +448.481 384.2145 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +448.481 384.2145 moveto +450.6025 384.1463 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +450.6025 384.1463 moveto +452.724 384.0726 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +452.724 384.0726 moveto +454.8455 383.9941 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +454.8455 383.9941 moveto +456.967 383.9103 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +456.967 383.9103 moveto +459.0885 383.8213 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +459.0885 383.8213 moveto +461.21 383.7274 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +461.21 383.7274 moveto +463.3315 383.6284 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +463.3315 383.6284 moveto +465.453 383.524 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +465.453 383.524 moveto +467.5745 383.4146 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +467.5745 383.4146 moveto +469.696 383.3 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +469.696 383.3 moveto +471.8175 383.1803 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +471.8175 383.1803 moveto +473.939 383.0553 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +473.939 383.0553 moveto +476.0605 382.9251 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +476.0605 382.9251 moveto +478.182 382.7899 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +478.182 382.7899 moveto +480.3036 382.6494 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +480.3036 382.6494 moveto +482.425 382.5036 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +482.425 382.5036 moveto +484.5465 382.3526 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +484.5465 382.3526 moveto +486.668 382.1965 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +486.668 382.1965 moveto +488.7896 382.035 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +488.7896 382.035 moveto +490.911 381.8682 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +490.911 381.8682 moveto +493.0326 381.6961 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +493.0326 381.6961 moveto +495.1541 381.5187 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +495.1541 381.5187 moveto +497.2756 381.3361 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +497.2756 381.3361 moveto +499.3971 381.1482 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +499.3971 381.1482 moveto +501.5186 380.9548 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +501.5186 380.9548 moveto +503.6401 380.7561 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +503.6401 380.7561 moveto +505.7616 380.552 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +505.7616 380.552 moveto +507.8831 380.3423 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +507.8831 380.3423 moveto +510.0046 380.1274 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +510.0046 380.1274 moveto +512.1261 379.907 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +512.1261 379.907 moveto +514.2476 379.6812 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +514.2476 379.6812 moveto +516.3691 379.4498 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +516.3691 379.4498 moveto +518.4906 379.2128 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +518.4906 379.2128 moveto +520.6121 378.9706 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +520.6121 378.9706 moveto +522.7336 378.7226 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +522.7336 378.7226 moveto +524.8552 378.4691 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +524.8552 378.4691 moveto +526.9766 378.2099 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +526.9766 378.2099 moveto +529.0981 377.9452 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +529.0981 377.9452 moveto +531.2197 377.6747 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +531.2197 377.6747 moveto +533.3411 377.3988 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +533.3411 377.3988 moveto +535.4626 377.1171 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +535.4626 377.1171 moveto +537.5842 376.8294 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +537.5842 376.8294 moveto +539.7056 376.5362 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +539.7056 376.5362 moveto +541.8271 376.2372 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +541.8271 376.2372 moveto +543.9487 375.9323 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +543.9487 375.9323 moveto +546.0702 375.6216 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +546.0702 375.6216 moveto +548.1917 375.3049 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +548.1917 375.3049 moveto +550.3132 374.9825 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +550.3132 374.9825 moveto +552.4347 374.6539 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +552.4347 374.6539 moveto +554.5562 374.3195 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +554.5562 374.3195 moveto +556.6777 373.9792 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +556.6777 373.9792 moveto +558.7992 373.6326 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +558.7992 373.6326 moveto +560.9207 373.28 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +560.9207 373.28 moveto +563.0422 372.9212 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +563.0422 372.9212 moveto +565.1637 372.5562 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +565.1637 372.5562 moveto +567.2852 372.1853 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +567.2852 372.1853 moveto +569.4067 371.8078 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +569.4067 371.8078 moveto +571.5282 371.4241 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +571.5282 371.4241 moveto +573.6497 371.0342 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +573.6497 371.0342 moveto +575.7712 370.6378 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +575.7712 370.6378 moveto +577.8927 370.235 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +577.8927 370.235 moveto +580.0142 369.8257 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +580.0142 369.8257 moveto +582.1357 369.4098 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +582.1357 369.4098 moveto +584.2572 368.9875 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +584.2572 368.9875 moveto +586.3787 368.5584 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +586.3787 368.5584 moveto +588.5002 368.1228 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +588.5002 368.1228 moveto +590.6218 367.6802 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +590.6218 367.6802 moveto +592.7432 367.2309 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +592.7432 367.2309 moveto +594.8647 366.7747 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +594.8647 366.7747 moveto +596.9863 366.3119 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +596.9863 366.3119 moveto +599.1077 365.8418 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +599.1077 365.8418 moveto +601.2292 365.3647 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +601.2292 365.3647 moveto +603.3508 364.8805 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +603.3508 364.8805 moveto +605.4722 364.3891 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +605.4722 364.3891 moveto +607.5938 363.8906 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +607.5938 363.8906 moveto +609.7153 363.3846 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +609.7153 363.3846 moveto +611.8368 362.8712 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +611.8368 362.8712 moveto +613.9583 362.3506 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +613.9583 362.3506 moveto +616.0798 361.8221 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +616.0798 361.8221 moveto +618.2013 361.2862 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +618.2013 361.2862 moveto +620.3228 360.7426 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +620.3228 360.7426 moveto +622.4443 360.1912 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +622.4443 360.1912 moveto +624.5658 359.6318 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +624.5658 359.6318 moveto +626.6873 359.0643 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +626.6873 359.0643 moveto +628.8088 358.4889 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +628.8088 358.4889 moveto +630.9303 357.9054 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +630.9303 357.9054 moveto +633.0518 357.3135 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +633.0518 357.3135 moveto +635.1733 356.7132 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +635.1733 356.7132 moveto +637.2949 356.1043 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +637.2949 356.1043 moveto +639.4163 355.487 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +639.4163 355.487 moveto +641.5378 354.8608 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +641.5378 354.8608 moveto +643.6593 354.2259 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +643.6593 354.2259 moveto +645.7808 353.5818 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +645.7808 353.5818 moveto +647.9023 352.9288 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +647.9023 352.9288 moveto +650.0239 352.2663 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +650.0239 352.2663 moveto +652.1453 351.5947 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +652.1453 351.5947 moveto +654.2668 350.9135 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +654.2668 350.9135 moveto +656.3884 350.2225 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +656.3884 350.2225 moveto +658.5098 349.5217 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +658.5098 349.5217 moveto +660.6313 348.8108 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +660.6313 348.8108 moveto +662.7529 348.0897 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +662.7529 348.0897 moveto +664.8743 347.3582 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +664.8743 347.3582 moveto +666.9958 346.6162 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +666.9958 346.6162 moveto +669.1174 345.8635 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +669.1174 345.8635 moveto +671.2389 345.0997 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +671.2389 345.0997 moveto +673.3604 344.3247 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +673.3604 344.3247 moveto +675.4819 343.5382 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +675.4819 343.5382 moveto +677.6033 342.7402 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +677.6033 342.7402 moveto +679.7249 341.93 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +679.7249 341.93 moveto +681.8464 341.1078 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +681.8464 341.1078 moveto +683.9679 340.2732 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +683.9679 340.2732 moveto +686.0894 339.4256 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +686.0894 339.4256 moveto +688.2109 338.5652 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +688.2109 338.5652 moveto +690.3324 337.6911 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +690.3324 337.6911 moveto +692.4539 336.8033 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +692.4539 336.8033 moveto +694.5754 335.9015 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +694.5754 335.9015 moveto +696.6969 334.985 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +696.6969 334.985 moveto +698.8184 334.0534 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +698.8184 334.0534 moveto +700.9399 333.1066 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +700.9399 333.1066 moveto +703.0614 332.1439 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +703.0614 332.1439 moveto +705.1829 331.1647 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +705.1829 331.1647 moveto +707.3044 330.1685 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +707.3044 330.1685 moveto +709.426 329.1547 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +709.426 329.1547 moveto +711.5474 328.1228 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +711.5474 328.1228 moveto +713.6689 327.0718 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +713.6689 327.0718 moveto +715.7905 326.001 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +715.7905 326.001 moveto +717.9119 324.9098 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +717.9119 324.9098 moveto +720.0334 323.797 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +720.0334 323.797 moveto +722.155 322.6617 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +722.155 322.6617 moveto +724.2764 321.5027 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +724.2764 321.5027 moveto +726.3979 320.3187 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +726.3979 320.3187 moveto +728.5195 319.1084 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +728.5195 319.1084 moveto +730.641 317.8701 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +730.641 317.8701 moveto +732.7625 316.6018 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +732.7625 316.6018 moveto +734.884 315.3016 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +734.884 315.3016 moveto +737.0055 313.9669 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +102.6759 312.5965 moveto +102.6759 312.5965 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +104.7974 313.9687 moveto +104.7974 313.9687 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +106.9189 315.3034 moveto +106.9189 315.3034 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +109.0404 316.6036 moveto +109.0404 316.6036 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +111.1619 317.8717 moveto +111.1619 317.8717 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +113.2834 319.11 moveto +113.2834 319.11 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +115.4049 320.3203 moveto +115.4049 320.3203 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +117.5264 321.5042 moveto +117.5264 321.5042 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +119.648 322.6632 moveto +119.648 322.6632 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +121.7694 323.7985 moveto +121.7694 323.7985 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +123.8909 324.9112 moveto +123.8909 324.9112 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +126.0124 326.0024 moveto +126.0124 326.0024 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +128.134 327.0733 moveto +128.134 327.0733 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +130.2555 328.124 moveto +130.2555 328.124 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +132.377 329.1561 moveto +132.377 329.1561 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +134.4985 330.17 moveto +134.4985 330.17 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +136.62 331.1659 moveto +136.62 331.1659 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +138.7415 332.1451 moveto +138.7415 332.1451 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +140.863 333.108 moveto +140.863 333.108 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +142.9845 334.0549 moveto +142.9845 334.0549 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +145.106 334.9862 moveto +145.106 334.9862 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +147.2275 335.9027 moveto +147.2275 335.9027 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +149.349 336.8045 moveto +149.349 336.8045 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +151.4705 337.6923 moveto +151.4705 337.6923 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +153.592 338.5661 moveto +153.592 338.5661 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +155.7135 339.4268 moveto +155.7135 339.4268 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +157.835 340.2741 moveto +157.835 340.2741 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +159.9565 341.109 moveto +159.9565 341.109 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +162.078 341.9312 moveto +162.078 341.9312 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +164.1995 342.7411 moveto +164.1995 342.7411 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +166.321 343.5394 moveto +166.321 343.5394 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +168.4425 344.3256 moveto +168.4425 344.3256 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +170.564 345.1006 moveto +170.564 345.1006 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +172.6855 345.8644 moveto +172.6855 345.8644 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +174.8071 346.6172 moveto +174.8071 346.6172 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +176.9286 347.3591 moveto +176.9286 347.3591 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +179.05 348.0906 moveto +179.05 348.0906 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +181.1715 348.8118 moveto +181.1715 348.8118 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +183.293 349.5226 moveto +183.293 349.5226 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +185.4146 350.2234 moveto +185.4146 350.2234 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +187.5361 350.9142 moveto +187.5361 350.9142 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +189.6575 351.5956 moveto +189.6575 351.5956 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +191.779 352.2673 moveto +191.779 352.2673 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +193.9006 352.9295 moveto +193.9006 352.9295 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +196.0221 353.5827 moveto +196.0221 353.5827 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +198.1436 354.2266 moveto +198.1436 354.2266 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +200.2651 354.8616 moveto +200.2651 354.8616 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +202.3866 355.4877 moveto +202.3866 355.4877 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +204.5081 356.1052 moveto +204.5081 356.1052 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +206.6296 356.7139 moveto +206.6296 356.7139 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +208.7511 357.3142 moveto +208.7511 357.3142 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +210.8726 357.9061 moveto +210.8726 357.9061 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +212.9941 358.4897 moveto +212.9941 358.4897 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +215.1156 359.065 moveto +215.1156 359.065 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +217.2371 359.6325 moveto +217.2371 359.6325 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +219.3586 360.1919 moveto +219.3586 360.1919 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +221.4801 360.7434 moveto +221.4801 360.7434 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +223.6016 361.2869 moveto +223.6016 361.2869 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +225.7231 361.8228 moveto +225.7231 361.8228 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +227.8446 362.3513 moveto +227.8446 362.3513 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +229.9661 362.8719 moveto +229.9661 362.8719 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +232.0876 363.3853 moveto +232.0876 363.3853 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +234.2091 363.8913 moveto +234.2091 363.8913 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +236.3306 364.3899 moveto +236.3306 364.3899 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +238.4521 364.8813 moveto +238.4521 364.8813 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +240.5737 365.3652 moveto +240.5737 365.3652 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +242.6951 365.8425 moveto +242.6951 365.8425 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +244.8167 366.3123 moveto +244.8167 366.3123 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +246.9381 366.7755 moveto +246.9381 366.7755 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +249.0597 367.2314 moveto +249.0597 367.2314 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +251.1812 367.6807 moveto +251.1812 367.6807 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +253.3026 368.1233 moveto +253.3026 368.1233 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +255.4242 368.5589 moveto +255.4242 368.5589 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +257.5457 368.988 moveto +257.5457 368.988 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +259.6672 369.4105 moveto +259.6672 369.4105 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +261.7887 369.8262 moveto +261.7887 369.8262 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +263.9102 370.2355 moveto +263.9102 370.2355 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +266.0317 370.6383 moveto +266.0317 370.6383 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +268.1532 371.0347 moveto +268.1532 371.0347 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +270.2747 371.4246 moveto +270.2747 371.4246 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +272.3962 371.8083 moveto +272.3962 371.8083 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +274.5177 372.1857 moveto +274.5177 372.1857 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +276.6392 372.5567 moveto +276.6392 372.5567 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +278.7607 372.9217 moveto +278.7607 372.9217 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +280.8822 373.2805 moveto +280.8822 373.2805 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +283.0037 373.6331 moveto +283.0037 373.6331 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +285.1252 373.9797 moveto +285.1252 373.9797 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +287.2467 374.32 moveto +287.2467 374.32 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +289.3682 374.6544 moveto +289.3682 374.6544 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +291.4897 374.983 moveto +291.4897 374.983 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +293.6112 375.3054 moveto +293.6112 375.3054 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +295.7327 375.6221 moveto +295.7327 375.6221 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +297.8542 375.9328 moveto +297.8542 375.9328 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +299.9757 376.2377 moveto +299.9757 376.2377 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +302.0973 376.5367 moveto +302.0973 376.5367 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +304.2188 376.8298 moveto +304.2188 376.8298 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +306.3403 377.1173 moveto +306.3403 377.1173 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +308.4618 377.399 moveto +308.4618 377.399 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +310.5832 377.6752 moveto +310.5832 377.6752 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +312.7048 377.9457 moveto +312.7048 377.9457 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +314.8263 378.2104 moveto +314.8263 378.2104 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +316.9478 378.4694 moveto +316.9478 378.4694 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +319.0693 378.7229 moveto +319.0693 378.7229 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +321.1908 378.9708 moveto +321.1908 378.9708 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +323.3123 379.2133 moveto +323.3123 379.2133 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +325.4338 379.45 moveto +325.4338 379.45 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +327.5553 379.6815 moveto +327.5553 379.6815 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +329.6768 379.9074 moveto +329.6768 379.9074 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +331.7983 380.1276 moveto +331.7983 380.1276 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +333.9198 380.3425 moveto +333.9198 380.3425 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +336.0413 380.5522 moveto +336.0413 380.5522 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +338.1628 380.7564 moveto +338.1628 380.7564 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +340.2843 380.955 moveto +340.2843 380.955 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +342.4058 381.1484 moveto +342.4058 381.1484 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +344.5273 381.3363 moveto +344.5273 381.3363 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +346.6488 381.519 moveto +346.6488 381.519 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +348.7703 381.6963 moveto +348.7703 381.6963 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +350.8918 381.8684 moveto +350.8918 381.8684 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +353.0133 382.0352 moveto +353.0133 382.0352 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +355.1349 382.1968 moveto +355.1349 382.1968 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +357.2563 382.3528 moveto +357.2563 382.3528 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +359.3778 382.5039 moveto +359.3778 382.5039 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +361.4994 382.6496 moveto +361.4994 382.6496 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +363.6208 382.7901 moveto +363.6208 382.7901 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +365.7423 382.9254 moveto +365.7423 382.9254 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +367.8639 383.0556 moveto +367.8639 383.0556 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +369.9854 383.1805 moveto +369.9854 383.1805 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +372.1069 383.3002 moveto +372.1069 383.3002 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +374.2284 383.4149 moveto +374.2284 383.4149 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +376.3499 383.5242 moveto +376.3499 383.5242 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +378.4714 383.6284 moveto +378.4714 383.6284 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +380.5929 383.7274 moveto +380.5929 383.7274 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +382.7144 383.8215 moveto +382.7144 383.8215 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +384.8359 383.9103 moveto +384.8359 383.9103 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +386.9574 383.9941 moveto +386.9574 383.9941 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +389.0789 384.0728 moveto +389.0789 384.0728 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +391.2004 384.1463 moveto +391.2004 384.1463 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +393.3219 384.2148 moveto +393.3219 384.2148 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +395.4434 384.2779 moveto +395.4434 384.2779 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +397.5649 384.3363 moveto +397.5649 384.3363 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +399.6864 384.3895 moveto +399.6864 384.3895 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +401.8079 384.4376 moveto +401.8079 384.4376 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +403.9294 384.4807 moveto +403.9294 384.4807 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +406.0509 384.5185 moveto +406.0509 384.5185 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +408.1724 384.5515 moveto +408.1724 384.5515 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +410.2939 384.5793 moveto +410.2939 384.5793 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +412.4154 384.602 moveto +412.4154 384.602 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +414.5369 384.6197 moveto +414.5369 384.6197 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +416.6584 384.6324 moveto +416.6584 384.6324 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +418.7799 384.6398 moveto +418.7799 384.6398 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9014 384.6425 moveto +420.9014 384.6425 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +423.0229 384.6398 moveto +423.0229 384.6398 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +425.1444 384.6324 moveto +425.1444 384.6324 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +427.266 384.6197 moveto +427.266 384.6197 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +429.3875 384.602 moveto +429.3875 384.602 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +431.5089 384.5793 moveto +431.5089 384.5793 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +433.6305 384.5515 moveto +433.6305 384.5515 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +435.752 384.5185 moveto +435.752 384.5185 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +437.8735 384.4807 moveto +437.8735 384.4807 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +439.995 384.4376 moveto +439.995 384.4376 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +442.1165 384.3895 moveto +442.1165 384.3895 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +444.238 384.3363 moveto +444.238 384.3363 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +446.3595 384.2779 moveto +446.3595 384.2779 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +448.481 384.2145 moveto +448.481 384.2145 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +450.6025 384.1463 moveto +450.6025 384.1463 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +452.724 384.0726 moveto +452.724 384.0726 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +454.8455 383.9941 moveto +454.8455 383.9941 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +456.967 383.9103 moveto +456.967 383.9103 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +459.0885 383.8213 moveto +459.0885 383.8213 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +461.21 383.7274 moveto +461.21 383.7274 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +463.3315 383.6284 moveto +463.3315 383.6284 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +465.453 383.524 moveto +465.453 383.524 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +467.5745 383.4146 moveto +467.5745 383.4146 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +469.696 383.3 moveto +469.696 383.3 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +471.8175 383.1803 moveto +471.8175 383.1803 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +473.939 383.0553 moveto +473.939 383.0553 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +476.0605 382.9251 moveto +476.0605 382.9251 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +478.182 382.7899 moveto +478.182 382.7899 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +480.3036 382.6494 moveto +480.3036 382.6494 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +482.425 382.5036 moveto +482.425 382.5036 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +484.5465 382.3526 moveto +484.5465 382.3526 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +486.668 382.1965 moveto +486.668 382.1965 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +488.7896 382.035 moveto +488.7896 382.035 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +490.911 381.8682 moveto +490.911 381.8682 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +493.0326 381.6961 moveto +493.0326 381.6961 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +495.1541 381.5187 moveto +495.1541 381.5187 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +497.2756 381.3361 moveto +497.2756 381.3361 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +499.3971 381.1482 moveto +499.3971 381.1482 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +501.5186 380.9548 moveto +501.5186 380.9548 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +503.6401 380.7561 moveto +503.6401 380.7561 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +505.7616 380.552 moveto +505.7616 380.552 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +507.8831 380.3423 moveto +507.8831 380.3423 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +510.0046 380.1274 moveto +510.0046 380.1274 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +512.1261 379.907 moveto +512.1261 379.907 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +514.2476 379.6812 moveto +514.2476 379.6812 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +516.3691 379.4498 moveto +516.3691 379.4498 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +518.4906 379.2128 moveto +518.4906 379.2128 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +520.6121 378.9706 moveto +520.6121 378.9706 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +522.7336 378.7226 moveto +522.7336 378.7226 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +524.8552 378.4691 moveto +524.8552 378.4691 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +526.9766 378.2099 moveto +526.9766 378.2099 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +529.0981 377.9452 moveto +529.0981 377.9452 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +531.2197 377.6747 moveto +531.2197 377.6747 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +533.3411 377.3988 moveto +533.3411 377.3988 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +535.4626 377.1171 moveto +535.4626 377.1171 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +537.5842 376.8294 moveto +537.5842 376.8294 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +539.7056 376.5362 moveto +539.7056 376.5362 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +541.8271 376.2372 moveto +541.8271 376.2372 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +543.9487 375.9323 moveto +543.9487 375.9323 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +546.0702 375.6216 moveto +546.0702 375.6216 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +548.1917 375.3049 moveto +548.1917 375.3049 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +550.3132 374.9825 moveto +550.3132 374.9825 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +552.4347 374.6539 moveto +552.4347 374.6539 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +554.5562 374.3195 moveto +554.5562 374.3195 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +556.6777 373.9792 moveto +556.6777 373.9792 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +558.7992 373.6326 moveto +558.7992 373.6326 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +560.9207 373.28 moveto +560.9207 373.28 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +563.0422 372.9212 moveto +563.0422 372.9212 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +565.1637 372.5562 moveto +565.1637 372.5562 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +567.2852 372.1853 moveto +567.2852 372.1853 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +569.4067 371.8078 moveto +569.4067 371.8078 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +571.5282 371.4241 moveto +571.5282 371.4241 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +573.6497 371.0342 moveto +573.6497 371.0342 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +575.7712 370.6378 moveto +575.7712 370.6378 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +577.8927 370.235 moveto +577.8927 370.235 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +580.0142 369.8257 moveto +580.0142 369.8257 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +582.1357 369.4098 moveto +582.1357 369.4098 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +584.2572 368.9875 moveto +584.2572 368.9875 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +586.3787 368.5584 moveto +586.3787 368.5584 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +588.5002 368.1228 moveto +588.5002 368.1228 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +590.6218 367.6802 moveto +590.6218 367.6802 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +592.7432 367.2309 moveto +592.7432 367.2309 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +594.8647 366.7747 moveto +594.8647 366.7747 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +596.9863 366.3119 moveto +596.9863 366.3119 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +599.1077 365.8418 moveto +599.1077 365.8418 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +601.2292 365.3647 moveto +601.2292 365.3647 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +603.3508 364.8805 moveto +603.3508 364.8805 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +605.4722 364.3891 moveto +605.4722 364.3891 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +607.5938 363.8906 moveto +607.5938 363.8906 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +609.7153 363.3846 moveto +609.7153 363.3846 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +611.8368 362.8712 moveto +611.8368 362.8712 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +613.9583 362.3506 moveto +613.9583 362.3506 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +616.0798 361.8221 moveto +616.0798 361.8221 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +618.2013 361.2862 moveto +618.2013 361.2862 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +620.3228 360.7426 moveto +620.3228 360.7426 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +622.4443 360.1912 moveto +622.4443 360.1912 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +624.5658 359.6318 moveto +624.5658 359.6318 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +626.6873 359.0643 moveto +626.6873 359.0643 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +628.8088 358.4889 moveto +628.8088 358.4889 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +630.9303 357.9054 moveto +630.9303 357.9054 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +633.0518 357.3135 moveto +633.0518 357.3135 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +635.1733 356.7132 moveto +635.1733 356.7132 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +637.2949 356.1043 moveto +637.2949 356.1043 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +639.4163 355.487 moveto +639.4163 355.487 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +641.5378 354.8608 moveto +641.5378 354.8608 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +643.6593 354.2259 moveto +643.6593 354.2259 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +645.7808 353.5818 moveto +645.7808 353.5818 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +647.9023 352.9288 moveto +647.9023 352.9288 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +650.0239 352.2663 moveto +650.0239 352.2663 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +652.1453 351.5947 moveto +652.1453 351.5947 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +654.2668 350.9135 moveto +654.2668 350.9135 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +656.3884 350.2225 moveto +656.3884 350.2225 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +658.5098 349.5217 moveto +658.5098 349.5217 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +660.6313 348.8108 moveto +660.6313 348.8108 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +662.7529 348.0897 moveto +662.7529 348.0897 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +664.8743 347.3582 moveto +664.8743 347.3582 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +666.9958 346.6162 moveto +666.9958 346.6162 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +669.1174 345.8635 moveto +669.1174 345.8635 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +671.2389 345.0997 moveto +671.2389 345.0997 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +673.3604 344.3247 moveto +673.3604 344.3247 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +675.4819 343.5382 moveto +675.4819 343.5382 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +677.6033 342.7402 moveto +677.6033 342.7402 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +679.7249 341.93 moveto +679.7249 341.93 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +681.8464 341.1078 moveto +681.8464 341.1078 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +683.9679 340.2732 moveto +683.9679 340.2732 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +686.0894 339.4256 moveto +686.0894 339.4256 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +688.2109 338.5652 moveto +688.2109 338.5652 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +690.3324 337.6911 moveto +690.3324 337.6911 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +692.4539 336.8033 moveto +692.4539 336.8033 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +694.5754 335.9015 moveto +694.5754 335.9015 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +696.6969 334.985 moveto +696.6969 334.985 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +698.8184 334.0534 moveto +698.8184 334.0534 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +700.9399 333.1066 moveto +700.9399 333.1066 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +703.0614 332.1439 moveto +703.0614 332.1439 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +705.1829 331.1647 moveto +705.1829 331.1647 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +707.3044 330.1685 moveto +707.3044 330.1685 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +709.426 329.1547 moveto +709.426 329.1547 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +711.5474 328.1228 moveto +711.5474 328.1228 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +713.6689 327.0718 moveto +713.6689 327.0718 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +715.7905 326.001 moveto +715.7905 326.001 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +717.9119 324.9098 moveto +717.9119 324.9098 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +720.0334 323.797 moveto +720.0334 323.797 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +722.155 322.6617 moveto +722.155 322.6617 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +724.2764 321.5027 moveto +724.2764 321.5027 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +726.3979 320.3187 moveto +726.3979 320.3187 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +728.5195 319.1084 moveto +728.5195 319.1084 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +730.641 317.8701 moveto +730.641 317.8701 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +732.7625 316.6018 moveto +732.7625 316.6018 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +734.884 315.3016 moveto +734.884 315.3016 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +737.0055 313.9669 moveto +737.0055 313.9669 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +102.6759 324.82 moveto +104.7974 329.676 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +104.7974 329.676 moveto +106.9189 333.4428 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +106.9189 333.4428 moveto +109.0404 336.7993 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +109.0404 336.7993 moveto +111.1619 339.8905 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +111.1619 339.8905 moveto +113.2834 342.7852 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +113.2834 342.7852 moveto +115.4049 345.5238 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +115.4049 345.5238 moveto +117.5264 348.133 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +117.5264 348.133 moveto +119.648 350.6316 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +119.648 350.6316 moveto +121.7694 353.0334 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +121.7694 353.0334 moveto +123.8909 355.3499 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +123.8909 355.3499 moveto +126.0124 357.5894 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +126.0124 357.5894 moveto +128.134 359.7592 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +128.134 359.7592 moveto +130.2555 361.8647 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +130.2555 361.8647 moveto +132.377 363.9114 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +132.377 363.9114 moveto +134.4985 365.9035 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +134.4985 365.9035 moveto +136.62 367.8444 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +136.62 367.8444 moveto +138.7415 369.7374 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +138.7415 369.7374 moveto +140.863 371.5854 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +140.863 371.5854 moveto +142.9845 373.3908 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +142.9845 373.3908 moveto +145.106 375.1559 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +145.106 375.1559 moveto +147.2275 376.8828 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +147.2275 376.8828 moveto +149.349 378.573 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +149.349 378.573 moveto +151.4705 380.2284 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +151.4705 380.2284 moveto +153.592 381.8504 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +153.592 381.8504 moveto +155.7135 383.4405 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +155.7135 383.4405 moveto +157.835 384.9998 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +157.835 384.9998 moveto +159.9565 386.5295 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +159.9565 386.5295 moveto +162.078 388.0307 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +162.078 388.0307 moveto +164.1995 389.5042 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +164.1995 389.5042 moveto +166.321 390.9513 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +166.321 390.9513 moveto +168.4425 392.3725 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +168.4425 392.3725 moveto +170.564 393.7686 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +170.564 393.7686 moveto +172.6855 395.1408 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +172.6855 395.1408 moveto +174.8071 396.4893 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +174.8071 396.4893 moveto +176.9286 397.8148 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +176.9286 397.8148 moveto +179.05 399.1184 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +179.05 399.1184 moveto +181.1715 400.4001 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +181.1715 400.4001 moveto +183.293 401.6605 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +183.293 401.6605 moveto +185.4146 402.9006 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +185.4146 402.9006 moveto +187.5361 404.1205 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +187.5361 404.1205 moveto +189.6575 405.3206 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +189.6575 405.3206 moveto +191.779 406.5018 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +191.779 406.5018 moveto +193.9006 407.6641 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +193.9006 407.6641 moveto +196.0221 408.808 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +196.0221 408.808 moveto +198.1436 409.9339 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +198.1436 409.9339 moveto +200.2651 411.0421 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +200.2651 411.0421 moveto +202.3866 412.133 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +202.3866 412.133 moveto +204.5081 413.207 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +204.5081 413.207 moveto +206.6296 414.2644 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +206.6296 414.2644 moveto +208.7511 415.3054 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +208.7511 415.3054 moveto +210.8726 416.3303 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +210.8726 416.3303 moveto +212.9941 417.3396 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +212.9941 417.3396 moveto +215.1156 418.3332 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +215.1156 418.3332 moveto +217.2371 419.3116 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +217.2371 419.3116 moveto +219.3586 420.275 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +219.3586 420.275 moveto +221.4801 421.2235 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +221.4801 421.2235 moveto +223.6016 422.1575 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +223.6016 422.1575 moveto +225.7231 423.0771 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +225.7231 423.0771 moveto +227.8446 423.9828 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +227.8446 423.9828 moveto +229.9661 424.8744 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +229.9661 424.8744 moveto +232.0876 425.752 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +232.0876 425.752 moveto +234.2091 426.6163 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +234.2091 426.6163 moveto +236.3306 427.4675 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +236.3306 427.4675 moveto +238.4521 428.3052 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +238.4521 428.3052 moveto +240.5737 429.1298 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +240.5737 429.1298 moveto +242.6951 429.9416 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +242.6951 429.9416 moveto +244.8167 430.7408 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +244.8167 430.7408 moveto +246.9381 431.5273 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +246.9381 431.5273 moveto +249.0597 432.3014 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +249.0597 432.3014 moveto +251.1812 433.0632 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +251.1812 433.0632 moveto +253.3026 433.8129 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +253.3026 433.8129 moveto +255.4242 434.5506 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +255.4242 434.5506 moveto +257.5457 435.2765 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +257.5457 435.2765 moveto +259.6672 435.9905 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +259.6672 435.9905 moveto +261.7887 436.6927 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +261.7887 436.6927 moveto +263.9102 437.3837 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +263.9102 437.3837 moveto +266.0317 438.0633 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +266.0317 438.0633 moveto +268.1532 438.7313 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +268.1532 438.7313 moveto +270.2747 439.3883 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +270.2747 439.3883 moveto +272.3962 440.0341 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +272.3962 440.0341 moveto +274.5177 440.6691 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +274.5177 440.6691 moveto +276.6392 441.2928 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +276.6392 441.2928 moveto +278.7607 441.906 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +278.7607 441.906 moveto +280.8822 442.5085 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +280.8822 442.5085 moveto +283.0037 443.1004 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +283.0037 443.1004 moveto +285.1252 443.6815 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +285.1252 443.6815 moveto +287.2467 444.2523 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +287.2467 444.2523 moveto +289.3682 444.8127 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +289.3682 444.8127 moveto +291.4897 445.3627 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +291.4897 445.3627 moveto +293.6112 445.9027 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +293.6112 445.9027 moveto +295.7327 446.4324 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +295.7327 446.4324 moveto +297.8542 446.952 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +297.8542 446.952 moveto +299.9757 447.4616 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +299.9757 447.4616 moveto +302.0973 447.9611 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +302.0973 447.9611 moveto +304.2188 448.451 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +304.2188 448.451 moveto +306.3403 448.9309 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +306.3403 448.9309 moveto +308.4618 449.401 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +308.4618 449.401 moveto +310.5832 449.8615 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +310.5832 449.8615 moveto +312.7048 450.3125 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +312.7048 450.3125 moveto +314.8263 450.7536 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +314.8263 450.7536 moveto +316.9478 451.1854 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +316.9478 451.1854 moveto +319.0693 451.6076 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +319.0693 451.6076 moveto +321.1908 452.0202 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +321.1908 452.0202 moveto +323.3123 452.4238 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +323.3123 452.4238 moveto +325.4338 452.8177 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +325.4338 452.8177 moveto +327.5553 453.2026 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +327.5553 453.2026 moveto +329.6768 453.5782 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +329.6768 453.5782 moveto +331.7983 453.9444 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +331.7983 453.9444 moveto +333.9198 454.3015 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +333.9198 454.3015 moveto +336.0413 454.6497 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +336.0413 454.6497 moveto +338.1628 454.9886 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +338.1628 454.9886 moveto +340.2843 455.3185 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +340.2843 455.3185 moveto +342.4058 455.6394 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +342.4058 455.6394 moveto +344.5273 455.9516 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +344.5273 455.9516 moveto +346.6488 456.2546 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +346.6488 456.2546 moveto +348.7703 456.5487 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +348.7703 456.5487 moveto +350.8918 456.834 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +350.8918 456.834 moveto +353.0133 457.1105 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +353.0133 457.1105 moveto +355.1349 457.3781 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +355.1349 457.3781 moveto +357.2563 457.6368 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +357.2563 457.6368 moveto +359.3778 457.8869 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +359.3778 457.8869 moveto +361.4994 458.1284 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +361.4994 458.1284 moveto +363.6208 458.3611 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +363.6208 458.3611 moveto +365.7423 458.5851 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +365.7423 458.5851 moveto +367.8639 458.8005 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +367.8639 458.8005 moveto +369.9854 459.0074 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +369.9854 459.0074 moveto +372.1069 459.2055 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +372.1069 459.2055 moveto +374.2284 459.3951 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +374.2284 459.3951 moveto +376.3499 459.576 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +376.3499 459.576 moveto +378.4714 459.7486 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +378.4714 459.7486 moveto +380.5929 459.9126 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +380.5929 459.9126 moveto +382.7144 460.0681 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +382.7144 460.0681 moveto +384.8359 460.2151 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +384.8359 460.2151 moveto +386.9574 460.3535 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +386.9574 460.3535 moveto +389.0789 460.4834 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +389.0789 460.4834 moveto +391.2004 460.605 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +391.2004 460.605 moveto +393.3219 460.7182 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +393.3219 460.7182 moveto +395.4434 460.8228 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +395.4434 460.8228 moveto +397.5649 460.9193 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +397.5649 460.9193 moveto +399.6864 461.0071 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +399.6864 461.0071 moveto +401.8079 461.0866 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +401.8079 461.0866 moveto +403.9294 461.1577 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +403.9294 461.1577 moveto +406.0509 461.2204 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +406.0509 461.2204 moveto +408.1724 461.2747 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +408.1724 461.2747 moveto +410.2939 461.3206 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +410.2939 461.3206 moveto +412.4154 461.3582 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +412.4154 461.3582 moveto +414.5369 461.3875 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +414.5369 461.3875 moveto +416.6584 461.4085 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +416.6584 461.4085 moveto +418.7799 461.421 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +418.7799 461.421 moveto +420.9014 461.425 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9014 461.425 moveto +423.0229 461.421 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +423.0229 461.421 moveto +425.1444 461.4083 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +425.1444 461.4083 moveto +427.266 461.3875 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +427.266 461.3875 moveto +429.3875 461.3582 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +429.3875 461.3582 moveto +431.5089 461.3206 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +431.5089 461.3206 moveto +433.6305 461.2747 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +433.6305 461.2747 moveto +435.752 461.2204 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +435.752 461.2204 moveto +437.8735 461.1577 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +437.8735 461.1577 moveto +439.995 461.0863 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +439.995 461.0863 moveto +442.1165 461.0069 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +442.1165 461.0069 moveto +444.238 460.919 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +444.238 460.919 moveto +446.3595 460.8228 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +446.3595 460.8228 moveto +448.481 460.718 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +448.481 460.718 moveto +450.6025 460.605 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +450.6025 460.605 moveto +452.724 460.4834 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +452.724 460.4834 moveto +454.8455 460.3532 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +454.8455 460.3532 moveto +456.967 460.2149 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +456.967 460.2149 moveto +459.0885 460.0679 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +459.0885 460.0679 moveto +461.21 459.9123 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +461.21 459.9123 moveto +463.3315 459.7484 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +463.3315 459.7484 moveto +465.453 459.5758 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +465.453 459.5758 moveto +467.5745 459.3949 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +467.5745 459.3949 moveto +469.696 459.2053 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +469.696 459.2053 moveto +471.8175 459.0071 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +471.8175 459.0071 moveto +473.939 458.8003 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +473.939 458.8003 moveto +476.0605 458.5849 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +476.0605 458.5849 moveto +478.182 458.3609 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +478.182 458.3609 moveto +480.3036 458.1282 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +480.3036 458.1282 moveto +482.425 457.8867 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +482.425 457.8867 moveto +484.5465 457.6366 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +484.5465 457.6366 moveto +486.668 457.3776 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +486.668 457.3776 moveto +488.7896 457.11 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +488.7896 457.11 moveto +490.911 456.8336 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +490.911 456.8336 moveto +493.0326 456.5482 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +493.0326 456.5482 moveto +495.1541 456.2541 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +495.1541 456.2541 moveto +497.2756 455.9511 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +497.2756 455.9511 moveto +499.3971 455.639 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +499.3971 455.639 moveto +501.5186 455.318 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +501.5186 455.318 moveto +503.6401 454.9882 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +503.6401 454.9882 moveto +505.7616 454.6493 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +505.7616 454.6493 moveto +507.8831 454.301 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +507.8831 454.301 moveto +510.0046 453.9439 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +510.0046 453.9439 moveto +512.1261 453.5775 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +512.1261 453.5775 moveto +514.2476 453.2019 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +514.2476 453.2019 moveto +516.3691 452.8173 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +516.3691 452.8173 moveto +518.4906 452.4231 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +518.4906 452.4231 moveto +520.6121 452.0197 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +520.6121 452.0197 moveto +522.7336 451.6069 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +522.7336 451.6069 moveto +524.8552 451.1847 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +524.8552 451.1847 moveto +526.9766 450.7531 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +526.9766 450.7531 moveto +529.0981 450.3117 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +529.0981 450.3117 moveto +531.2197 449.8608 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +531.2197 449.8608 moveto +533.3411 449.4005 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +533.3411 449.4005 moveto +535.4626 448.9302 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +535.4626 448.9302 moveto +537.5842 448.4503 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +537.5842 448.4503 moveto +539.7056 447.9606 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +539.7056 447.9606 moveto +541.8271 447.4608 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +541.8271 447.4608 moveto +543.9487 446.9513 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +543.9487 446.9513 moveto +546.0702 446.4316 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +546.0702 446.4316 moveto +548.1917 445.902 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +548.1917 445.902 moveto +550.3132 445.362 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +550.3132 445.362 moveto +552.4347 444.812 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +552.4347 444.812 moveto +554.5562 444.2516 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +554.5562 444.2516 moveto +556.6777 443.6808 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +556.6777 443.6808 moveto +558.7992 443.0994 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +558.7992 443.0994 moveto +560.9207 442.5078 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +560.9207 442.5078 moveto +563.0422 441.9053 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +563.0422 441.9053 moveto +565.1637 441.2921 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +565.1637 441.2921 moveto +567.2852 440.6681 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +567.2852 440.6681 moveto +569.4067 440.0334 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +569.4067 440.0334 moveto +571.5282 439.3873 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +571.5282 439.3873 moveto +573.6497 438.7303 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +573.6497 438.7303 moveto +575.7712 438.0623 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +575.7712 438.0623 moveto +577.8927 437.3828 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +577.8927 437.3828 moveto +580.0142 436.6918 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +580.0142 436.6918 moveto +582.1357 435.9895 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +582.1357 435.9895 moveto +584.2572 435.2753 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +584.2572 435.2753 moveto +586.3787 434.5496 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +586.3787 434.5496 moveto +588.5002 433.8119 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +588.5002 433.8119 moveto +590.6218 433.0623 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +590.6218 433.0623 moveto +592.7432 432.3004 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +592.7432 432.3004 moveto +594.8647 431.5261 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +594.8647 431.5261 moveto +596.9863 430.7396 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +596.9863 430.7396 moveto +599.1077 429.9404 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +599.1077 429.9404 moveto +601.2292 429.1288 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +601.2292 429.1288 moveto +603.3508 428.304 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +603.3508 428.304 moveto +605.4722 427.4663 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +605.4722 427.4663 moveto +607.5938 426.6154 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +607.5938 426.6154 moveto +609.7153 425.7509 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +609.7153 425.7509 moveto +611.8368 424.8731 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +611.8368 424.8731 moveto +613.9583 423.9816 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +613.9583 423.9816 moveto +616.0798 423.0759 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +616.0798 423.0759 moveto +618.2013 422.1563 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +618.2013 422.1563 moveto +620.3228 421.2221 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +620.3228 421.2221 moveto +622.4443 420.2736 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +622.4443 420.2736 moveto +624.5658 419.3102 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +624.5658 419.3102 moveto +626.6873 418.3317 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +626.6873 418.3317 moveto +628.8088 417.3382 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +628.8088 417.3382 moveto +630.9303 416.3291 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +630.9303 416.3291 moveto +633.0518 415.3039 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +633.0518 415.3039 moveto +635.1733 414.263 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +635.1733 414.263 moveto +637.2949 413.2055 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +637.2949 413.2055 moveto +639.4163 412.1316 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +639.4163 412.1316 moveto +641.5378 411.0406 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +641.5378 411.0406 moveto +643.6593 409.9324 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +643.6593 409.9324 moveto +645.7808 408.8065 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +645.7808 408.8065 moveto +647.9023 407.6624 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +647.9023 407.6624 moveto +650.0239 406.5002 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +650.0239 406.5002 moveto +652.1453 405.3192 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +652.1453 405.3192 moveto +654.2668 404.1189 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +654.2668 404.1189 moveto +656.3884 402.8989 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +656.3884 402.8989 moveto +658.5098 401.6588 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +658.5098 401.6588 moveto +660.6313 400.3982 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +660.6313 400.3982 moveto +662.7529 399.1165 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +662.7529 399.1165 moveto +664.8743 397.8132 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +664.8743 397.8132 moveto +666.9958 396.4874 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +666.9958 396.4874 moveto +669.1174 395.1389 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +669.1174 395.1389 moveto +671.2389 393.7667 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +671.2389 393.7667 moveto +673.3604 392.3706 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +673.3604 392.3706 moveto +675.4819 390.9493 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +675.4819 390.9493 moveto +677.6033 389.5022 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +677.6033 389.5022 moveto +679.7249 388.0285 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +679.7249 388.0285 moveto +681.8464 386.5273 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +681.8464 386.5273 moveto +683.9679 384.9977 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +683.9679 384.9977 moveto +686.0894 383.4383 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +686.0894 383.4383 moveto +688.2109 381.8483 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +688.2109 381.8483 moveto +690.3324 380.2262 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +690.3324 380.2262 moveto +692.4539 378.5706 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +692.4539 378.5706 moveto +694.5754 376.8803 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +694.5754 376.8803 moveto +696.6969 375.1534 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +696.6969 375.1534 moveto +698.8184 373.3885 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +698.8184 373.3885 moveto +700.9399 371.5828 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +700.9399 371.5828 moveto +703.0614 369.7348 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +703.0614 369.7348 moveto +705.1829 367.8418 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +705.1829 367.8418 moveto +707.3044 365.9009 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +707.3044 365.9009 moveto +709.426 363.9088 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +709.426 363.9088 moveto +711.5474 361.8618 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +711.5474 361.8618 moveto +713.6689 359.756 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +713.6689 359.756 moveto +715.7905 357.5863 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +715.7905 357.5863 moveto +717.9119 355.3467 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +717.9119 355.3467 moveto +720.0334 353.0303 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +720.0334 353.0303 moveto +722.155 350.6282 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +722.155 350.6282 moveto +724.2764 348.1294 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +724.2764 348.1294 moveto +726.3979 345.5202 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +726.3979 345.5202 moveto +728.5195 342.7813 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +728.5195 342.7813 moveto +730.641 339.8864 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +730.641 339.8864 moveto +732.7625 336.795 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +732.7625 336.795 moveto +734.884 333.4381 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +734.884 333.4381 moveto +737.0055 329.6705 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +102.6759 324.82 moveto +102.6759 324.82 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +104.7974 329.676 moveto +104.7974 329.676 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +106.9189 333.4428 moveto +106.9189 333.4428 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +109.0404 336.7993 moveto +109.0404 336.7993 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +111.1619 339.8905 moveto +111.1619 339.8905 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +113.2834 342.7852 moveto +113.2834 342.7852 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +115.4049 345.5238 moveto +115.4049 345.5238 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +117.5264 348.133 moveto +117.5264 348.133 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +119.648 350.6316 moveto +119.648 350.6316 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +121.7694 353.0334 moveto +121.7694 353.0334 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +123.8909 355.3499 moveto +123.8909 355.3499 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +126.0124 357.5894 moveto +126.0124 357.5894 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +128.134 359.7592 moveto +128.134 359.7592 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +130.2555 361.8647 moveto +130.2555 361.8647 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +132.377 363.9114 moveto +132.377 363.9114 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +134.4985 365.9035 moveto +134.4985 365.9035 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +136.62 367.8444 moveto +136.62 367.8444 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +138.7415 369.7374 moveto +138.7415 369.7374 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +140.863 371.5854 moveto +140.863 371.5854 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +142.9845 373.3908 moveto +142.9845 373.3908 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +145.106 375.1559 moveto +145.106 375.1559 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +147.2275 376.8828 moveto +147.2275 376.8828 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +149.349 378.573 moveto +149.349 378.573 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +151.4705 380.2284 moveto +151.4705 380.2284 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +153.592 381.8504 moveto +153.592 381.8504 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +155.7135 383.4405 moveto +155.7135 383.4405 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +157.835 384.9998 moveto +157.835 384.9998 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +159.9565 386.5295 moveto +159.9565 386.5295 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +162.078 388.0307 moveto +162.078 388.0307 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +164.1995 389.5042 moveto +164.1995 389.5042 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +166.321 390.9513 moveto +166.321 390.9513 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +168.4425 392.3725 moveto +168.4425 392.3725 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +170.564 393.7686 moveto +170.564 393.7686 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +172.6855 395.1408 moveto +172.6855 395.1408 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +174.8071 396.4893 moveto +174.8071 396.4893 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +176.9286 397.8148 moveto +176.9286 397.8148 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +179.05 399.1184 moveto +179.05 399.1184 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +181.1715 400.4001 moveto +181.1715 400.4001 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +183.293 401.6605 moveto +183.293 401.6605 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +185.4146 402.9006 moveto +185.4146 402.9006 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +187.5361 404.1205 moveto +187.5361 404.1205 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +189.6575 405.3206 moveto +189.6575 405.3206 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +191.779 406.5018 moveto +191.779 406.5018 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +193.9006 407.6641 moveto +193.9006 407.6641 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +196.0221 408.808 moveto +196.0221 408.808 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +198.1436 409.9339 moveto +198.1436 409.9339 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +200.2651 411.0421 moveto +200.2651 411.0421 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +202.3866 412.133 moveto +202.3866 412.133 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +204.5081 413.207 moveto +204.5081 413.207 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +206.6296 414.2644 moveto +206.6296 414.2644 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +208.7511 415.3054 moveto +208.7511 415.3054 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +210.8726 416.3303 moveto +210.8726 416.3303 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +212.9941 417.3396 moveto +212.9941 417.3396 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +215.1156 418.3332 moveto +215.1156 418.3332 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +217.2371 419.3116 moveto +217.2371 419.3116 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +219.3586 420.275 moveto +219.3586 420.275 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +221.4801 421.2235 moveto +221.4801 421.2235 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +223.6016 422.1575 moveto +223.6016 422.1575 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +225.7231 423.0771 moveto +225.7231 423.0771 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +227.8446 423.9828 moveto +227.8446 423.9828 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +229.9661 424.8744 moveto +229.9661 424.8744 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +232.0876 425.752 moveto +232.0876 425.752 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +234.2091 426.6163 moveto +234.2091 426.6163 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +236.3306 427.4675 moveto +236.3306 427.4675 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +238.4521 428.3052 moveto +238.4521 428.3052 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +240.5737 429.1298 moveto +240.5737 429.1298 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +242.6951 429.9416 moveto +242.6951 429.9416 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +244.8167 430.7408 moveto +244.8167 430.7408 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +246.9381 431.5273 moveto +246.9381 431.5273 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +249.0597 432.3014 moveto +249.0597 432.3014 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +251.1812 433.0632 moveto +251.1812 433.0632 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +253.3026 433.8129 moveto +253.3026 433.8129 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +255.4242 434.5506 moveto +255.4242 434.5506 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +257.5457 435.2765 moveto +257.5457 435.2765 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +259.6672 435.9905 moveto +259.6672 435.9905 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +261.7887 436.6927 moveto +261.7887 436.6927 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +263.9102 437.3837 moveto +263.9102 437.3837 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +266.0317 438.0633 moveto +266.0317 438.0633 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +268.1532 438.7313 moveto +268.1532 438.7313 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +270.2747 439.3883 moveto +270.2747 439.3883 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +272.3962 440.0341 moveto +272.3962 440.0341 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +274.5177 440.6691 moveto +274.5177 440.6691 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +276.6392 441.2928 moveto +276.6392 441.2928 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +278.7607 441.906 moveto +278.7607 441.906 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +280.8822 442.5085 moveto +280.8822 442.5085 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +283.0037 443.1004 moveto +283.0037 443.1004 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +285.1252 443.6815 moveto +285.1252 443.6815 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +287.2467 444.2523 moveto +287.2467 444.2523 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +289.3682 444.8127 moveto +289.3682 444.8127 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +291.4897 445.3627 moveto +291.4897 445.3627 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +293.6112 445.9027 moveto +293.6112 445.9027 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +295.7327 446.4324 moveto +295.7327 446.4324 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +297.8542 446.952 moveto +297.8542 446.952 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +299.9757 447.4616 moveto +299.9757 447.4616 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +302.0973 447.9611 moveto +302.0973 447.9611 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +304.2188 448.451 moveto +304.2188 448.451 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +306.3403 448.9309 moveto +306.3403 448.9309 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +308.4618 449.401 moveto +308.4618 449.401 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +310.5832 449.8615 moveto +310.5832 449.8615 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +312.7048 450.3125 moveto +312.7048 450.3125 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +314.8263 450.7536 moveto +314.8263 450.7536 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +316.9478 451.1854 moveto +316.9478 451.1854 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +319.0693 451.6076 moveto +319.0693 451.6076 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +321.1908 452.0202 moveto +321.1908 452.0202 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +323.3123 452.4238 moveto +323.3123 452.4238 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +325.4338 452.8177 moveto +325.4338 452.8177 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +327.5553 453.2026 moveto +327.5553 453.2026 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +329.6768 453.5782 moveto +329.6768 453.5782 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +331.7983 453.9444 moveto +331.7983 453.9444 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +333.9198 454.3015 moveto +333.9198 454.3015 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +336.0413 454.6497 moveto +336.0413 454.6497 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +338.1628 454.9886 moveto +338.1628 454.9886 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +340.2843 455.3185 moveto +340.2843 455.3185 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +342.4058 455.6394 moveto +342.4058 455.6394 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +344.5273 455.9516 moveto +344.5273 455.9516 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +346.6488 456.2546 moveto +346.6488 456.2546 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +348.7703 456.5487 moveto +348.7703 456.5487 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +350.8918 456.834 moveto +350.8918 456.834 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +353.0133 457.1105 moveto +353.0133 457.1105 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +355.1349 457.3781 moveto +355.1349 457.3781 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +357.2563 457.6368 moveto +357.2563 457.6368 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +359.3778 457.8869 moveto +359.3778 457.8869 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +361.4994 458.1284 moveto +361.4994 458.1284 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +363.6208 458.3611 moveto +363.6208 458.3611 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +365.7423 458.5851 moveto +365.7423 458.5851 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +367.8639 458.8005 moveto +367.8639 458.8005 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +369.9854 459.0074 moveto +369.9854 459.0074 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +372.1069 459.2055 moveto +372.1069 459.2055 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +374.2284 459.3951 moveto +374.2284 459.3951 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +376.3499 459.576 moveto +376.3499 459.576 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +378.4714 459.7486 moveto +378.4714 459.7486 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +380.5929 459.9126 moveto +380.5929 459.9126 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +382.7144 460.0681 moveto +382.7144 460.0681 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +384.8359 460.2151 moveto +384.8359 460.2151 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +386.9574 460.3535 moveto +386.9574 460.3535 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +389.0789 460.4834 moveto +389.0789 460.4834 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +391.2004 460.605 moveto +391.2004 460.605 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +393.3219 460.7182 moveto +393.3219 460.7182 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +395.4434 460.8228 moveto +395.4434 460.8228 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +397.5649 460.9193 moveto +397.5649 460.9193 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +399.6864 461.0071 moveto +399.6864 461.0071 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +401.8079 461.0866 moveto +401.8079 461.0866 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +403.9294 461.1577 moveto +403.9294 461.1577 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +406.0509 461.2204 moveto +406.0509 461.2204 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +408.1724 461.2747 moveto +408.1724 461.2747 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +410.2939 461.3206 moveto +410.2939 461.3206 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +412.4154 461.3582 moveto +412.4154 461.3582 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +414.5369 461.3875 moveto +414.5369 461.3875 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +416.6584 461.4085 moveto +416.6584 461.4085 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +418.7799 461.421 moveto +418.7799 461.421 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9014 461.425 moveto +420.9014 461.425 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +423.0229 461.421 moveto +423.0229 461.421 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +425.1444 461.4083 moveto +425.1444 461.4083 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +427.266 461.3875 moveto +427.266 461.3875 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +429.3875 461.3582 moveto +429.3875 461.3582 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +431.5089 461.3206 moveto +431.5089 461.3206 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +433.6305 461.2747 moveto +433.6305 461.2747 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +435.752 461.2204 moveto +435.752 461.2204 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +437.8735 461.1577 moveto +437.8735 461.1577 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +439.995 461.0863 moveto +439.995 461.0863 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +442.1165 461.0069 moveto +442.1165 461.0069 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +444.238 460.919 moveto +444.238 460.919 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +446.3595 460.8228 moveto +446.3595 460.8228 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +448.481 460.718 moveto +448.481 460.718 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +450.6025 460.605 moveto +450.6025 460.605 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +452.724 460.4834 moveto +452.724 460.4834 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +454.8455 460.3532 moveto +454.8455 460.3532 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +456.967 460.2149 moveto +456.967 460.2149 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +459.0885 460.0679 moveto +459.0885 460.0679 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +461.21 459.9123 moveto +461.21 459.9123 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +463.3315 459.7484 moveto +463.3315 459.7484 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +465.453 459.5758 moveto +465.453 459.5758 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +467.5745 459.3949 moveto +467.5745 459.3949 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +469.696 459.2053 moveto +469.696 459.2053 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +471.8175 459.0071 moveto +471.8175 459.0071 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +473.939 458.8003 moveto +473.939 458.8003 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +476.0605 458.5849 moveto +476.0605 458.5849 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +478.182 458.3609 moveto +478.182 458.3609 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +480.3036 458.1282 moveto +480.3036 458.1282 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +482.425 457.8867 moveto +482.425 457.8867 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +484.5465 457.6366 moveto +484.5465 457.6366 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +486.668 457.3776 moveto +486.668 457.3776 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +488.7896 457.11 moveto +488.7896 457.11 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +490.911 456.8336 moveto +490.911 456.8336 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +493.0326 456.5482 moveto +493.0326 456.5482 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +495.1541 456.2541 moveto +495.1541 456.2541 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +497.2756 455.9511 moveto +497.2756 455.9511 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +499.3971 455.639 moveto +499.3971 455.639 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +501.5186 455.318 moveto +501.5186 455.318 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +503.6401 454.9882 moveto +503.6401 454.9882 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +505.7616 454.6493 moveto +505.7616 454.6493 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +507.8831 454.301 moveto +507.8831 454.301 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +510.0046 453.9439 moveto +510.0046 453.9439 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +512.1261 453.5775 moveto +512.1261 453.5775 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +514.2476 453.2019 moveto +514.2476 453.2019 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +516.3691 452.8173 moveto +516.3691 452.8173 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +518.4906 452.4231 moveto +518.4906 452.4231 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +520.6121 452.0197 moveto +520.6121 452.0197 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +522.7336 451.6069 moveto +522.7336 451.6069 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +524.8552 451.1847 moveto +524.8552 451.1847 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +526.9766 450.7531 moveto +526.9766 450.7531 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +529.0981 450.3117 moveto +529.0981 450.3117 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +531.2197 449.8608 moveto +531.2197 449.8608 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +533.3411 449.4005 moveto +533.3411 449.4005 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +535.4626 448.9302 moveto +535.4626 448.9302 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +537.5842 448.4503 moveto +537.5842 448.4503 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +539.7056 447.9606 moveto +539.7056 447.9606 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +541.8271 447.4608 moveto +541.8271 447.4608 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +543.9487 446.9513 moveto +543.9487 446.9513 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +546.0702 446.4316 moveto +546.0702 446.4316 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +548.1917 445.902 moveto +548.1917 445.902 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +550.3132 445.362 moveto +550.3132 445.362 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +552.4347 444.812 moveto +552.4347 444.812 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +554.5562 444.2516 moveto +554.5562 444.2516 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +556.6777 443.6808 moveto +556.6777 443.6808 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +558.7992 443.0994 moveto +558.7992 443.0994 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +560.9207 442.5078 moveto +560.9207 442.5078 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +563.0422 441.9053 moveto +563.0422 441.9053 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +565.1637 441.2921 moveto +565.1637 441.2921 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +567.2852 440.6681 moveto +567.2852 440.6681 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +569.4067 440.0334 moveto +569.4067 440.0334 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +571.5282 439.3873 moveto +571.5282 439.3873 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +573.6497 438.7303 moveto +573.6497 438.7303 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +575.7712 438.0623 moveto +575.7712 438.0623 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +577.8927 437.3828 moveto +577.8927 437.3828 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +580.0142 436.6918 moveto +580.0142 436.6918 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +582.1357 435.9895 moveto +582.1357 435.9895 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +584.2572 435.2753 moveto +584.2572 435.2753 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +586.3787 434.5496 moveto +586.3787 434.5496 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +588.5002 433.8119 moveto +588.5002 433.8119 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +590.6218 433.0623 moveto +590.6218 433.0623 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +592.7432 432.3004 moveto +592.7432 432.3004 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +594.8647 431.5261 moveto +594.8647 431.5261 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +596.9863 430.7396 moveto +596.9863 430.7396 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +599.1077 429.9404 moveto +599.1077 429.9404 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +601.2292 429.1288 moveto +601.2292 429.1288 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +603.3508 428.304 moveto +603.3508 428.304 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +605.4722 427.4663 moveto +605.4722 427.4663 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +607.5938 426.6154 moveto +607.5938 426.6154 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +609.7153 425.7509 moveto +609.7153 425.7509 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +611.8368 424.8731 moveto +611.8368 424.8731 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +613.9583 423.9816 moveto +613.9583 423.9816 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +616.0798 423.0759 moveto +616.0798 423.0759 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +618.2013 422.1563 moveto +618.2013 422.1563 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +620.3228 421.2221 moveto +620.3228 421.2221 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +622.4443 420.2736 moveto +622.4443 420.2736 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +624.5658 419.3102 moveto +624.5658 419.3102 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +626.6873 418.3317 moveto +626.6873 418.3317 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +628.8088 417.3382 moveto +628.8088 417.3382 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +630.9303 416.3291 moveto +630.9303 416.3291 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +633.0518 415.3039 moveto +633.0518 415.3039 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +635.1733 414.263 moveto +635.1733 414.263 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +637.2949 413.2055 moveto +637.2949 413.2055 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +639.4163 412.1316 moveto +639.4163 412.1316 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +641.5378 411.0406 moveto +641.5378 411.0406 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +643.6593 409.9324 moveto +643.6593 409.9324 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +645.7808 408.8065 moveto +645.7808 408.8065 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +647.9023 407.6624 moveto +647.9023 407.6624 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +650.0239 406.5002 moveto +650.0239 406.5002 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +652.1453 405.3192 moveto +652.1453 405.3192 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +654.2668 404.1189 moveto +654.2668 404.1189 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +656.3884 402.8989 moveto +656.3884 402.8989 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +658.5098 401.6588 moveto +658.5098 401.6588 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +660.6313 400.3982 moveto +660.6313 400.3982 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +662.7529 399.1165 moveto +662.7529 399.1165 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +664.8743 397.8132 moveto +664.8743 397.8132 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +666.9958 396.4874 moveto +666.9958 396.4874 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +669.1174 395.1389 moveto +669.1174 395.1389 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +671.2389 393.7667 moveto +671.2389 393.7667 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +673.3604 392.3706 moveto +673.3604 392.3706 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +675.4819 390.9493 moveto +675.4819 390.9493 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +677.6033 389.5022 moveto +677.6033 389.5022 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +679.7249 388.0285 moveto +679.7249 388.0285 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +681.8464 386.5273 moveto +681.8464 386.5273 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +683.9679 384.9977 moveto +683.9679 384.9977 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +686.0894 383.4383 moveto +686.0894 383.4383 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +688.2109 381.8483 moveto +688.2109 381.8483 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +690.3324 380.2262 moveto +690.3324 380.2262 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +692.4539 378.5706 moveto +692.4539 378.5706 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +694.5754 376.8803 moveto +694.5754 376.8803 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +696.6969 375.1534 moveto +696.6969 375.1534 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +698.8184 373.3885 moveto +698.8184 373.3885 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +700.9399 371.5828 moveto +700.9399 371.5828 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +703.0614 369.7348 moveto +703.0614 369.7348 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +705.1829 367.8418 moveto +705.1829 367.8418 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +707.3044 365.9009 moveto +707.3044 365.9009 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +709.426 363.9088 moveto +709.426 363.9088 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +711.5474 361.8618 moveto +711.5474 361.8618 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +713.6689 359.756 moveto +713.6689 359.756 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +715.7905 357.5863 moveto +715.7905 357.5863 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +717.9119 355.3467 moveto +717.9119 355.3467 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +720.0334 353.0303 moveto +720.0334 353.0303 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +722.155 350.6282 moveto +722.155 350.6282 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +724.2764 348.1294 moveto +724.2764 348.1294 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +726.3979 345.5202 moveto +726.3979 345.5202 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +728.5195 342.7813 moveto +728.5195 342.7813 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +730.641 339.8864 moveto +730.641 339.8864 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +732.7625 336.795 moveto +732.7625 336.795 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +734.884 333.4381 moveto +734.884 333.4381 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +737.0055 329.6705 moveto +737.0055 329.6705 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +newpath +559.1245 245.9072 moveto +687.1245 245.9072 lineto +687.1245 145.9072 lineto +559.1245 145.9072 lineto +0.5 setlinewidth +[] 0 setdash +1 1 1 setrgbcolor +closepath +fill +newpath +559.1245 245.9072 moveto +687.1245 245.9072 lineto +687.1245 145.9072 lineto +559.1245 145.9072 lineto +0.5 setlinewidth +[] 0 setdash +1 1 1 setrgbcolor +closepath +stroke +newpath +559.1245 245.9072 moveto +686.3745 245.9072 lineto +686.3745 146.6572 lineto +559.1245 146.6572 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +closepath +stroke +/Arial findfont +14 scalefont +setfont +0 0 0 setrgbcolor +newpath +614.1245 220.1572 moveto +(phi = 0.1) show +569.1245 225.9072 moveto +604.1245 225.9072 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +586.6245 225.9072 moveto +586.6245 225.9072 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +/Arial findfont +14 scalefont +setfont +0 0 0 setrgbcolor +newpath +614.1245 200.1572 moveto +(phi = 0.75) show +569.1245 205.9072 moveto +604.1245 205.9072 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0 setrgbcolor +stroke +586.6245 205.9072 moveto +586.6245 205.9072 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +/Arial findfont +14 scalefont +setfont +0 0 0 setrgbcolor +newpath +614.1245 180.1572 moveto +(phi = 1.25) show +569.1245 185.9072 moveto +604.1245 185.9072 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0.627450980392157 setrgbcolor +stroke +586.6245 185.9072 moveto +586.6245 185.9072 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +/Arial findfont +14 scalefont +setfont +0 0 0 setrgbcolor +newpath +614.1245 160.1572 moveto +(phi = Pi/2) show +569.1245 165.9072 moveto +604.1245 165.9072 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +586.6245 165.9072 moveto +586.6245 165.9072 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +showpage diff --git a/doc/graphs/ellint_2.rgd b/doc/graphs/ellint_2.rgd new file mode 100644 index 000000000..ef3933ae4 --- /dev/null +++ b/doc/graphs/ellint_2.rgd @@ -0,0 +1,1845 @@ +[RJS Graph Data File] + +[Header] +Version=3 +Revision=1 +[End Header] + +[Data] +Row 1 Col 1="-0.99999" +Row 1 Col 2="0.09983342" +Row 1 Col 3="0.6816403" +Row 1 Col 4="0.9489934" +Row 1 Col 5="1.000063" +Row 2 Col 1="-0.9933234" +Row 2 Col 2="0.09983564" +Row 2 Col 3="0.6826389" +Row 2 Col 4="0.9547264" +Row 2 Col 5="1.020351" +Row 3 Col 1="-0.9866567" +Row 3 Col 2="0.09983784" +Row 3 Col 3="0.6836278" +Row 3 Col 4="0.9603028" +Row 3 Col 5="1.036089" +Row 4 Col 1="-0.9799901" +Row 4 Col 2="0.09984003" +Row 4 Col 3="0.6846071" +Row 4 Col 4="0.9657349" +Row 4 Col 5="1.050112" +Row 5 Col 1="-0.9733235" +Row 5 Col 2="0.0998422" +Row 5 Col 3="0.6855769" +Row 5 Col 4="0.9710332" +Row 5 Col 5="1.063027" +Row 6 Col 1="-0.9666569" +Row 6 Col 2="0.09984436" +Row 6 Col 3="0.6865373" +Row 6 Col 4="0.9762067" +Row 6 Col 5="1.075121" +Row 7 Col 1="-0.9599902" +Row 7 Col 2="0.0998465" +Row 7 Col 3="0.6874883" +Row 7 Col 4="0.9812633" +Row 7 Col 5="1.086563" +Row 8 Col 1="-0.9533236" +Row 8 Col 2="0.09984863" +Row 8 Col 3="0.6884301" +Row 8 Col 4="0.9862097" +Row 8 Col 5="1.097464" +Row 9 Col 1="-0.9466569" +Row 9 Col 2="0.09985074" +Row 9 Col 3="0.6893627" +Row 9 Col 4="0.9910518" +Row 9 Col 5="1.107903" +Row 10 Col 1="-0.9399903" +Row 10 Col 2="0.09985284" +Row 10 Col 3="0.6902862" +Row 10 Col 4="0.995795" +Row 10 Col 5="1.117938" +Row 11 Col 1="-0.9333237" +Row 11 Col 2="0.09985492" +Row 11 Col 3="0.6912007" +Row 11 Col 4="1.000444" +Row 11 Col 5="1.127616" +Row 12 Col 1="-0.9266571" +Row 12 Col 2="0.09985699" +Row 12 Col 3="0.6921063" +Row 12 Col 4="1.005003" +Row 12 Col 5="1.136973" +Row 13 Col 1="-0.9199904" +Row 13 Col 2="0.09985904" +Row 13 Col 3="0.693003" +Row 13 Col 4="1.009477" +Row 13 Col 5="1.146038" +Row 14 Col 1="-0.9133238" +Row 14 Col 2="0.09986108" +Row 14 Col 3="0.693891" +Row 14 Col 4="1.013867" +Row 14 Col 5="1.154835" +Row 15 Col 1="-0.9066572" +Row 15 Col 2="0.0998631" +Row 15 Col 3="0.6947702" +Row 15 Col 4="1.018179" +Row 15 Col 5="1.163386" +Row 16 Col 1="-0.8999906" +Row 16 Col 2="0.09986511" +Row 16 Col 3="0.6956408" +Row 16 Col 4="1.022415" +Row 16 Col 5="1.171709" +Row 17 Col 1="-0.8933239" +Row 17 Col 2="0.0998671" +Row 17 Col 3="0.6965028" +Row 17 Col 4="1.026576" +Row 17 Col 5="1.179818" +Row 18 Col 1="-0.8866573" +Row 18 Col 2="0.09986908" +Row 18 Col 3="0.6973563" +Row 18 Col 4="1.030667" +Row 18 Col 5="1.187727" +Row 19 Col 1="-0.8799906" +Row 19 Col 2="0.09987104" +Row 19 Col 3="0.6982013" +Row 19 Col 4="1.03469" +Row 19 Col 5="1.195448" +Row 20 Col 1="-0.873324" +Row 20 Col 2="0.09987299" +Row 20 Col 3="0.699038" +Row 20 Col 4="1.038646" +Row 20 Col 5="1.202991" +Row 21 Col 1="-0.8666574" +Row 21 Col 2="0.09987493" +Row 21 Col 3="0.6998664" +Row 21 Col 4="1.042537" +Row 21 Col 5="1.210365" +Row 22 Col 1="-0.8599908" +Row 22 Col 2="0.09987685" +Row 22 Col 3="0.7006865" +Row 22 Col 4="1.046366" +Row 22 Col 5="1.21758" +Row 23 Col 1="-0.8533241" +Row 23 Col 2="0.09987875" +Row 23 Col 3="0.7014984" +Row 23 Col 4="1.050134" +Row 23 Col 5="1.224642" +Row 24 Col 1="-0.8466575" +Row 24 Col 2="0.09988064" +Row 24 Col 3="0.7023022" +Row 24 Col 4="1.053843" +Row 24 Col 5="1.231558" +Row 25 Col 1="-0.8399909" +Row 25 Col 2="0.09988251" +Row 25 Col 3="0.7030979" +Row 25 Col 4="1.057494" +Row 25 Col 5="1.238335" +Row 26 Col 1="-0.8333243" +Row 26 Col 2="0.09988437" +Row 26 Col 3="0.7038856" +Row 26 Col 4="1.06109" +Row 26 Col 5="1.244978" +Row 27 Col 1="-0.8266576" +Row 27 Col 2="0.09988622" +Row 27 Col 3="0.7046653" +Row 27 Col 4="1.06463" +Row 27 Col 5="1.251493" +Row 28 Col 1="-0.819991" +Row 28 Col 2="0.09988805" +Row 28 Col 3="0.7054371" +Row 28 Col 4="1.068118" +Row 28 Col 5="1.257884" +Row 29 Col 1="-0.8133243" +Row 29 Col 2="0.09988986" +Row 29 Col 3="0.706201" +Row 29 Col 4="1.071553" +Row 29 Col 5="1.264156" +Row 30 Col 1="-0.8066577" +Row 30 Col 2="0.09989166" +Row 30 Col 3="0.7069571" +Row 30 Col 4="1.074937" +Row 30 Col 5="1.270312" +Row 31 Col 1="-0.7999911" +Row 31 Col 2="0.09989345" +Row 31 Col 3="0.7077055" +Row 31 Col 4="1.078272" +Row 31 Col 5="1.276358" +Row 32 Col 1="-0.7933245" +Row 32 Col 2="0.09989522" +Row 32 Col 3="0.7084462" +Row 32 Col 4="1.081557" +Row 32 Col 5="1.282296" +Row 33 Col 1="-0.7866578" +Row 33 Col 2="0.09989697" +Row 33 Col 3="0.7091792" +Row 33 Col 4="1.084795" +Row 33 Col 5="1.288129" +Row 34 Col 1="-0.7799912" +Row 34 Col 2="0.09989871" +Row 34 Col 3="0.7099046" +Row 34 Col 4="1.087986" +Row 34 Col 5="1.293862" +Row 35 Col 1="-0.7733245" +Row 35 Col 2="0.09990044" +Row 35 Col 3="0.7106224" +Row 35 Col 4="1.091131" +Row 35 Col 5="1.299496" +Row 36 Col 1="-0.7666579" +Row 36 Col 2="0.09990215" +Row 36 Col 3="0.7113327" +Row 36 Col 4="1.094231" +Row 36 Col 5="1.305034" +Row 37 Col 1="-0.7599913" +Row 37 Col 2="0.09990384" +Row 37 Col 3="0.7120355" +Row 37 Col 4="1.097287" +Row 37 Col 5="1.31048" +Row 38 Col 1="-0.7533247" +Row 38 Col 2="0.09990553" +Row 38 Col 3="0.7127309" +Row 38 Col 4="1.1003" +Row 38 Col 5="1.315835" +Row 39 Col 1="-0.7466581" +Row 39 Col 2="0.09990719" +Row 39 Col 3="0.7134189" +Row 39 Col 4="1.10327" +Row 39 Col 5="1.321101" +Row 40 Col 1="-0.7399914" +Row 40 Col 2="0.09990884" +Row 40 Col 3="0.7140995" +Row 40 Col 4="1.106198" +Row 40 Col 5="1.326282" +Row 41 Col 1="-0.7333248" +Row 41 Col 2="0.09991048" +Row 41 Col 3="0.7147728" +Row 41 Col 4="1.109084" +Row 41 Col 5="1.331379" +Row 42 Col 1="-0.7266582" +Row 42 Col 2="0.0999121" +Row 42 Col 3="0.7154389" +Row 42 Col 4="1.111931" +Row 42 Col 5="1.336393" +Row 43 Col 1="-0.7199916" +Row 43 Col 2="0.09991371" +Row 43 Col 3="0.7160977" +Row 43 Col 4="1.114737" +Row 43 Col 5="1.341328" +Row 44 Col 1="-0.7133249" +Row 44 Col 2="0.0999153" +Row 44 Col 3="0.7167494" +Row 44 Col 4="1.117504" +Row 44 Col 5="1.346184" +Row 45 Col 1="-0.7066583" +Row 45 Col 2="0.09991688" +Row 45 Col 3="0.7173938" +Row 45 Col 4="1.120233" +Row 45 Col 5="1.350963" +Row 46 Col 1="-0.6999916" +Row 46 Col 2="0.09991844" +Row 46 Col 3="0.7180312" +Row 46 Col 4="1.122923" +Row 46 Col 5="1.355667" +Row 47 Col 1="-0.693325" +Row 47 Col 2="0.09991999" +Row 47 Col 3="0.7186615" +Row 47 Col 4="1.125576" +Row 47 Col 5="1.360297" +Row 48 Col 1="-0.6866584" +Row 48 Col 2="0.09992152" +Row 48 Col 3="0.7192848" +Row 48 Col 4="1.128192" +Row 48 Col 5="1.364855" +Row 49 Col 1="-0.6799918" +Row 49 Col 2="0.09992304" +Row 49 Col 3="0.719901" +Row 49 Col 4="1.130772" +Row 49 Col 5="1.369342" +Row 50 Col 1="-0.6733251" +Row 50 Col 2="0.09992454" +Row 50 Col 3="0.7205103" +Row 50 Col 4="1.133315" +Row 50 Col 5="1.37376" +Row 51 Col 1="-0.6666585" +Row 51 Col 2="0.09992603" +Row 51 Col 3="0.7211126" +Row 51 Col 4="1.135823" +Row 51 Col 5="1.378109" +Row 52 Col 1="-0.6599919" +Row 52 Col 2="0.0999275" +Row 52 Col 3="0.721708" +Row 52 Col 4="1.138296" +Row 52 Col 5="1.382391" +Row 53 Col 1="-0.6533253" +Row 53 Col 2="0.09992896" +Row 53 Col 3="0.7222965" +Row 53 Col 4="1.140734" +Row 53 Col 5="1.386608" +Row 54 Col 1="-0.6466586" +Row 54 Col 2="0.0999304" +Row 54 Col 3="0.7228782" +Row 54 Col 4="1.143138" +Row 54 Col 5="1.390759" +Row 55 Col 1="-0.639992" +Row 55 Col 2="0.09993183" +Row 55 Col 3="0.7234531" +Row 55 Col 4="1.145509" +Row 55 Col 5="1.394847" +Row 56 Col 1="-0.6333253" +Row 56 Col 2="0.09993324" +Row 56 Col 3="0.7240212" +Row 56 Col 4="1.147846" +Row 56 Col 5="1.398872" +Row 57 Col 1="-0.6266587" +Row 57 Col 2="0.09993464" +Row 57 Col 3="0.7245825" +Row 57 Col 4="1.15015" +Row 57 Col 5="1.402835" +Row 58 Col 1="-0.6199921" +Row 58 Col 2="0.09993603" +Row 58 Col 3="0.7251371" +Row 58 Col 4="1.152421" +Row 58 Col 5="1.406737" +Row 59 Col 1="-0.6133255" +Row 59 Col 2="0.0999374" +Row 59 Col 3="0.7256851" +Row 59 Col 4="1.15466" +Row 59 Col 5="1.410579" +Row 60 Col 1="-0.6066588" +Row 60 Col 2="0.09993875" +Row 60 Col 3="0.7262263" +Row 60 Col 4="1.156868" +Row 60 Col 5="1.414363" +Row 61 Col 1="-0.5999922" +Row 61 Col 2="0.09994009" +Row 61 Col 3="0.7267609" +Row 61 Col 4="1.159043" +Row 61 Col 5="1.418088" +Row 62 Col 1="-0.5933256" +Row 62 Col 2="0.09994141" +Row 62 Col 3="0.7272889" +Row 62 Col 4="1.161188" +Row 62 Col 5="1.421755" +Row 63 Col 1="-0.586659" +Row 63 Col 2="0.09994272" +Row 63 Col 3="0.7278104" +Row 63 Col 4="1.163302" +Row 63 Col 5="1.425366" +Row 64 Col 1="-0.5799923" +Row 64 Col 2="0.09994402" +Row 64 Col 3="0.7283252" +Row 64 Col 4="1.165385" +Row 64 Col 5="1.428922" +Row 65 Col 1="-0.5733257" +Row 65 Col 2="0.0999453" +Row 65 Col 3="0.7288336" +Row 65 Col 4="1.167438" +Row 65 Col 5="1.432422" +Row 66 Col 1="-0.566659" +Row 66 Col 2="0.09994656" +Row 66 Col 3="0.7293354" +Row 66 Col 4="1.16946" +Row 66 Col 5="1.435867" +Row 67 Col 1="-0.5599924" +Row 67 Col 2="0.09994781" +Row 67 Col 3="0.7298307" +Row 67 Col 4="1.171454" +Row 67 Col 5="1.439259" +Row 68 Col 1="-0.5533258" +Row 68 Col 2="0.09994905" +Row 68 Col 3="0.7303196" +Row 68 Col 4="1.173417" +Row 68 Col 5="1.442598" +Row 69 Col 1="-0.5466592" +Row 69 Col 2="0.09995027" +Row 69 Col 3="0.7308021" +Row 69 Col 4="1.175352" +Row 69 Col 5="1.445884" +Row 70 Col 1="-0.5399925" +Row 70 Col 2="0.09995148" +Row 70 Col 3="0.7312781" +Row 70 Col 4="1.177257" +Row 70 Col 5="1.449118" +Row 71 Col 1="-0.5333259" +Row 71 Col 2="0.09995267" +Row 71 Col 3="0.7317478" +Row 71 Col 4="1.179134" +Row 71 Col 5="1.452301" +Row 72 Col 1="-0.5266593" +Row 72 Col 2="0.09995384" +Row 72 Col 3="0.732211" +Row 72 Col 4="1.180983" +Row 72 Col 5="1.455433" +Row 73 Col 1="-0.5199926" +Row 73 Col 2="0.09995501" +Row 73 Col 3="0.732668" +Row 73 Col 4="1.182803" +Row 73 Col 5="1.458515" +Row 74 Col 1="-0.513326" +Row 74 Col 2="0.09995615" +Row 74 Col 3="0.7331186" +Row 74 Col 4="1.184596" +Row 74 Col 5="1.461548" +Row 75 Col 1="-0.5066594" +Row 75 Col 2="0.09995729" +Row 75 Col 3="0.7335629" +Row 75 Col 4="1.186361" +Row 75 Col 5="1.464531" +Row 76 Col 1="-0.4999928" +Row 76 Col 2="0.0999584" +Row 76 Col 3="0.734001" +Row 76 Col 4="1.188098" +Row 76 Col 5="1.467465" +Row 77 Col 1="-0.4933261" +Row 77 Col 2="0.0999595" +Row 77 Col 3="0.7344327" +Row 77 Col 4="1.189808" +Row 77 Col 5="1.470352" +Row 78 Col 1="-0.4866595" +Row 78 Col 2="0.09996059" +Row 78 Col 3="0.7348583" +Row 78 Col 4="1.191491" +Row 78 Col 5="1.473191" +Row 79 Col 1="-0.4799929" +Row 79 Col 2="0.09996166" +Row 79 Col 3="0.7352776" +Row 79 Col 4="1.193147" +Row 79 Col 5="1.475982" +Row 80 Col 1="-0.4733262" +Row 80 Col 2="0.09996272" +Row 80 Col 3="0.7356907" +Row 80 Col 4="1.194776" +Row 80 Col 5="1.478727" +Row 81 Col 1="-0.4666596" +Row 81 Col 2="0.09996377" +Row 81 Col 3="0.7360976" +Row 81 Col 4="1.196379" +Row 81 Col 5="1.481425" +Row 82 Col 1="-0.459993" +Row 82 Col 2="0.09996479" +Row 82 Col 3="0.7364984" +Row 82 Col 4="1.197956" +Row 82 Col 5="1.484078" +Row 83 Col 1="-0.4533263" +Row 83 Col 2="0.09996581" +Row 83 Col 3="0.736893" +Row 83 Col 4="1.199506" +Row 83 Col 5="1.486684" +Row 84 Col 1="-0.4466597" +Row 84 Col 2="0.09996681" +Row 84 Col 3="0.7372815" +Row 84 Col 4="1.201031" +Row 84 Col 5="1.489246" +Row 85 Col 1="-0.4399931" +Row 85 Col 2="0.09996779" +Row 85 Col 3="0.7376639" +Row 85 Col 4="1.20253" +Row 85 Col 5="1.491763" +Row 86 Col 1="-0.4333265" +Row 86 Col 2="0.09996876" +Row 86 Col 3="0.7380402" +Row 86 Col 4="1.204003" +Row 86 Col 5="1.494236" +Row 87 Col 1="-0.4266598" +Row 87 Col 2="0.09996971" +Row 87 Col 3="0.7384104" +Row 87 Col 4="1.205451" +Row 87 Col 5="1.496664" +Row 88 Col 1="-0.4199932" +Row 88 Col 2="0.09997065" +Row 88 Col 3="0.7387746" +Row 88 Col 4="1.206873" +Row 88 Col 5="1.499049" +Row 89 Col 1="-0.4133266" +Row 89 Col 2="0.09997158" +Row 89 Col 3="0.7391327" +Row 89 Col 4="1.20827" +Row 89 Col 5="1.50139" +Row 90 Col 1="-0.4066599" +Row 90 Col 2="0.09997249" +Row 90 Col 3="0.7394848" +Row 90 Col 4="1.209643" +Row 90 Col 5="1.503688" +Row 91 Col 1="-0.3999933" +Row 91 Col 2="0.09997338" +Row 91 Col 3="0.7398309" +Row 91 Col 4="1.21099" +Row 91 Col 5="1.505944" +Row 92 Col 1="-0.3933267" +Row 92 Col 2="0.09997426" +Row 92 Col 3="0.7401709" +Row 92 Col 4="1.212313" +Row 92 Col 5="1.508157" +Row 93 Col 1="-0.38666" +Row 93 Col 2="0.09997513" +Row 93 Col 3="0.740505" +Row 93 Col 4="1.213611" +Row 93 Col 5="1.510328" +Row 94 Col 1="-0.3799934" +Row 94 Col 2="0.09997598" +Row 94 Col 3="0.7408331" +Row 94 Col 4="1.214885" +Row 94 Col 5="1.512457" +Row 95 Col 1="-0.3733268" +Row 95 Col 2="0.09997681" +Row 95 Col 3="0.7411553" +Row 95 Col 4="1.216134" +Row 95 Col 5="1.514544" +Row 96 Col 1="-0.3666601" +Row 96 Col 2="0.09997763" +Row 96 Col 3="0.7414715" +Row 96 Col 4="1.217359" +Row 96 Col 5="1.516591" +Row 97 Col 1="-0.3599935" +Row 97 Col 2="0.09997844" +Row 97 Col 3="0.7417818" +Row 97 Col 4="1.21856" +Row 97 Col 5="1.518596" +Row 98 Col 1="-0.3533269" +Row 98 Col 2="0.09997923" +Row 98 Col 3="0.7420862" +Row 98 Col 4="1.219737" +Row 98 Col 5="1.52056" +Row 99 Col 1="-0.3466603" +Row 99 Col 2="0.09998001" +Row 99 Col 3="0.7423847" +Row 99 Col 4="1.220891" +Row 99 Col 5="1.522484" +Row 100 Col 1="-0.3399936" +Row 100 Col 2="0.09998077" +Row 100 Col 3="0.7426772" +Row 100 Col 4="1.222021" +Row 100 Col 5="1.524368" +Row 101 Col 1="-0.333327" +Row 101 Col 2="0.09998152" +Row 101 Col 3="0.742964" +Row 101 Col 4="1.223127" +Row 101 Col 5="1.526211" +Row 102 Col 1="-0.3266604" +Row 102 Col 2="0.09998225" +Row 102 Col 3="0.7432448" +Row 102 Col 4="1.224209" +Row 102 Col 5="1.528015" +Row 103 Col 1="-0.3199937" +Row 103 Col 2="0.09998297" +Row 103 Col 3="0.7435198" +Row 103 Col 4="1.225268" +Row 103 Col 5="1.529779" +Row 104 Col 1="-0.3133271" +Row 104 Col 2="0.09998367" +Row 104 Col 3="0.7437889" +Row 104 Col 4="1.226304" +Row 104 Col 5="1.531503" +Row 105 Col 1="-0.3066605" +Row 105 Col 2="0.09998436" +Row 105 Col 3="0.7440522" +Row 105 Col 4="1.227317" +Row 105 Col 5="1.533189" +Row 106 Col 1="-0.2999938" +Row 106 Col 2="0.09998503" +Row 106 Col 3="0.7443097" +Row 106 Col 4="1.228306" +Row 106 Col 5="1.534835" +Row 107 Col 1="-0.2933272" +Row 107 Col 2="0.09998569" +Row 107 Col 3="0.7445614" +Row 107 Col 4="1.229273" +Row 107 Col 5="1.536443" +Row 108 Col 1="-0.2866606" +Row 108 Col 2="0.09998633" +Row 108 Col 3="0.7448073" +Row 108 Col 4="1.230217" +Row 108 Col 5="1.538012" +Row 109 Col 1="-0.279994" +Row 109 Col 2="0.09998696" +Row 109 Col 3="0.7450474" +Row 109 Col 4="1.231137" +Row 109 Col 5="1.539542" +Row 110 Col 1="-0.2733273" +Row 110 Col 2="0.09998757" +Row 110 Col 3="0.7452817" +Row 110 Col 4="1.232035" +Row 110 Col 5="1.541034" +Row 111 Col 1="-0.2666607" +Row 111 Col 2="0.09998817" +Row 111 Col 3="0.7455103" +Row 111 Col 4="1.232911" +Row 111 Col 5="1.542489" +Row 112 Col 1="-0.2599941" +Row 112 Col 2="0.09998876" +Row 112 Col 3="0.7457331" +Row 112 Col 4="1.233764" +Row 112 Col 5="1.543905" +Row 113 Col 1="-0.2533274" +Row 113 Col 2="0.09998932" +Row 113 Col 3="0.7459501" +Row 113 Col 4="1.234594" +Row 113 Col 5="1.545283" +Row 114 Col 1="-0.2466608" +Row 114 Col 2="0.09998988" +Row 114 Col 3="0.7461614" +Row 114 Col 4="1.235402" +Row 114 Col 5="1.546624" +Row 115 Col 1="-0.2399942" +Row 115 Col 2="0.09999042" +Row 115 Col 3="0.7463669" +Row 115 Col 4="1.236187" +Row 115 Col 5="1.547928" +Row 116 Col 1="-0.2333276" +Row 116 Col 2="0.09999094" +Row 116 Col 3="0.7465668" +Row 116 Col 4="1.23695" +Row 116 Col 5="1.549194" +Row 117 Col 1="-0.2266609" +Row 117 Col 2="0.09999145" +Row 117 Col 3="0.7467609" +Row 117 Col 4="1.237691" +Row 117 Col 5="1.550423" +Row 118 Col 1="-0.2199943" +Row 118 Col 2="0.09999195" +Row 118 Col 3="0.7469493" +Row 118 Col 4="1.23841" +Row 118 Col 5="1.551615" +Row 119 Col 1="-0.2133277" +Row 119 Col 2="0.09999243" +Row 119 Col 3="0.747132" +Row 119 Col 4="1.239107" +Row 119 Col 5="1.55277" +Row 120 Col 1="-0.206661" +Row 120 Col 2="0.0999929" +Row 120 Col 3="0.747309" +Row 120 Col 4="1.239782" +Row 120 Col 5="1.553888" +Row 121 Col 1="-0.1999944" +Row 121 Col 2="0.09999335" +Row 121 Col 3="0.7474803" +Row 121 Col 4="1.240434" +Row 121 Col 5="1.554969" +Row 122 Col 1="-0.1933278" +Row 122 Col 2="0.09999378" +Row 122 Col 3="0.7476459" +Row 122 Col 4="1.241065" +Row 122 Col 5="1.556014" +Row 123 Col 1="-0.1866611" +Row 123 Col 2="0.0999942" +Row 123 Col 3="0.7478059" +Row 123 Col 4="1.241674" +Row 123 Col 5="1.557023" +Row 124 Col 1="-0.1799945" +Row 124 Col 2="0.09999461" +Row 124 Col 3="0.7479602" +Row 124 Col 4="1.242261" +Row 124 Col 5="1.557995" +Row 125 Col 1="-0.1733279" +Row 125 Col 2="0.099995" +Row 125 Col 3="0.7481088" +Row 125 Col 4="1.242826" +Row 125 Col 5="1.558931" +Row 126 Col 1="-0.1666612" +Row 126 Col 2="0.09999538" +Row 126 Col 3="0.7482518" +Row 126 Col 4="1.24337" +Row 126 Col 5="1.559831" +Row 127 Col 1="-0.1599946" +Row 127 Col 2="0.09999574" +Row 127 Col 3="0.7483891" +Row 127 Col 4="1.243892" +Row 127 Col 5="1.560695" +Row 128 Col 1="-0.153328" +Row 128 Col 2="0.09999609" +Row 128 Col 3="0.7485208" +Row 128 Col 4="1.244392" +Row 128 Col 5="1.561523" +Row 129 Col 1="-0.1466614" +Row 129 Col 2="0.09999642" +Row 129 Col 3="0.7486468" +Row 129 Col 4="1.244871" +Row 129 Col 5="1.562315" +Row 130 Col 1="-0.1399947" +Row 130 Col 2="0.09999674" +Row 130 Col 3="0.7487672" +Row 130 Col 4="1.245328" +Row 130 Col 5="1.563071" +Row 131 Col 1="-0.1333281" +Row 131 Col 2="0.09999704" +Row 131 Col 3="0.748882" +Row 131 Col 4="1.245763" +Row 131 Col 5="1.563792" +Row 132 Col 1="-0.1266615" +Row 132 Col 2="0.09999733" +Row 132 Col 3="0.7489911" +Row 132 Col 4="1.246177" +Row 132 Col 5="1.564477" +Row 133 Col 1="-0.1199948" +Row 133 Col 2="0.0999976" +Row 133 Col 3="0.7490946" +Row 133 Col 4="1.24657" +Row 133 Col 5="1.565127" +Row 134 Col 1="-0.1133282" +Row 134 Col 2="0.09999786" +Row 134 Col 3="0.7491925" +Row 134 Col 4="1.246941" +Row 134 Col 5="1.565741" +Row 135 Col 1="-0.1066616" +Row 135 Col 2="0.09999811" +Row 135 Col 3="0.7492848" +Row 135 Col 4="1.247291" +Row 135 Col 5="1.566319" +Row 136 Col 1="-0.09999494" +Row 136 Col 2="0.09999834" +Row 136 Col 3="0.7493715" +Row 136 Col 4="1.24762" +Row 136 Col 5="1.566862" +Row 137 Col 1="-0.09332831" +Row 137 Col 2="0.09999855" +Row 137 Col 3="0.7494525" +Row 137 Col 4="1.247927" +Row 137 Col 5="1.56737" +Row 138 Col 1="-0.08666168" +Row 138 Col 2="0.09999875" +Row 138 Col 3="0.749528" +Row 138 Col 4="1.248213" +Row 138 Col 5="1.567843" +Row 139 Col 1="-0.07999505" +Row 139 Col 2="0.09999894" +Row 139 Col 3="0.7495979" +Row 139 Col 4="1.248477" +Row 139 Col 5="1.56828" +Row 140 Col 1="-0.07332843" +Row 140 Col 2="0.09999911" +Row 140 Col 3="0.7496621" +Row 140 Col 4="1.248721" +Row 140 Col 5="1.568683" +Row 141 Col 1="-0.0666618" +Row 141 Col 2="0.09999926" +Row 141 Col 3="0.7497208" +Row 141 Col 4="1.248943" +Row 141 Col 5="1.56905" +Row 142 Col 1="-0.05999516" +Row 142 Col 2="0.0999994" +Row 142 Col 3="0.7497739" +Row 142 Col 4="1.249144" +Row 142 Col 5="1.569382" +Row 143 Col 1="-0.05332853" +Row 143 Col 2="0.09999953" +Row 143 Col 3="0.7498213" +Row 143 Col 4="1.249324" +Row 143 Col 5="1.569679" +Row 144 Col 1="-0.04666191" +Row 144 Col 2="0.09999964" +Row 144 Col 3="0.7498632" +Row 144 Col 4="1.249482" +Row 144 Col 5="1.569941" +Row 145 Col 1="-0.03999528" +Row 145 Col 2="0.09999973" +Row 145 Col 3="0.7498995" +Row 145 Col 4="1.24962" +Row 145 Col 5="1.570168" +Row 146 Col 1="-0.03332864" +Row 146 Col 2="0.09999982" +Row 146 Col 3="0.7499302" +Row 146 Col 4="1.249736" +Row 146 Col 5="1.57036" +Row 147 Col 1="-0.02666201" +Row 147 Col 2="0.09999988" +Row 147 Col 3="0.7499553" +Row 147 Col 4="1.249831" +Row 147 Col 5="1.570517" +Row 148 Col 1="-0.01999538" +Row 148 Col 2="0.09999993" +Row 148 Col 3="0.7499749" +Row 148 Col 4="1.249905" +Row 148 Col 5="1.570639" +Row 149 Col 1="-0.01332875" +Row 149 Col 2="0.09999997" +Row 149 Col 3="0.7499888" +Row 149 Col 4="1.249958" +Row 149 Col 5="1.570727" +Row 150 Col 1="-0.006662124" +Row 150 Col 2="0.09999999" +Row 150 Col 3="0.7499972" +Row 150 Col 4="1.249989" +Row 150 Col 5="1.570779" +Row 151 Col 1="0.000004506128" +Row 151 Col 2="0.1" +Row 151 Col 3="0.75" +Row 151 Col 4="1.25" +Row 151 Col 5="1.570796" +Row 152 Col 1="0.006671136" +Row 152 Col 2="0.09999999" +Row 152 Col 3="0.7499972" +Row 152 Col 4="1.249989" +Row 152 Col 5="1.570779" +Row 153 Col 1="0.01333777" +Row 153 Col 2="0.09999997" +Row 153 Col 3="0.7499888" +Row 153 Col 4="1.249958" +Row 153 Col 5="1.570726" +Row 154 Col 1="0.0200044" +Row 154 Col 2="0.09999993" +Row 154 Col 3="0.7499749" +Row 154 Col 4="1.249905" +Row 154 Col 5="1.570639" +Row 155 Col 1="0.02667103" +Row 155 Col 2="0.09999988" +Row 155 Col 3="0.7499553" +Row 155 Col 4="1.249831" +Row 155 Col 5="1.570517" +Row 156 Col 1="0.03333766" +Row 156 Col 2="0.09999982" +Row 156 Col 3="0.7499302" +Row 156 Col 4="1.249736" +Row 156 Col 5="1.57036" +Row 157 Col 1="0.04000429" +Row 157 Col 2="0.09999973" +Row 157 Col 3="0.7498995" +Row 157 Col 4="1.24962" +Row 157 Col 5="1.570168" +Row 158 Col 1="0.04667092" +Row 158 Col 2="0.09999964" +Row 158 Col 3="0.7498632" +Row 158 Col 4="1.249482" +Row 158 Col 5="1.569941" +Row 159 Col 1="0.05333755" +Row 159 Col 2="0.09999953" +Row 159 Col 3="0.7498213" +Row 159 Col 4="1.249324" +Row 159 Col 5="1.569679" +Row 160 Col 1="0.06000417" +Row 160 Col 2="0.0999994" +Row 160 Col 3="0.7497738" +Row 160 Col 4="1.249144" +Row 160 Col 5="1.569381" +Row 161 Col 1="0.06667081" +Row 161 Col 2="0.09999926" +Row 161 Col 3="0.7497207" +Row 161 Col 4="1.248943" +Row 161 Col 5="1.569049" +Row 162 Col 1="0.07333744" +Row 162 Col 2="0.09999911" +Row 162 Col 3="0.749662" +Row 162 Col 4="1.248721" +Row 162 Col 5="1.568682" +Row 163 Col 1="0.08000407" +Row 163 Col 2="0.09999894" +Row 163 Col 3="0.7495978" +Row 163 Col 4="1.248477" +Row 163 Col 5="1.56828" +Row 164 Col 1="0.0866707" +Row 164 Col 2="0.09999875" +Row 164 Col 3="0.7495279" +Row 164 Col 4="1.248212" +Row 164 Col 5="1.567842" +Row 165 Col 1="0.09333733" +Row 165 Col 2="0.09999855" +Row 165 Col 3="0.7494524" +Row 165 Col 4="1.247927" +Row 165 Col 5="1.56737" +Row 166 Col 1="0.100004" +Row 166 Col 2="0.09999834" +Row 166 Col 3="0.7493714" +Row 166 Col 4="1.247619" +Row 166 Col 5="1.566862" +Row 167 Col 1="0.1066706" +Row 167 Col 2="0.09999811" +Row 167 Col 3="0.7492847" +Row 167 Col 4="1.247291" +Row 167 Col 5="1.566318" +Row 168 Col 1="0.1133372" +Row 168 Col 2="0.09999786" +Row 168 Col 3="0.7491924" +Row 168 Col 4="1.246941" +Row 168 Col 5="1.56574" +Row 169 Col 1="0.1200038" +Row 169 Col 2="0.0999976" +Row 169 Col 3="0.7490945" +Row 169 Col 4="1.246569" +Row 169 Col 5="1.565126" +Row 170 Col 1="0.1266705" +Row 170 Col 2="0.09999733" +Row 170 Col 3="0.748991" +Row 170 Col 4="1.246177" +Row 170 Col 5="1.564476" +Row 171 Col 1="0.1333371" +Row 171 Col 2="0.09999704" +Row 171 Col 3="0.7488818" +Row 171 Col 4="1.245763" +Row 171 Col 5="1.563791" +Row 172 Col 1="0.1400037" +Row 172 Col 2="0.09999674" +Row 172 Col 3="0.748767" +Row 172 Col 4="1.245327" +Row 172 Col 5="1.56307" +Row 173 Col 1="0.1466704" +Row 173 Col 2="0.09999642" +Row 173 Col 3="0.7486466" +Row 173 Col 4="1.24487" +Row 173 Col 5="1.562314" +Row 174 Col 1="0.153337" +Row 174 Col 2="0.09999609" +Row 174 Col 3="0.7485206" +Row 174 Col 4="1.244391" +Row 174 Col 5="1.561522" +Row 175 Col 1="0.1600036" +Row 175 Col 2="0.09999574" +Row 175 Col 3="0.7483889" +Row 175 Col 4="1.243891" +Row 175 Col 5="1.560694" +Row 176 Col 1="0.1666703" +Row 176 Col 2="0.09999538" +Row 176 Col 3="0.7482516" +Row 176 Col 4="1.243369" +Row 176 Col 5="1.55983" +Row 177 Col 1="0.1733369" +Row 177 Col 2="0.099995" +Row 177 Col 3="0.7481086" +Row 177 Col 4="1.242825" +Row 177 Col 5="1.55893" +Row 178 Col 1="0.1800035" +Row 178 Col 2="0.09999461" +Row 178 Col 3="0.74796" +Row 178 Col 4="1.24226" +Row 178 Col 5="1.557994" +Row 179 Col 1="0.1866702" +Row 179 Col 2="0.0999942" +Row 179 Col 3="0.7478057" +Row 179 Col 4="1.241673" +Row 179 Col 5="1.557022" +Row 180 Col 1="0.1933368" +Row 180 Col 2="0.09999378" +Row 180 Col 3="0.7476457" +Row 180 Col 4="1.241064" +Row 180 Col 5="1.556013" +Row 181 Col 1="0.2000034" +Row 181 Col 2="0.09999335" +Row 181 Col 3="0.7474801" +Row 181 Col 4="1.240433" +Row 181 Col 5="1.554968" +Row 182 Col 1="0.20667" +Row 182 Col 2="0.0999929" +Row 182 Col 3="0.7473088" +Row 182 Col 4="1.239781" +Row 182 Col 5="1.553886" +Row 183 Col 1="0.2133367" +Row 183 Col 2="0.09999243" +Row 183 Col 3="0.7471317" +Row 183 Col 4="1.239106" +Row 183 Col 5="1.552768" +Row 184 Col 1="0.2200033" +Row 184 Col 2="0.09999195" +Row 184 Col 3="0.746949" +Row 184 Col 4="1.238409" +Row 184 Col 5="1.551613" +Row 185 Col 1="0.2266699" +Row 185 Col 2="0.09999145" +Row 185 Col 3="0.7467606" +Row 185 Col 4="1.23769" +Row 185 Col 5="1.550421" +Row 186 Col 1="0.2333366" +Row 186 Col 2="0.09999094" +Row 186 Col 3="0.7465665" +Row 186 Col 4="1.236949" +Row 186 Col 5="1.549192" +Row 187 Col 1="0.2400032" +Row 187 Col 2="0.09999042" +Row 187 Col 3="0.7463667" +Row 187 Col 4="1.236186" +Row 187 Col 5="1.547926" +Row 188 Col 1="0.2466698" +Row 188 Col 2="0.09998988" +Row 188 Col 3="0.7461611" +Row 188 Col 4="1.235401" +Row 188 Col 5="1.546622" +Row 189 Col 1="0.2533365" +Row 189 Col 2="0.09998932" +Row 189 Col 3="0.7459498" +Row 189 Col 4="1.234593" +Row 189 Col 5="1.545281" +Row 190 Col 1="0.2600031" +Row 190 Col 2="0.09998875" +Row 190 Col 3="0.7457328" +Row 190 Col 4="1.233763" +Row 190 Col 5="1.543903" +Row 191 Col 1="0.2666697" +Row 191 Col 2="0.09998817" +Row 191 Col 3="0.74551" +Row 191 Col 4="1.23291" +Row 191 Col 5="1.542487" +Row 192 Col 1="0.2733364" +Row 192 Col 2="0.09998757" +Row 192 Col 3="0.7452814" +Row 192 Col 4="1.232034" +Row 192 Col 5="1.541032" +Row 193 Col 1="0.280003" +Row 193 Col 2="0.09998696" +Row 193 Col 3="0.7450471" +Row 193 Col 4="1.231136" +Row 193 Col 5="1.53954" +Row 194 Col 1="0.2866696" +Row 194 Col 2="0.09998633" +Row 194 Col 3="0.744807" +Row 194 Col 4="1.230215" +Row 194 Col 5="1.538009" +Row 195 Col 1="0.2933362" +Row 195 Col 2="0.09998569" +Row 195 Col 3="0.7445611" +Row 195 Col 4="1.229272" +Row 195 Col 5="1.53644" +Row 196 Col 1="0.3000028" +Row 196 Col 2="0.09998503" +Row 196 Col 3="0.7443094" +Row 196 Col 4="1.228305" +Row 196 Col 5="1.534833" +Row 197 Col 1="0.3066695" +Row 197 Col 2="0.09998435" +Row 197 Col 3="0.7440519" +Row 197 Col 4="1.227315" +Row 197 Col 5="1.533186" +Row 198 Col 1="0.3133361" +Row 198 Col 2="0.09998367" +Row 198 Col 3="0.7437886" +Row 198 Col 4="1.226303" +Row 198 Col 5="1.531501" +Row 199 Col 1="0.3200027" +Row 199 Col 2="0.09998296" +Row 199 Col 3="0.7435194" +Row 199 Col 4="1.225267" +Row 199 Col 5="1.529776" +Row 200 Col 1="0.3266694" +Row 200 Col 2="0.09998225" +Row 200 Col 3="0.7432444" +Row 200 Col 4="1.224208" +Row 200 Col 5="1.528012" +Row 201 Col 1="0.333336" +Row 201 Col 2="0.09998152" +Row 201 Col 3="0.7429636" +Row 201 Col 4="1.223125" +Row 201 Col 5="1.526209" +Row 202 Col 1="0.3400026" +Row 202 Col 2="0.09998077" +Row 202 Col 3="0.7426769" +Row 202 Col 4="1.222019" +Row 202 Col 5="1.524365" +Row 203 Col 1="0.3466693" +Row 203 Col 2="0.09998001" +Row 203 Col 3="0.7423843" +Row 203 Col 4="1.220889" +Row 203 Col 5="1.522481" +Row 204 Col 1="0.3533359" +Row 204 Col 2="0.09997923" +Row 204 Col 3="0.7420858" +Row 204 Col 4="1.219736" +Row 204 Col 5="1.520558" +Row 205 Col 1="0.3600025" +Row 205 Col 2="0.09997844" +Row 205 Col 3="0.7417814" +Row 205 Col 4="1.218559" +Row 205 Col 5="1.518593" +Row 206 Col 1="0.3666691" +Row 206 Col 2="0.09997763" +Row 206 Col 3="0.7414711" +Row 206 Col 4="1.217357" +Row 206 Col 5="1.516588" +Row 207 Col 1="0.3733358" +Row 207 Col 2="0.09997681" +Row 207 Col 3="0.7411549" +Row 207 Col 4="1.216132" +Row 207 Col 5="1.514542" +Row 208 Col 1="0.3800024" +Row 208 Col 2="0.09997598" +Row 208 Col 3="0.7408327" +Row 208 Col 4="1.214883" +Row 208 Col 5="1.512454" +Row 209 Col 1="0.386669" +Row 209 Col 2="0.09997513" +Row 209 Col 3="0.7405046" +Row 209 Col 4="1.213609" +Row 209 Col 5="1.510325" +Row 210 Col 1="0.3933357" +Row 210 Col 2="0.09997426" +Row 210 Col 3="0.7401705" +Row 210 Col 4="1.212311" +Row 210 Col 5="1.508154" +Row 211 Col 1="0.4000023" +Row 211 Col 2="0.09997338" +Row 211 Col 3="0.7398304" +Row 211 Col 4="1.210988" +Row 211 Col 5="1.505941" +Row 212 Col 1="0.4066689" +Row 212 Col 2="0.09997248" +Row 212 Col 3="0.7394843" +Row 212 Col 4="1.209641" +Row 212 Col 5="1.503685" +Row 213 Col 1="0.4133356" +Row 213 Col 2="0.09997158" +Row 213 Col 3="0.7391322" +Row 213 Col 4="1.208268" +Row 213 Col 5="1.501387" +Row 214 Col 1="0.4200022" +Row 214 Col 2="0.09997065" +Row 214 Col 3="0.7387741" +Row 214 Col 4="1.206871" +Row 214 Col 5="1.499046" +Row 215 Col 1="0.4266688" +Row 215 Col 2="0.09996971" +Row 215 Col 3="0.7384099" +Row 215 Col 4="1.205449" +Row 215 Col 5="1.496661" +Row 216 Col 1="0.4333355" +Row 216 Col 2="0.09996876" +Row 216 Col 3="0.7380397" +Row 216 Col 4="1.204001" +Row 216 Col 5="1.494232" +Row 217 Col 1="0.4400021" +Row 217 Col 2="0.09996779" +Row 217 Col 3="0.7376634" +Row 217 Col 4="1.202528" +Row 217 Col 5="1.49176" +Row 218 Col 1="0.4466687" +Row 218 Col 2="0.0999668" +Row 218 Col 3="0.737281" +Row 218 Col 4="1.201029" +Row 218 Col 5="1.489243" +Row 219 Col 1="0.4533353" +Row 219 Col 2="0.09996581" +Row 219 Col 3="0.7368925" +Row 219 Col 4="1.199504" +Row 219 Col 5="1.486681" +Row 220 Col 1="0.460002" +Row 220 Col 2="0.09996479" +Row 220 Col 3="0.7364979" +Row 220 Col 4="1.197954" +Row 220 Col 5="1.484074" +Row 221 Col 1="0.4666686" +Row 221 Col 2="0.09996376" +Row 221 Col 3="0.7360971" +Row 221 Col 4="1.196377" +Row 221 Col 5="1.481422" +Row 222 Col 1="0.4733352" +Row 222 Col 2="0.09996272" +Row 222 Col 3="0.7356902" +Row 222 Col 4="1.194774" +Row 222 Col 5="1.478723" +Row 223 Col 1="0.4800019" +Row 223 Col 2="0.09996166" +Row 223 Col 3="0.735277" +Row 223 Col 4="1.193145" +Row 223 Col 5="1.475978" +Row 224 Col 1="0.4866685" +Row 224 Col 2="0.09996059" +Row 224 Col 3="0.7348577" +Row 224 Col 4="1.191489" +Row 224 Col 5="1.473187" +Row 225 Col 1="0.4933351" +Row 225 Col 2="0.0999595" +Row 225 Col 3="0.7344322" +Row 225 Col 4="1.189806" +Row 225 Col 5="1.470348" +Row 226 Col 1="0.5000018" +Row 226 Col 2="0.0999584" +Row 226 Col 3="0.7340004" +Row 226 Col 4="1.188096" +Row 226 Col 5="1.467461" +Row 227 Col 1="0.5066684" +Row 227 Col 2="0.09995728" +Row 227 Col 3="0.7335623" +Row 227 Col 4="1.186358" +Row 227 Col 5="1.464527" +Row 228 Col 1="0.513335" +Row 228 Col 2="0.09995615" +Row 228 Col 3="0.733118" +Row 228 Col 4="1.184594" +Row 228 Col 5="1.461543" +Row 229 Col 1="0.5200016" +Row 229 Col 2="0.099955" +Row 229 Col 3="0.7326674" +Row 229 Col 4="1.182801" +Row 229 Col 5="1.458511" +Row 230 Col 1="0.5266683" +Row 230 Col 2="0.09995384" +Row 230 Col 3="0.7322104" +Row 230 Col 4="1.180981" +Row 230 Col 5="1.455429" +Row 231 Col 1="0.5333349" +Row 231 Col 2="0.09995267" +Row 231 Col 3="0.7317471" +Row 231 Col 4="1.179132" +Row 231 Col 5="1.452297" +Row 232 Col 1="0.5400015" +Row 232 Col 2="0.09995148" +Row 232 Col 3="0.7312775" +Row 232 Col 4="1.177255" +Row 232 Col 5="1.449114" +Row 233 Col 1="0.5466682" +Row 233 Col 2="0.09995027" +Row 233 Col 3="0.7308014" +Row 233 Col 4="1.175349" +Row 233 Col 5="1.445879" +Row 234 Col 1="0.5533348" +Row 234 Col 2="0.09994905" +Row 234 Col 3="0.730319" +Row 234 Col 4="1.173415" +Row 234 Col 5="1.442593" +Row 235 Col 1="0.5600014" +Row 235 Col 2="0.09994781" +Row 235 Col 3="0.7298301" +Row 235 Col 4="1.171451" +Row 235 Col 5="1.439254" +Row 236 Col 1="0.566668" +Row 236 Col 2="0.09994656" +Row 236 Col 3="0.7293347" +Row 236 Col 4="1.169458" +Row 236 Col 5="1.435863" +Row 237 Col 1="0.5733347" +Row 237 Col 2="0.0999453" +Row 237 Col 3="0.7288329" +Row 237 Col 4="1.167435" +Row 237 Col 5="1.432417" +Row 238 Col 1="0.5800013" +Row 238 Col 2="0.09994402" +Row 238 Col 3="0.7283245" +Row 238 Col 4="1.165382" +Row 238 Col 5="1.428917" +Row 239 Col 1="0.586668" +Row 239 Col 2="0.09994272" +Row 239 Col 3="0.7278097" +Row 239 Col 4="1.163299" +Row 239 Col 5="1.425362" +Row 240 Col 1="0.5933346" +Row 240 Col 2="0.09994141" +Row 240 Col 3="0.7272882" +Row 240 Col 4="1.161185" +Row 240 Col 5="1.42175" +Row 241 Col 1="0.6000012" +Row 241 Col 2="0.09994009" +Row 241 Col 3="0.7267602" +Row 241 Col 4="1.15904" +Row 241 Col 5="1.418083" +Row 242 Col 1="0.6066678" +Row 242 Col 2="0.09993875" +Row 242 Col 3="0.7262256" +Row 242 Col 4="1.156865" +Row 242 Col 5="1.414358" +Row 243 Col 1="0.6133345" +Row 243 Col 2="0.09993739" +Row 243 Col 3="0.7256843" +Row 243 Col 4="1.154657" +Row 243 Col 5="1.410574" +Row 244 Col 1="0.6200011" +Row 244 Col 2="0.09993602" +Row 244 Col 3="0.7251364" +Row 244 Col 4="1.152418" +Row 244 Col 5="1.406732" +Row 245 Col 1="0.6266677" +Row 245 Col 2="0.09993464" +Row 245 Col 3="0.7245818" +Row 245 Col 4="1.150147" +Row 245 Col 5="1.402829" +Row 246 Col 1="0.6333343" +Row 246 Col 2="0.09993324" +Row 246 Col 3="0.7240204" +Row 246 Col 4="1.147843" +Row 246 Col 5="1.398866" +Row 247 Col 1="0.640001" +Row 247 Col 2="0.09993183" +Row 247 Col 3="0.7234523" +Row 247 Col 4="1.145506" +Row 247 Col 5="1.394841" +Row 248 Col 1="0.6466676" +Row 248 Col 2="0.0999304" +Row 248 Col 3="0.7228774" +Row 248 Col 4="1.143135" +Row 248 Col 5="1.390753" +Row 249 Col 1="0.6533343" +Row 249 Col 2="0.09992896" +Row 249 Col 3="0.7222957" +Row 249 Col 4="1.140731" +Row 249 Col 5="1.386602" +Row 250 Col 1="0.6600009" +Row 250 Col 2="0.0999275" +Row 250 Col 3="0.7217072" +Row 250 Col 4="1.138293" +Row 250 Col 5="1.382386" +Row 251 Col 1="0.6666675" +Row 251 Col 2="0.09992602" +Row 251 Col 3="0.7211118" +Row 251 Col 4="1.13582" +Row 251 Col 5="1.378103" +Row 252 Col 1="0.6733341" +Row 252 Col 2="0.09992454" +Row 252 Col 3="0.7205094" +Row 252 Col 4="1.133312" +Row 252 Col 5="1.373754" +Row 253 Col 1="0.6800008" +Row 253 Col 2="0.09992303" +Row 253 Col 3="0.7199002" +Row 253 Col 4="1.130768" +Row 253 Col 5="1.369336" +Row 254 Col 1="0.6866674" +Row 254 Col 2="0.09992152" +Row 254 Col 3="0.7192839" +Row 254 Col 4="1.128189" +Row 254 Col 5="1.364849" +Row 255 Col 1="0.693334" +Row 255 Col 2="0.09991998" +Row 255 Col 3="0.7186607" +Row 255 Col 4="1.125573" +Row 255 Col 5="1.360291" +Row 256 Col 1="0.7000006" +Row 256 Col 2="0.09991844" +Row 256 Col 3="0.7180304" +Row 256 Col 4="1.12292" +Row 256 Col 5="1.355661" +Row 257 Col 1="0.7066673" +Row 257 Col 2="0.09991687" +Row 257 Col 3="0.717393" +Row 257 Col 4="1.120229" +Row 257 Col 5="1.350957" +Row 258 Col 1="0.7133339" +Row 258 Col 2="0.0999153" +Row 258 Col 3="0.7167485" +Row 258 Col 4="1.117501" +Row 258 Col 5="1.346177" +Row 259 Col 1="0.7200006" +Row 259 Col 2="0.09991371" +Row 259 Col 3="0.7160968" +Row 259 Col 4="1.114733" +Row 259 Col 5="1.341321" +Row 260 Col 1="0.7266672" +Row 260 Col 2="0.0999121" +Row 260 Col 3="0.715438" +Row 260 Col 4="1.111927" +Row 260 Col 5="1.336387" +Row 261 Col 1="0.7333338" +Row 261 Col 2="0.09991048" +Row 261 Col 3="0.7147719" +Row 261 Col 4="1.109081" +Row 261 Col 5="1.331372" +Row 262 Col 1="0.7400004" +Row 262 Col 2="0.09990884" +Row 262 Col 3="0.7140986" +Row 262 Col 4="1.106194" +Row 262 Col 5="1.326275" +Row 263 Col 1="0.7466671" +Row 263 Col 2="0.09990719" +Row 263 Col 3="0.7134179" +Row 263 Col 4="1.103266" +Row 263 Col 5="1.321094" +Row 264 Col 1="0.7533337" +Row 264 Col 2="0.09990552" +Row 264 Col 3="0.7127299" +Row 264 Col 4="1.100296" +Row 264 Col 5="1.315827" +Row 265 Col 1="0.7600003" +Row 265 Col 2="0.09990384" +Row 265 Col 3="0.7120345" +Row 265 Col 4="1.097283" +Row 265 Col 5="1.310472" +Row 266 Col 1="0.7666669" +Row 266 Col 2="0.09990215" +Row 266 Col 3="0.7113317" +Row 266 Col 4="1.094227" +Row 266 Col 5="1.305027" +Row 267 Col 1="0.7733336" +Row 267 Col 2="0.09990044" +Row 267 Col 3="0.7106214" +Row 267 Col 4="1.091127" +Row 267 Col 5="1.299488" +Row 268 Col 1="0.7800002" +Row 268 Col 2="0.09989871" +Row 268 Col 3="0.7099036" +Row 268 Col 4="1.087982" +Row 268 Col 5="1.293854" +Row 269 Col 1="0.7866669" +Row 269 Col 2="0.09989697" +Row 269 Col 3="0.7091782" +Row 269 Col 4="1.084791" +Row 269 Col 5="1.288121" +Row 270 Col 1="0.7933335" +Row 270 Col 2="0.09989521" +Row 270 Col 3="0.7084452" +Row 270 Col 4="1.081553" +Row 270 Col 5="1.282288" +Row 271 Col 1="0.8000001" +Row 271 Col 2="0.09989344" +Row 271 Col 3="0.7077045" +Row 271 Col 4="1.078267" +Row 271 Col 5="1.27635" +Row 272 Col 1="0.8066667" +Row 272 Col 2="0.09989166" +Row 272 Col 3="0.7069561" +Row 272 Col 4="1.074933" +Row 272 Col 5="1.270304" +Row 273 Col 1="0.8133334" +Row 273 Col 2="0.09988986" +Row 273 Col 3="0.7062" +Row 273 Col 4="1.071548" +Row 273 Col 5="1.264147" +Row 274 Col 1="0.82" +Row 274 Col 2="0.09988804" +Row 274 Col 3="0.705436" +Row 274 Col 4="1.068113" +Row 274 Col 5="1.257875" +Row 275 Col 1="0.8266667" +Row 275 Col 2="0.09988621" +Row 275 Col 3="0.7046642" +Row 275 Col 4="1.064626" +Row 275 Col 5="1.251484" +Row 276 Col 1="0.8333333" +Row 276 Col 2="0.09988437" +Row 276 Col 3="0.7038845" +Row 276 Col 4="1.061085" +Row 276 Col 5="1.244969" +Row 277 Col 1="0.8399999" +Row 277 Col 2="0.09988251" +Row 277 Col 3="0.7030968" +Row 277 Col 4="1.05749" +Row 277 Col 5="1.238326" +Row 278 Col 1="0.8466665" +Row 278 Col 2="0.09988064" +Row 278 Col 3="0.7023011" +Row 278 Col 4="1.053838" +Row 278 Col 5="1.231549" +Row 279 Col 1="0.8533332" +Row 279 Col 2="0.09987875" +Row 279 Col 3="0.7014973" +Row 279 Col 4="1.050129" +Row 279 Col 5="1.224632" +Row 280 Col 1="0.8599998" +Row 280 Col 2="0.09987684" +Row 280 Col 3="0.7006854" +Row 280 Col 4="1.046361" +Row 280 Col 5="1.21757" +Row 281 Col 1="0.8666664" +Row 281 Col 2="0.09987492" +Row 281 Col 3="0.6998652" +Row 281 Col 4="1.042532" +Row 281 Col 5="1.210355" +Row 282 Col 1="0.873333" +Row 282 Col 2="0.09987299" +Row 282 Col 3="0.6990369" +Row 282 Col 4="1.03864" +Row 282 Col 5="1.202981" +Row 283 Col 1="0.8799997" +Row 283 Col 2="0.09987104" +Row 283 Col 3="0.6982002" +Row 283 Col 4="1.034684" +Row 283 Col 5="1.195437" +Row 284 Col 1="0.8866663" +Row 284 Col 2="0.09986908" +Row 284 Col 3="0.6973551" +Row 284 Col 4="1.030662" +Row 284 Col 5="1.187716" +Row 285 Col 1="0.893333" +Row 285 Col 2="0.0998671" +Row 285 Col 3="0.6965016" +Row 285 Col 4="1.026571" +Row 285 Col 5="1.179807" +Row 286 Col 1="0.8999996" +Row 286 Col 2="0.09986511" +Row 286 Col 3="0.6956396" +Row 286 Col 4="1.022409" +Row 286 Col 5="1.171698" +Row 287 Col 1="0.9066662" +Row 287 Col 2="0.0998631" +Row 287 Col 3="0.694769" +Row 287 Col 4="1.018173" +Row 287 Col 5="1.163375" +Row 288 Col 1="0.9133328" +Row 288 Col 2="0.09986107" +Row 288 Col 3="0.6938898" +Row 288 Col 4="1.013862" +Row 288 Col 5="1.154823" +Row 289 Col 1="0.9199995" +Row 289 Col 2="0.09985904" +Row 289 Col 3="0.6930018" +Row 289 Col 4="1.009471" +Row 289 Col 5="1.146025" +Row 290 Col 1="0.9266661" +Row 290 Col 2="0.09985698" +Row 290 Col 3="0.6921051" +Row 290 Col 4="1.004997" +Row 290 Col 5="1.13696" +Row 291 Col 1="0.9333327" +Row 291 Col 2="0.09985492" +Row 291 Col 3="0.6911995" +Row 291 Col 4="1.000438" +Row 291 Col 5="1.127603" +Row 292 Col 1="0.9399993" +Row 292 Col 2="0.09985283" +Row 292 Col 3="0.690285" +Row 292 Col 4="0.9957887" +Row 292 Col 5="1.117925" +Row 293 Col 1="0.9466659" +Row 293 Col 2="0.09985074" +Row 293 Col 3="0.6893615" +Row 293 Col 4="0.9910453" +Row 293 Col 5="1.107889" +Row 294 Col 1="0.9533326" +Row 294 Col 2="0.09984862" +Row 294 Col 3="0.6884288" +Row 294 Col 4="0.9862031" +Row 294 Col 5="1.097449" +Row 295 Col 1="0.9599992" +Row 295 Col 2="0.0998465" +Row 295 Col 3="0.6874871" +Row 295 Col 4="0.9812566" +Row 295 Col 5="1.086548" +Row 296 Col 1="0.9666659" +Row 296 Col 2="0.09984435" +Row 296 Col 3="0.686536" +Row 296 Col 4="0.9761998" +Row 296 Col 5="1.075105" +Row 297 Col 1="0.9733325" +Row 297 Col 2="0.0998422" +Row 297 Col 3="0.6855756" +Row 297 Col 4="0.9710261" +Row 297 Col 5="1.06301" +Row 298 Col 1="0.9799991" +Row 298 Col 2="0.09984002" +Row 298 Col 3="0.6846058" +Row 298 Col 4="0.9657276" +Row 298 Col 5="1.050094" +Row 299 Col 1="0.9866657" +Row 299 Col 2="0.09983784" +Row 299 Col 3="0.6836265" +Row 299 Col 4="0.9602954" +Row 299 Col 5="1.036069" +Row 300 Col 1="0.9933324" +Row 300 Col 2="0.09983563" +Row 300 Col 3="0.6826375" +Row 300 Col 4="0.9547188" +Row 300 Col 5="1.020328" +[End Data] + +[Titles] +Title="Elliptic Integrals of the Second Kind" +Heading="" +XAxisTitle="k" +YAxisTitle="" +[End Titles] + +[Title Options] +Title="00000000000000000024Arial" +Heading="00000000000000000016Arial" +YAxisTitle="00000000000000014.25Arial" +XAxisTitle="00000000000000000010Arial" +YAxisVertical="0" +[End Title Options] + +[Background] +Graph Background=16777215 +Page Colour=16777215 +Print Graph Background=1 +Print Page Colour=0 +[End Background] + +[Axis] +XMin=-1.1 +XMax=1.1 +YMin=0 +YMax=1.7 +MaxMinOptions="111101" +Axis Style=1 +Logarithmic X Axis=0 +Logarithmic Y Axis=0 +Border Style=0 +[End Axis] + +[Data Lines] +Options="117000002550000000016777216117000327680000000016777216117104857600000000016777216117000000000000000016777216611000000000000000016777216611000000000000000016777216" +[End Data Lines] + +[Data Markers] +Size 1=5 +Size 2=5 +Size 3=5 +Size 4=5 +Size 5=5 +Size 6=5 +[End Data Markers] + +[Data Labels] +Options="000100" +Primary Font="00000000000000000010Arial" +Secondary Font="00000000000000000010Arial" +Spacing X Primary=.2 +Spacing Y Primary=.2 +Spacing X Secondary=1 +Spacing Y Secondary=1 +Spacing Adjustment=1 +[End Data Labels] + +[Axis Markers] +Options 1=1 +Spacing 1=.2 +Colour 1="00000000" +Options 2=1 +Spacing 2=.2 +Colour 2="00000000" +Options 3=0 +Spacing 3=1 +Colour 3="00000000" +Options 4=0 +Spacing 4=1 +Colour 4="00000000" +Style=1 +[End Axis Markers] + +[Gridlines] +Options="100000" +Spacing X Primary=.2 +Spacing Y Primary=.2 +Spacing X Secondary=1 +Spacing Y Secondary=1 +Colour 1="00000000" +Colour 2="00000000" +Colour 3="14671839" +Colour 4="14671839" +[End Gridlines] + +[Legend] +X Position=19.7246673928463 +Y Position=12.3222750531969 +Style=1 +Font="00000000000000014.25Arial" +[End Legend] + +[Best Fit Line 1] +Options1="0100000000" +Options2="0100000000" +Options3="0100000000" +Options4="0100000000" +Options5="0100000000" +Options6="0100000000" +Options7="0100000000" +Options8="0100000000" +Options9="0100000000" +[End Best Fit Line 1] + +[Best Fit Line 2] +Options1="0100000000" +Options2="0100000000" +Options3="0100000000" +Options4="0100000000" +Options5="0100000000" +Options6="0100000000" +Options7="0100000000" +Options8="0100000000" +Options9="0100000000" +[End Best Fit Line 2] + +[Best Fit Line 3] +Options1="0100000000" +Options2="0100000000" +Options3="0100000000" +Options4="0100000000" +Options5="0100000000" +Options6="0100000000" +Options7="0100000000" +Options8="0100000000" +Options9="0100000000" +[End Best Fit Line 3] + +[Best Fit Line 4] +Options1="0100000000" +Options2="0100000000" +Options3="0100000000" +Options4="0100000000" +Options5="0100000000" +Options6="0100000000" +Options7="0100000000" +Options8="0100000000" +Options9="0100000000" +[End Best Fit Line 4] + +[Best Fit Line 5] +Options1="0100000000" +Options2="0100000000" +Options3="0100000000" +Options4="0100000000" +Options5="0100000000" +Options6="0100000000" +Options7="0100000000" +Options8="0100000000" +Options9="0100000000" +[End Best Fit Line 5] + +[Best Fit Line 6] +Options1="0100000000" +Options2="0100000000" +Options3="0100000000" +Options4="0100000000" +Options5="0100000000" +Options6="0100000000" +Options7="0100000000" +Options8="0100000000" +Options9="0100000000" +[End Best Fit Line 6] + +[Best Fit Data 1] +Options1=0 +Options2=0 +Options3=0 +Options4=0 +Options5=0 +Options6=0 +X Position=5 +Y Position=5 +Style=1 +Font="00000000000000000010Arial" +Correlation Coefficient=0 +Accuracy=8 +SF Or DP=0 +Display Accuracy=0 +Display Trailing Zeros=0 +[End Best Fit Data 1] + +[Best Fit Data 2] +Options1=0 +Options2=0 +Options3=0 +Options4=0 +Options5=0 +Options6=0 +X Position=8 +Y Position=5 +Style=1 +Font="00000000000000000010Arial" +Correlation Coefficient=0 +Accuracy=8 +SF Or DP=0 +Display Accuracy=0 +Display Trailing Zeros=0 +[End Best Fit Data 2] + +[Best Fit Data 3] +Options1=0 +Options2=0 +Options3=0 +Options4=0 +Options5=0 +Options6=0 +X Position=11 +Y Position=5 +Style=1 +Font="00000000000000000010Arial" +Correlation Coefficient=0 +Accuracy=8 +SF Or DP=0 +Display Accuracy=0 +Display Trailing Zeros=0 +[End Best Fit Data 3] + +[Best Fit Data 4] +Options1=0 +Options2=0 +Options3=0 +Options4=0 +Options5=0 +Options6=0 +X Position=14 +Y Position=5 +Style=1 +Font="00000000000000000010Arial" +Correlation Coefficient=0 +Accuracy=8 +SF Or DP=0 +Display Accuracy=0 +Display Trailing Zeros=0 +[End Best Fit Data 4] + +[Best Fit Data 5] +Options1=0 +Options2=0 +Options3=0 +Options4=0 +Options5=0 +Options6=0 +X Position=17 +Y Position=5 +Style=1 +Font="00000000000000000010Arial" +Correlation Coefficient=0 +Accuracy=8 +SF Or DP=0 +Display Accuracy=0 +Display Trailing Zeros=0 +[End Best Fit Data 5] + +[Best Fit Data 6] +Options1=0 +Options2=0 +Options3=0 +Options4=0 +Options5=0 +Options6=0 +X Position=20 +Y Position=5 +Style=1 +Font="00000000000000000010Arial" +Correlation Coefficient=0 +Accuracy=8 +SF Or DP=0 +Display Accuracy=0 +Display Trailing Zeros=0 +[End Best Fit Data 6] + +[Equations] +Equation 1="" +Equation 2="" +Equation 3="" +Equation 4="" +Equation 5="" +Equation 6="" +Equation 7="" +Equation 8="" +Equation 9="" +Equation 10="" +Equation 11="" +Equation 12="" +Angle Measurement=0 +[End Equations] + +[Equation Options] +Equation 1="0100000000" +Equation 2="0100000000" +Equation 3="0100000000" +Equation 4="0100000000" +Equation 5="0100000000" +Equation 6="0100000000" +Equation 7="0100000000" +Equation 8="0100000000" +Equation 9="0100000000" +Equation 10="0100000000" +Equation 11="0100000000" +Equation 12="0100000000" +[End Equation Options] + +[Print Setup & Margins] +Paper Size=9 +Orientation=2 +Left=2.5 +Right=2.5 +Top=2.5 +Bottom=2.5 +[End Print Setup & Margins] + +[Datasheet] +Column Width 1=1500 +Column Width 2=1500 +Column Width 3=1500 +Column Width 4=1500 +Column Width 5=1500 +Column Width 6=1500 +Column Width 7=1500 +Data Titles 1="phi = 0.1" +Data Titles 2="phi = 0.75" +Data Titles 3="phi = 1.25" +Data Titles 4="phi = Pi/2" +Data Titles 5="Y5 Data" +Data Titles 6="Y6 Data" +[End Datasheet] + +[Other Graph Options] +Zoom Factor=1 +Auto Redraw=1 +[End Other Graph Options] + +[End] diff --git a/doc/graphs/ellint_3.png b/doc/graphs/ellint_3.png new file mode 100644 index 000000000..30237df99 Binary files /dev/null and b/doc/graphs/ellint_3.png differ diff --git a/doc/graphs/ellint_3.ps b/doc/graphs/ellint_3.ps new file mode 100644 index 000000000..6d02eeda4 --- /dev/null +++ b/doc/graphs/ellint_3.ps @@ -0,0 +1,14542 @@ +%!PS-Adobe-3.0 +%%LanguageLevel: 2 +%%Title: Graph +%%Creator: RJS +%%CreationDate: 10:26:34 28/12/2006 +%%DocumentMedia: plain 841 595 0 () () +%%BoundingBox: 0 0 841 595 +newpath +0 595.2 moveto +841.8 595.2 lineto +841.8 0 lineto +0 0 lineto +0.05 setlinewidth +[] 0 setdash +1 1 1 setrgbcolor +closepath +fill +newpath +0 595.2 moveto +841.8 595.2 lineto +841.8 0 lineto +0 0 lineto +0.05 setlinewidth +[] 0 setdash +1 1 1 setrgbcolor +closepath +stroke +/Arial findfont +24 scalefont +setfont +0 0 0 setrgbcolor +newpath +247.275 500.35 moveto +(Elliptic Integrals of the Third Kind) show +/Arial findfont +16 scalefont +setfont +0 0 0 setrgbcolor +newpath +420.9 481.35 moveto +() show +/Arial findfont +14 scalefont +setfont +0 0 0 setrgbcolor +newpath +417.525 73.35 moveto +(k) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +420.9 487.35 moveto +() show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +98.54772 89.35 moveto +(-1) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +158.0682 89.35 moveto +(-0.8) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +221.7136 89.35 moveto +(-0.6) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +285.3591 89.35 moveto +(-0.4) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +349.0045 89.35 moveto +(-0.2) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +418.275 89.35 moveto +(0) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +477.7955 89.35 moveto +(0.2) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +541.4409 89.35 moveto +(0.4) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +605.0864 89.35 moveto +(0.6) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +668.7319 89.35 moveto +(0.8) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +736.5023 89.35 moveto +(1) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +405.65 167.4322 moveto +(1) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +397.4 247.6617 moveto +(1.5) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +405.65 327.8911 moveto +(2) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +397.4 408.1206 moveto +(2.5) show +/Arial findfont +10 scalefont +setfont +0 0 0 setrgbcolor +newpath +405.65 488.35 moveto +(3) show +102.6727 109.35 moveto +102.6727 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +166.3182 109.35 moveto +166.3182 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +229.9636 109.35 moveto +229.9636 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +293.6091 109.35 moveto +293.6091 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +357.2545 109.35 moveto +357.2545 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9 109.35 moveto +420.9 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +484.5455 109.35 moveto +484.5455 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +548.1909 109.35 moveto +548.1909 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +611.8364 109.35 moveto +611.8364 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +675.4819 109.35 moveto +675.4819 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +739.1273 109.35 moveto +739.1273 101.85 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9 171.4322 moveto +413.4 171.4322 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9 251.6617 moveto +413.4 251.6617 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9 331.8911 moveto +413.4 331.8911 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9 412.1206 moveto +413.4 412.1206 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9 492.35 moveto +413.4 492.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9 492.35 moveto +420.9 109.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +70.85 109.35 moveto +770.95 109.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +102.6759 303.238 moveto +104.7974 299.3079 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +104.7974 299.3079 moveto +106.9189 295.7303 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +106.9189 295.7303 moveto +109.0404 292.447 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +109.0404 292.447 moveto +111.1619 289.4137 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +111.1619 289.4137 moveto +113.2834 286.5955 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +113.2834 286.5955 moveto +115.4049 283.9648 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +115.4049 283.9648 moveto +117.5264 281.4987 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +117.5264 281.4987 moveto +119.648 279.1786 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +119.648 279.1786 moveto +121.7694 276.989 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +121.7694 276.989 moveto +123.8909 274.9167 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +123.8909 274.9167 moveto +126.0124 272.9504 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +126.0124 272.9504 moveto +128.134 271.0804 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +128.134 271.0804 moveto +130.2555 269.2985 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +130.2555 269.2985 moveto +132.377 267.5974 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +132.377 267.5974 moveto +134.4985 265.9704 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +134.4985 265.9704 moveto +136.62 264.4121 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +136.62 264.4121 moveto +138.7415 262.9174 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +138.7415 262.9174 moveto +140.863 261.4818 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +140.863 261.4818 moveto +142.9845 260.1012 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +142.9845 260.1012 moveto +145.106 258.7723 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +145.106 258.7723 moveto +147.2275 257.4913 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +147.2275 257.4913 moveto +149.349 256.2558 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +149.349 256.2558 moveto +151.4705 255.0628 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +151.4705 255.0628 moveto +153.592 253.91 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +153.592 253.91 moveto +155.7135 252.795 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +155.7135 252.795 moveto +157.835 251.7159 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +157.835 251.7159 moveto +159.9565 250.6707 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +159.9565 250.6707 moveto +162.078 249.6577 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +162.078 249.6577 moveto +164.1995 248.6752 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +164.1995 248.6752 moveto +166.321 247.7221 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +166.321 247.7221 moveto +168.4425 246.7964 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +168.4425 246.7964 moveto +170.564 245.8974 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +170.564 245.8974 moveto +172.6855 245.0237 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +172.6855 245.0237 moveto +174.8071 244.174 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +174.8071 244.174 moveto +176.9286 243.3475 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +176.9286 243.3475 moveto +179.05 242.5431 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +179.05 242.5431 moveto +181.1715 241.7599 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +181.1715 241.7599 moveto +183.293 240.9973 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +183.293 240.9973 moveto +185.4146 240.254 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +185.4146 240.254 moveto +187.5361 239.5297 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +187.5361 239.5297 moveto +189.6575 238.8237 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +189.6575 238.8237 moveto +191.779 238.135 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +191.779 238.135 moveto +193.9006 237.4632 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +193.9006 237.4632 moveto +196.0221 236.8075 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +196.0221 236.8075 moveto +198.1436 236.1676 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +198.1436 236.1676 moveto +200.2651 235.543 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +200.2651 235.543 moveto +202.3866 234.9329 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +202.3866 234.9329 moveto +204.5081 234.3369 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +204.5081 234.3369 moveto +206.6296 233.7546 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +206.6296 233.7546 moveto +208.7511 233.1858 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +208.7511 233.1858 moveto +210.8726 232.6298 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +210.8726 232.6298 moveto +212.9941 232.0863 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +212.9941 232.0863 moveto +215.1156 231.5549 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +215.1156 231.5549 moveto +217.2371 231.0352 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +217.2371 231.0352 moveto +219.3586 230.527 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +219.3586 230.527 moveto +221.4801 230.0299 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +221.4801 230.0299 moveto +223.6016 229.5437 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +223.6016 229.5437 moveto +225.7231 229.0679 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +225.7231 229.0679 moveto +227.8446 228.6023 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +227.8446 228.6023 moveto +229.9661 228.1468 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +229.9661 228.1468 moveto +232.0876 227.7008 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +232.0876 227.7008 moveto +234.2091 227.2646 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +234.2091 227.2646 moveto +236.3306 226.8373 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +236.3306 226.8373 moveto +238.4521 226.4191 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +238.4521 226.4191 moveto +240.5737 226.0098 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +240.5737 226.0098 moveto +242.6951 225.6089 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +242.6951 225.6089 moveto +244.8167 225.2165 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +244.8167 225.2165 moveto +246.9381 224.8322 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +246.9381 224.8322 moveto +249.0597 224.4559 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +249.0597 224.4559 moveto +251.1812 224.0875 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +251.1812 224.0875 moveto +253.3026 223.7266 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +253.3026 223.7266 moveto +255.4242 223.3733 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +255.4242 223.3733 moveto +257.5457 223.0273 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +257.5457 223.0273 moveto +259.6672 222.6886 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +259.6672 222.6886 moveto +261.7887 222.3569 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +261.7887 222.3569 moveto +263.9102 222.032 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +263.9102 222.032 moveto +266.0317 221.714 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +266.0317 221.714 moveto +268.1532 221.4025 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +268.1532 221.4025 moveto +270.2747 221.0975 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +270.2747 221.0975 moveto +272.3962 220.7989 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +272.3962 220.7989 moveto +274.5177 220.5067 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +274.5177 220.5067 moveto +276.6392 220.2204 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +276.6392 220.2204 moveto +278.7607 219.9404 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +278.7607 219.9404 moveto +280.8822 219.6662 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +280.8822 219.6662 moveto +283.0037 219.3979 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +283.0037 219.3979 moveto +285.1252 219.1352 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +285.1252 219.1352 moveto +287.2467 218.8783 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +287.2467 218.8783 moveto +289.3682 218.6269 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +289.3682 218.6269 moveto +291.4897 218.3811 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +291.4897 218.3811 moveto +293.6112 218.1405 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +293.6112 218.1405 moveto +295.7327 217.9053 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +295.7327 217.9053 moveto +297.8542 217.6752 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +297.8542 217.6752 moveto +299.9757 217.4504 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +299.9757 217.4504 moveto +302.0973 217.2306 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +302.0973 217.2306 moveto +304.2188 217.0157 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +304.2188 217.0157 moveto +306.3403 216.8058 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +306.3403 216.8058 moveto +308.4618 216.6008 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +308.4618 216.6008 moveto +310.5832 216.4005 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +310.5832 216.4005 moveto +312.7048 216.2051 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +312.7048 216.2051 moveto +314.8263 216.0141 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +314.8263 216.0141 moveto +316.9478 215.828 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +316.9478 215.828 moveto +319.0693 215.6464 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +319.0693 215.6464 moveto +321.1908 215.4692 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +321.1908 215.4692 moveto +323.3123 215.2964 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +323.3123 215.2964 moveto +325.4338 215.1281 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +325.4338 215.1281 moveto +327.5553 214.9641 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +327.5553 214.9641 moveto +329.6768 214.8044 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +329.6768 214.8044 moveto +331.7983 214.649 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +331.7983 214.649 moveto +333.9198 214.4978 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +333.9198 214.4978 moveto +336.0413 214.3508 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +336.0413 214.3508 moveto +338.1628 214.2079 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +338.1628 214.2079 moveto +340.2843 214.0691 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +340.2843 214.0691 moveto +342.4058 213.9343 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +342.4058 213.9343 moveto +344.5273 213.8035 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +344.5273 213.8035 moveto +346.6488 213.6766 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +346.6488 213.6766 moveto +348.7703 213.5537 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +348.7703 213.5537 moveto +350.8918 213.4348 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +350.8918 213.4348 moveto +353.0133 213.3197 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +353.0133 213.3197 moveto +355.1349 213.2084 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +355.1349 213.2084 moveto +357.2563 213.101 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +357.2563 213.101 moveto +359.3778 212.9974 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +359.3778 212.9974 moveto +361.4994 212.8974 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +361.4994 212.8974 moveto +363.6208 212.8013 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +363.6208 212.8013 moveto +365.7423 212.7087 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +365.7423 212.7087 moveto +367.8639 212.6199 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +367.8639 212.6199 moveto +369.9854 212.5349 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +369.9854 212.5349 moveto +372.1069 212.4534 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +372.1069 212.4534 moveto +374.2284 212.3754 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +374.2284 212.3754 moveto +376.3499 212.3013 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +376.3499 212.3013 moveto +378.4714 212.2305 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +378.4714 212.2305 moveto +380.5929 212.1633 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +380.5929 212.1633 moveto +382.7144 212.0998 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +382.7144 212.0998 moveto +384.8359 212.0397 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +384.8359 212.0397 moveto +386.9574 211.9831 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +386.9574 211.9831 moveto +389.0789 211.9302 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +389.0789 211.9302 moveto +391.2004 211.8806 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +391.2004 211.8806 moveto +393.3219 211.8344 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +393.3219 211.8344 moveto +395.4434 211.7917 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +395.4434 211.7917 moveto +397.5649 211.7525 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +397.5649 211.7525 moveto +399.6864 211.7167 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +399.6864 211.7167 moveto +401.8079 211.6845 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +401.8079 211.6845 moveto +403.9294 211.6556 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +403.9294 211.6556 moveto +406.0509 211.6301 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +406.0509 211.6301 moveto +408.1724 211.6079 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +408.1724 211.6079 moveto +410.2939 211.5893 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +410.2939 211.5893 moveto +412.4154 211.5741 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +412.4154 211.5741 moveto +414.5369 211.5622 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +414.5369 211.5622 moveto +416.6584 211.5537 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +416.6584 211.5537 moveto +418.7799 211.5487 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +418.7799 211.5487 moveto +420.9014 211.547 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9014 211.547 moveto +423.0229 211.5487 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +423.0229 211.5487 moveto +425.1444 211.5537 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +425.1444 211.5537 moveto +427.266 211.5622 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +427.266 211.5622 moveto +429.3875 211.5741 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +429.3875 211.5741 moveto +431.5089 211.5893 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +431.5089 211.5893 moveto +433.6305 211.6081 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +433.6305 211.6081 moveto +435.752 211.6301 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +435.752 211.6301 moveto +437.8735 211.6556 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +437.8735 211.6556 moveto +439.995 211.6845 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +439.995 211.6845 moveto +442.1165 211.7169 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +442.1165 211.7169 moveto +444.238 211.7527 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +444.238 211.7527 moveto +446.3595 211.7918 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +446.3595 211.7918 moveto +448.481 211.8345 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +448.481 211.8345 moveto +450.6025 211.8806 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +450.6025 211.8806 moveto +452.724 211.9302 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +452.724 211.9302 moveto +454.8455 211.9833 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +454.8455 211.9833 moveto +456.967 212.0397 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +456.967 212.0397 moveto +459.0885 212.0999 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +459.0885 212.0999 moveto +461.21 212.1635 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +461.21 212.1635 moveto +463.3315 212.2305 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +463.3315 212.2305 moveto +465.453 212.3013 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +465.453 212.3013 moveto +467.5745 212.3756 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +467.5745 212.3756 moveto +469.696 212.4534 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +469.696 212.4534 moveto +471.8175 212.5349 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +471.8175 212.5349 moveto +473.939 212.6201 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +473.939 212.6201 moveto +476.0605 212.7088 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +476.0605 212.7088 moveto +478.182 212.8014 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +478.182 212.8014 moveto +480.3036 212.8976 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +480.3036 212.8976 moveto +482.425 212.9975 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +482.425 212.9975 moveto +484.5465 213.1012 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +484.5465 213.1012 moveto +486.668 213.2085 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +486.668 213.2085 moveto +488.7896 213.3199 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +488.7896 213.3199 moveto +490.911 213.4349 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +490.911 213.4349 moveto +493.0326 213.5538 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +493.0326 213.5538 moveto +495.1541 213.6767 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +495.1541 213.6767 moveto +497.2756 213.8037 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +497.2756 213.8037 moveto +499.3971 213.9344 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +499.3971 213.9344 moveto +501.5186 214.0692 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +501.5186 214.0692 moveto +503.6401 214.208 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +503.6401 214.208 moveto +505.7616 214.351 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +505.7616 214.351 moveto +507.8831 214.498 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +507.8831 214.498 moveto +510.0046 214.6493 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +510.0046 214.6493 moveto +512.1261 214.8046 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +512.1261 214.8046 moveto +514.2476 214.9644 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +514.2476 214.9644 moveto +516.3691 215.1283 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +516.3691 215.1283 moveto +518.4906 215.2967 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +518.4906 215.2967 moveto +520.6121 215.4694 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +520.6121 215.4694 moveto +522.7336 215.6465 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +522.7336 215.6465 moveto +524.8552 215.8282 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +524.8552 215.8282 moveto +526.9766 216.0145 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +526.9766 216.0145 moveto +529.0981 216.2052 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +529.0981 216.2052 moveto +531.2197 216.4009 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +531.2197 216.4009 moveto +533.3411 216.6011 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +533.3411 216.6011 moveto +535.4626 216.8062 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +535.4626 216.8062 moveto +537.5842 217.016 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +537.5842 217.016 moveto +539.7056 217.2307 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +539.7056 217.2307 moveto +541.8271 217.4506 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +541.8271 217.4506 moveto +543.9487 217.6755 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +543.9487 217.6755 moveto +546.0702 217.9055 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +546.0702 217.9055 moveto +548.1917 218.1409 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +548.1917 218.1409 moveto +550.3132 218.3814 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +550.3132 218.3814 moveto +552.4347 218.6272 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +552.4347 218.6272 moveto +554.5562 218.8787 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +554.5562 218.8787 moveto +556.6777 219.1355 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +556.6777 219.1355 moveto +558.7992 219.3982 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +558.7992 219.3982 moveto +560.9207 219.6665 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +560.9207 219.6665 moveto +563.0422 219.9407 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +563.0422 219.9407 moveto +565.1637 220.2209 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +565.1637 220.2209 moveto +567.2852 220.507 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +567.2852 220.507 moveto +569.4067 220.7993 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +569.4067 220.7993 moveto +571.5282 221.0979 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +571.5282 221.0979 moveto +573.6497 221.4028 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +573.6497 221.4028 moveto +575.7712 221.7143 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +575.7712 221.7143 moveto +577.8927 222.0325 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +577.8927 222.0325 moveto +580.0142 222.3573 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +580.0142 222.3573 moveto +582.1357 222.6891 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +582.1357 222.6891 moveto +584.2572 223.0278 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +584.2572 223.0278 moveto +586.3787 223.3738 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +586.3787 223.3738 moveto +588.5002 223.7271 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +588.5002 223.7271 moveto +590.6218 224.0879 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +590.6218 224.0879 moveto +592.7432 224.4564 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +592.7432 224.4564 moveto +594.8647 224.8326 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +594.8647 224.8326 moveto +596.9863 225.2169 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +596.9863 225.2169 moveto +599.1077 225.6094 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +599.1077 225.6094 moveto +601.2292 226.0103 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +601.2292 226.0103 moveto +603.3508 226.4197 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +603.3508 226.4197 moveto +605.4722 226.8379 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +605.4722 226.8379 moveto +607.5938 227.265 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +607.5938 227.265 moveto +609.7153 227.7015 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +609.7153 227.7015 moveto +611.8368 228.1474 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +611.8368 228.1474 moveto +613.9583 228.6029 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +613.9583 228.6029 moveto +616.0798 229.0686 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +616.0798 229.0686 moveto +618.2013 229.5444 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +618.2013 229.5444 moveto +620.3228 230.0305 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +620.3228 230.0305 moveto +622.4443 230.5276 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +622.4443 230.5276 moveto +624.5658 231.036 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +624.5658 231.036 moveto +626.6873 231.5555 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +626.6873 231.5555 moveto +628.8088 232.087 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +628.8088 232.087 moveto +630.9303 232.6306 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +630.9303 232.6306 moveto +633.0518 233.1866 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +633.0518 233.1866 moveto +635.1733 233.7554 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +635.1733 233.7554 moveto +637.2949 234.3378 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +637.2949 234.3378 moveto +639.4163 234.9337 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +639.4163 234.9337 moveto +641.5378 235.5437 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +641.5378 235.5437 moveto +643.6593 236.1684 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +643.6593 236.1684 moveto +645.7808 236.8085 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +645.7808 236.8085 moveto +647.9023 237.464 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +647.9023 237.464 moveto +650.0239 238.1358 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +650.0239 238.1358 moveto +652.1453 238.8245 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +652.1453 238.8245 moveto +654.2668 239.5307 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +654.2668 239.5307 moveto +656.3884 240.255 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +656.3884 240.255 moveto +658.5098 240.9982 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +658.5098 240.9982 moveto +660.6313 241.7611 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +660.6313 241.7611 moveto +662.7529 242.5441 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +662.7529 242.5441 moveto +664.8743 243.3485 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +664.8743 243.3485 moveto +666.9958 244.1752 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +666.9958 244.1752 moveto +669.1174 245.0248 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +669.1174 245.0248 moveto +671.2389 245.8986 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +671.2389 245.8986 moveto +673.3604 246.7977 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +673.3604 246.7977 moveto +675.4819 247.7232 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +675.4819 247.7232 moveto +677.6033 248.6767 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +677.6033 248.6767 moveto +679.7249 249.659 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +679.7249 249.659 moveto +681.8464 250.6721 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +681.8464 250.6721 moveto +683.9679 251.7174 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +683.9679 251.7174 moveto +686.0894 252.7965 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +686.0894 252.7965 moveto +688.2109 253.9115 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +688.2109 253.9115 moveto +690.3324 255.0644 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +690.3324 255.0644 moveto +692.4539 256.2574 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +692.4539 256.2574 moveto +694.5754 257.4931 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +694.5754 257.4931 moveto +696.6969 258.774 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +696.6969 258.774 moveto +698.8184 260.1031 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +698.8184 260.1031 moveto +700.9399 261.4837 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +700.9399 261.4837 moveto +703.0614 262.9193 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +703.0614 262.9193 moveto +705.1829 264.4142 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +705.1829 264.4142 moveto +707.3044 265.9725 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +707.3044 265.9725 moveto +709.426 267.5996 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +709.426 267.5996 moveto +711.5474 269.3009 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +711.5474 269.3009 moveto +713.6689 271.083 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +713.6689 271.083 moveto +715.7905 272.953 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +715.7905 272.953 moveto +717.9119 274.9194 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +717.9119 274.9194 moveto +720.0334 276.9919 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +720.0334 276.9919 moveto +722.155 279.1817 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +722.155 279.1817 moveto +724.2764 281.5019 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +724.2764 281.5019 moveto +726.3979 283.9682 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +726.3979 283.9682 moveto +728.5195 286.5992 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +728.5195 286.5992 moveto +730.641 289.4177 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +730.641 289.4177 moveto +732.7625 292.4513 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +732.7625 292.4513 moveto +734.884 295.7349 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +734.884 295.7349 moveto +737.0055 299.313 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +102.6759 303.238 moveto +102.6759 303.238 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +104.7974 299.3079 moveto +104.7974 299.3079 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +106.9189 295.7303 moveto +106.9189 295.7303 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +109.0404 292.447 moveto +109.0404 292.447 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +111.1619 289.4137 moveto +111.1619 289.4137 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +113.2834 286.5955 moveto +113.2834 286.5955 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +115.4049 283.9648 moveto +115.4049 283.9648 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +117.5264 281.4987 moveto +117.5264 281.4987 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +119.648 279.1786 moveto +119.648 279.1786 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +121.7694 276.989 moveto +121.7694 276.989 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +123.8909 274.9167 moveto +123.8909 274.9167 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +126.0124 272.9504 moveto +126.0124 272.9504 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +128.134 271.0804 moveto +128.134 271.0804 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +130.2555 269.2985 moveto +130.2555 269.2985 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +132.377 267.5974 moveto +132.377 267.5974 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +134.4985 265.9704 moveto +134.4985 265.9704 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +136.62 264.4121 moveto +136.62 264.4121 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +138.7415 262.9174 moveto +138.7415 262.9174 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +140.863 261.4818 moveto +140.863 261.4818 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +142.9845 260.1012 moveto +142.9845 260.1012 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +145.106 258.7723 moveto +145.106 258.7723 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +147.2275 257.4913 moveto +147.2275 257.4913 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +149.349 256.2558 moveto +149.349 256.2558 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +151.4705 255.0628 moveto +151.4705 255.0628 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +153.592 253.91 moveto +153.592 253.91 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +155.7135 252.795 moveto +155.7135 252.795 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +157.835 251.7159 moveto +157.835 251.7159 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +159.9565 250.6707 moveto +159.9565 250.6707 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +162.078 249.6577 moveto +162.078 249.6577 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +164.1995 248.6752 moveto +164.1995 248.6752 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +166.321 247.7221 moveto +166.321 247.7221 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +168.4425 246.7964 moveto +168.4425 246.7964 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +170.564 245.8974 moveto +170.564 245.8974 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +172.6855 245.0237 moveto +172.6855 245.0237 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +174.8071 244.174 moveto +174.8071 244.174 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +176.9286 243.3475 moveto +176.9286 243.3475 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +179.05 242.5431 moveto +179.05 242.5431 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +181.1715 241.7599 moveto +181.1715 241.7599 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +183.293 240.9973 moveto +183.293 240.9973 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +185.4146 240.254 moveto +185.4146 240.254 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +187.5361 239.5297 moveto +187.5361 239.5297 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +189.6575 238.8237 moveto +189.6575 238.8237 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +191.779 238.135 moveto +191.779 238.135 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +193.9006 237.4632 moveto +193.9006 237.4632 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +196.0221 236.8075 moveto +196.0221 236.8075 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +198.1436 236.1676 moveto +198.1436 236.1676 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +200.2651 235.543 moveto +200.2651 235.543 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +202.3866 234.9329 moveto +202.3866 234.9329 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +204.5081 234.3369 moveto +204.5081 234.3369 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +206.6296 233.7546 moveto +206.6296 233.7546 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +208.7511 233.1858 moveto +208.7511 233.1858 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +210.8726 232.6298 moveto +210.8726 232.6298 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +212.9941 232.0863 moveto +212.9941 232.0863 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +215.1156 231.5549 moveto +215.1156 231.5549 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +217.2371 231.0352 moveto +217.2371 231.0352 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +219.3586 230.527 moveto +219.3586 230.527 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +221.4801 230.0299 moveto +221.4801 230.0299 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +223.6016 229.5437 moveto +223.6016 229.5437 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +225.7231 229.0679 moveto +225.7231 229.0679 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +227.8446 228.6023 moveto +227.8446 228.6023 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +229.9661 228.1468 moveto +229.9661 228.1468 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +232.0876 227.7008 moveto +232.0876 227.7008 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +234.2091 227.2646 moveto +234.2091 227.2646 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +236.3306 226.8373 moveto +236.3306 226.8373 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +238.4521 226.4191 moveto +238.4521 226.4191 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +240.5737 226.0098 moveto +240.5737 226.0098 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +242.6951 225.6089 moveto +242.6951 225.6089 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +244.8167 225.2165 moveto +244.8167 225.2165 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +246.9381 224.8322 moveto +246.9381 224.8322 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +249.0597 224.4559 moveto +249.0597 224.4559 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +251.1812 224.0875 moveto +251.1812 224.0875 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +253.3026 223.7266 moveto +253.3026 223.7266 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +255.4242 223.3733 moveto +255.4242 223.3733 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +257.5457 223.0273 moveto +257.5457 223.0273 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +259.6672 222.6886 moveto +259.6672 222.6886 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +261.7887 222.3569 moveto +261.7887 222.3569 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +263.9102 222.032 moveto +263.9102 222.032 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +266.0317 221.714 moveto +266.0317 221.714 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +268.1532 221.4025 moveto +268.1532 221.4025 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +270.2747 221.0975 moveto +270.2747 221.0975 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +272.3962 220.7989 moveto +272.3962 220.7989 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +274.5177 220.5067 moveto +274.5177 220.5067 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +276.6392 220.2204 moveto +276.6392 220.2204 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +278.7607 219.9404 moveto +278.7607 219.9404 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +280.8822 219.6662 moveto +280.8822 219.6662 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +283.0037 219.3979 moveto +283.0037 219.3979 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +285.1252 219.1352 moveto +285.1252 219.1352 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +287.2467 218.8783 moveto +287.2467 218.8783 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +289.3682 218.6269 moveto +289.3682 218.6269 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +291.4897 218.3811 moveto +291.4897 218.3811 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +293.6112 218.1405 moveto +293.6112 218.1405 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +295.7327 217.9053 moveto +295.7327 217.9053 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +297.8542 217.6752 moveto +297.8542 217.6752 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +299.9757 217.4504 moveto +299.9757 217.4504 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +302.0973 217.2306 moveto +302.0973 217.2306 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +304.2188 217.0157 moveto +304.2188 217.0157 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +306.3403 216.8058 moveto +306.3403 216.8058 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +308.4618 216.6008 moveto +308.4618 216.6008 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +310.5832 216.4005 moveto +310.5832 216.4005 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +312.7048 216.2051 moveto +312.7048 216.2051 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +314.8263 216.0141 moveto +314.8263 216.0141 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +316.9478 215.828 moveto +316.9478 215.828 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +319.0693 215.6464 moveto +319.0693 215.6464 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +321.1908 215.4692 moveto +321.1908 215.4692 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +323.3123 215.2964 moveto +323.3123 215.2964 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +325.4338 215.1281 moveto +325.4338 215.1281 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +327.5553 214.9641 moveto +327.5553 214.9641 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +329.6768 214.8044 moveto +329.6768 214.8044 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +331.7983 214.649 moveto +331.7983 214.649 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +333.9198 214.4978 moveto +333.9198 214.4978 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +336.0413 214.3508 moveto +336.0413 214.3508 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +338.1628 214.2079 moveto +338.1628 214.2079 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +340.2843 214.0691 moveto +340.2843 214.0691 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +342.4058 213.9343 moveto +342.4058 213.9343 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +344.5273 213.8035 moveto +344.5273 213.8035 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +346.6488 213.6766 moveto +346.6488 213.6766 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +348.7703 213.5537 moveto +348.7703 213.5537 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +350.8918 213.4348 moveto +350.8918 213.4348 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +353.0133 213.3197 moveto +353.0133 213.3197 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +355.1349 213.2084 moveto +355.1349 213.2084 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +357.2563 213.101 moveto +357.2563 213.101 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +359.3778 212.9974 moveto +359.3778 212.9974 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +361.4994 212.8974 moveto +361.4994 212.8974 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +363.6208 212.8013 moveto +363.6208 212.8013 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +365.7423 212.7087 moveto +365.7423 212.7087 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +367.8639 212.6199 moveto +367.8639 212.6199 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +369.9854 212.5349 moveto +369.9854 212.5349 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +372.1069 212.4534 moveto +372.1069 212.4534 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +374.2284 212.3754 moveto +374.2284 212.3754 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +376.3499 212.3013 moveto +376.3499 212.3013 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +378.4714 212.2305 moveto +378.4714 212.2305 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +380.5929 212.1633 moveto +380.5929 212.1633 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +382.7144 212.0998 moveto +382.7144 212.0998 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +384.8359 212.0397 moveto +384.8359 212.0397 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +386.9574 211.9831 moveto +386.9574 211.9831 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +389.0789 211.9302 moveto +389.0789 211.9302 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +391.2004 211.8806 moveto +391.2004 211.8806 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +393.3219 211.8344 moveto +393.3219 211.8344 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +395.4434 211.7917 moveto +395.4434 211.7917 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +397.5649 211.7525 moveto +397.5649 211.7525 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +399.6864 211.7167 moveto +399.6864 211.7167 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +401.8079 211.6845 moveto +401.8079 211.6845 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +403.9294 211.6556 moveto +403.9294 211.6556 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +406.0509 211.6301 moveto +406.0509 211.6301 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +408.1724 211.6079 moveto +408.1724 211.6079 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +410.2939 211.5893 moveto +410.2939 211.5893 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +412.4154 211.5741 moveto +412.4154 211.5741 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +414.5369 211.5622 moveto +414.5369 211.5622 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +416.6584 211.5537 moveto +416.6584 211.5537 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +418.7799 211.5487 moveto +418.7799 211.5487 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9014 211.547 moveto +420.9014 211.547 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +423.0229 211.5487 moveto +423.0229 211.5487 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +425.1444 211.5537 moveto +425.1444 211.5537 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +427.266 211.5622 moveto +427.266 211.5622 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +429.3875 211.5741 moveto +429.3875 211.5741 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +431.5089 211.5893 moveto +431.5089 211.5893 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +433.6305 211.6081 moveto +433.6305 211.6081 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +435.752 211.6301 moveto +435.752 211.6301 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +437.8735 211.6556 moveto +437.8735 211.6556 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +439.995 211.6845 moveto +439.995 211.6845 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +442.1165 211.7169 moveto +442.1165 211.7169 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +444.238 211.7527 moveto +444.238 211.7527 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +446.3595 211.7918 moveto +446.3595 211.7918 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +448.481 211.8345 moveto +448.481 211.8345 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +450.6025 211.8806 moveto +450.6025 211.8806 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +452.724 211.9302 moveto +452.724 211.9302 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +454.8455 211.9833 moveto +454.8455 211.9833 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +456.967 212.0397 moveto +456.967 212.0397 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +459.0885 212.0999 moveto +459.0885 212.0999 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +461.21 212.1635 moveto +461.21 212.1635 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +463.3315 212.2305 moveto +463.3315 212.2305 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +465.453 212.3013 moveto +465.453 212.3013 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +467.5745 212.3756 moveto +467.5745 212.3756 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +469.696 212.4534 moveto +469.696 212.4534 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +471.8175 212.5349 moveto +471.8175 212.5349 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +473.939 212.6201 moveto +473.939 212.6201 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +476.0605 212.7088 moveto +476.0605 212.7088 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +478.182 212.8014 moveto +478.182 212.8014 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +480.3036 212.8976 moveto +480.3036 212.8976 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +482.425 212.9975 moveto +482.425 212.9975 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +484.5465 213.1012 moveto +484.5465 213.1012 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +486.668 213.2085 moveto +486.668 213.2085 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +488.7896 213.3199 moveto +488.7896 213.3199 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +490.911 213.4349 moveto +490.911 213.4349 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +493.0326 213.5538 moveto +493.0326 213.5538 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +495.1541 213.6767 moveto +495.1541 213.6767 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +497.2756 213.8037 moveto +497.2756 213.8037 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +499.3971 213.9344 moveto +499.3971 213.9344 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +501.5186 214.0692 moveto +501.5186 214.0692 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +503.6401 214.208 moveto +503.6401 214.208 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +505.7616 214.351 moveto +505.7616 214.351 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +507.8831 214.498 moveto +507.8831 214.498 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +510.0046 214.6493 moveto +510.0046 214.6493 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +512.1261 214.8046 moveto +512.1261 214.8046 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +514.2476 214.9644 moveto +514.2476 214.9644 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +516.3691 215.1283 moveto +516.3691 215.1283 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +518.4906 215.2967 moveto +518.4906 215.2967 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +520.6121 215.4694 moveto +520.6121 215.4694 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +522.7336 215.6465 moveto +522.7336 215.6465 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +524.8552 215.8282 moveto +524.8552 215.8282 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +526.9766 216.0145 moveto +526.9766 216.0145 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +529.0981 216.2052 moveto +529.0981 216.2052 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +531.2197 216.4009 moveto +531.2197 216.4009 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +533.3411 216.6011 moveto +533.3411 216.6011 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +535.4626 216.8062 moveto +535.4626 216.8062 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +537.5842 217.016 moveto +537.5842 217.016 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +539.7056 217.2307 moveto +539.7056 217.2307 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +541.8271 217.4506 moveto +541.8271 217.4506 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +543.9487 217.6755 moveto +543.9487 217.6755 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +546.0702 217.9055 moveto +546.0702 217.9055 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +548.1917 218.1409 moveto +548.1917 218.1409 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +550.3132 218.3814 moveto +550.3132 218.3814 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +552.4347 218.6272 moveto +552.4347 218.6272 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +554.5562 218.8787 moveto +554.5562 218.8787 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +556.6777 219.1355 moveto +556.6777 219.1355 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +558.7992 219.3982 moveto +558.7992 219.3982 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +560.9207 219.6665 moveto +560.9207 219.6665 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +563.0422 219.9407 moveto +563.0422 219.9407 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +565.1637 220.2209 moveto +565.1637 220.2209 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +567.2852 220.507 moveto +567.2852 220.507 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +569.4067 220.7993 moveto +569.4067 220.7993 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +571.5282 221.0979 moveto +571.5282 221.0979 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +573.6497 221.4028 moveto +573.6497 221.4028 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +575.7712 221.7143 moveto +575.7712 221.7143 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +577.8927 222.0325 moveto +577.8927 222.0325 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +580.0142 222.3573 moveto +580.0142 222.3573 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +582.1357 222.6891 moveto +582.1357 222.6891 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +584.2572 223.0278 moveto +584.2572 223.0278 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +586.3787 223.3738 moveto +586.3787 223.3738 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +588.5002 223.7271 moveto +588.5002 223.7271 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +590.6218 224.0879 moveto +590.6218 224.0879 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +592.7432 224.4564 moveto +592.7432 224.4564 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +594.8647 224.8326 moveto +594.8647 224.8326 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +596.9863 225.2169 moveto +596.9863 225.2169 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +599.1077 225.6094 moveto +599.1077 225.6094 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +601.2292 226.0103 moveto +601.2292 226.0103 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +603.3508 226.4197 moveto +603.3508 226.4197 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +605.4722 226.8379 moveto +605.4722 226.8379 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +607.5938 227.265 moveto +607.5938 227.265 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +609.7153 227.7015 moveto +609.7153 227.7015 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +611.8368 228.1474 moveto +611.8368 228.1474 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +613.9583 228.6029 moveto +613.9583 228.6029 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +616.0798 229.0686 moveto +616.0798 229.0686 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +618.2013 229.5444 moveto +618.2013 229.5444 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +620.3228 230.0305 moveto +620.3228 230.0305 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +622.4443 230.5276 moveto +622.4443 230.5276 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +624.5658 231.036 moveto +624.5658 231.036 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +626.6873 231.5555 moveto +626.6873 231.5555 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +628.8088 232.087 moveto +628.8088 232.087 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +630.9303 232.6306 moveto +630.9303 232.6306 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +633.0518 233.1866 moveto +633.0518 233.1866 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +635.1733 233.7554 moveto +635.1733 233.7554 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +637.2949 234.3378 moveto +637.2949 234.3378 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +639.4163 234.9337 moveto +639.4163 234.9337 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +641.5378 235.5437 moveto +641.5378 235.5437 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +643.6593 236.1684 moveto +643.6593 236.1684 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +645.7808 236.8085 moveto +645.7808 236.8085 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +647.9023 237.464 moveto +647.9023 237.464 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +650.0239 238.1358 moveto +650.0239 238.1358 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +652.1453 238.8245 moveto +652.1453 238.8245 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +654.2668 239.5307 moveto +654.2668 239.5307 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +656.3884 240.255 moveto +656.3884 240.255 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +658.5098 240.9982 moveto +658.5098 240.9982 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +660.6313 241.7611 moveto +660.6313 241.7611 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +662.7529 242.5441 moveto +662.7529 242.5441 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +664.8743 243.3485 moveto +664.8743 243.3485 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +666.9958 244.1752 moveto +666.9958 244.1752 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +669.1174 245.0248 moveto +669.1174 245.0248 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +671.2389 245.8986 moveto +671.2389 245.8986 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +673.3604 246.7977 moveto +673.3604 246.7977 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +675.4819 247.7232 moveto +675.4819 247.7232 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +677.6033 248.6767 moveto +677.6033 248.6767 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +679.7249 249.659 moveto +679.7249 249.659 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +681.8464 250.6721 moveto +681.8464 250.6721 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +683.9679 251.7174 moveto +683.9679 251.7174 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +686.0894 252.7965 moveto +686.0894 252.7965 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +688.2109 253.9115 moveto +688.2109 253.9115 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +690.3324 255.0644 moveto +690.3324 255.0644 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +692.4539 256.2574 moveto +692.4539 256.2574 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +694.5754 257.4931 moveto +694.5754 257.4931 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +696.6969 258.774 moveto +696.6969 258.774 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +698.8184 260.1031 moveto +698.8184 260.1031 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +700.9399 261.4837 moveto +700.9399 261.4837 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +703.0614 262.9193 moveto +703.0614 262.9193 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +705.1829 264.4142 moveto +705.1829 264.4142 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +707.3044 265.9725 moveto +707.3044 265.9725 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +709.426 267.5996 moveto +709.426 267.5996 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +711.5474 269.3009 moveto +711.5474 269.3009 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +713.6689 271.083 moveto +713.6689 271.083 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +715.7905 272.953 moveto +715.7905 272.953 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +717.9119 274.9194 moveto +717.9119 274.9194 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +720.0334 276.9919 moveto +720.0334 276.9919 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +722.155 279.1817 moveto +722.155 279.1817 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +724.2764 281.5019 moveto +724.2764 281.5019 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +726.3979 283.9682 moveto +726.3979 283.9682 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +728.5195 286.5992 moveto +728.5195 286.5992 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +730.641 289.4177 moveto +730.641 289.4177 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +732.7625 292.4513 moveto +732.7625 292.4513 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +734.884 295.7349 moveto +734.884 295.7349 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +737.0055 299.313 moveto +737.0055 299.313 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +102.6759 411.1021 moveto +104.7974 404.6251 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +104.7974 404.6251 moveto +106.9189 398.7535 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +106.9189 398.7535 moveto +109.0404 393.3865 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +109.0404 393.3865 moveto +111.1619 388.4461 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +111.1619 388.4461 moveto +113.2834 383.8718 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +113.2834 383.8718 moveto +115.4049 379.6153 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +115.4049 379.6153 moveto +117.5264 375.6372 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +117.5264 375.6372 moveto +119.648 371.9054 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +119.648 371.9054 moveto +121.7694 368.3928 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +121.7694 368.3928 moveto +123.8909 365.0769 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +123.8909 365.0769 moveto +126.0124 361.9383 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +126.0124 361.9383 moveto +128.134 358.9604 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +128.134 358.9604 moveto +130.2555 356.1291 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +130.2555 356.1291 moveto +132.377 353.4316 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +132.377 353.4316 moveto +134.4985 350.8572 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +134.4985 350.8572 moveto +136.62 348.3962 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +136.62 348.3962 moveto +138.7415 346.0403 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +138.7415 346.0403 moveto +140.863 343.7813 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +140.863 343.7813 moveto +142.9845 341.613 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +142.9845 341.613 moveto +145.106 339.529 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +145.106 339.529 moveto +147.2275 337.524 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +147.2275 337.524 moveto +149.349 335.5927 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +149.349 335.5927 moveto +151.4705 333.7309 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +151.4705 333.7309 moveto +153.592 331.9344 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +153.592 331.9344 moveto +155.7135 330.1994 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +155.7135 330.1994 moveto +157.835 328.5225 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +157.835 328.5225 moveto +159.9565 326.9005 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +159.9565 326.9005 moveto +162.078 325.3306 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +162.078 325.3306 moveto +164.1995 323.8099 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +164.1995 323.8099 moveto +166.321 322.3363 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +166.321 322.3363 moveto +168.4425 320.9071 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +168.4425 320.9071 moveto +170.564 319.5204 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +170.564 319.5204 moveto +172.6855 318.1743 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +172.6855 318.1743 moveto +174.8071 316.8669 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +174.8071 316.8669 moveto +176.9286 315.5962 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +176.9286 315.5962 moveto +179.05 314.3612 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +179.05 314.3612 moveto +181.1715 313.1598 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +181.1715 313.1598 moveto +183.293 311.9908 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +183.293 311.9908 moveto +185.4146 310.853 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +185.4146 310.853 moveto +187.5361 309.7452 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +187.5361 309.7452 moveto +189.6575 308.6661 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +189.6575 308.6661 moveto +191.779 307.6147 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +191.779 307.6147 moveto +193.9006 306.5898 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +193.9006 306.5898 moveto +196.0221 305.5906 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +196.0221 305.5906 moveto +198.1436 304.6162 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +198.1436 304.6162 moveto +200.2651 303.6656 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +200.2651 303.6656 moveto +202.3866 302.7382 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +202.3866 302.7382 moveto +204.5081 301.8329 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +204.5081 301.8329 moveto +206.6296 300.949 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +206.6296 300.949 moveto +208.7511 300.0861 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +208.7511 300.0861 moveto +210.8726 299.2434 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +210.8726 299.2434 moveto +212.9941 298.42 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +212.9941 298.42 moveto +215.1156 297.6158 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +215.1156 297.6158 moveto +217.2371 296.8297 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +217.2371 296.8297 moveto +219.3586 296.0616 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +219.3586 296.0616 moveto +221.4801 295.3109 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +221.4801 295.3109 moveto +223.6016 294.5768 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +223.6016 294.5768 moveto +225.7231 293.859 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +225.7231 293.859 moveto +227.8446 293.157 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +227.8446 293.157 moveto +229.9661 292.4706 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +229.9661 292.4706 moveto +232.0876 291.7992 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +232.0876 291.7992 moveto +234.2091 291.1424 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +234.2091 291.1424 moveto +236.3306 290.4998 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +236.3306 290.4998 moveto +238.4521 289.8711 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +238.4521 289.8711 moveto +240.5737 289.2561 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +240.5737 289.2561 moveto +242.6951 288.6542 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +242.6951 288.6542 moveto +244.8167 288.0652 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +244.8167 288.0652 moveto +246.9381 287.4886 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +246.9381 287.4886 moveto +249.0597 286.9244 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +249.0597 286.9244 moveto +251.1812 286.3723 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +251.1812 286.3723 moveto +253.3026 285.8319 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +253.3026 285.8319 moveto +255.4242 285.303 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +255.4242 285.303 moveto +257.5457 284.7852 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +257.5457 284.7852 moveto +259.6672 284.2785 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +259.6672 284.2785 moveto +261.7887 283.7825 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +261.7887 283.7825 moveto +263.9102 283.297 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +263.9102 283.297 moveto +266.0317 282.8218 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +266.0317 282.8218 moveto +268.1532 282.3567 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +268.1532 282.3567 moveto +270.2747 281.9016 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +270.2747 281.9016 moveto +272.3962 281.456 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +272.3962 281.456 moveto +274.5177 281.0202 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +274.5177 281.0202 moveto +276.6392 280.5936 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +276.6392 280.5936 moveto +278.7607 280.176 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +278.7607 280.176 moveto +280.8822 279.7677 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +280.8822 279.7677 moveto +283.0037 279.3681 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +283.0037 279.3681 moveto +285.1252 278.9771 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +285.1252 278.9771 moveto +287.2467 278.5947 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +287.2467 278.5947 moveto +289.3682 278.2209 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +289.3682 278.2209 moveto +291.4897 277.855 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +291.4897 277.855 moveto +293.6112 277.4975 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +293.6112 277.4975 moveto +295.7327 277.1479 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +295.7327 277.1479 moveto +297.8542 276.8061 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +297.8542 276.8061 moveto +299.9757 276.472 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +299.9757 276.472 moveto +302.0973 276.1456 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +302.0973 276.1456 moveto +304.2188 275.8268 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +304.2188 275.8268 moveto +306.3403 275.5154 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +306.3403 275.5154 moveto +308.4618 275.2111 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +308.4618 275.2111 moveto +310.5832 274.9141 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +310.5832 274.9141 moveto +312.7048 274.6243 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +312.7048 274.6243 moveto +314.8263 274.3414 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +314.8263 274.3414 moveto +316.9478 274.0654 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +316.9478 274.0654 moveto +319.0693 273.7962 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +319.0693 273.7962 moveto +321.1908 273.5338 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +321.1908 273.5338 moveto +323.3123 273.2779 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +323.3123 273.2779 moveto +325.4338 273.0287 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +325.4338 273.0287 moveto +327.5553 272.7861 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +327.5553 272.7861 moveto +329.6768 272.5497 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +329.6768 272.5497 moveto +331.7983 272.3198 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +331.7983 272.3198 moveto +333.9198 272.096 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +333.9198 272.096 moveto +336.0413 271.8785 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +336.0413 271.8785 moveto +338.1628 271.6672 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +338.1628 271.6672 moveto +340.2843 271.462 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +340.2843 271.462 moveto +342.4058 271.2627 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +342.4058 271.2627 moveto +344.5273 271.0693 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +344.5273 271.0693 moveto +346.6488 270.8819 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +346.6488 270.8819 moveto +348.7703 270.7004 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +348.7703 270.7004 moveto +350.8918 270.5247 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +350.8918 270.5247 moveto +353.0133 270.3547 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +353.0133 270.3547 moveto +355.1349 270.1904 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +355.1349 270.1904 moveto +357.2563 270.0318 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +357.2563 270.0318 moveto +359.3778 269.8788 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +359.3778 269.8788 moveto +361.4994 269.7313 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +361.4994 269.7313 moveto +363.6208 269.5893 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +363.6208 269.5893 moveto +365.7423 269.4529 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +365.7423 269.4529 moveto +367.8639 269.3218 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +367.8639 269.3218 moveto +369.9854 269.1963 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +369.9854 269.1963 moveto +372.1069 269.076 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +372.1069 269.076 moveto +374.2284 268.9611 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +374.2284 268.9611 moveto +376.3499 268.8517 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +376.3499 268.8517 moveto +378.4714 268.7473 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +378.4714 268.7473 moveto +380.5929 268.6483 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +380.5929 268.6483 moveto +382.7144 268.5545 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +382.7144 268.5545 moveto +384.8359 268.4661 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +384.8359 268.4661 moveto +386.9574 268.3826 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +386.9574 268.3826 moveto +389.0789 268.3043 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +389.0789 268.3043 moveto +391.2004 268.2313 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +391.2004 268.2313 moveto +393.3219 268.1633 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +393.3219 268.1633 moveto +395.4434 268.1006 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +395.4434 268.1006 moveto +397.5649 268.0428 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +397.5649 268.0428 moveto +399.6864 267.99 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +399.6864 267.99 moveto +401.8079 267.9424 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +401.8079 267.9424 moveto +403.9294 267.8998 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +403.9294 267.8998 moveto +406.0509 267.8623 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +406.0509 267.8623 moveto +408.1724 267.8297 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +408.1724 267.8297 moveto +410.2939 267.8022 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +410.2939 267.8022 moveto +412.4154 267.7798 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +412.4154 267.7798 moveto +414.5369 267.7623 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +414.5369 267.7623 moveto +416.6584 267.7498 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +416.6584 267.7498 moveto +418.7799 267.7422 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +418.7799 267.7422 moveto +420.9014 267.7398 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +420.9014 267.7398 moveto +423.0229 267.7422 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +423.0229 267.7422 moveto +425.1444 267.7498 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +425.1444 267.7498 moveto +427.266 267.7623 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +427.266 267.7623 moveto +429.3875 267.7798 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +429.3875 267.7798 moveto +431.5089 267.8022 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +431.5089 267.8022 moveto +433.6305 267.8298 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +433.6305 267.8298 moveto +435.752 267.8623 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +435.752 267.8623 moveto +437.8735 267.8998 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +437.8735 267.8998 moveto +439.995 267.9425 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +439.995 267.9425 moveto +442.1165 267.9901 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +442.1165 267.9901 moveto +444.238 268.0428 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +444.238 268.0428 moveto +446.3595 268.1006 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +446.3595 268.1006 moveto +448.481 268.1634 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +448.481 268.1634 moveto +450.6025 268.2313 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +450.6025 268.2313 moveto +452.724 268.3045 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +452.724 268.3045 moveto +454.8455 268.3828 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +454.8455 268.3828 moveto +456.967 268.4661 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +456.967 268.4661 moveto +459.0885 268.5547 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +459.0885 268.5547 moveto +461.21 268.6485 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +461.21 268.6485 moveto +463.3315 268.7475 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +463.3315 268.7475 moveto +465.453 268.8518 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +465.453 268.8518 moveto +467.5745 268.9612 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +467.5745 268.9612 moveto +469.696 269.0761 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +469.696 269.0761 moveto +471.8175 269.1965 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +471.8175 269.1965 moveto +473.939 269.322 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +473.939 269.322 moveto +476.0605 269.4531 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +476.0605 269.4531 moveto +478.182 269.5894 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +478.182 269.5894 moveto +480.3036 269.7314 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +480.3036 269.7314 moveto +482.425 269.8789 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +482.425 269.8789 moveto +484.5465 270.032 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +484.5465 270.032 moveto +486.668 270.1907 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +486.668 270.1907 moveto +488.7896 270.355 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +488.7896 270.355 moveto +490.911 270.5249 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +490.911 270.5249 moveto +493.0326 270.7006 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +493.0326 270.7006 moveto +495.1541 270.8823 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +495.1541 270.8823 moveto +497.2756 271.0697 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +497.2756 271.0697 moveto +499.3971 271.2629 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +499.3971 271.2629 moveto +501.5186 271.4622 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +501.5186 271.4622 moveto +503.6401 271.6675 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +503.6401 271.6675 moveto +505.7616 271.8789 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +505.7616 271.8789 moveto +507.8831 272.0963 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +507.8831 272.0963 moveto +510.0046 272.3201 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +510.0046 272.3201 moveto +512.1261 272.55 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +512.1261 272.55 moveto +514.2476 272.7864 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +514.2476 272.7864 moveto +516.3691 273.029 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +516.3691 273.029 moveto +518.4906 273.2784 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +518.4906 273.2784 moveto +520.6121 273.5341 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +520.6121 273.5341 moveto +522.7336 273.7965 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +522.7336 273.7965 moveto +524.8552 274.0658 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +524.8552 274.0658 moveto +526.9766 274.3418 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +526.9766 274.3418 moveto +529.0981 274.6246 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +529.0981 274.6246 moveto +531.2197 274.9146 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +531.2197 274.9146 moveto +533.3411 275.2116 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +533.3411 275.2116 moveto +535.4626 275.5158 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +535.4626 275.5158 moveto +537.5842 275.8273 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +537.5842 275.8273 moveto +539.7056 276.1461 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +539.7056 276.1461 moveto +541.8271 276.4725 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +541.8271 276.4725 moveto +543.9487 276.8065 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +543.9487 276.8065 moveto +546.0702 277.1483 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +546.0702 277.1483 moveto +548.1917 277.498 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +548.1917 277.498 moveto +550.3132 277.8555 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +550.3132 277.8555 moveto +552.4347 278.2213 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +552.4347 278.2213 moveto +554.5562 278.5953 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +554.5562 278.5953 moveto +556.6777 278.9777 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +556.6777 278.9777 moveto +558.7992 279.3686 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +558.7992 279.3686 moveto +560.9207 279.7682 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +560.9207 279.7682 moveto +563.0422 280.1767 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +563.0422 280.1767 moveto +565.1637 280.594 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +565.1637 280.594 moveto +567.2852 281.0207 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +567.2852 281.0207 moveto +569.4067 281.4566 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +569.4067 281.4566 moveto +571.5282 281.9021 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +571.5282 281.9021 moveto +573.6497 282.3573 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +573.6497 282.3573 moveto +575.7712 282.8225 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +575.7712 282.8225 moveto +577.8927 283.2976 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +577.8927 283.2976 moveto +580.0142 283.7832 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +580.0142 283.7832 moveto +582.1357 284.2791 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +582.1357 284.2791 moveto +584.2572 284.786 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +584.2572 284.786 moveto +586.3787 285.3037 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +586.3787 285.3037 moveto +588.5002 285.8327 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +588.5002 285.8327 moveto +590.6218 286.3731 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +590.6218 286.3731 moveto +592.7432 286.9253 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +592.7432 286.9253 moveto +594.8647 287.4894 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +594.8647 287.4894 moveto +596.9863 288.0659 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +596.9863 288.0659 moveto +599.1077 288.655 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +599.1077 288.655 moveto +601.2292 289.2569 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +601.2292 289.2569 moveto +603.3508 289.8721 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +603.3508 289.8721 moveto +605.4722 290.5008 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +605.4722 290.5008 moveto +607.5938 291.1432 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +607.5938 291.1432 moveto +609.7153 291.8 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +609.7153 291.8 moveto +611.8368 292.4715 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +611.8368 292.4715 moveto +613.9583 293.158 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +613.9583 293.158 moveto +616.0798 293.86 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +616.0798 293.86 moveto +618.2013 294.5777 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +618.2013 294.5777 moveto +620.3228 295.3118 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +620.3228 295.3118 moveto +622.4443 296.0626 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +622.4443 296.0626 moveto +624.5658 296.8309 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +624.5658 296.8309 moveto +626.6873 297.6168 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +626.6873 297.6168 moveto +628.8088 298.4212 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +628.8088 298.4212 moveto +630.9303 299.2445 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +630.9303 299.2445 moveto +633.0518 300.0872 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +633.0518 300.0872 moveto +635.1733 300.9502 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +635.1733 300.9502 moveto +637.2949 301.834 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +637.2949 301.834 moveto +639.4163 302.7393 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +639.4163 302.7393 moveto +641.5378 303.6669 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +641.5378 303.6669 moveto +643.6593 304.6175 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +643.6593 304.6175 moveto +645.7808 305.5921 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +645.7808 305.5921 moveto +647.9023 306.5913 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +647.9023 306.5913 moveto +650.0239 307.6161 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +650.0239 307.6161 moveto +652.1453 308.6676 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +652.1453 308.6676 moveto +654.2668 309.7467 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +654.2668 309.7467 moveto +656.3884 310.8546 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +656.3884 310.8546 moveto +658.5098 311.9925 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +658.5098 311.9925 moveto +660.6313 313.1614 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +660.6313 313.1614 moveto +662.7529 314.3628 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +662.7529 314.3628 moveto +664.8743 315.598 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +664.8743 315.598 moveto +666.9958 316.8685 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +666.9958 316.8685 moveto +669.1174 318.1761 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +669.1174 318.1761 moveto +671.2389 319.5223 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +671.2389 319.5223 moveto +673.3604 320.909 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +673.3604 320.909 moveto +675.4819 322.3382 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +675.4819 322.3382 moveto +677.6033 323.812 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +677.6033 323.812 moveto +679.7249 325.3327 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +679.7249 325.3327 moveto +681.8464 326.9026 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +681.8464 326.9026 moveto +683.9679 328.5247 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +683.9679 328.5247 moveto +686.0894 330.2018 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +686.0894 330.2018 moveto +688.2109 331.9369 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +688.2109 331.9369 moveto +690.3324 333.7335 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +690.3324 333.7335 moveto +692.4539 335.5953 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +692.4539 335.5953 moveto +694.5754 337.5266 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +694.5754 337.5266 moveto +696.6969 339.5319 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +696.6969 339.5319 moveto +698.8184 341.6159 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +698.8184 341.6159 moveto +700.9399 343.7843 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +700.9399 343.7843 moveto +703.0614 346.0433 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +703.0614 346.0433 moveto +705.1829 348.3995 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +705.1829 348.3995 moveto +707.3044 350.8606 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +707.3044 350.8606 moveto +709.426 353.4352 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +709.426 353.4352 moveto +711.5474 356.1328 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +711.5474 356.1328 moveto +713.6689 358.9644 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +713.6689 358.9644 moveto +715.7905 361.9425 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +715.7905 361.9425 moveto +717.9119 365.0813 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +717.9119 365.0813 moveto +720.0334 368.3974 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +720.0334 368.3974 moveto +722.155 371.9102 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +722.155 371.9102 moveto +724.2764 375.6425 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +724.2764 375.6425 moveto +726.3979 379.6207 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +726.3979 379.6207 moveto +728.5195 383.8777 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +728.5195 383.8777 moveto +730.641 388.4526 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +730.641 388.4526 moveto +732.7625 393.3934 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +732.7625 393.3934 moveto +734.884 398.7613 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +734.884 398.7613 moveto +737.0055 404.6334 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +102.6759 411.1021 moveto +102.6759 411.1021 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +104.7974 404.6251 moveto +104.7974 404.6251 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +106.9189 398.7535 moveto +106.9189 398.7535 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +109.0404 393.3865 moveto +109.0404 393.3865 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +111.1619 388.4461 moveto +111.1619 388.4461 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +113.2834 383.8718 moveto +113.2834 383.8718 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +115.4049 379.6153 moveto +115.4049 379.6153 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +117.5264 375.6372 moveto +117.5264 375.6372 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +119.648 371.9054 moveto +119.648 371.9054 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +121.7694 368.3928 moveto +121.7694 368.3928 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +123.8909 365.0769 moveto +123.8909 365.0769 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +126.0124 361.9383 moveto +126.0124 361.9383 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +128.134 358.9604 moveto +128.134 358.9604 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +130.2555 356.1291 moveto +130.2555 356.1291 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +132.377 353.4316 moveto +132.377 353.4316 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +134.4985 350.8572 moveto +134.4985 350.8572 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +136.62 348.3962 moveto +136.62 348.3962 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +138.7415 346.0403 moveto +138.7415 346.0403 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +140.863 343.7813 moveto +140.863 343.7813 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +142.9845 341.613 moveto +142.9845 341.613 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +145.106 339.529 moveto +145.106 339.529 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +147.2275 337.524 moveto +147.2275 337.524 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +149.349 335.5927 moveto +149.349 335.5927 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +151.4705 333.7309 moveto +151.4705 333.7309 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +153.592 331.9344 moveto +153.592 331.9344 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +155.7135 330.1994 moveto +155.7135 330.1994 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +157.835 328.5225 moveto +157.835 328.5225 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +159.9565 326.9005 moveto +159.9565 326.9005 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +162.078 325.3306 moveto +162.078 325.3306 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +164.1995 323.8099 moveto +164.1995 323.8099 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +166.321 322.3363 moveto +166.321 322.3363 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +168.4425 320.9071 moveto +168.4425 320.9071 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +170.564 319.5204 moveto +170.564 319.5204 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +172.6855 318.1743 moveto +172.6855 318.1743 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +174.8071 316.8669 moveto +174.8071 316.8669 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +176.9286 315.5962 moveto +176.9286 315.5962 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +179.05 314.3612 moveto +179.05 314.3612 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +181.1715 313.1598 moveto +181.1715 313.1598 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +183.293 311.9908 moveto +183.293 311.9908 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +185.4146 310.853 moveto +185.4146 310.853 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +187.5361 309.7452 moveto +187.5361 309.7452 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +189.6575 308.6661 moveto +189.6575 308.6661 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +191.779 307.6147 moveto +191.779 307.6147 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +193.9006 306.5898 moveto +193.9006 306.5898 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +196.0221 305.5906 moveto +196.0221 305.5906 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +198.1436 304.6162 moveto +198.1436 304.6162 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +200.2651 303.6656 moveto +200.2651 303.6656 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +202.3866 302.7382 moveto +202.3866 302.7382 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +204.5081 301.8329 moveto +204.5081 301.8329 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +206.6296 300.949 moveto +206.6296 300.949 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +208.7511 300.0861 moveto +208.7511 300.0861 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +210.8726 299.2434 moveto +210.8726 299.2434 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +212.9941 298.42 moveto +212.9941 298.42 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +215.1156 297.6158 moveto +215.1156 297.6158 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +217.2371 296.8297 moveto +217.2371 296.8297 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +219.3586 296.0616 moveto +219.3586 296.0616 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +221.4801 295.3109 moveto +221.4801 295.3109 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +223.6016 294.5768 moveto +223.6016 294.5768 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +225.7231 293.859 moveto +225.7231 293.859 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +227.8446 293.157 moveto +227.8446 293.157 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +229.9661 292.4706 moveto +229.9661 292.4706 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +232.0876 291.7992 moveto +232.0876 291.7992 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +234.2091 291.1424 moveto +234.2091 291.1424 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +236.3306 290.4998 moveto +236.3306 290.4998 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +238.4521 289.8711 moveto +238.4521 289.8711 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +240.5737 289.2561 moveto +240.5737 289.2561 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +242.6951 288.6542 moveto +242.6951 288.6542 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +244.8167 288.0652 moveto +244.8167 288.0652 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +246.9381 287.4886 moveto +246.9381 287.4886 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +249.0597 286.9244 moveto +249.0597 286.9244 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +251.1812 286.3723 moveto +251.1812 286.3723 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +253.3026 285.8319 moveto +253.3026 285.8319 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +255.4242 285.303 moveto +255.4242 285.303 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +257.5457 284.7852 moveto +257.5457 284.7852 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +259.6672 284.2785 moveto +259.6672 284.2785 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +261.7887 283.7825 moveto +261.7887 283.7825 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +263.9102 283.297 moveto +263.9102 283.297 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +266.0317 282.8218 moveto +266.0317 282.8218 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +268.1532 282.3567 moveto +268.1532 282.3567 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +270.2747 281.9016 moveto +270.2747 281.9016 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +272.3962 281.456 moveto +272.3962 281.456 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +274.5177 281.0202 moveto +274.5177 281.0202 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +276.6392 280.5936 moveto +276.6392 280.5936 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +278.7607 280.176 moveto +278.7607 280.176 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +280.8822 279.7677 moveto +280.8822 279.7677 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +283.0037 279.3681 moveto +283.0037 279.3681 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +285.1252 278.9771 moveto +285.1252 278.9771 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +287.2467 278.5947 moveto +287.2467 278.5947 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +289.3682 278.2209 moveto +289.3682 278.2209 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +291.4897 277.855 moveto +291.4897 277.855 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +293.6112 277.4975 moveto +293.6112 277.4975 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +295.7327 277.1479 moveto +295.7327 277.1479 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +297.8542 276.8061 moveto +297.8542 276.8061 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +299.9757 276.472 moveto +299.9757 276.472 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +302.0973 276.1456 moveto +302.0973 276.1456 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +304.2188 275.8268 moveto +304.2188 275.8268 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +306.3403 275.5154 moveto +306.3403 275.5154 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +308.4618 275.2111 moveto +308.4618 275.2111 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +310.5832 274.9141 moveto +310.5832 274.9141 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +312.7048 274.6243 moveto +312.7048 274.6243 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +314.8263 274.3414 moveto +314.8263 274.3414 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +316.9478 274.0654 moveto +316.9478 274.0654 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +319.0693 273.7962 moveto +319.0693 273.7962 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +321.1908 273.5338 moveto +321.1908 273.5338 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +323.3123 273.2779 moveto +323.3123 273.2779 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +325.4338 273.0287 moveto +325.4338 273.0287 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +327.5553 272.7861 moveto +327.5553 272.7861 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +329.6768 272.5497 moveto +329.6768 272.5497 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +331.7983 272.3198 moveto +331.7983 272.3198 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +333.9198 272.096 moveto +333.9198 272.096 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +336.0413 271.8785 moveto +336.0413 271.8785 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +338.1628 271.6672 moveto +338.1628 271.6672 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +340.2843 271.462 moveto +340.2843 271.462 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +342.4058 271.2627 moveto +342.4058 271.2627 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +344.5273 271.0693 moveto +344.5273 271.0693 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +346.6488 270.8819 moveto +346.6488 270.8819 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +348.7703 270.7004 moveto +348.7703 270.7004 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +350.8918 270.5247 moveto +350.8918 270.5247 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +353.0133 270.3547 moveto +353.0133 270.3547 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +355.1349 270.1904 moveto +355.1349 270.1904 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +357.2563 270.0318 moveto +357.2563 270.0318 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +359.3778 269.8788 moveto +359.3778 269.8788 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +361.4994 269.7313 moveto +361.4994 269.7313 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +363.6208 269.5893 moveto +363.6208 269.5893 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +365.7423 269.4529 moveto +365.7423 269.4529 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +367.8639 269.3218 moveto +367.8639 269.3218 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +369.9854 269.1963 moveto +369.9854 269.1963 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +372.1069 269.076 moveto +372.1069 269.076 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +374.2284 268.9611 moveto +374.2284 268.9611 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +376.3499 268.8517 moveto +376.3499 268.8517 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +378.4714 268.7473 moveto +378.4714 268.7473 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +380.5929 268.6483 moveto +380.5929 268.6483 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +382.7144 268.5545 moveto +382.7144 268.5545 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +384.8359 268.4661 moveto +384.8359 268.4661 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +386.9574 268.3826 moveto +386.9574 268.3826 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +389.0789 268.3043 moveto +389.0789 268.3043 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +391.2004 268.2313 moveto +391.2004 268.2313 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +393.3219 268.1633 moveto +393.3219 268.1633 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +395.4434 268.1006 moveto +395.4434 268.1006 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +397.5649 268.0428 moveto +397.5649 268.0428 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +399.6864 267.99 moveto +399.6864 267.99 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +401.8079 267.9424 moveto +401.8079 267.9424 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +403.9294 267.8998 moveto +403.9294 267.8998 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +406.0509 267.8623 moveto +406.0509 267.8623 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +408.1724 267.8297 moveto +408.1724 267.8297 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +410.2939 267.8022 moveto +410.2939 267.8022 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +412.4154 267.7798 moveto +412.4154 267.7798 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +414.5369 267.7623 moveto +414.5369 267.7623 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +416.6584 267.7498 moveto +416.6584 267.7498 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +418.7799 267.7422 moveto +418.7799 267.7422 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9014 267.7398 moveto +420.9014 267.7398 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +423.0229 267.7422 moveto +423.0229 267.7422 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +425.1444 267.7498 moveto +425.1444 267.7498 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +427.266 267.7623 moveto +427.266 267.7623 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +429.3875 267.7798 moveto +429.3875 267.7798 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +431.5089 267.8022 moveto +431.5089 267.8022 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +433.6305 267.8298 moveto +433.6305 267.8298 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +435.752 267.8623 moveto +435.752 267.8623 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +437.8735 267.8998 moveto +437.8735 267.8998 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +439.995 267.9425 moveto +439.995 267.9425 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +442.1165 267.9901 moveto +442.1165 267.9901 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +444.238 268.0428 moveto +444.238 268.0428 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +446.3595 268.1006 moveto +446.3595 268.1006 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +448.481 268.1634 moveto +448.481 268.1634 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +450.6025 268.2313 moveto +450.6025 268.2313 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +452.724 268.3045 moveto +452.724 268.3045 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +454.8455 268.3828 moveto +454.8455 268.3828 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +456.967 268.4661 moveto +456.967 268.4661 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +459.0885 268.5547 moveto +459.0885 268.5547 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +461.21 268.6485 moveto +461.21 268.6485 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +463.3315 268.7475 moveto +463.3315 268.7475 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +465.453 268.8518 moveto +465.453 268.8518 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +467.5745 268.9612 moveto +467.5745 268.9612 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +469.696 269.0761 moveto +469.696 269.0761 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +471.8175 269.1965 moveto +471.8175 269.1965 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +473.939 269.322 moveto +473.939 269.322 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +476.0605 269.4531 moveto +476.0605 269.4531 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +478.182 269.5894 moveto +478.182 269.5894 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +480.3036 269.7314 moveto +480.3036 269.7314 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +482.425 269.8789 moveto +482.425 269.8789 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +484.5465 270.032 moveto +484.5465 270.032 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +486.668 270.1907 moveto +486.668 270.1907 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +488.7896 270.355 moveto +488.7896 270.355 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +490.911 270.5249 moveto +490.911 270.5249 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +493.0326 270.7006 moveto +493.0326 270.7006 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +495.1541 270.8823 moveto +495.1541 270.8823 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +497.2756 271.0697 moveto +497.2756 271.0697 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +499.3971 271.2629 moveto +499.3971 271.2629 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +501.5186 271.4622 moveto +501.5186 271.4622 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +503.6401 271.6675 moveto +503.6401 271.6675 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +505.7616 271.8789 moveto +505.7616 271.8789 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +507.8831 272.0963 moveto +507.8831 272.0963 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +510.0046 272.3201 moveto +510.0046 272.3201 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +512.1261 272.55 moveto +512.1261 272.55 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +514.2476 272.7864 moveto +514.2476 272.7864 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +516.3691 273.029 moveto +516.3691 273.029 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +518.4906 273.2784 moveto +518.4906 273.2784 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +520.6121 273.5341 moveto +520.6121 273.5341 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +522.7336 273.7965 moveto +522.7336 273.7965 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +524.8552 274.0658 moveto +524.8552 274.0658 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +526.9766 274.3418 moveto +526.9766 274.3418 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +529.0981 274.6246 moveto +529.0981 274.6246 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +531.2197 274.9146 moveto +531.2197 274.9146 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +533.3411 275.2116 moveto +533.3411 275.2116 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +535.4626 275.5158 moveto +535.4626 275.5158 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +537.5842 275.8273 moveto +537.5842 275.8273 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +539.7056 276.1461 moveto +539.7056 276.1461 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +541.8271 276.4725 moveto +541.8271 276.4725 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +543.9487 276.8065 moveto +543.9487 276.8065 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +546.0702 277.1483 moveto +546.0702 277.1483 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +548.1917 277.498 moveto +548.1917 277.498 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +550.3132 277.8555 moveto +550.3132 277.8555 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +552.4347 278.2213 moveto +552.4347 278.2213 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +554.5562 278.5953 moveto +554.5562 278.5953 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +556.6777 278.9777 moveto +556.6777 278.9777 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +558.7992 279.3686 moveto +558.7992 279.3686 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +560.9207 279.7682 moveto +560.9207 279.7682 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +563.0422 280.1767 moveto +563.0422 280.1767 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +565.1637 280.594 moveto +565.1637 280.594 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +567.2852 281.0207 moveto +567.2852 281.0207 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +569.4067 281.4566 moveto +569.4067 281.4566 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +571.5282 281.9021 moveto +571.5282 281.9021 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +573.6497 282.3573 moveto +573.6497 282.3573 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +575.7712 282.8225 moveto +575.7712 282.8225 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +577.8927 283.2976 moveto +577.8927 283.2976 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +580.0142 283.7832 moveto +580.0142 283.7832 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +582.1357 284.2791 moveto +582.1357 284.2791 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +584.2572 284.786 moveto +584.2572 284.786 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +586.3787 285.3037 moveto +586.3787 285.3037 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +588.5002 285.8327 moveto +588.5002 285.8327 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +590.6218 286.3731 moveto +590.6218 286.3731 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +592.7432 286.9253 moveto +592.7432 286.9253 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +594.8647 287.4894 moveto +594.8647 287.4894 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +596.9863 288.0659 moveto +596.9863 288.0659 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +599.1077 288.655 moveto +599.1077 288.655 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +601.2292 289.2569 moveto +601.2292 289.2569 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +603.3508 289.8721 moveto +603.3508 289.8721 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +605.4722 290.5008 moveto +605.4722 290.5008 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +607.5938 291.1432 moveto +607.5938 291.1432 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +609.7153 291.8 moveto +609.7153 291.8 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +611.8368 292.4715 moveto +611.8368 292.4715 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +613.9583 293.158 moveto +613.9583 293.158 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +616.0798 293.86 moveto +616.0798 293.86 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +618.2013 294.5777 moveto +618.2013 294.5777 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +620.3228 295.3118 moveto +620.3228 295.3118 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +622.4443 296.0626 moveto +622.4443 296.0626 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +624.5658 296.8309 moveto +624.5658 296.8309 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +626.6873 297.6168 moveto +626.6873 297.6168 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +628.8088 298.4212 moveto +628.8088 298.4212 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +630.9303 299.2445 moveto +630.9303 299.2445 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +633.0518 300.0872 moveto +633.0518 300.0872 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +635.1733 300.9502 moveto +635.1733 300.9502 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +637.2949 301.834 moveto +637.2949 301.834 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +639.4163 302.7393 moveto +639.4163 302.7393 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +641.5378 303.6669 moveto +641.5378 303.6669 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +643.6593 304.6175 moveto +643.6593 304.6175 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +645.7808 305.5921 moveto +645.7808 305.5921 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +647.9023 306.5913 moveto +647.9023 306.5913 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +650.0239 307.6161 moveto +650.0239 307.6161 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +652.1453 308.6676 moveto +652.1453 308.6676 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +654.2668 309.7467 moveto +654.2668 309.7467 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +656.3884 310.8546 moveto +656.3884 310.8546 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +658.5098 311.9925 moveto +658.5098 311.9925 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +660.6313 313.1614 moveto +660.6313 313.1614 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +662.7529 314.3628 moveto +662.7529 314.3628 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +664.8743 315.598 moveto +664.8743 315.598 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +666.9958 316.8685 moveto +666.9958 316.8685 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +669.1174 318.1761 moveto +669.1174 318.1761 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +671.2389 319.5223 moveto +671.2389 319.5223 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +673.3604 320.909 moveto +673.3604 320.909 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +675.4819 322.3382 moveto +675.4819 322.3382 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +677.6033 323.812 moveto +677.6033 323.812 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +679.7249 325.3327 moveto +679.7249 325.3327 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +681.8464 326.9026 moveto +681.8464 326.9026 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +683.9679 328.5247 moveto +683.9679 328.5247 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +686.0894 330.2018 moveto +686.0894 330.2018 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +688.2109 331.9369 moveto +688.2109 331.9369 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +690.3324 333.7335 moveto +690.3324 333.7335 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +692.4539 335.5953 moveto +692.4539 335.5953 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +694.5754 337.5266 moveto +694.5754 337.5266 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +696.6969 339.5319 moveto +696.6969 339.5319 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +698.8184 341.6159 moveto +698.8184 341.6159 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +700.9399 343.7843 moveto +700.9399 343.7843 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +703.0614 346.0433 moveto +703.0614 346.0433 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +705.1829 348.3995 moveto +705.1829 348.3995 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +707.3044 350.8606 moveto +707.3044 350.8606 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +709.426 353.4352 moveto +709.426 353.4352 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +711.5474 356.1328 moveto +711.5474 356.1328 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +713.6689 358.9644 moveto +713.6689 358.9644 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +715.7905 361.9425 moveto +715.7905 361.9425 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +717.9119 365.0813 moveto +717.9119 365.0813 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +720.0334 368.3974 moveto +720.0334 368.3974 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +722.155 371.9102 moveto +722.155 371.9102 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +724.2764 375.6425 moveto +724.2764 375.6425 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +726.3979 379.6207 moveto +726.3979 379.6207 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +728.5195 383.8777 moveto +728.5195 383.8777 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +730.641 388.4526 moveto +730.641 388.4526 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +732.7625 393.3934 moveto +732.7625 393.3934 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +734.884 398.7613 moveto +734.884 398.7613 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +737.0055 404.6334 moveto +737.0055 404.6334 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +102.6759 114.4828 moveto +104.7974 114.4055 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +104.7974 114.4055 moveto +106.9189 114.3289 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +106.9189 114.3289 moveto +109.0404 114.2531 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +109.0404 114.2531 moveto +111.1619 114.1781 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +111.1619 114.1781 moveto +113.2834 114.1039 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +113.2834 114.1039 moveto +115.4049 114.0305 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +115.4049 114.0305 moveto +117.5264 113.9578 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +117.5264 113.9578 moveto +119.648 113.8859 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +119.648 113.8859 moveto +121.7694 113.8148 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +121.7694 113.8148 moveto +123.8909 113.7443 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +123.8909 113.7443 moveto +126.0124 113.6747 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +126.0124 113.6747 moveto +128.134 113.6058 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +128.134 113.6058 moveto +130.2555 113.5376 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +130.2555 113.5376 moveto +132.377 113.4701 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +132.377 113.4701 moveto +134.4985 113.4033 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +134.4985 113.4033 moveto +136.62 113.3372 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +136.62 113.3372 moveto +138.7415 113.2719 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +138.7415 113.2719 moveto +140.863 113.2072 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +140.863 113.2072 moveto +142.9845 113.1432 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +142.9845 113.1432 moveto +145.106 113.0799 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +145.106 113.0799 moveto +147.2275 113.0173 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +147.2275 113.0173 moveto +149.349 112.9553 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +149.349 112.9553 moveto +151.4705 112.894 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +151.4705 112.894 moveto +153.592 112.8334 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +153.592 112.8334 moveto +155.7135 112.7734 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +155.7135 112.7734 moveto +157.835 112.7141 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +157.835 112.7141 moveto +159.9565 112.6555 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +159.9565 112.6555 moveto +162.078 112.5974 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +162.078 112.5974 moveto +164.1995 112.54 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +164.1995 112.54 moveto +166.321 112.4833 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +166.321 112.4833 moveto +168.4425 112.4271 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +168.4425 112.4271 moveto +170.564 112.3716 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +170.564 112.3716 moveto +172.6855 112.3167 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +172.6855 112.3167 moveto +174.8071 112.2625 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +174.8071 112.2625 moveto +176.9286 112.2088 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +176.9286 112.2088 moveto +179.05 112.1557 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +179.05 112.1557 moveto +181.1715 112.1032 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +181.1715 112.1032 moveto +183.293 112.0513 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +183.293 112.0513 moveto +185.4146 112.0001 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +185.4146 112.0001 moveto +187.5361 111.9493 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +187.5361 111.9493 moveto +189.6575 111.8992 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +189.6575 111.8992 moveto +191.779 111.8497 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +191.779 111.8497 moveto +193.9006 111.8007 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +193.9006 111.8007 moveto +196.0221 111.7523 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +196.0221 111.7523 moveto +198.1436 111.7045 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +198.1436 111.7045 moveto +200.2651 111.6572 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +200.2651 111.6572 moveto +202.3866 111.6105 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +202.3866 111.6105 moveto +204.5081 111.5644 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +204.5081 111.5644 moveto +206.6296 111.5188 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +206.6296 111.5188 moveto +208.7511 111.4737 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +208.7511 111.4737 moveto +210.8726 111.4293 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +210.8726 111.4293 moveto +212.9941 111.3853 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +212.9941 111.3853 moveto +215.1156 111.3419 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +215.1156 111.3419 moveto +217.2371 111.299 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +217.2371 111.299 moveto +219.3586 111.2566 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +219.3586 111.2566 moveto +221.4801 111.2148 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +221.4801 111.2148 moveto +223.6016 111.1735 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +223.6016 111.1735 moveto +225.7231 111.1328 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +225.7231 111.1328 moveto +227.8446 111.0925 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +227.8446 111.0925 moveto +229.9661 111.0528 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +229.9661 111.0528 moveto +232.0876 111.0136 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +232.0876 111.0136 moveto +234.2091 110.9749 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +234.2091 110.9749 moveto +236.3306 110.9367 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +236.3306 110.9367 moveto +238.4521 110.899 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +238.4521 110.899 moveto +240.5737 110.8618 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +240.5737 110.8618 moveto +242.6951 110.8251 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +242.6951 110.8251 moveto +244.8167 110.7889 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +244.8167 110.7889 moveto +246.9381 110.7532 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +246.9381 110.7532 moveto +249.0597 110.7181 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +249.0597 110.7181 moveto +251.1812 110.6833 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +251.1812 110.6833 moveto +253.3026 110.6492 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +253.3026 110.6492 moveto +255.4242 110.6154 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +255.4242 110.6154 moveto +257.5457 110.5822 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +257.5457 110.5822 moveto +259.6672 110.5494 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +259.6672 110.5494 moveto +261.7887 110.5171 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +261.7887 110.5171 moveto +263.9102 110.4854 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +263.9102 110.4854 moveto +266.0317 110.4541 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +266.0317 110.4541 moveto +268.1532 110.4232 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +268.1532 110.4232 moveto +270.2747 110.3928 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +270.2747 110.3928 moveto +272.3962 110.3629 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +272.3962 110.3629 moveto +274.5177 110.3335 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +274.5177 110.3335 moveto +276.6392 110.3045 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +276.6392 110.3045 moveto +278.7607 110.276 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +278.7607 110.276 moveto +280.8822 110.2479 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +280.8822 110.2479 moveto +283.0037 110.2203 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +283.0037 110.2203 moveto +285.1252 110.1932 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +285.1252 110.1932 moveto +287.2467 110.1665 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +287.2467 110.1665 moveto +289.3682 110.1403 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +289.3682 110.1403 moveto +291.4897 110.1145 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +291.4897 110.1145 moveto +293.6112 110.0892 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +293.6112 110.0892 moveto +295.7327 110.0643 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +295.7327 110.0643 moveto +297.8542 110.0399 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +297.8542 110.0399 moveto +299.9757 110.0159 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +299.9757 110.0159 moveto +302.0973 109.9924 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +302.0973 109.9924 moveto +304.2188 109.9693 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +304.2188 109.9693 moveto +306.3403 109.9466 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +306.3403 109.9466 moveto +308.4618 109.9245 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +308.4618 109.9245 moveto +310.5832 109.9027 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +310.5832 109.9027 moveto +312.7048 109.8813 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +312.7048 109.8813 moveto +314.8263 109.8605 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +314.8263 109.8605 moveto +316.9478 109.84 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +316.9478 109.84 moveto +319.0693 109.82 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +319.0693 109.82 moveto +321.1908 109.8003 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +321.1908 109.8003 moveto +323.3123 109.7812 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +323.3123 109.7812 moveto +325.4338 109.7625 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +325.4338 109.7625 moveto +327.5553 109.7442 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +327.5553 109.7442 moveto +329.6768 109.7263 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +329.6768 109.7263 moveto +331.7983 109.7088 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +331.7983 109.7088 moveto +333.9198 109.6918 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +333.9198 109.6918 moveto +336.0413 109.6752 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +336.0413 109.6752 moveto +338.1628 109.659 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +338.1628 109.659 moveto +340.2843 109.6433 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +340.2843 109.6433 moveto +342.4058 109.6279 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +342.4058 109.6279 moveto +344.5273 109.613 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +344.5273 109.613 moveto +346.6488 109.5985 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +346.6488 109.5985 moveto +348.7703 109.5844 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +348.7703 109.5844 moveto +350.8918 109.5708 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +350.8918 109.5708 moveto +353.0133 109.5575 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +353.0133 109.5575 moveto +355.1349 109.5447 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +355.1349 109.5447 moveto +357.2563 109.5323 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +357.2563 109.5323 moveto +359.3778 109.5203 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +359.3778 109.5203 moveto +361.4994 109.5087 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +361.4994 109.5087 moveto +363.6208 109.4975 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +363.6208 109.4975 moveto +365.7423 109.4868 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +365.7423 109.4868 moveto +367.8639 109.4764 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +367.8639 109.4764 moveto +369.9854 109.4665 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +369.9854 109.4665 moveto +372.1069 109.4569 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +372.1069 109.4569 moveto +374.2284 109.4478 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +374.2284 109.4478 moveto +376.3499 109.4391 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +376.3499 109.4391 moveto +378.4714 109.4308 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +378.4714 109.4308 moveto +380.5929 109.4229 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +380.5929 109.4229 moveto +382.7144 109.4154 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +382.7144 109.4154 moveto +384.8359 109.4083 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +384.8359 109.4083 moveto +386.9574 109.4017 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +386.9574 109.4017 moveto +389.0789 109.3954 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +389.0789 109.3954 moveto +391.2004 109.3895 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +391.2004 109.3895 moveto +393.3219 109.3841 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +393.3219 109.3841 moveto +395.4434 109.3791 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +395.4434 109.3791 moveto +397.5649 109.3744 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +397.5649 109.3744 moveto +399.6864 109.3702 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +399.6864 109.3702 moveto +401.8079 109.3664 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +401.8079 109.3664 moveto +403.9294 109.3629 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +403.9294 109.3629 moveto +406.0509 109.3599 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +406.0509 109.3599 moveto +408.1724 109.3573 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +408.1724 109.3573 moveto +410.2939 109.355 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +410.2939 109.355 moveto +412.4154 109.3532 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +412.4154 109.3532 moveto +414.5369 109.3518 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +414.5369 109.3518 moveto +416.6584 109.3508 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +416.6584 109.3508 moveto +418.7799 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +418.7799 109.3502 moveto +420.9014 109.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +420.9014 109.35 moveto +423.0229 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +423.0229 109.3502 moveto +425.1444 109.3508 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +425.1444 109.3508 moveto +427.266 109.3518 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +427.266 109.3518 moveto +429.3875 109.3532 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +429.3875 109.3532 moveto +431.5089 109.355 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +431.5089 109.355 moveto +433.6305 109.3573 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +433.6305 109.3573 moveto +435.752 109.3599 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +435.752 109.3599 moveto +437.8735 109.3629 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +437.8735 109.3629 moveto +439.995 109.3664 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +439.995 109.3664 moveto +442.1165 109.3702 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +442.1165 109.3702 moveto +444.238 109.3744 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +444.238 109.3744 moveto +446.3595 109.3791 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +446.3595 109.3791 moveto +448.481 109.3841 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +448.481 109.3841 moveto +450.6025 109.3895 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +450.6025 109.3895 moveto +452.724 109.3954 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +452.724 109.3954 moveto +454.8455 109.4017 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +454.8455 109.4017 moveto +456.967 109.4083 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +456.967 109.4083 moveto +459.0885 109.4154 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +459.0885 109.4154 moveto +461.21 109.423 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +461.21 109.423 moveto +463.3315 109.4308 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +463.3315 109.4308 moveto +465.453 109.4391 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +465.453 109.4391 moveto +467.5745 109.4479 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +467.5745 109.4479 moveto +469.696 109.4569 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +469.696 109.4569 moveto +471.8175 109.4665 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +471.8175 109.4665 moveto +473.939 109.4764 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +473.939 109.4764 moveto +476.0605 109.4868 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +476.0605 109.4868 moveto +478.182 109.4975 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +478.182 109.4975 moveto +480.3036 109.5087 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +480.3036 109.5087 moveto +482.425 109.5203 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +482.425 109.5203 moveto +484.5465 109.5323 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +484.5465 109.5323 moveto +486.668 109.5447 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +486.668 109.5447 moveto +488.7896 109.5575 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +488.7896 109.5575 moveto +490.911 109.5708 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +490.911 109.5708 moveto +493.0326 109.5844 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +493.0326 109.5844 moveto +495.1541 109.5985 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +495.1541 109.5985 moveto +497.2756 109.613 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +497.2756 109.613 moveto +499.3971 109.6279 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +499.3971 109.6279 moveto +501.5186 109.6433 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +501.5186 109.6433 moveto +503.6401 109.659 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +503.6401 109.659 moveto +505.7616 109.6752 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +505.7616 109.6752 moveto +507.8831 109.6918 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +507.8831 109.6918 moveto +510.0046 109.7088 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +510.0046 109.7088 moveto +512.1261 109.7263 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +512.1261 109.7263 moveto +514.2476 109.7442 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +514.2476 109.7442 moveto +516.3691 109.7625 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +516.3691 109.7625 moveto +518.4906 109.7813 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +518.4906 109.7813 moveto +520.6121 109.8004 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +520.6121 109.8004 moveto +522.7336 109.82 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +522.7336 109.82 moveto +524.8552 109.84 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +524.8552 109.84 moveto +526.9766 109.8605 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +526.9766 109.8605 moveto +529.0981 109.8814 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +529.0981 109.8814 moveto +531.2197 109.9027 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +531.2197 109.9027 moveto +533.3411 109.9245 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +533.3411 109.9245 moveto +535.4626 109.9467 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +535.4626 109.9467 moveto +537.5842 109.9693 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +537.5842 109.9693 moveto +539.7056 109.9924 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +539.7056 109.9924 moveto +541.8271 110.016 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +541.8271 110.016 moveto +543.9487 110.0399 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +543.9487 110.0399 moveto +546.0702 110.0644 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +546.0702 110.0644 moveto +548.1917 110.0893 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +548.1917 110.0893 moveto +550.3132 110.1146 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +550.3132 110.1146 moveto +552.4347 110.1403 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +552.4347 110.1403 moveto +554.5562 110.1666 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +554.5562 110.1666 moveto +556.6777 110.1932 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +556.6777 110.1932 moveto +558.7992 110.2204 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +558.7992 110.2204 moveto +560.9207 110.2479 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +560.9207 110.2479 moveto +563.0422 110.276 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +563.0422 110.276 moveto +565.1637 110.3045 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +565.1637 110.3045 moveto +567.2852 110.3335 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +567.2852 110.3335 moveto +569.4067 110.3629 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +569.4067 110.3629 moveto +571.5282 110.3929 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +571.5282 110.3929 moveto +573.6497 110.4232 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +573.6497 110.4232 moveto +575.7712 110.4541 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +575.7712 110.4541 moveto +577.8927 110.4854 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +577.8927 110.4854 moveto +580.0142 110.5172 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +580.0142 110.5172 moveto +582.1357 110.5495 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +582.1357 110.5495 moveto +584.2572 110.5822 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +584.2572 110.5822 moveto +586.3787 110.6155 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +586.3787 110.6155 moveto +588.5002 110.6492 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +588.5002 110.6492 moveto +590.6218 110.6834 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +590.6218 110.6834 moveto +592.7432 110.7181 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +592.7432 110.7181 moveto +594.8647 110.7533 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +594.8647 110.7533 moveto +596.9863 110.789 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +596.9863 110.789 moveto +599.1077 110.8251 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +599.1077 110.8251 moveto +601.2292 110.8619 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +601.2292 110.8619 moveto +603.3508 110.899 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +603.3508 110.899 moveto +605.4722 110.9367 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +605.4722 110.9367 moveto +607.5938 110.9749 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +607.5938 110.9749 moveto +609.7153 111.0136 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +609.7153 111.0136 moveto +611.8368 111.0528 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +611.8368 111.0528 moveto +613.9583 111.0925 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +613.9583 111.0925 moveto +616.0798 111.1328 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +616.0798 111.1328 moveto +618.2013 111.1736 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +618.2013 111.1736 moveto +620.3228 111.2149 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +620.3228 111.2149 moveto +622.4443 111.2567 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +622.4443 111.2567 moveto +624.5658 111.299 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +624.5658 111.299 moveto +626.6873 111.3419 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +626.6873 111.3419 moveto +628.8088 111.3853 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +628.8088 111.3853 moveto +630.9303 111.4293 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +630.9303 111.4293 moveto +633.0518 111.4738 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +633.0518 111.4738 moveto +635.1733 111.5189 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +635.1733 111.5189 moveto +637.2949 111.5645 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +637.2949 111.5645 moveto +639.4163 111.6106 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +639.4163 111.6106 moveto +641.5378 111.6573 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +641.5378 111.6573 moveto +643.6593 111.7045 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +643.6593 111.7045 moveto +645.7808 111.7524 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +645.7808 111.7524 moveto +647.9023 111.8008 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +647.9023 111.8008 moveto +650.0239 111.8498 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +650.0239 111.8498 moveto +652.1453 111.8993 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +652.1453 111.8993 moveto +654.2668 111.9494 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +654.2668 111.9494 moveto +656.3884 112.0001 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +656.3884 112.0001 moveto +658.5098 112.0514 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +658.5098 112.0514 moveto +660.6313 112.1033 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +660.6313 112.1033 moveto +662.7529 112.1558 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +662.7529 112.1558 moveto +664.8743 112.2088 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +664.8743 112.2088 moveto +666.9958 112.2625 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +666.9958 112.2625 moveto +669.1174 112.3168 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +669.1174 112.3168 moveto +671.2389 112.3717 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +671.2389 112.3717 moveto +673.3604 112.4272 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +673.3604 112.4272 moveto +675.4819 112.4834 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +675.4819 112.4834 moveto +677.6033 112.5401 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +677.6033 112.5401 moveto +679.7249 112.5975 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +679.7249 112.5975 moveto +681.8464 112.6555 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +681.8464 112.6555 moveto +683.9679 112.7142 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +683.9679 112.7142 moveto +686.0894 112.7735 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +686.0894 112.7735 moveto +688.2109 112.8335 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +688.2109 112.8335 moveto +690.3324 112.8941 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +690.3324 112.8941 moveto +692.4539 112.9554 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +692.4539 112.9554 moveto +694.5754 113.0173 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +694.5754 113.0173 moveto +696.6969 113.08 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +696.6969 113.08 moveto +698.8184 113.1433 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +698.8184 113.1433 moveto +700.9399 113.2073 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +700.9399 113.2073 moveto +703.0614 113.2719 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +703.0614 113.2719 moveto +705.1829 113.3373 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +705.1829 113.3373 moveto +707.3044 113.4034 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +707.3044 113.4034 moveto +709.426 113.4702 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +709.426 113.4702 moveto +711.5474 113.5377 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +711.5474 113.5377 moveto +713.6689 113.6059 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +713.6689 113.6059 moveto +715.7905 113.6748 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +715.7905 113.6748 moveto +717.9119 113.7444 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +717.9119 113.7444 moveto +720.0334 113.8148 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +720.0334 113.8148 moveto +722.155 113.886 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +722.155 113.886 moveto +724.2764 113.9579 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +724.2764 113.9579 moveto +726.3979 114.0306 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +726.3979 114.0306 moveto +728.5195 114.104 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +728.5195 114.104 moveto +730.641 114.1782 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +730.641 114.1782 moveto +732.7625 114.2532 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +732.7625 114.2532 moveto +734.884 114.329 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +734.884 114.329 moveto +737.0055 114.4056 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +102.6759 114.4828 moveto +102.6759 114.4828 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +104.7974 114.4055 moveto +104.7974 114.4055 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +106.9189 114.3289 moveto +106.9189 114.3289 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +109.0404 114.2531 moveto +109.0404 114.2531 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +111.1619 114.1781 moveto +111.1619 114.1781 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +113.2834 114.1039 moveto +113.2834 114.1039 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +115.4049 114.0305 moveto +115.4049 114.0305 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +117.5264 113.9578 moveto +117.5264 113.9578 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +119.648 113.8859 moveto +119.648 113.8859 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +121.7694 113.8148 moveto +121.7694 113.8148 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +123.8909 113.7443 moveto +123.8909 113.7443 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +126.0124 113.6747 moveto +126.0124 113.6747 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +128.134 113.6058 moveto +128.134 113.6058 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +130.2555 113.5376 moveto +130.2555 113.5376 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +132.377 113.4701 moveto +132.377 113.4701 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +134.4985 113.4033 moveto +134.4985 113.4033 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +136.62 113.3372 moveto +136.62 113.3372 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +138.7415 113.2719 moveto +138.7415 113.2719 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +140.863 113.2072 moveto +140.863 113.2072 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +142.9845 113.1432 moveto +142.9845 113.1432 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +145.106 113.0799 moveto +145.106 113.0799 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +147.2275 113.0173 moveto +147.2275 113.0173 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +149.349 112.9553 moveto +149.349 112.9553 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +151.4705 112.894 moveto +151.4705 112.894 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +153.592 112.8334 moveto +153.592 112.8334 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +155.7135 112.7734 moveto +155.7135 112.7734 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +157.835 112.7141 moveto +157.835 112.7141 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +159.9565 112.6555 moveto +159.9565 112.6555 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +162.078 112.5974 moveto +162.078 112.5974 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +164.1995 112.54 moveto +164.1995 112.54 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +166.321 112.4833 moveto +166.321 112.4833 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +168.4425 112.4271 moveto +168.4425 112.4271 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +170.564 112.3716 moveto +170.564 112.3716 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +172.6855 112.3167 moveto +172.6855 112.3167 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +174.8071 112.2625 moveto +174.8071 112.2625 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +176.9286 112.2088 moveto +176.9286 112.2088 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +179.05 112.1557 moveto +179.05 112.1557 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +181.1715 112.1032 moveto +181.1715 112.1032 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +183.293 112.0513 moveto +183.293 112.0513 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +185.4146 112.0001 moveto +185.4146 112.0001 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +187.5361 111.9493 moveto +187.5361 111.9493 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +189.6575 111.8992 moveto +189.6575 111.8992 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +191.779 111.8497 moveto +191.779 111.8497 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +193.9006 111.8007 moveto +193.9006 111.8007 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +196.0221 111.7523 moveto +196.0221 111.7523 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +198.1436 111.7045 moveto +198.1436 111.7045 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +200.2651 111.6572 moveto +200.2651 111.6572 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +202.3866 111.6105 moveto +202.3866 111.6105 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +204.5081 111.5644 moveto +204.5081 111.5644 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +206.6296 111.5188 moveto +206.6296 111.5188 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +208.7511 111.4737 moveto +208.7511 111.4737 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +210.8726 111.4293 moveto +210.8726 111.4293 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +212.9941 111.3853 moveto +212.9941 111.3853 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +215.1156 111.3419 moveto +215.1156 111.3419 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +217.2371 111.299 moveto +217.2371 111.299 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +219.3586 111.2566 moveto +219.3586 111.2566 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +221.4801 111.2148 moveto +221.4801 111.2148 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +223.6016 111.1735 moveto +223.6016 111.1735 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +225.7231 111.1328 moveto +225.7231 111.1328 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +227.8446 111.0925 moveto +227.8446 111.0925 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +229.9661 111.0528 moveto +229.9661 111.0528 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +232.0876 111.0136 moveto +232.0876 111.0136 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +234.2091 110.9749 moveto +234.2091 110.9749 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +236.3306 110.9367 moveto +236.3306 110.9367 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +238.4521 110.899 moveto +238.4521 110.899 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +240.5737 110.8618 moveto +240.5737 110.8618 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +242.6951 110.8251 moveto +242.6951 110.8251 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +244.8167 110.7889 moveto +244.8167 110.7889 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +246.9381 110.7532 moveto +246.9381 110.7532 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +249.0597 110.7181 moveto +249.0597 110.7181 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +251.1812 110.6833 moveto +251.1812 110.6833 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +253.3026 110.6492 moveto +253.3026 110.6492 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +255.4242 110.6154 moveto +255.4242 110.6154 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +257.5457 110.5822 moveto +257.5457 110.5822 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +259.6672 110.5494 moveto +259.6672 110.5494 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +261.7887 110.5171 moveto +261.7887 110.5171 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +263.9102 110.4854 moveto +263.9102 110.4854 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +266.0317 110.4541 moveto +266.0317 110.4541 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +268.1532 110.4232 moveto +268.1532 110.4232 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +270.2747 110.3928 moveto +270.2747 110.3928 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +272.3962 110.3629 moveto +272.3962 110.3629 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +274.5177 110.3335 moveto +274.5177 110.3335 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +276.6392 110.3045 moveto +276.6392 110.3045 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +278.7607 110.276 moveto +278.7607 110.276 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +280.8822 110.2479 moveto +280.8822 110.2479 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +283.0037 110.2203 moveto +283.0037 110.2203 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +285.1252 110.1932 moveto +285.1252 110.1932 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +287.2467 110.1665 moveto +287.2467 110.1665 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +289.3682 110.1403 moveto +289.3682 110.1403 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +291.4897 110.1145 moveto +291.4897 110.1145 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +293.6112 110.0892 moveto +293.6112 110.0892 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +295.7327 110.0643 moveto +295.7327 110.0643 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +297.8542 110.0399 moveto +297.8542 110.0399 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +299.9757 110.0159 moveto +299.9757 110.0159 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +302.0973 109.9924 moveto +302.0973 109.9924 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +304.2188 109.9693 moveto +304.2188 109.9693 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +306.3403 109.9466 moveto +306.3403 109.9466 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +308.4618 109.9245 moveto +308.4618 109.9245 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +310.5832 109.9027 moveto +310.5832 109.9027 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +312.7048 109.8813 moveto +312.7048 109.8813 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +314.8263 109.8605 moveto +314.8263 109.8605 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +316.9478 109.84 moveto +316.9478 109.84 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +319.0693 109.82 moveto +319.0693 109.82 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +321.1908 109.8003 moveto +321.1908 109.8003 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +323.3123 109.7812 moveto +323.3123 109.7812 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +325.4338 109.7625 moveto +325.4338 109.7625 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +327.5553 109.7442 moveto +327.5553 109.7442 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +329.6768 109.7263 moveto +329.6768 109.7263 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +331.7983 109.7088 moveto +331.7983 109.7088 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +333.9198 109.6918 moveto +333.9198 109.6918 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +336.0413 109.6752 moveto +336.0413 109.6752 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +338.1628 109.659 moveto +338.1628 109.659 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +340.2843 109.6433 moveto +340.2843 109.6433 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +342.4058 109.6279 moveto +342.4058 109.6279 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +344.5273 109.613 moveto +344.5273 109.613 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +346.6488 109.5985 moveto +346.6488 109.5985 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +348.7703 109.5844 moveto +348.7703 109.5844 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +350.8918 109.5708 moveto +350.8918 109.5708 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +353.0133 109.5575 moveto +353.0133 109.5575 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +355.1349 109.5447 moveto +355.1349 109.5447 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +357.2563 109.5323 moveto +357.2563 109.5323 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +359.3778 109.5203 moveto +359.3778 109.5203 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +361.4994 109.5087 moveto +361.4994 109.5087 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +363.6208 109.4975 moveto +363.6208 109.4975 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +365.7423 109.4868 moveto +365.7423 109.4868 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +367.8639 109.4764 moveto +367.8639 109.4764 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +369.9854 109.4665 moveto +369.9854 109.4665 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +372.1069 109.4569 moveto +372.1069 109.4569 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +374.2284 109.4478 moveto +374.2284 109.4478 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +376.3499 109.4391 moveto +376.3499 109.4391 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +378.4714 109.4308 moveto +378.4714 109.4308 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +380.5929 109.4229 moveto +380.5929 109.4229 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +382.7144 109.4154 moveto +382.7144 109.4154 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +384.8359 109.4083 moveto +384.8359 109.4083 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +386.9574 109.4017 moveto +386.9574 109.4017 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +389.0789 109.3954 moveto +389.0789 109.3954 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +391.2004 109.3895 moveto +391.2004 109.3895 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +393.3219 109.3841 moveto +393.3219 109.3841 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +395.4434 109.3791 moveto +395.4434 109.3791 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +397.5649 109.3744 moveto +397.5649 109.3744 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +399.6864 109.3702 moveto +399.6864 109.3702 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +401.8079 109.3664 moveto +401.8079 109.3664 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +403.9294 109.3629 moveto +403.9294 109.3629 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +406.0509 109.3599 moveto +406.0509 109.3599 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +408.1724 109.3573 moveto +408.1724 109.3573 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +410.2939 109.355 moveto +410.2939 109.355 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +412.4154 109.3532 moveto +412.4154 109.3532 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +414.5369 109.3518 moveto +414.5369 109.3518 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +416.6584 109.3508 moveto +416.6584 109.3508 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +418.7799 109.3502 moveto +418.7799 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9014 109.35 moveto +420.9014 109.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +423.0229 109.3502 moveto +423.0229 109.3502 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +425.1444 109.3508 moveto +425.1444 109.3508 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +427.266 109.3518 moveto +427.266 109.3518 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +429.3875 109.3532 moveto +429.3875 109.3532 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +431.5089 109.355 moveto +431.5089 109.355 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +433.6305 109.3573 moveto +433.6305 109.3573 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +435.752 109.3599 moveto +435.752 109.3599 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +437.8735 109.3629 moveto +437.8735 109.3629 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +439.995 109.3664 moveto +439.995 109.3664 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +442.1165 109.3702 moveto +442.1165 109.3702 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +444.238 109.3744 moveto +444.238 109.3744 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +446.3595 109.3791 moveto +446.3595 109.3791 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +448.481 109.3841 moveto +448.481 109.3841 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +450.6025 109.3895 moveto +450.6025 109.3895 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +452.724 109.3954 moveto +452.724 109.3954 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +454.8455 109.4017 moveto +454.8455 109.4017 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +456.967 109.4083 moveto +456.967 109.4083 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +459.0885 109.4154 moveto +459.0885 109.4154 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +461.21 109.423 moveto +461.21 109.423 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +463.3315 109.4308 moveto +463.3315 109.4308 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +465.453 109.4391 moveto +465.453 109.4391 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +467.5745 109.4479 moveto +467.5745 109.4479 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +469.696 109.4569 moveto +469.696 109.4569 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +471.8175 109.4665 moveto +471.8175 109.4665 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +473.939 109.4764 moveto +473.939 109.4764 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +476.0605 109.4868 moveto +476.0605 109.4868 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +478.182 109.4975 moveto +478.182 109.4975 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +480.3036 109.5087 moveto +480.3036 109.5087 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +482.425 109.5203 moveto +482.425 109.5203 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +484.5465 109.5323 moveto +484.5465 109.5323 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +486.668 109.5447 moveto +486.668 109.5447 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +488.7896 109.5575 moveto +488.7896 109.5575 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +490.911 109.5708 moveto +490.911 109.5708 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +493.0326 109.5844 moveto +493.0326 109.5844 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +495.1541 109.5985 moveto +495.1541 109.5985 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +497.2756 109.613 moveto +497.2756 109.613 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +499.3971 109.6279 moveto +499.3971 109.6279 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +501.5186 109.6433 moveto +501.5186 109.6433 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +503.6401 109.659 moveto +503.6401 109.659 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +505.7616 109.6752 moveto +505.7616 109.6752 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +507.8831 109.6918 moveto +507.8831 109.6918 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +510.0046 109.7088 moveto +510.0046 109.7088 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +512.1261 109.7263 moveto +512.1261 109.7263 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +514.2476 109.7442 moveto +514.2476 109.7442 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +516.3691 109.7625 moveto +516.3691 109.7625 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +518.4906 109.7813 moveto +518.4906 109.7813 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +520.6121 109.8004 moveto +520.6121 109.8004 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +522.7336 109.82 moveto +522.7336 109.82 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +524.8552 109.84 moveto +524.8552 109.84 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +526.9766 109.8605 moveto +526.9766 109.8605 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +529.0981 109.8814 moveto +529.0981 109.8814 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +531.2197 109.9027 moveto +531.2197 109.9027 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +533.3411 109.9245 moveto +533.3411 109.9245 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +535.4626 109.9467 moveto +535.4626 109.9467 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +537.5842 109.9693 moveto +537.5842 109.9693 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +539.7056 109.9924 moveto +539.7056 109.9924 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +541.8271 110.016 moveto +541.8271 110.016 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +543.9487 110.0399 moveto +543.9487 110.0399 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +546.0702 110.0644 moveto +546.0702 110.0644 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +548.1917 110.0893 moveto +548.1917 110.0893 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +550.3132 110.1146 moveto +550.3132 110.1146 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +552.4347 110.1403 moveto +552.4347 110.1403 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +554.5562 110.1666 moveto +554.5562 110.1666 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +556.6777 110.1932 moveto +556.6777 110.1932 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +558.7992 110.2204 moveto +558.7992 110.2204 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +560.9207 110.2479 moveto +560.9207 110.2479 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +563.0422 110.276 moveto +563.0422 110.276 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +565.1637 110.3045 moveto +565.1637 110.3045 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +567.2852 110.3335 moveto +567.2852 110.3335 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +569.4067 110.3629 moveto +569.4067 110.3629 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +571.5282 110.3929 moveto +571.5282 110.3929 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +573.6497 110.4232 moveto +573.6497 110.4232 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +575.7712 110.4541 moveto +575.7712 110.4541 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +577.8927 110.4854 moveto +577.8927 110.4854 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +580.0142 110.5172 moveto +580.0142 110.5172 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +582.1357 110.5495 moveto +582.1357 110.5495 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +584.2572 110.5822 moveto +584.2572 110.5822 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +586.3787 110.6155 moveto +586.3787 110.6155 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +588.5002 110.6492 moveto +588.5002 110.6492 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +590.6218 110.6834 moveto +590.6218 110.6834 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +592.7432 110.7181 moveto +592.7432 110.7181 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +594.8647 110.7533 moveto +594.8647 110.7533 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +596.9863 110.789 moveto +596.9863 110.789 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +599.1077 110.8251 moveto +599.1077 110.8251 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +601.2292 110.8619 moveto +601.2292 110.8619 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +603.3508 110.899 moveto +603.3508 110.899 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +605.4722 110.9367 moveto +605.4722 110.9367 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +607.5938 110.9749 moveto +607.5938 110.9749 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +609.7153 111.0136 moveto +609.7153 111.0136 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +611.8368 111.0528 moveto +611.8368 111.0528 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +613.9583 111.0925 moveto +613.9583 111.0925 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +616.0798 111.1328 moveto +616.0798 111.1328 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +618.2013 111.1736 moveto +618.2013 111.1736 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +620.3228 111.2149 moveto +620.3228 111.2149 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +622.4443 111.2567 moveto +622.4443 111.2567 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +624.5658 111.299 moveto +624.5658 111.299 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +626.6873 111.3419 moveto +626.6873 111.3419 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +628.8088 111.3853 moveto +628.8088 111.3853 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +630.9303 111.4293 moveto +630.9303 111.4293 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +633.0518 111.4738 moveto +633.0518 111.4738 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +635.1733 111.5189 moveto +635.1733 111.5189 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +637.2949 111.5645 moveto +637.2949 111.5645 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +639.4163 111.6106 moveto +639.4163 111.6106 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +641.5378 111.6573 moveto +641.5378 111.6573 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +643.6593 111.7045 moveto +643.6593 111.7045 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +645.7808 111.7524 moveto +645.7808 111.7524 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +647.9023 111.8008 moveto +647.9023 111.8008 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +650.0239 111.8498 moveto +650.0239 111.8498 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +652.1453 111.8993 moveto +652.1453 111.8993 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +654.2668 111.9494 moveto +654.2668 111.9494 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +656.3884 112.0001 moveto +656.3884 112.0001 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +658.5098 112.0514 moveto +658.5098 112.0514 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +660.6313 112.1033 moveto +660.6313 112.1033 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +662.7529 112.1558 moveto +662.7529 112.1558 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +664.8743 112.2088 moveto +664.8743 112.2088 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +666.9958 112.2625 moveto +666.9958 112.2625 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +669.1174 112.3168 moveto +669.1174 112.3168 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +671.2389 112.3717 moveto +671.2389 112.3717 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +673.3604 112.4272 moveto +673.3604 112.4272 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +675.4819 112.4834 moveto +675.4819 112.4834 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +677.6033 112.5401 moveto +677.6033 112.5401 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +679.7249 112.5975 moveto +679.7249 112.5975 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +681.8464 112.6555 moveto +681.8464 112.6555 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +683.9679 112.7142 moveto +683.9679 112.7142 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +686.0894 112.7735 moveto +686.0894 112.7735 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +688.2109 112.8335 moveto +688.2109 112.8335 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +690.3324 112.8941 moveto +690.3324 112.8941 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +692.4539 112.9554 moveto +692.4539 112.9554 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +694.5754 113.0173 moveto +694.5754 113.0173 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +696.6969 113.08 moveto +696.6969 113.08 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +698.8184 113.1433 moveto +698.8184 113.1433 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +700.9399 113.2073 moveto +700.9399 113.2073 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +703.0614 113.2719 moveto +703.0614 113.2719 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +705.1829 113.3373 moveto +705.1829 113.3373 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +707.3044 113.4034 moveto +707.3044 113.4034 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +709.426 113.4702 moveto +709.426 113.4702 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +711.5474 113.5377 moveto +711.5474 113.5377 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +713.6689 113.6059 moveto +713.6689 113.6059 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +715.7905 113.6748 moveto +715.7905 113.6748 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +717.9119 113.7444 moveto +717.9119 113.7444 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +720.0334 113.8148 moveto +720.0334 113.8148 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +722.155 113.886 moveto +722.155 113.886 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +724.2764 113.9579 moveto +724.2764 113.9579 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +726.3979 114.0306 moveto +726.3979 114.0306 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +728.5195 114.104 moveto +728.5195 114.104 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +730.641 114.1782 moveto +730.641 114.1782 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +732.7625 114.2532 moveto +732.7625 114.2532 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +734.884 114.329 moveto +734.884 114.329 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +737.0055 114.4056 moveto +737.0055 114.4056 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +121.8765 492.35 moveto +123.8909 482.9656 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +123.8909 482.9656 moveto +126.0124 474.1127 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +126.0124 474.1127 moveto +128.134 466.1076 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +128.134 466.1076 moveto +130.2555 458.8122 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +130.2555 458.8122 moveto +132.377 452.1188 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +132.377 452.1188 moveto +134.4985 445.9432 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +134.4985 445.9432 moveto +136.62 440.2168 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +136.62 440.2168 moveto +138.7415 434.8838 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +138.7415 434.8838 moveto +140.863 429.8984 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +140.863 429.8984 moveto +142.9845 425.2222 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +142.9845 425.2222 moveto +145.106 420.8224 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +145.106 420.8224 moveto +147.2275 416.6715 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +147.2275 416.6715 moveto +149.349 412.7459 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +149.349 412.7459 moveto +151.4705 409.0247 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +151.4705 409.0247 moveto +153.592 405.4904 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +153.592 405.4904 moveto +155.7135 402.127 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +155.7135 402.127 moveto +157.835 398.9209 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +157.835 398.9209 moveto +159.9565 395.86 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +159.9565 395.86 moveto +162.078 392.933 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +162.078 392.933 moveto +164.1995 390.1308 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +164.1995 390.1308 moveto +166.321 387.4444 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +166.321 387.4444 moveto +168.4425 384.866 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +168.4425 384.866 moveto +170.564 382.3885 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +170.564 382.3885 moveto +172.6855 380.0055 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +172.6855 380.0055 moveto +174.8071 377.7113 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +174.8071 377.7113 moveto +176.9286 375.5006 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +176.9286 375.5006 moveto +179.05 373.3686 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +179.05 373.3686 moveto +181.1715 371.3108 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +181.1715 371.3108 moveto +183.293 369.323 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +183.293 369.323 moveto +185.4146 367.4016 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +185.4146 367.4016 moveto +187.5361 365.5434 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +187.5361 365.5434 moveto +189.6575 363.7446 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +189.6575 363.7446 moveto +191.779 362.0028 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +191.779 362.0028 moveto +193.9006 360.315 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +193.9006 360.315 moveto +196.0221 358.6786 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +196.0221 358.6786 moveto +198.1436 357.0915 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +198.1436 357.0915 moveto +200.2651 355.5511 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +200.2651 355.5511 moveto +202.3866 354.0558 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +202.3866 354.0558 moveto +204.5081 352.6033 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +204.5081 352.6033 moveto +206.6296 351.1919 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +206.6296 351.1919 moveto +208.7511 349.8202 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +208.7511 349.8202 moveto +210.8726 348.4861 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +210.8726 348.4861 moveto +212.9941 347.1883 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +212.9941 347.1883 moveto +215.1156 345.9255 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +215.1156 345.9255 moveto +217.2371 344.6964 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +217.2371 344.6964 moveto +219.3586 343.4997 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +219.3586 343.4997 moveto +221.4801 342.3341 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +221.4801 342.3341 moveto +223.6016 341.1987 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +223.6016 341.1987 moveto +225.7231 340.0923 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +225.7231 340.0923 moveto +227.8446 339.0139 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +227.8446 339.0139 moveto +229.9661 337.9626 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +229.9661 337.9626 moveto +232.0876 336.9376 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +232.0876 336.9376 moveto +234.2091 335.9377 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +234.2091 335.9377 moveto +236.3306 334.9626 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +236.3306 334.9626 moveto +238.4521 334.0113 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +238.4521 334.0113 moveto +240.5737 333.0829 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +240.5737 333.0829 moveto +242.6951 332.1767 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +242.6951 332.1767 moveto +244.8167 331.2924 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +244.8167 331.2924 moveto +246.9381 330.4292 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +246.9381 330.4292 moveto +249.0597 329.5865 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +249.0597 329.5865 moveto +251.1812 328.7636 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +251.1812 328.7636 moveto +253.3026 327.9601 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +253.3026 327.9601 moveto +255.4242 327.1753 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +255.4242 327.1753 moveto +257.5457 326.4089 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +257.5457 326.4089 moveto +259.6672 325.6602 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +259.6672 325.6602 moveto +261.7887 324.929 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +261.7887 324.929 moveto +263.9102 324.2148 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +263.9102 324.2148 moveto +266.0317 323.5171 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +266.0317 323.5171 moveto +268.1532 322.8355 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +268.1532 322.8355 moveto +270.2747 322.1696 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +270.2747 322.1696 moveto +272.3962 321.5191 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +272.3962 321.5191 moveto +274.5177 320.8836 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +274.5177 320.8836 moveto +276.6392 320.2628 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +276.6392 320.2628 moveto +278.7607 319.6563 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +278.7607 319.6563 moveto +280.8822 319.0639 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +280.8822 319.0639 moveto +283.0037 318.4853 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +283.0037 318.4853 moveto +285.1252 317.92 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +285.1252 317.92 moveto +287.2467 317.3678 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +287.2467 317.3678 moveto +289.3682 316.8287 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +289.3682 316.8287 moveto +291.4897 316.3022 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +291.4897 316.3022 moveto +293.6112 315.7881 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +293.6112 315.7881 moveto +295.7327 315.286 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +295.7327 315.286 moveto +297.8542 314.796 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +297.8542 314.796 moveto +299.9757 314.3177 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +299.9757 314.3177 moveto +302.0973 313.8507 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +302.0973 313.8507 moveto +304.2188 313.3952 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +304.2188 313.3952 moveto +306.3403 312.9507 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +306.3403 312.9507 moveto +308.4618 312.5172 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +308.4618 312.5172 moveto +310.5832 312.0942 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +310.5832 312.0942 moveto +312.7048 311.682 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +312.7048 311.682 moveto +314.8263 311.28 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +314.8263 311.28 moveto +316.9478 310.8883 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +316.9478 310.8883 moveto +319.0693 310.5066 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +319.0693 310.5066 moveto +321.1908 310.1348 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +321.1908 310.1348 moveto +323.3123 309.7728 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +323.3123 309.7728 moveto +325.4338 309.4203 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +325.4338 309.4203 moveto +327.5553 309.0774 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +327.5553 309.0774 moveto +329.6768 308.7438 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +329.6768 308.7438 moveto +331.7983 308.4195 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +331.7983 308.4195 moveto +333.9198 308.1042 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +333.9198 308.1042 moveto +336.0413 307.7979 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +336.0413 307.7979 moveto +338.1628 307.5006 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +338.1628 307.5006 moveto +340.2843 307.2119 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +340.2843 307.2119 moveto +342.4058 306.9319 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +342.4058 306.9319 moveto +344.5273 306.6606 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +344.5273 306.6606 moveto +346.6488 306.3976 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +346.6488 306.3976 moveto +348.7703 306.1431 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +348.7703 306.1431 moveto +350.8918 305.8968 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +350.8918 305.8968 moveto +353.0133 305.6587 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +353.0133 305.6587 moveto +355.1349 305.4287 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +355.1349 305.4287 moveto +357.2563 305.2066 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +357.2563 305.2066 moveto +359.3778 304.9928 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +359.3778 304.9928 moveto +361.4994 304.7866 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +361.4994 304.7866 moveto +363.6208 304.5884 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +363.6208 304.5884 moveto +365.7423 304.3978 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +365.7423 304.3978 moveto +367.8639 304.215 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +367.8639 304.215 moveto +369.9854 304.0398 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +369.9854 304.0398 moveto +372.1069 303.8721 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +372.1069 303.8721 moveto +374.2284 303.7121 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +374.2284 303.7121 moveto +376.3499 303.5594 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +376.3499 303.5594 moveto +378.4714 303.4142 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +378.4714 303.4142 moveto +380.5929 303.2763 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +380.5929 303.2763 moveto +382.7144 303.1459 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +382.7144 303.1459 moveto +384.8359 303.0227 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +384.8359 303.0227 moveto +386.9574 302.9066 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +386.9574 302.9066 moveto +389.0789 302.7979 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +389.0789 302.7979 moveto +391.2004 302.6963 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +391.2004 302.6963 moveto +393.3219 302.6018 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +393.3219 302.6018 moveto +395.4434 302.5145 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +395.4434 302.5145 moveto +397.5649 302.4343 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +397.5649 302.4343 moveto +399.6864 302.3611 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +399.6864 302.3611 moveto +401.8079 302.2948 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +401.8079 302.2948 moveto +403.9294 302.2358 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +403.9294 302.2358 moveto +406.0509 302.1836 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +406.0509 302.1836 moveto +408.1724 302.1385 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +408.1724 302.1385 moveto +410.2939 302.1003 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +410.2939 302.1003 moveto +412.4154 302.0691 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +412.4154 302.0691 moveto +414.5369 302.0448 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +414.5369 302.0448 moveto +416.6584 302.0275 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +416.6584 302.0275 moveto +418.7799 302.0171 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +418.7799 302.0171 moveto +420.9014 302.0135 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +420.9014 302.0135 moveto +423.0229 302.0171 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +423.0229 302.0171 moveto +425.1444 302.0275 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +425.1444 302.0275 moveto +427.266 302.0448 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +427.266 302.0448 moveto +429.3875 302.0691 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +429.3875 302.0691 moveto +431.5089 302.1003 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +431.5089 302.1003 moveto +433.6305 302.1385 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +433.6305 302.1385 moveto +435.752 302.1836 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +435.752 302.1836 moveto +437.8735 302.2358 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +437.8735 302.2358 moveto +439.995 302.295 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +439.995 302.295 moveto +442.1165 302.3611 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +442.1165 302.3611 moveto +444.238 302.4343 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +444.238 302.4343 moveto +446.3595 302.5146 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +446.3595 302.5146 moveto +448.481 302.6019 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +448.481 302.6019 moveto +450.6025 302.6964 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +450.6025 302.6964 moveto +452.724 302.798 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +452.724 302.798 moveto +454.8455 302.9068 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +454.8455 302.9068 moveto +456.967 303.0228 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +456.967 303.0228 moveto +459.0885 303.1461 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +459.0885 303.1461 moveto +461.21 303.2765 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +461.21 303.2765 moveto +463.3315 303.4145 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +463.3315 303.4145 moveto +465.453 303.5597 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +465.453 303.5597 moveto +467.5745 303.7123 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +467.5745 303.7123 moveto +469.696 303.8724 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +469.696 303.8724 moveto +471.8175 304.0401 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +471.8175 304.0401 moveto +473.939 304.2152 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +473.939 304.2152 moveto +476.0605 304.3981 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +476.0605 304.3981 moveto +478.182 304.5886 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +478.182 304.5886 moveto +480.3036 304.7869 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +480.3036 304.7869 moveto +482.425 304.9931 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +482.425 304.9931 moveto +484.5465 305.207 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +484.5465 305.207 moveto +486.668 305.4289 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +486.668 305.4289 moveto +488.7896 305.659 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +488.7896 305.659 moveto +490.911 305.8971 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +490.911 305.8971 moveto +493.0326 306.1434 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +493.0326 306.1434 moveto +495.1541 306.3979 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +495.1541 306.3979 moveto +497.2756 306.6609 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +497.2756 306.6609 moveto +499.3971 306.9324 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +499.3971 306.9324 moveto +501.5186 307.2124 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +501.5186 307.2124 moveto +503.6401 307.5011 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +503.6401 307.5011 moveto +505.7616 307.7984 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +505.7616 307.7984 moveto +507.8831 308.1047 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +507.8831 308.1047 moveto +510.0046 308.42 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +510.0046 308.42 moveto +512.1261 308.7443 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +512.1261 308.7443 moveto +514.2476 309.0779 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +514.2476 309.0779 moveto +516.3691 309.4208 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +516.3691 309.4208 moveto +518.4906 309.7733 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +518.4906 309.7733 moveto +520.6121 310.1353 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +520.6121 310.1353 moveto +522.7336 310.5071 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +522.7336 310.5071 moveto +524.8552 310.8888 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +524.8552 310.8888 moveto +526.9766 311.2805 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +526.9766 311.2805 moveto +529.0981 311.6825 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +529.0981 311.6825 moveto +531.2197 312.0948 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +531.2197 312.0948 moveto +533.3411 312.5176 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +533.3411 312.5176 moveto +535.4626 312.9514 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +535.4626 312.9514 moveto +537.5842 313.3958 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +537.5842 313.3958 moveto +539.7056 313.8514 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +539.7056 313.8514 moveto +541.8271 314.3183 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +541.8271 314.3183 moveto +543.9487 314.7966 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +543.9487 314.7966 moveto +546.0702 315.2867 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +546.0702 315.2867 moveto +548.1917 315.7888 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +548.1917 315.7888 moveto +550.3132 316.3029 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +550.3132 316.3029 moveto +552.4347 316.8295 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +552.4347 316.8295 moveto +554.5562 317.3686 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +554.5562 317.3686 moveto +556.6777 317.9208 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +556.6777 317.9208 moveto +558.7992 318.4861 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +558.7992 318.4861 moveto +560.9207 319.0647 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +560.9207 319.0647 moveto +563.0422 319.6571 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +563.0422 319.6571 moveto +565.1637 320.2636 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +565.1637 320.2636 moveto +567.2852 320.8845 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +567.2852 320.8845 moveto +569.4067 321.52 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +569.4067 321.52 moveto +571.5282 322.1705 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +571.5282 322.1705 moveto +573.6497 322.8364 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +573.6497 322.8364 moveto +575.7712 323.5181 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +575.7712 323.5181 moveto +577.8927 324.2157 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +577.8927 324.2157 moveto +580.0142 324.9299 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +580.0142 324.9299 moveto +582.1357 325.6613 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +582.1357 325.6613 moveto +584.2572 326.4099 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +584.2572 326.4099 moveto +586.3787 327.1764 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +586.3787 327.1764 moveto +588.5002 327.961 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +588.5002 327.961 moveto +590.6218 328.7646 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +590.6218 328.7646 moveto +592.7432 329.5876 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +592.7432 329.5876 moveto +594.8647 330.4305 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +594.8647 330.4305 moveto +596.9863 331.2937 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +596.9863 331.2937 moveto +599.1077 332.178 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +599.1077 332.178 moveto +601.2292 333.0841 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +601.2292 333.0841 moveto +603.3508 334.0124 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +603.3508 334.0124 moveto +605.4722 334.9639 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +605.4722 334.9639 moveto +607.5938 335.9392 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +607.5938 335.9392 moveto +609.7153 336.9388 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +609.7153 336.9388 moveto +611.8368 337.964 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +611.8368 337.964 moveto +613.9583 339.0154 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +613.9583 339.0154 moveto +616.0798 340.0938 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +616.0798 340.0938 moveto +618.2013 341.2002 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +618.2013 341.2002 moveto +620.3228 342.3357 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +620.3228 342.3357 moveto +622.4443 343.5013 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +622.4443 343.5013 moveto +624.5658 344.6982 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +624.5658 344.6982 moveto +626.6873 345.9273 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +626.6873 345.9273 moveto +628.8088 347.1901 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +628.8088 347.1901 moveto +630.9303 348.4879 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +630.9303 348.4879 moveto +633.0518 349.8219 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +633.0518 349.8219 moveto +635.1733 351.1938 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +635.1733 351.1938 moveto +637.2949 352.6053 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +637.2949 352.6053 moveto +639.4163 354.0577 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +639.4163 354.0577 moveto +641.5378 355.5532 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +641.5378 355.5532 moveto +643.6593 357.0936 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +643.6593 357.0936 moveto +645.7808 358.6809 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +645.7808 358.6809 moveto +647.9023 360.3172 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +647.9023 360.3172 moveto +650.0239 362.0051 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +650.0239 362.0051 moveto +652.1453 363.747 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +652.1453 363.747 moveto +654.2668 365.5458 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +654.2668 365.5458 moveto +656.3884 367.4042 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +656.3884 367.4042 moveto +658.5098 369.3257 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +658.5098 369.3257 moveto +660.6313 371.3134 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +660.6313 371.3134 moveto +662.7529 373.3715 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +662.7529 373.3715 moveto +664.8743 375.5037 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +664.8743 375.5037 moveto +666.9958 377.7145 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +666.9958 377.7145 moveto +669.1174 380.0088 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +669.1174 380.0088 moveto +671.2389 382.3917 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +671.2389 382.3917 moveto +673.3604 384.8694 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +673.3604 384.8694 moveto +675.4819 387.4479 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +675.4819 387.4479 moveto +677.6033 390.1345 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +677.6033 390.1345 moveto +679.7249 392.9369 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +679.7249 392.9369 moveto +681.8464 395.864 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +681.8464 395.864 moveto +683.9679 398.9252 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +683.9679 398.9252 moveto +686.0894 402.1315 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +686.0894 402.1315 moveto +688.2109 405.4951 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +688.2109 405.4951 moveto +690.3324 409.0296 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +690.3324 409.0296 moveto +692.4539 412.751 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +692.4539 412.751 moveto +694.5754 416.677 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +694.5754 416.677 moveto +696.6969 420.8282 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +696.6969 420.8282 moveto +698.8184 425.2283 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +698.8184 425.2283 moveto +700.9399 429.905 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +700.9399 429.905 moveto +703.0614 434.8908 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +703.0614 434.8908 moveto +705.1829 440.2242 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +705.1829 440.2242 moveto +707.3044 445.9512 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +707.3044 445.9512 moveto +709.426 452.1276 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +709.426 452.1276 moveto +711.5474 458.8215 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +711.5474 458.8215 moveto +713.6689 466.118 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +713.6689 466.118 moveto +715.7905 474.124 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +715.7905 474.124 moveto +717.9119 482.9782 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +717.9119 482.9782 moveto +719.9233 492.35 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +123.8909 482.9656 moveto +123.8909 482.9656 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +126.0124 474.1127 moveto +126.0124 474.1127 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +128.134 466.1076 moveto +128.134 466.1076 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +130.2555 458.8122 moveto +130.2555 458.8122 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +132.377 452.1188 moveto +132.377 452.1188 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +134.4985 445.9432 moveto +134.4985 445.9432 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +136.62 440.2168 moveto +136.62 440.2168 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +138.7415 434.8838 moveto +138.7415 434.8838 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +140.863 429.8984 moveto +140.863 429.8984 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +142.9845 425.2222 moveto +142.9845 425.2222 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +145.106 420.8224 moveto +145.106 420.8224 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +147.2275 416.6715 moveto +147.2275 416.6715 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +149.349 412.7459 moveto +149.349 412.7459 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +151.4705 409.0247 moveto +151.4705 409.0247 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +153.592 405.4904 moveto +153.592 405.4904 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +155.7135 402.127 moveto +155.7135 402.127 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +157.835 398.9209 moveto +157.835 398.9209 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +159.9565 395.86 moveto +159.9565 395.86 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +162.078 392.933 moveto +162.078 392.933 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +164.1995 390.1308 moveto +164.1995 390.1308 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +166.321 387.4444 moveto +166.321 387.4444 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +168.4425 384.866 moveto +168.4425 384.866 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +170.564 382.3885 moveto +170.564 382.3885 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +172.6855 380.0055 moveto +172.6855 380.0055 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +174.8071 377.7113 moveto +174.8071 377.7113 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +176.9286 375.5006 moveto +176.9286 375.5006 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +179.05 373.3686 moveto +179.05 373.3686 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +181.1715 371.3108 moveto +181.1715 371.3108 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +183.293 369.323 moveto +183.293 369.323 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +185.4146 367.4016 moveto +185.4146 367.4016 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +187.5361 365.5434 moveto +187.5361 365.5434 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +189.6575 363.7446 moveto +189.6575 363.7446 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +191.779 362.0028 moveto +191.779 362.0028 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +193.9006 360.315 moveto +193.9006 360.315 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +196.0221 358.6786 moveto +196.0221 358.6786 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +198.1436 357.0915 moveto +198.1436 357.0915 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +200.2651 355.5511 moveto +200.2651 355.5511 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +202.3866 354.0558 moveto +202.3866 354.0558 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +204.5081 352.6033 moveto +204.5081 352.6033 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +206.6296 351.1919 moveto +206.6296 351.1919 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +208.7511 349.8202 moveto +208.7511 349.8202 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +210.8726 348.4861 moveto +210.8726 348.4861 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +212.9941 347.1883 moveto +212.9941 347.1883 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +215.1156 345.9255 moveto +215.1156 345.9255 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +217.2371 344.6964 moveto +217.2371 344.6964 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +219.3586 343.4997 moveto +219.3586 343.4997 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +221.4801 342.3341 moveto +221.4801 342.3341 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +223.6016 341.1987 moveto +223.6016 341.1987 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +225.7231 340.0923 moveto +225.7231 340.0923 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +227.8446 339.0139 moveto +227.8446 339.0139 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +229.9661 337.9626 moveto +229.9661 337.9626 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +232.0876 336.9376 moveto +232.0876 336.9376 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +234.2091 335.9377 moveto +234.2091 335.9377 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +236.3306 334.9626 moveto +236.3306 334.9626 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +238.4521 334.0113 moveto +238.4521 334.0113 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +240.5737 333.0829 moveto +240.5737 333.0829 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +242.6951 332.1767 moveto +242.6951 332.1767 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +244.8167 331.2924 moveto +244.8167 331.2924 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +246.9381 330.4292 moveto +246.9381 330.4292 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +249.0597 329.5865 moveto +249.0597 329.5865 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +251.1812 328.7636 moveto +251.1812 328.7636 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +253.3026 327.9601 moveto +253.3026 327.9601 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +255.4242 327.1753 moveto +255.4242 327.1753 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +257.5457 326.4089 moveto +257.5457 326.4089 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +259.6672 325.6602 moveto +259.6672 325.6602 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +261.7887 324.929 moveto +261.7887 324.929 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +263.9102 324.2148 moveto +263.9102 324.2148 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +266.0317 323.5171 moveto +266.0317 323.5171 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +268.1532 322.8355 moveto +268.1532 322.8355 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +270.2747 322.1696 moveto +270.2747 322.1696 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +272.3962 321.5191 moveto +272.3962 321.5191 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +274.5177 320.8836 moveto +274.5177 320.8836 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +276.6392 320.2628 moveto +276.6392 320.2628 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +278.7607 319.6563 moveto +278.7607 319.6563 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +280.8822 319.0639 moveto +280.8822 319.0639 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +283.0037 318.4853 moveto +283.0037 318.4853 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +285.1252 317.92 moveto +285.1252 317.92 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +287.2467 317.3678 moveto +287.2467 317.3678 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +289.3682 316.8287 moveto +289.3682 316.8287 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +291.4897 316.3022 moveto +291.4897 316.3022 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +293.6112 315.7881 moveto +293.6112 315.7881 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +295.7327 315.286 moveto +295.7327 315.286 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +297.8542 314.796 moveto +297.8542 314.796 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +299.9757 314.3177 moveto +299.9757 314.3177 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +302.0973 313.8507 moveto +302.0973 313.8507 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +304.2188 313.3952 moveto +304.2188 313.3952 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +306.3403 312.9507 moveto +306.3403 312.9507 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +308.4618 312.5172 moveto +308.4618 312.5172 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +310.5832 312.0942 moveto +310.5832 312.0942 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +312.7048 311.682 moveto +312.7048 311.682 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +314.8263 311.28 moveto +314.8263 311.28 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +316.9478 310.8883 moveto +316.9478 310.8883 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +319.0693 310.5066 moveto +319.0693 310.5066 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +321.1908 310.1348 moveto +321.1908 310.1348 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +323.3123 309.7728 moveto +323.3123 309.7728 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +325.4338 309.4203 moveto +325.4338 309.4203 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +327.5553 309.0774 moveto +327.5553 309.0774 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +329.6768 308.7438 moveto +329.6768 308.7438 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +331.7983 308.4195 moveto +331.7983 308.4195 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +333.9198 308.1042 moveto +333.9198 308.1042 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +336.0413 307.7979 moveto +336.0413 307.7979 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +338.1628 307.5006 moveto +338.1628 307.5006 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +340.2843 307.2119 moveto +340.2843 307.2119 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +342.4058 306.9319 moveto +342.4058 306.9319 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +344.5273 306.6606 moveto +344.5273 306.6606 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +346.6488 306.3976 moveto +346.6488 306.3976 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +348.7703 306.1431 moveto +348.7703 306.1431 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +350.8918 305.8968 moveto +350.8918 305.8968 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +353.0133 305.6587 moveto +353.0133 305.6587 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +355.1349 305.4287 moveto +355.1349 305.4287 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +357.2563 305.2066 moveto +357.2563 305.2066 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +359.3778 304.9928 moveto +359.3778 304.9928 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +361.4994 304.7866 moveto +361.4994 304.7866 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +363.6208 304.5884 moveto +363.6208 304.5884 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +365.7423 304.3978 moveto +365.7423 304.3978 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +367.8639 304.215 moveto +367.8639 304.215 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +369.9854 304.0398 moveto +369.9854 304.0398 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +372.1069 303.8721 moveto +372.1069 303.8721 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +374.2284 303.7121 moveto +374.2284 303.7121 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +376.3499 303.5594 moveto +376.3499 303.5594 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +378.4714 303.4142 moveto +378.4714 303.4142 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +380.5929 303.2763 moveto +380.5929 303.2763 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +382.7144 303.1459 moveto +382.7144 303.1459 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +384.8359 303.0227 moveto +384.8359 303.0227 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +386.9574 302.9066 moveto +386.9574 302.9066 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +389.0789 302.7979 moveto +389.0789 302.7979 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +391.2004 302.6963 moveto +391.2004 302.6963 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +393.3219 302.6018 moveto +393.3219 302.6018 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +395.4434 302.5145 moveto +395.4434 302.5145 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +397.5649 302.4343 moveto +397.5649 302.4343 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +399.6864 302.3611 moveto +399.6864 302.3611 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +401.8079 302.2948 moveto +401.8079 302.2948 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +403.9294 302.2358 moveto +403.9294 302.2358 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +406.0509 302.1836 moveto +406.0509 302.1836 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +408.1724 302.1385 moveto +408.1724 302.1385 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +410.2939 302.1003 moveto +410.2939 302.1003 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +412.4154 302.0691 moveto +412.4154 302.0691 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +414.5369 302.0448 moveto +414.5369 302.0448 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +416.6584 302.0275 moveto +416.6584 302.0275 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +418.7799 302.0171 moveto +418.7799 302.0171 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +420.9014 302.0135 moveto +420.9014 302.0135 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +423.0229 302.0171 moveto +423.0229 302.0171 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +425.1444 302.0275 moveto +425.1444 302.0275 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +427.266 302.0448 moveto +427.266 302.0448 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +429.3875 302.0691 moveto +429.3875 302.0691 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +431.5089 302.1003 moveto +431.5089 302.1003 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +433.6305 302.1385 moveto +433.6305 302.1385 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +435.752 302.1836 moveto +435.752 302.1836 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +437.8735 302.2358 moveto +437.8735 302.2358 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +439.995 302.295 moveto +439.995 302.295 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +442.1165 302.3611 moveto +442.1165 302.3611 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +444.238 302.4343 moveto +444.238 302.4343 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +446.3595 302.5146 moveto +446.3595 302.5146 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +448.481 302.6019 moveto +448.481 302.6019 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +450.6025 302.6964 moveto +450.6025 302.6964 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +452.724 302.798 moveto +452.724 302.798 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +454.8455 302.9068 moveto +454.8455 302.9068 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +456.967 303.0228 moveto +456.967 303.0228 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +459.0885 303.1461 moveto +459.0885 303.1461 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +461.21 303.2765 moveto +461.21 303.2765 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +463.3315 303.4145 moveto +463.3315 303.4145 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +465.453 303.5597 moveto +465.453 303.5597 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +467.5745 303.7123 moveto +467.5745 303.7123 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +469.696 303.8724 moveto +469.696 303.8724 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +471.8175 304.0401 moveto +471.8175 304.0401 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +473.939 304.2152 moveto +473.939 304.2152 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +476.0605 304.3981 moveto +476.0605 304.3981 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +478.182 304.5886 moveto +478.182 304.5886 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +480.3036 304.7869 moveto +480.3036 304.7869 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +482.425 304.9931 moveto +482.425 304.9931 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +484.5465 305.207 moveto +484.5465 305.207 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +486.668 305.4289 moveto +486.668 305.4289 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +488.7896 305.659 moveto +488.7896 305.659 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +490.911 305.8971 moveto +490.911 305.8971 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +493.0326 306.1434 moveto +493.0326 306.1434 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +495.1541 306.3979 moveto +495.1541 306.3979 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +497.2756 306.6609 moveto +497.2756 306.6609 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +499.3971 306.9324 moveto +499.3971 306.9324 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +501.5186 307.2124 moveto +501.5186 307.2124 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +503.6401 307.5011 moveto +503.6401 307.5011 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +505.7616 307.7984 moveto +505.7616 307.7984 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +507.8831 308.1047 moveto +507.8831 308.1047 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +510.0046 308.42 moveto +510.0046 308.42 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +512.1261 308.7443 moveto +512.1261 308.7443 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +514.2476 309.0779 moveto +514.2476 309.0779 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +516.3691 309.4208 moveto +516.3691 309.4208 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +518.4906 309.7733 moveto +518.4906 309.7733 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +520.6121 310.1353 moveto +520.6121 310.1353 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +522.7336 310.5071 moveto +522.7336 310.5071 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +524.8552 310.8888 moveto +524.8552 310.8888 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +526.9766 311.2805 moveto +526.9766 311.2805 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +529.0981 311.6825 moveto +529.0981 311.6825 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +531.2197 312.0948 moveto +531.2197 312.0948 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +533.3411 312.5176 moveto +533.3411 312.5176 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +535.4626 312.9514 moveto +535.4626 312.9514 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +537.5842 313.3958 moveto +537.5842 313.3958 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +539.7056 313.8514 moveto +539.7056 313.8514 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +541.8271 314.3183 moveto +541.8271 314.3183 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +543.9487 314.7966 moveto +543.9487 314.7966 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +546.0702 315.2867 moveto +546.0702 315.2867 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +548.1917 315.7888 moveto +548.1917 315.7888 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +550.3132 316.3029 moveto +550.3132 316.3029 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +552.4347 316.8295 moveto +552.4347 316.8295 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +554.5562 317.3686 moveto +554.5562 317.3686 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +556.6777 317.9208 moveto +556.6777 317.9208 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +558.7992 318.4861 moveto +558.7992 318.4861 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +560.9207 319.0647 moveto +560.9207 319.0647 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +563.0422 319.6571 moveto +563.0422 319.6571 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +565.1637 320.2636 moveto +565.1637 320.2636 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +567.2852 320.8845 moveto +567.2852 320.8845 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +569.4067 321.52 moveto +569.4067 321.52 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +571.5282 322.1705 moveto +571.5282 322.1705 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +573.6497 322.8364 moveto +573.6497 322.8364 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +575.7712 323.5181 moveto +575.7712 323.5181 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +577.8927 324.2157 moveto +577.8927 324.2157 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +580.0142 324.9299 moveto +580.0142 324.9299 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +582.1357 325.6613 moveto +582.1357 325.6613 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +584.2572 326.4099 moveto +584.2572 326.4099 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +586.3787 327.1764 moveto +586.3787 327.1764 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +588.5002 327.961 moveto +588.5002 327.961 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +590.6218 328.7646 moveto +590.6218 328.7646 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +592.7432 329.5876 moveto +592.7432 329.5876 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +594.8647 330.4305 moveto +594.8647 330.4305 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +596.9863 331.2937 moveto +596.9863 331.2937 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +599.1077 332.178 moveto +599.1077 332.178 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +601.2292 333.0841 moveto +601.2292 333.0841 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +603.3508 334.0124 moveto +603.3508 334.0124 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +605.4722 334.9639 moveto +605.4722 334.9639 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +607.5938 335.9392 moveto +607.5938 335.9392 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +609.7153 336.9388 moveto +609.7153 336.9388 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +611.8368 337.964 moveto +611.8368 337.964 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +613.9583 339.0154 moveto +613.9583 339.0154 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +616.0798 340.0938 moveto +616.0798 340.0938 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +618.2013 341.2002 moveto +618.2013 341.2002 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +620.3228 342.3357 moveto +620.3228 342.3357 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +622.4443 343.5013 moveto +622.4443 343.5013 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +624.5658 344.6982 moveto +624.5658 344.6982 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +626.6873 345.9273 moveto +626.6873 345.9273 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +628.8088 347.1901 moveto +628.8088 347.1901 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +630.9303 348.4879 moveto +630.9303 348.4879 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +633.0518 349.8219 moveto +633.0518 349.8219 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +635.1733 351.1938 moveto +635.1733 351.1938 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +637.2949 352.6053 moveto +637.2949 352.6053 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +639.4163 354.0577 moveto +639.4163 354.0577 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +641.5378 355.5532 moveto +641.5378 355.5532 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +643.6593 357.0936 moveto +643.6593 357.0936 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +645.7808 358.6809 moveto +645.7808 358.6809 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +647.9023 360.3172 moveto +647.9023 360.3172 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +650.0239 362.0051 moveto +650.0239 362.0051 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +652.1453 363.747 moveto +652.1453 363.747 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +654.2668 365.5458 moveto +654.2668 365.5458 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +656.3884 367.4042 moveto +656.3884 367.4042 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +658.5098 369.3257 moveto +658.5098 369.3257 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +660.6313 371.3134 moveto +660.6313 371.3134 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +662.7529 373.3715 moveto +662.7529 373.3715 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +664.8743 375.5037 moveto +664.8743 375.5037 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +666.9958 377.7145 moveto +666.9958 377.7145 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +669.1174 380.0088 moveto +669.1174 380.0088 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +671.2389 382.3917 moveto +671.2389 382.3917 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +673.3604 384.8694 moveto +673.3604 384.8694 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +675.4819 387.4479 moveto +675.4819 387.4479 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +677.6033 390.1345 moveto +677.6033 390.1345 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +679.7249 392.9369 moveto +679.7249 392.9369 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +681.8464 395.864 moveto +681.8464 395.864 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +683.9679 398.9252 moveto +683.9679 398.9252 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +686.0894 402.1315 moveto +686.0894 402.1315 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +688.2109 405.4951 moveto +688.2109 405.4951 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +690.3324 409.0296 moveto +690.3324 409.0296 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +692.4539 412.751 moveto +692.4539 412.751 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +694.5754 416.677 moveto +694.5754 416.677 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +696.6969 420.8282 moveto +696.6969 420.8282 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +698.8184 425.2283 moveto +698.8184 425.2283 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +700.9399 429.905 moveto +700.9399 429.905 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +703.0614 434.8908 moveto +703.0614 434.8908 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +705.1829 440.2242 moveto +705.1829 440.2242 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +707.3044 445.9512 moveto +707.3044 445.9512 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +709.426 452.1276 moveto +709.426 452.1276 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +711.5474 458.8215 moveto +711.5474 458.8215 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +713.6689 466.118 moveto +713.6689 466.118 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +715.7905 474.124 moveto +715.7905 474.124 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +717.9119 482.9782 moveto +717.9119 482.9782 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +newpath +619.2591 222.8769 moveto +802.7591 222.8769 lineto +802.7591 122.8769 lineto +619.2591 122.8769 lineto +0.5 setlinewidth +[] 0 setdash +1 1 1 setrgbcolor +closepath +fill +newpath +619.2591 222.8769 moveto +802.7591 222.8769 lineto +802.7591 122.8769 lineto +619.2591 122.8769 lineto +0.5 setlinewidth +[] 0 setdash +1 1 1 setrgbcolor +closepath +stroke +newpath +619.2591 222.8769 moveto +802.0091 222.8769 lineto +802.0091 123.6269 lineto +619.2591 123.6269 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +closepath +stroke +/Arial findfont +14 scalefont +setfont +0 0 0 setrgbcolor +newpath +674.2591 197.1269 moveto +(n = 0, phi = 1.25) show +629.2591 202.8769 moveto +664.2591 202.8769 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +646.7591 202.8769 moveto +646.7591 202.8769 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +/Arial findfont +14 scalefont +setfont +0 0 0 setrgbcolor +newpath +674.2591 177.1269 moveto +(n = 0.5, phi = 1.25) show +629.2591 182.8769 moveto +664.2591 182.8769 lineto +0.5 setlinewidth +[] 0 setdash +1 0 0 setrgbcolor +stroke +646.7591 182.8769 moveto +646.7591 182.8769 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +/Arial findfont +14 scalefont +setfont +0 0 0 setrgbcolor +newpath +674.2591 157.1269 moveto +(n = 2, phi = 0.5) show +629.2591 162.8769 moveto +664.2591 162.8769 lineto +0.5 setlinewidth +[] 0 setdash +0 0 1 setrgbcolor +stroke +646.7591 162.8769 moveto +646.7591 162.8769 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +/Arial findfont +14 scalefont +setfont +0 0 0 setrgbcolor +newpath +674.2591 137.1269 moveto +(n = 0.25, phi = Pi/2) show +629.2591 142.8769 moveto +664.2591 142.8769 lineto +0.5 setlinewidth +[] 0 setdash +0 0.501960784313725 0.250980392156863 setrgbcolor +stroke +646.7591 142.8769 moveto +646.7591 142.8769 lineto +0.5 setlinewidth +[] 0 setdash +0 0 0 setrgbcolor +stroke +showpage diff --git a/doc/graphs/ellint_3.rgd b/doc/graphs/ellint_3.rgd new file mode 100644 index 000000000..13fb8b9c4 --- /dev/null +++ b/doc/graphs/ellint_3.rgd @@ -0,0 +1,1845 @@ +[RJS Graph Data File] + +[Header] +Version=3 +Revision=1 +[End Header] + +[Data] +Row 1 Col 1="-0.99999" +Row 1 Col 2="1.82143" +Row 1 Col 3="2.493653" +Row 1 Col 4="0.645084" +Row 1 Col 5="8.694534" +Row 2 Col 1="-0.9933234" +Row 2 Col 2="1.796937" +Row 2 Col 3="2.453287" +Row 2 Col 4="0.6446018" +Row 2 Col 5="4.378994" +Row 3 Col 1="-0.9866567" +Row 3 Col 2="1.774641" +Row 3 Col 3="2.416695" +Row 3 Col 4="0.6441246" +Row 3 Col 5="3.931923" +Row 4 Col 1="-0.9799901" +Row 4 Col 2="1.754179" +Row 4 Col 3="2.383247" +Row 4 Col 4="0.6436523" +Row 4 Col 5="3.674546" +Row 5 Col 1="-0.9733235" +Row 5 Col 2="1.735275" +Row 5 Col 3="2.352458" +Row 5 Col 4="0.643185" +Row 5 Col 5="3.494499" +Row 6 Col 1="-0.9666569" +Row 6 Col 2="1.717712" +Row 6 Col 3="2.32395" +Row 6 Col 4="0.6427226" +Row 6 Col 5="3.356645" +Row 7 Col 1="-0.9599902" +Row 7 Col 2="1.701317" +Row 7 Col 3="2.297423" +Row 7 Col 4="0.6422649" +Row 7 Col 5="3.245367" +Row 8 Col 1="-0.9533236" +Row 8 Col 2="1.685948" +Row 8 Col 3="2.272631" +Row 8 Col 4="0.6418121" +Row 8 Col 5="3.152358" +Row 9 Col 1="-0.9466569" +Row 9 Col 2="1.671489" +Row 9 Col 3="2.249374" +Row 9 Col 4="0.641364" +Row 9 Col 5="3.072666" +Row 10 Col 1="-0.9399903" +Row 10 Col 2="1.657843" +Row 10 Col 3="2.227483" +Row 10 Col 4="0.6409206" +Row 10 Col 5="3.003108" +Row 11 Col 1="-0.9333237" +Row 11 Col 2="1.644928" +Row 11 Col 3="2.206818" +Row 11 Col 4="0.6404818" +Row 11 Col 5="2.941515" +Row 12 Col 1="-0.9266571" +Row 12 Col 2="1.632674" +Row 12 Col 3="2.187258" +Row 12 Col 4="0.6400476" +Row 12 Col 5="2.886343" +Row 13 Col 1="-0.9199904" +Row 13 Col 2="1.62102" +Row 13 Col 3="2.168699" +Row 13 Col 4="0.639618" +Row 13 Col 5="2.836454" +Row 14 Col 1="-0.9133238" +Row 14 Col 2="1.609915" +Row 14 Col 3="2.151054" +Row 14 Col 4="0.6391929" +Row 14 Col 5="2.790988" +Row 15 Col 1="-0.9066572" +Row 15 Col 2="1.599313" +Row 15 Col 3="2.134243" +Row 15 Col 4="0.6387723" +Row 15 Col 5="2.749274" +Row 16 Col 1="-0.8999906" +Row 16 Col 2="1.589174" +Row 16 Col 3="2.118199" +Row 16 Col 4="0.6383562" +Row 16 Col 5="2.710787" +Row 17 Col 1="-0.8933239" +Row 17 Col 2="1.579462" +Row 17 Col 3="2.102862" +Row 17 Col 4="0.6379444" +Row 17 Col 5="2.675099" +Row 18 Col 1="-0.8866573" +Row 18 Col 2="1.570147" +Row 18 Col 3="2.088179" +Row 18 Col 4="0.6375371" +Row 18 Col 5="2.641863" +Row 19 Col 1="-0.8799906" +Row 19 Col 2="1.5612" +Row 19 Col 3="2.074101" +Row 19 Col 4="0.637134" +Row 19 Col 5="2.610794" +Row 20 Col 1="-0.873324" +Row 20 Col 2="1.552596" +Row 20 Col 3="2.060588" +Row 20 Col 4="0.6367353" +Row 20 Col 5="2.581651" +Row 21 Col 1="-0.8666574" +Row 21 Col 2="1.544314" +Row 21 Col 3="2.0476" +Row 21 Col 4="0.6363408" +Row 21 Col 5="2.554231" +Row 22 Col 1="-0.8599908" +Row 22 Col 2="1.536331" +Row 22 Col 3="2.035105" +Row 22 Col 4="0.6359505" +Row 22 Col 5="2.528362" +Row 23 Col 1="-0.8533241" +Row 23 Col 2="1.528631" +Row 23 Col 3="2.023069" +Row 23 Col 4="0.6355644" +Row 23 Col 5="2.503897" +Row 24 Col 1="-0.8466575" +Row 24 Col 2="1.521196" +Row 24 Col 3="2.011466" +Row 24 Col 4="0.6351825" +Row 24 Col 5="2.480706" +Row 25 Col 1="-0.8399909" +Row 25 Col 2="1.514012" +Row 25 Col 3="2.00027" +Row 25 Col 4="0.6348047" +Row 25 Col 5="2.45868" +Row 26 Col 1="-0.8333243" +Row 26 Col 2="1.507063" +Row 26 Col 3="1.989457" +Row 26 Col 4="0.6344309" +Row 26 Col 5="2.437719" +Row 27 Col 1="-0.8266576" +Row 27 Col 2="1.500338" +Row 27 Col 3="1.979006" +Row 27 Col 4="0.6340613" +Row 27 Col 5="2.417738" +Row 28 Col 1="-0.819991" +Row 28 Col 2="1.493824" +Row 28 Col 3="1.968898" +Row 28 Col 4="0.6336956" +Row 28 Col 5="2.398662" +Row 29 Col 1="-0.8133243" +Row 29 Col 2="1.487511" +Row 29 Col 3="1.959114" +Row 29 Col 4="0.633334" +Row 29 Col 5="2.380421" +Row 30 Col 1="-0.8066577" +Row 30 Col 2="1.481388" +Row 30 Col 3="1.949637" +Row 30 Col 4="0.6329763" +Row 30 Col 5="2.362957" +Row 31 Col 1="-0.7999911" +Row 31 Col 2="1.475448" +Row 31 Col 3="1.940453" +Row 31 Col 4="0.6326226" +Row 31 Col 5="2.346215" +Row 32 Col 1="-0.7933245" +Row 32 Col 2="1.469679" +Row 32 Col 3="1.931546" +Row 32 Col 4="0.6322727" +Row 32 Col 5="2.330146" +Row 33 Col 1="-0.7866578" +Row 33 Col 2="1.464076" +Row 33 Col 3="1.922904" +Row 33 Col 4="0.6319267" +Row 33 Col 5="2.314706" +Row 34 Col 1="-0.7799912" +Row 34 Col 2="1.458631" +Row 34 Col 3="1.914515" +Row 34 Col 4="0.6315846" +Row 34 Col 5="2.299855" +Row 35 Col 1="-0.7733245" +Row 35 Col 2="1.453336" +Row 35 Col 3="1.906367" +Row 35 Col 4="0.6312463" +Row 35 Col 5="2.285557" +Row 36 Col 1="-0.7666579" +Row 36 Col 2="1.448185" +Row 36 Col 3="1.898448" +Row 36 Col 4="0.6309118" +Row 36 Col 5="2.27178" +Row 37 Col 1="-0.7599913" +Row 37 Col 2="1.443172" +Row 37 Col 3="1.890751" +Row 37 Col 4="0.630581" +Row 37 Col 5="2.258493" +Row 38 Col 1="-0.7533247" +Row 38 Col 2="1.438291" +Row 38 Col 3="1.883264" +Row 38 Col 4="0.630254" +Row 38 Col 5="2.245668" +Row 39 Col 1="-0.7466581" +Row 39 Col 2="1.433538" +Row 39 Col 3="1.875979" +Row 39 Col 4="0.6299306" +Row 39 Col 5="2.23328" +Row 40 Col 1="-0.7399914" +Row 40 Col 2="1.428906" +Row 40 Col 3="1.868888" +Row 40 Col 4="0.629611" +Row 40 Col 5="2.221306" +Row 41 Col 1="-0.7333248" +Row 41 Col 2="1.424392" +Row 41 Col 3="1.861984" +Row 41 Col 4="0.629295" +Row 41 Col 5="2.209725" +Row 42 Col 1="-0.7266582" +Row 42 Col 2="1.419992" +Row 42 Col 3="1.855259" +Row 42 Col 4="0.6289826" +Row 42 Col 5="2.198515" +Row 43 Col 1="-0.7199916" +Row 43 Col 2="1.4157" +Row 43 Col 3="1.848706" +Row 43 Col 4="0.6286739" +Row 43 Col 5="2.18766" +Row 44 Col 1="-0.7133249" +Row 44 Col 2="1.411513" +Row 44 Col 3="1.842319" +Row 44 Col 4="0.6283687" +Row 44 Col 5="2.177141" +Row 45 Col 1="-0.7066583" +Row 45 Col 2="1.407427" +Row 45 Col 3="1.836092" +Row 45 Col 4="0.6280671" +Row 45 Col 5="2.166943" +Row 46 Col 1="-0.6999916" +Row 46 Col 2="1.403439" +Row 46 Col 3="1.830019" +Row 46 Col 4="0.6277691" +Row 46 Col 5="2.157052" +Row 47 Col 1="-0.693325" +Row 47 Col 2="1.399546" +Row 47 Col 3="1.824095" +Row 47 Col 4="0.6274745" +Row 47 Col 5="2.147452" +Row 48 Col 1="-0.6866584" +Row 48 Col 2="1.395744" +Row 48 Col 3="1.818315" +Row 48 Col 4="0.6271834" +Row 48 Col 5="2.138133" +Row 49 Col 1="-0.6799918" +Row 49 Col 2="1.39203" +Row 49 Col 3="1.812673" +Row 49 Col 4="0.6268958" +Row 49 Col 5="2.129081" +Row 50 Col 1="-0.6733251" +Row 50 Col 2="1.388401" +Row 50 Col 3="1.807165" +Row 50 Col 4="0.6266117" +Row 50 Col 5="2.120285" +Row 51 Col 1="-0.6666585" +Row 51 Col 2="1.384856" +Row 51 Col 3="1.801787" +Row 51 Col 4="0.6263309" +Row 51 Col 5="2.111736" +Row 52 Col 1="-0.6599919" +Row 52 Col 2="1.381391" +Row 52 Col 3="1.796535" +Row 52 Col 4="0.6260536" +Row 52 Col 5="2.103422" +Row 53 Col 1="-0.6533253" +Row 53 Col 2="1.378004" +Row 53 Col 3="1.791404" +Row 53 Col 4="0.6257797" +Row 53 Col 5="2.095334" +Row 54 Col 1="-0.6466586" +Row 54 Col 2="1.374692" +Row 54 Col 3="1.786392" +Row 54 Col 4="0.6255091" +Row 54 Col 5="2.087464" +Row 55 Col 1="-0.639992" +Row 55 Col 2="1.371453" +Row 55 Col 3="1.781493" +Row 55 Col 4="0.6252418" +Row 55 Col 5="2.079804" +Row 56 Col 1="-0.6333253" +Row 56 Col 2="1.368286" +Row 56 Col 3="1.776706" +Row 56 Col 4="0.6249779" +Row 56 Col 5="2.072346" +Row 57 Col 1="-0.6266587" +Row 57 Col 2="1.365188" +Row 57 Col 3="1.772027" +Row 57 Col 4="0.6247173" +Row 57 Col 5="2.065082" +Row 58 Col 1="-0.6199921" +Row 58 Col 2="1.362158" +Row 58 Col 3="1.767452" +Row 58 Col 4="0.62446" +Row 58 Col 5="2.058006" +Row 59 Col 1="-0.6133255" +Row 59 Col 2="1.359193" +Row 59 Col 3="1.762979" +Row 59 Col 4="0.6242059" +Row 59 Col 5="2.051111" +Row 60 Col 1="-0.6066588" +Row 60 Col 2="1.356291" +Row 60 Col 3="1.758604" +Row 60 Col 4="0.6239551" +Row 60 Col 5="2.04439" +Row 61 Col 1="-0.5999922" +Row 61 Col 2="1.353452" +Row 61 Col 3="1.754326" +Row 61 Col 4="0.6237075" +Row 61 Col 5="2.037838" +Row 62 Col 1="-0.5933256" +Row 62 Col 2="1.350673" +Row 62 Col 3="1.750142" +Row 62 Col 4="0.6234631" +Row 62 Col 5="2.03145" +Row 63 Col 1="-0.586659" +Row 63 Col 2="1.347954" +Row 63 Col 3="1.746049" +Row 63 Col 4="0.6232219" +Row 63 Col 5="2.025219" +Row 64 Col 1="-0.5799923" +Row 64 Col 2="1.345291" +Row 64 Col 3="1.742044" +Row 64 Col 4="0.6229839" +Row 64 Col 5="2.019142" +Row 65 Col 1="-0.5733257" +Row 65 Col 2="1.342685" +Row 65 Col 3="1.738126" +Row 65 Col 4="0.622749" +Row 65 Col 5="2.013213" +Row 66 Col 1="-0.566659" +Row 66 Col 2="1.340134" +Row 66 Col 3="1.734293" +Row 66 Col 4="0.6225173" +Row 66 Col 5="2.007427" +Row 67 Col 1="-0.5599924" +Row 67 Col 2="1.337636" +Row 67 Col 3="1.730542" +Row 67 Col 4="0.6222887" +Row 67 Col 5="2.00178" +Row 68 Col 1="-0.5533258" +Row 68 Col 2="1.33519" +Row 68 Col 3="1.726871" +Row 68 Col 4="0.6220632" +Row 68 Col 5="1.996269" +Row 69 Col 1="-0.5466592" +Row 69 Col 2="1.332795" +Row 69 Col 3="1.723278" +Row 69 Col 4="0.6218408" +Row 69 Col 5="1.990889" +Row 70 Col 1="-0.5399925" +Row 70 Col 2="1.33045" +Row 70 Col 3="1.719762" +Row 70 Col 4="0.6216215" +Row 70 Col 5="1.985637" +Row 71 Col 1="-0.5333259" +Row 71 Col 2="1.328154" +Row 71 Col 3="1.716321" +Row 71 Col 4="0.6214053" +Row 71 Col 5="1.980509" +Row 72 Col 1="-0.5266593" +Row 72 Col 2="1.325905" +Row 72 Col 3="1.712953" +Row 72 Col 4="0.6211921" +Row 72 Col 5="1.975501" +Row 73 Col 1="-0.5199926" +Row 73 Col 2="1.323703" +Row 73 Col 3="1.709657" +Row 73 Col 4="0.6209819" +Row 73 Col 5="1.97061" +Row 74 Col 1="-0.513326" +Row 74 Col 2="1.321547" +Row 74 Col 3="1.70643" +Row 74 Col 4="0.6207748" +Row 74 Col 5="1.965834" +Row 75 Col 1="-0.5066594" +Row 75 Col 2="1.319436" +Row 75 Col 3="1.703272" +Row 75 Col 4="0.6205706" +Row 75 Col 5="1.961168" +Row 76 Col 1="-0.4999928" +Row 76 Col 2="1.317369" +Row 76 Col 3="1.700181" +Row 76 Col 4="0.6203695" +Row 76 Col 5="1.956611" +Row 77 Col 1="-0.4933261" +Row 77 Col 2="1.315344" +Row 77 Col 3="1.697155" +Row 77 Col 4="0.6201713" +Row 77 Col 5="1.95216" +Row 78 Col 1="-0.4866595" +Row 78 Col 2="1.313362" +Row 78 Col 3="1.694194" +Row 78 Col 4="0.6199761" +Row 78 Col 5="1.947812" +Row 79 Col 1="-0.4799929" +Row 79 Col 2="1.311421" +Row 79 Col 3="1.691295" +Row 79 Col 4="0.6197838" +Row 79 Col 5="1.943564" +Row 80 Col 1="-0.4733262" +Row 80 Col 2="1.30952" +Row 80 Col 3="1.688459" +Row 80 Col 4="0.6195945" +Row 80 Col 5="1.939414" +Row 81 Col 1="-0.4666596" +Row 81 Col 2="1.307659" +Row 81 Col 3="1.685682" +Row 81 Col 4="0.6194081" +Row 81 Col 5="1.93536" +Row 82 Col 1="-0.459993" +Row 82 Col 2="1.305838" +Row 82 Col 3="1.682966" +Row 82 Col 4="0.6192246" +Row 82 Col 5="1.9314" +Row 83 Col 1="-0.4533263" +Row 83 Col 2="1.304054" +Row 83 Col 3="1.680307" +Row 83 Col 4="0.619044" +Row 83 Col 5="1.927531" +Row 84 Col 1="-0.4466597" +Row 84 Col 2="1.302309" +Row 84 Col 3="1.677705" +Row 84 Col 4="0.6188663" +Row 84 Col 5="1.923751" +Row 85 Col 1="-0.4399931" +Row 85 Col 2="1.3006" +Row 85 Col 3="1.67516" +Row 85 Col 4="0.6186915" +Row 85 Col 5="1.920059" +Row 86 Col 1="-0.4333265" +Row 86 Col 2="1.298928" +Row 86 Col 3="1.67267" +Row 86 Col 4="0.6185196" +Row 86 Col 5="1.916453" +Row 87 Col 1="-0.4266598" +Row 87 Col 2="1.297291" +Row 87 Col 3="1.670233" +Row 87 Col 4="0.6183505" +Row 87 Col 5="1.91293" +Row 88 Col 1="-0.4199932" +Row 88 Col 2="1.29569" +Row 88 Col 3="1.66785" +Row 88 Col 4="0.6181842" +Row 88 Col 5="1.909489" +Row 89 Col 1="-0.4133266" +Row 89 Col 2="1.294123" +Row 89 Col 3="1.66552" +Row 89 Col 4="0.6180208" +Row 89 Col 5="1.906129" +Row 90 Col 1="-0.4066599" +Row 90 Col 2="1.292591" +Row 90 Col 3="1.66324" +Row 90 Col 4="0.6178602" +Row 90 Col 5="1.902848" +Row 91 Col 1="-0.3999933" +Row 91 Col 2="1.291092" +Row 91 Col 3="1.661012" +Row 91 Col 4="0.6177024" +Row 91 Col 5="1.899644" +Row 92 Col 1="-0.3933267" +Row 92 Col 2="1.289626" +Row 92 Col 3="1.658833" +Row 92 Col 4="0.6175474" +Row 92 Col 5="1.896515" +Row 93 Col 1="-0.38666" +Row 93 Col 2="1.288192" +Row 93 Col 3="1.656703" +Row 93 Col 4="0.6173952" +Row 93 Col 5="1.893461" +Row 94 Col 1="-0.3799934" +Row 94 Col 2="1.286791" +Row 94 Col 3="1.654621" +Row 94 Col 4="0.6172457" +Row 94 Col 5="1.89048" +Row 95 Col 1="-0.3733268" +Row 95 Col 2="1.285421" +Row 95 Col 3="1.652587" +Row 95 Col 4="0.6170991" +Row 95 Col 5="1.88757" +Row 96 Col 1="-0.3666601" +Row 96 Col 2="1.284082" +Row 96 Col 3="1.6506" +Row 96 Col 4="0.6169552" +Row 96 Col 5="1.884731" +Row 97 Col 1="-0.3599935" +Row 97 Col 2="1.282774" +Row 97 Col 3="1.648659" +Row 97 Col 4="0.616814" +Row 97 Col 5="1.881961" +Row 98 Col 1="-0.3533269" +Row 98 Col 2="1.281496" +Row 98 Col 3="1.646763" +Row 98 Col 4="0.6166756" +Row 98 Col 5="1.879259" +Row 99 Col 1="-0.3466603" +Row 99 Col 2="1.280248" +Row 99 Col 3="1.644912" +Row 99 Col 4="0.61654" +Row 99 Col 5="1.876623" +Row 100 Col 1="-0.3399936" +Row 100 Col 2="1.27903" +Row 100 Col 3="1.643106" +Row 100 Col 4="0.616407" +Row 100 Col 5="1.874054" +Row 101 Col 1="-0.333327" +Row 101 Col 2="1.27784" +Row 101 Col 3="1.641343" +Row 101 Col 4="0.6162768" +Row 101 Col 5="1.871549" +Row 102 Col 1="-0.3266604" +Row 102 Col 2="1.27668" +Row 102 Col 3="1.639623" +Row 102 Col 4="0.6161493" +Row 102 Col 5="1.869108" +Row 103 Col 1="-0.3199937" +Row 103 Col 2="1.275548" +Row 103 Col 3="1.637945" +Row 103 Col 4="0.6160245" +Row 103 Col 5="1.866729" +Row 104 Col 1="-0.3133271" +Row 104 Col 2="1.274444" +Row 104 Col 3="1.63631" +Row 104 Col 4="0.6159023" +Row 104 Col 5="1.864412" +Row 105 Col 1="-0.3066605" +Row 105 Col 2="1.273367" +Row 105 Col 3="1.634715" +Row 105 Col 4="0.6157829" +Row 105 Col 5="1.862156" +Row 106 Col 1="-0.2999938" +Row 106 Col 2="1.272318" +Row 106 Col 3="1.633162" +Row 106 Col 4="0.6156662" +Row 106 Col 5="1.859959" +Row 107 Col 1="-0.2933272" +Row 107 Col 2="1.271296" +Row 107 Col 3="1.63165" +Row 107 Col 4="0.6155521" +Row 107 Col 5="1.857822" +Row 108 Col 1="-0.2866606" +Row 108 Col 2="1.270301" +Row 108 Col 3="1.630177" +Row 108 Col 4="0.6154406" +Row 108 Col 5="1.855743" +Row 109 Col 1="-0.279994" +Row 109 Col 2="1.269332" +Row 109 Col 3="1.628744" +Row 109 Col 4="0.6153319" +Row 109 Col 5="1.853722" +Row 110 Col 1="-0.2733273" +Row 110 Col 2="1.26839" +Row 110 Col 3="1.627349" +Row 110 Col 4="0.6152258" +Row 110 Col 5="1.851757" +Row 111 Col 1="-0.2666607" +Row 111 Col 2="1.267474" +Row 111 Col 3="1.625994" +Row 111 Col 4="0.6151223" +Row 111 Col 5="1.849848" +Row 112 Col 1="-0.2599941" +Row 112 Col 2="1.266583" +Row 112 Col 3="1.624677" +Row 112 Col 4="0.6150214" +Row 112 Col 5="1.847995" +Row 113 Col 1="-0.2533274" +Row 113 Col 2="1.265718" +Row 113 Col 3="1.623398" +Row 113 Col 4="0.6149232" +Row 113 Col 5="1.846196" +Row 114 Col 1="-0.2466608" +Row 114 Col 2="1.264878" +Row 114 Col 3="1.622156" +Row 114 Col 4="0.6148277" +Row 114 Col 5="1.844451" +Row 115 Col 1="-0.2399942" +Row 115 Col 2="1.264063" +Row 115 Col 3="1.620951" +Row 115 Col 4="0.6147347" +Row 115 Col 5="1.84276" +Row 116 Col 1="-0.2333276" +Row 116 Col 2="1.263272" +Row 116 Col 3="1.619783" +Row 116 Col 4="0.6146443" +Row 116 Col 5="1.841121" +Row 117 Col 1="-0.2266609" +Row 117 Col 2="1.262506" +Row 117 Col 3="1.618652" +Row 117 Col 4="0.6145566" +Row 117 Col 5="1.839535" +Row 118 Col 1="-0.2199943" +Row 118 Col 2="1.261765" +Row 118 Col 3="1.617557" +Row 118 Col 4="0.6144715" +Row 118 Col 5="1.838" +Row 119 Col 1="-0.2133277" +Row 119 Col 2="1.261048" +Row 119 Col 3="1.616497" +Row 119 Col 4="0.6143889" +Row 119 Col 5="1.836516" +Row 120 Col 1="-0.206661" +Row 120 Col 2="1.260354" +Row 120 Col 3="1.615473" +Row 120 Col 4="0.614309" +Row 120 Col 5="1.835083" +Row 121 Col 1="-0.1999944" +Row 121 Col 2="1.259685" +Row 121 Col 3="1.614485" +Row 121 Col 4="0.6142316" +Row 121 Col 5="1.833699" +Row 122 Col 1="-0.1933278" +Row 122 Col 2="1.259039" +Row 122 Col 3="1.613531" +Row 122 Col 4="0.6141568" +Row 122 Col 5="1.832366" +Row 123 Col 1="-0.1866611" +Row 123 Col 2="1.258416" +Row 123 Col 3="1.612612" +Row 123 Col 4="0.6140846" +Row 123 Col 5="1.831081" +Row 124 Col 1="-0.1799945" +Row 124 Col 2="1.257817" +Row 124 Col 3="1.611727" +Row 124 Col 4="0.6140149" +Row 124 Col 5="1.829846" +Row 125 Col 1="-0.1733279" +Row 125 Col 2="1.25724" +Row 125 Col 3="1.610877" +Row 125 Col 4="0.6139479" +Row 125 Col 5="1.828658" +Row 126 Col 1="-0.1666612" +Row 126 Col 2="1.256687" +Row 126 Col 3="1.61006" +Row 126 Col 4="0.6138834" +Row 126 Col 5="1.827519" +Row 127 Col 1="-0.1599946" +Row 127 Col 2="1.256157" +Row 127 Col 3="1.609278" +Row 127 Col 4="0.6138214" +Row 127 Col 5="1.826427" +Row 128 Col 1="-0.153328" +Row 128 Col 2="1.255649" +Row 128 Col 3="1.608528" +Row 128 Col 4="0.613762" +Row 128 Col 5="1.825382" +Row 129 Col 1="-0.1466614" +Row 129 Col 2="1.255163" +Row 129 Col 3="1.607812" +Row 129 Col 4="0.6137052" +Row 129 Col 5="1.824385" +Row 130 Col 1="-0.1399947" +Row 130 Col 2="1.254701" +Row 130 Col 3="1.60713" +Row 130 Col 4="0.6136509" +Row 130 Col 5="1.823433" +Row 131 Col 1="-0.1333281" +Row 131 Col 2="1.25426" +Row 131 Col 3="1.60648" +Row 131 Col 4="0.6135992" +Row 131 Col 5="1.822528" +Row 132 Col 1="-0.1266615" +Row 132 Col 2="1.253841" +Row 132 Col 3="1.605863" +Row 132 Col 4="0.61355" +Row 132 Col 5="1.821669" +Row 133 Col 1="-0.1199948" +Row 133 Col 2="1.253445" +Row 133 Col 3="1.605278" +Row 133 Col 4="0.6135034" +Row 133 Col 5="1.820856" +Row 134 Col 1="-0.1133282" +Row 134 Col 2="1.253071" +Row 134 Col 3="1.604727" +Row 134 Col 4="0.6134592" +Row 134 Col 5="1.820088" +Row 135 Col 1="-0.1066616" +Row 135 Col 2="1.252718" +Row 135 Col 3="1.604207" +Row 135 Col 4="0.6134177" +Row 135 Col 5="1.819365" +Row 136 Col 1="-0.09999494" +Row 136 Col 2="1.252388" +Row 136 Col 3="1.603719" +Row 136 Col 4="0.6133786" +Row 136 Col 5="1.818687" +Row 137 Col 1="-0.09332831" +Row 137 Col 2="1.252079" +Row 137 Col 3="1.603264" +Row 137 Col 4="0.6133421" +Row 137 Col 5="1.818054" +Row 138 Col 1="-0.08666168" +Row 138 Col 2="1.251791" +Row 138 Col 3="1.60284" +Row 138 Col 4="0.6133081" +Row 138 Col 5="1.817465" +Row 139 Col 1="-0.07999505" +Row 139 Col 2="1.251525" +Row 139 Col 3="1.602449" +Row 139 Col 4="0.6132766" +Row 139 Col 5="1.816921" +Row 140 Col 1="-0.07332843" +Row 140 Col 2="1.251281" +Row 140 Col 3="1.602089" +Row 140 Col 4="0.6132477" +Row 140 Col 5="1.816421" +Row 141 Col 1="-0.0666618" +Row 141 Col 2="1.251058" +Row 141 Col 3="1.60176" +Row 141 Col 4="0.6132213" +Row 141 Col 5="1.815965" +Row 142 Col 1="-0.05999516" +Row 142 Col 2="1.250857" +Row 142 Col 3="1.601463" +Row 142 Col 4="0.6131974" +Row 142 Col 5="1.815552" +Row 143 Col 1="-0.05332853" +Row 143 Col 2="1.250677" +Row 143 Col 3="1.601198" +Row 143 Col 4="0.613176" +Row 143 Col 5="1.815184" +Row 144 Col 1="-0.04666191" +Row 144 Col 2="1.250518" +Row 144 Col 3="1.600964" +Row 144 Col 4="0.6131572" +Row 144 Col 5="1.814859" +Row 145 Col 1="-0.03999528" +Row 145 Col 2="1.25038" +Row 145 Col 3="1.600761" +Row 145 Col 4="0.6131408" +Row 145 Col 5="1.814578" +Row 146 Col 1="-0.03332864" +Row 146 Col 2="1.250264" +Row 146 Col 3="1.60059" +Row 146 Col 4="0.613127" +Row 146 Col 5="1.81434" +Row 147 Col 1="-0.02666201" +Row 147 Col 2="1.250169" +Row 147 Col 3="1.60045" +Row 147 Col 4="0.6131157" +Row 147 Col 5="1.814145" +Row 148 Col 1="-0.01999538" +Row 148 Col 2="1.250095" +Row 148 Col 3="1.600341" +Row 148 Col 4="0.6131069" +Row 148 Col 5="1.813994" +Row 149 Col 1="-0.01332875" +Row 149 Col 2="1.250042" +Row 149 Col 3="1.600263" +Row 149 Col 4="0.6131006" +Row 149 Col 5="1.813886" +Row 150 Col 1="-0.006662124" +Row 150 Col 2="1.250011" +Row 150 Col 3="1.600216" +Row 150 Col 4="0.6130968" +Row 150 Col 5="1.813821" +Row 151 Col 1="0.000004506128" +Row 151 Col 2="1.25" +Row 151 Col 3="1.600201" +Row 151 Col 4="0.6130956" +Row 151 Col 5="1.813799" +Row 152 Col 1="0.006671136" +Row 152 Col 2="1.250011" +Row 152 Col 3="1.600216" +Row 152 Col 4="0.6130968" +Row 152 Col 5="1.813821" +Row 153 Col 1="0.01333777" +Row 153 Col 2="1.250042" +Row 153 Col 3="1.600263" +Row 153 Col 4="0.6131006" +Row 153 Col 5="1.813886" +Row 154 Col 1="0.0200044" +Row 154 Col 2="1.250095" +Row 154 Col 3="1.600341" +Row 154 Col 4="0.6131069" +Row 154 Col 5="1.813994" +Row 155 Col 1="0.02667103" +Row 155 Col 2="1.250169" +Row 155 Col 3="1.60045" +Row 155 Col 4="0.6131157" +Row 155 Col 5="1.814145" +Row 156 Col 1="0.03333766" +Row 156 Col 2="1.250264" +Row 156 Col 3="1.60059" +Row 156 Col 4="0.613127" +Row 156 Col 5="1.81434" +Row 157 Col 1="0.04000429" +Row 157 Col 2="1.250381" +Row 157 Col 3="1.600762" +Row 157 Col 4="0.6131408" +Row 157 Col 5="1.814578" +Row 158 Col 1="0.04667092" +Row 158 Col 2="1.250518" +Row 158 Col 3="1.600964" +Row 158 Col 4="0.6131572" +Row 158 Col 5="1.814859" +Row 159 Col 1="0.05333755" +Row 159 Col 2="1.250677" +Row 159 Col 3="1.601198" +Row 159 Col 4="0.613176" +Row 159 Col 5="1.815184" +Row 160 Col 1="0.06000417" +Row 160 Col 2="1.250857" +Row 160 Col 3="1.601464" +Row 160 Col 4="0.6131974" +Row 160 Col 5="1.815553" +Row 161 Col 1="0.06667081" +Row 161 Col 2="1.251059" +Row 161 Col 3="1.601761" +Row 161 Col 4="0.6132213" +Row 161 Col 5="1.815965" +Row 162 Col 1="0.07333744" +Row 162 Col 2="1.251282" +Row 162 Col 3="1.602089" +Row 162 Col 4="0.6132477" +Row 162 Col 5="1.816421" +Row 163 Col 1="0.08000407" +Row 163 Col 2="1.251526" +Row 163 Col 3="1.602449" +Row 163 Col 4="0.6132767" +Row 163 Col 5="1.816922" +Row 164 Col 1="0.0866707" +Row 164 Col 2="1.251792" +Row 164 Col 3="1.602841" +Row 164 Col 4="0.6133082" +Row 164 Col 5="1.817466" +Row 165 Col 1="0.09333733" +Row 165 Col 2="1.252079" +Row 165 Col 3="1.603264" +Row 165 Col 4="0.6133421" +Row 165 Col 5="1.818055" +Row 166 Col 1="0.100004" +Row 166 Col 2="1.252388" +Row 166 Col 3="1.60372" +Row 166 Col 4="0.6133787" +Row 166 Col 5="1.818688" +Row 167 Col 1="0.1066706" +Row 167 Col 2="1.252719" +Row 167 Col 3="1.604208" +Row 167 Col 4="0.6134177" +Row 167 Col 5="1.819366" +Row 168 Col 1="0.1133372" +Row 168 Col 2="1.253071" +Row 168 Col 3="1.604727" +Row 168 Col 4="0.6134593" +Row 168 Col 5="1.820089" +Row 169 Col 1="0.1200038" +Row 169 Col 2="1.253446" +Row 169 Col 3="1.605279" +Row 169 Col 4="0.6135034" +Row 169 Col 5="1.820857" +Row 170 Col 1="0.1266705" +Row 170 Col 2="1.253842" +Row 170 Col 3="1.605864" +Row 170 Col 4="0.6135501" +Row 170 Col 5="1.82167" +Row 171 Col 1="0.1333371" +Row 171 Col 2="1.25426" +Row 171 Col 3="1.606481" +Row 171 Col 4="0.6135993" +Row 171 Col 5="1.82253" +Row 172 Col 1="0.1400037" +Row 172 Col 2="1.254701" +Row 172 Col 3="1.607131" +Row 172 Col 4="0.613651" +Row 172 Col 5="1.823435" +Row 173 Col 1="0.1466704" +Row 173 Col 2="1.255164" +Row 173 Col 3="1.607813" +Row 173 Col 4="0.6137053" +Row 173 Col 5="1.824386" +Row 174 Col 1="0.153337" +Row 174 Col 2="1.255649" +Row 174 Col 3="1.608529" +Row 174 Col 4="0.6137621" +Row 174 Col 5="1.825384" +Row 175 Col 1="0.1600036" +Row 175 Col 2="1.256157" +Row 175 Col 3="1.609279" +Row 175 Col 4="0.6138215" +Row 175 Col 5="1.826429" +Row 176 Col 1="0.1666703" +Row 176 Col 2="1.256688" +Row 176 Col 3="1.610061" +Row 176 Col 4="0.6138835" +Row 176 Col 5="1.82752" +Row 177 Col 1="0.1733369" +Row 177 Col 2="1.257241" +Row 177 Col 3="1.610878" +Row 177 Col 4="0.613948" +Row 177 Col 5="1.82866" +Row 178 Col 1="0.1800035" +Row 178 Col 2="1.257818" +Row 178 Col 3="1.611728" +Row 178 Col 4="0.614015" +Row 178 Col 5="1.829847" +Row 179 Col 1="0.1866702" +Row 179 Col 2="1.258417" +Row 179 Col 3="1.612613" +Row 179 Col 4="0.6140847" +Row 179 Col 5="1.831083" +Row 180 Col 1="0.1933368" +Row 180 Col 2="1.25904" +Row 180 Col 3="1.613532" +Row 180 Col 4="0.6141569" +Row 180 Col 5="1.832368" +Row 181 Col 1="0.2000034" +Row 181 Col 2="1.259686" +Row 181 Col 3="1.614486" +Row 181 Col 4="0.6142317" +Row 181 Col 5="1.833701" +Row 182 Col 1="0.20667" +Row 182 Col 2="1.260355" +Row 182 Col 3="1.615475" +Row 182 Col 4="0.6143091" +Row 182 Col 5="1.835084" +Row 183 Col 1="0.2133367" +Row 183 Col 2="1.261049" +Row 183 Col 3="1.616499" +Row 183 Col 4="0.614389" +Row 183 Col 5="1.836518" +Row 184 Col 1="0.2200033" +Row 184 Col 2="1.261766" +Row 184 Col 3="1.617558" +Row 184 Col 4="0.6144716" +Row 184 Col 5="1.838002" +Row 185 Col 1="0.2266699" +Row 185 Col 2="1.262507" +Row 185 Col 3="1.618653" +Row 185 Col 4="0.6145567" +Row 185 Col 5="1.839537" +Row 186 Col 1="0.2333366" +Row 186 Col 2="1.263273" +Row 186 Col 3="1.619785" +Row 186 Col 4="0.6146445" +Row 186 Col 5="1.841123" +Row 187 Col 1="0.2400032" +Row 187 Col 2="1.264064" +Row 187 Col 3="1.620953" +Row 187 Col 4="0.6147348" +Row 187 Col 5="1.842762" +Row 188 Col 1="0.2466698" +Row 188 Col 2="1.264879" +Row 188 Col 3="1.622157" +Row 188 Col 4="0.6148278" +Row 188 Col 5="1.844454" +Row 189 Col 1="0.2533365" +Row 189 Col 2="1.265719" +Row 189 Col 3="1.623399" +Row 189 Col 4="0.6149234" +Row 189 Col 5="1.846199" +Row 190 Col 1="0.2600031" +Row 190 Col 2="1.266584" +Row 190 Col 3="1.624679" +Row 190 Col 4="0.6150216" +Row 190 Col 5="1.847998" +Row 191 Col 1="0.2666697" +Row 191 Col 2="1.267475" +Row 191 Col 3="1.625996" +Row 191 Col 4="0.6151224" +Row 191 Col 5="1.849851" +Row 192 Col 1="0.2733364" +Row 192 Col 2="1.268391" +Row 192 Col 3="1.627351" +Row 192 Col 4="0.6152259" +Row 192 Col 5="1.85176" +Row 193 Col 1="0.280003" +Row 193 Col 2="1.269334" +Row 193 Col 3="1.628746" +Row 193 Col 4="0.615332" +Row 193 Col 5="1.853725" +Row 194 Col 1="0.2866696" +Row 194 Col 2="1.270302" +Row 194 Col 3="1.630179" +Row 194 Col 4="0.6154408" +Row 194 Col 5="1.855746" +Row 195 Col 1="0.2933362" +Row 195 Col 2="1.271298" +Row 195 Col 3="1.631652" +Row 195 Col 4="0.6155522" +Row 195 Col 5="1.857825" +Row 196 Col 1="0.3000028" +Row 196 Col 2="1.272319" +Row 196 Col 3="1.633164" +Row 196 Col 4="0.6156663" +Row 196 Col 5="1.859962" +Row 197 Col 1="0.3066695" +Row 197 Col 2="1.273369" +Row 197 Col 3="1.634718" +Row 197 Col 4="0.6157831" +Row 197 Col 5="1.862159" +Row 198 Col 1="0.3133361" +Row 198 Col 2="1.274445" +Row 198 Col 3="1.636312" +Row 198 Col 4="0.6159025" +Row 198 Col 5="1.864415" +Row 199 Col 1="0.3200027" +Row 199 Col 2="1.275549" +Row 199 Col 3="1.637947" +Row 199 Col 4="0.6160246" +Row 199 Col 5="1.866732" +Row 200 Col 1="0.3266694" +Row 200 Col 2="1.276681" +Row 200 Col 3="1.639625" +Row 200 Col 4="0.6161495" +Row 200 Col 5="1.869111" +Row 201 Col 1="0.333336" +Row 201 Col 2="1.277842" +Row 201 Col 3="1.641345" +Row 201 Col 4="0.616277" +Row 201 Col 5="1.871552" +Row 202 Col 1="0.3400026" +Row 202 Col 2="1.279031" +Row 202 Col 3="1.643108" +Row 202 Col 4="0.6164072" +Row 202 Col 5="1.874057" +Row 203 Col 1="0.3466693" +Row 203 Col 2="1.28025" +Row 203 Col 3="1.644915" +Row 203 Col 4="0.6165401" +Row 203 Col 5="1.876627" +Row 204 Col 1="0.3533359" +Row 204 Col 2="1.281498" +Row 204 Col 3="1.646766" +Row 204 Col 4="0.6166758" +Row 204 Col 5="1.879262" +Row 205 Col 1="0.3600025" +Row 205 Col 2="1.282776" +Row 205 Col 3="1.648662" +Row 205 Col 4="0.6168142" +Row 205 Col 5="1.881965" +Row 206 Col 1="0.3666691" +Row 206 Col 2="1.284084" +Row 206 Col 3="1.650603" +Row 206 Col 4="0.6169554" +Row 206 Col 5="1.884735" +Row 207 Col 1="0.3733358" +Row 207 Col 2="1.285422" +Row 207 Col 3="1.65259" +Row 207 Col 4="0.6170993" +Row 207 Col 5="1.887574" +Row 208 Col 1="0.3800024" +Row 208 Col 2="1.286792" +Row 208 Col 3="1.654624" +Row 208 Col 4="0.6172459" +Row 208 Col 5="1.890484" +Row 209 Col 1="0.386669" +Row 209 Col 2="1.288194" +Row 209 Col 3="1.656706" +Row 209 Col 4="0.6173954" +Row 209 Col 5="1.893465" +Row 210 Col 1="0.3933357" +Row 210 Col 2="1.289627" +Row 210 Col 3="1.658836" +Row 210 Col 4="0.6175476" +Row 210 Col 5="1.896519" +Row 211 Col 1="0.4000023" +Row 211 Col 2="1.291094" +Row 211 Col 3="1.661015" +Row 211 Col 4="0.6177026" +Row 211 Col 5="1.899648" +Row 212 Col 1="0.4066689" +Row 212 Col 2="1.292593" +Row 212 Col 3="1.663243" +Row 212 Col 4="0.6178604" +Row 212 Col 5="1.902852" +Row 213 Col 1="0.4133356" +Row 213 Col 2="1.294125" +Row 213 Col 3="1.665523" +Row 213 Col 4="0.618021" +Row 213 Col 5="1.906134" +Row 214 Col 1="0.4200022" +Row 214 Col 2="1.295692" +Row 214 Col 3="1.667854" +Row 214 Col 4="0.6181844" +Row 214 Col 5="1.909494" +Row 215 Col 1="0.4266688" +Row 215 Col 2="1.297293" +Row 215 Col 3="1.670237" +Row 215 Col 4="0.6183507" +Row 215 Col 5="1.912935" +Row 216 Col 1="0.4333355" +Row 216 Col 2="1.29893" +Row 216 Col 3="1.672673" +Row 216 Col 4="0.6185198" +Row 216 Col 5="1.916458" +Row 217 Col 1="0.4400021" +Row 217 Col 2="1.300602" +Row 217 Col 3="1.675163" +Row 217 Col 4="0.6186917" +Row 217 Col 5="1.920064" +Row 218 Col 1="0.4466687" +Row 218 Col 2="1.302311" +Row 218 Col 3="1.677709" +Row 218 Col 4="0.6188666" +Row 218 Col 5="1.923756" +Row 219 Col 1="0.4533353" +Row 219 Col 2="1.304057" +Row 219 Col 3="1.68031" +Row 219 Col 4="0.6190443" +Row 219 Col 5="1.927536" +Row 220 Col 1="0.460002" +Row 220 Col 2="1.30584" +Row 220 Col 3="1.682969" +Row 220 Col 4="0.6192249" +Row 220 Col 5="1.931405" +Row 221 Col 1="0.4666686" +Row 221 Col 2="1.307662" +Row 221 Col 3="1.685686" +Row 221 Col 4="0.6194084" +Row 221 Col 5="1.935366" +Row 222 Col 1="0.4733352" +Row 222 Col 2="1.309523" +Row 222 Col 3="1.688462" +Row 222 Col 4="0.6195948" +Row 222 Col 5="1.93942" +Row 223 Col 1="0.4800019" +Row 223 Col 2="1.311423" +Row 223 Col 3="1.691299" +Row 223 Col 4="0.6197841" +Row 223 Col 5="1.94357" +Row 224 Col 1="0.4866685" +Row 224 Col 2="1.313364" +Row 224 Col 3="1.694198" +Row 224 Col 4="0.6199764" +Row 224 Col 5="1.947818" +Row 225 Col 1="0.4933351" +Row 225 Col 2="1.315347" +Row 225 Col 3="1.697159" +Row 225 Col 4="0.6201716" +Row 225 Col 5="1.952166" +Row 226 Col 1="0.5000018" +Row 226 Col 2="1.317371" +Row 226 Col 3="1.700185" +Row 226 Col 4="0.6203697" +Row 226 Col 5="1.956617" +Row 227 Col 1="0.5066684" +Row 227 Col 2="1.319439" +Row 227 Col 3="1.703276" +Row 227 Col 4="0.6205709" +Row 227 Col 5="1.961175" +Row 228 Col 1="0.513335" +Row 228 Col 2="1.32155" +Row 228 Col 3="1.706435" +Row 228 Col 4="0.620775" +Row 228 Col 5="1.96584" +Row 229 Col 1="0.5200016" +Row 229 Col 2="1.323706" +Row 229 Col 3="1.709661" +Row 229 Col 4="0.6209822" +Row 229 Col 5="1.970617" +Row 230 Col 1="0.5266683" +Row 230 Col 2="1.325908" +Row 230 Col 3="1.712958" +Row 230 Col 4="0.6211924" +Row 230 Col 5="1.975507" +Row 231 Col 1="0.5333349" +Row 231 Col 2="1.328157" +Row 231 Col 3="1.716326" +Row 231 Col 4="0.6214056" +Row 231 Col 5="1.980515" +Row 232 Col 1="0.5400015" +Row 232 Col 2="1.330453" +Row 232 Col 3="1.719767" +Row 232 Col 4="0.6216218" +Row 232 Col 5="1.985644" +Row 233 Col 1="0.5466682" +Row 233 Col 2="1.332798" +Row 233 Col 3="1.723283" +Row 233 Col 4="0.6218411" +Row 233 Col 5="1.990897" +Row 234 Col 1="0.5533348" +Row 234 Col 2="1.335193" +Row 234 Col 3="1.726876" +Row 234 Col 4="0.6220635" +Row 234 Col 5="1.996277" +Row 235 Col 1="0.5600014" +Row 235 Col 2="1.337639" +Row 235 Col 3="1.730547" +Row 235 Col 4="0.622289" +Row 235 Col 5="2.001788" +Row 236 Col 1="0.566668" +Row 236 Col 2="1.340137" +Row 236 Col 3="1.734298" +Row 236 Col 4="0.6225176" +Row 236 Col 5="2.007435" +Row 237 Col 1="0.5733347" +Row 237 Col 2="1.342689" +Row 237 Col 3="1.738132" +Row 237 Col 4="0.6227493" +Row 237 Col 5="2.01322" +Row 238 Col 1="0.5800013" +Row 238 Col 2="1.345295" +Row 238 Col 3="1.74205" +Row 238 Col 4="0.6229842" +Row 238 Col 5="2.01915" +Row 239 Col 1="0.586668" +Row 239 Col 2="1.347957" +Row 239 Col 3="1.746054" +Row 239 Col 4="0.6232222" +Row 239 Col 5="2.025228" +Row 240 Col 1="0.5933346" +Row 240 Col 2="1.350677" +Row 240 Col 3="1.750147" +Row 240 Col 4="0.6234634" +Row 240 Col 5="2.031458" +Row 241 Col 1="0.6000012" +Row 241 Col 2="1.353456" +Row 241 Col 3="1.754332" +Row 241 Col 4="0.6237078" +Row 241 Col 5="2.037847" +Row 242 Col 1="0.6066678" +Row 242 Col 2="1.356295" +Row 242 Col 3="1.75861" +Row 242 Col 4="0.6239554" +Row 242 Col 5="2.044399" +Row 243 Col 1="0.6133345" +Row 243 Col 2="1.359197" +Row 243 Col 3="1.762985" +Row 243 Col 4="0.6242062" +Row 243 Col 5="2.05112" +Row 244 Col 1="0.6200011" +Row 244 Col 2="1.362162" +Row 244 Col 3="1.767458" +Row 244 Col 4="0.6244603" +Row 244 Col 5="2.058015" +Row 245 Col 1="0.6266677" +Row 245 Col 2="1.365192" +Row 245 Col 3="1.772033" +Row 245 Col 4="0.6247177" +Row 245 Col 5="2.065092" +Row 246 Col 1="0.6333343" +Row 246 Col 2="1.36829" +Row 246 Col 3="1.776712" +Row 246 Col 4="0.6249783" +Row 246 Col 5="2.072356" +Row 247 Col 1="0.640001" +Row 247 Col 2="1.371458" +Row 247 Col 3="1.7815" +Row 247 Col 4="0.6252422" +Row 247 Col 5="2.079815" +Row 248 Col 1="0.6466676" +Row 248 Col 2="1.374696" +Row 248 Col 3="1.786398" +Row 248 Col 4="0.6255094" +Row 248 Col 5="2.087475" +Row 249 Col 1="0.6533343" +Row 249 Col 2="1.378008" +Row 249 Col 3="1.791411" +Row 249 Col 4="0.62578" +Row 249 Col 5="2.095345" +Row 250 Col 1="0.6600009" +Row 250 Col 2="1.381396" +Row 250 Col 3="1.796542" +Row 250 Col 4="0.626054" +Row 250 Col 5="2.103433" +Row 251 Col 1="0.6666675" +Row 251 Col 2="1.384861" +Row 251 Col 3="1.801794" +Row 251 Col 4="0.6263313" +Row 251 Col 5="2.111747" +Row 252 Col 1="0.6733341" +Row 252 Col 2="1.388406" +Row 252 Col 3="1.807172" +Row 252 Col 4="0.6266121" +Row 252 Col 5="2.120297" +Row 253 Col 1="0.6800008" +Row 253 Col 2="1.392035" +Row 253 Col 3="1.81268" +Row 253 Col 4="0.6268962" +Row 253 Col 5="2.129093" +Row 254 Col 1="0.6866674" +Row 254 Col 2="1.395749" +Row 254 Col 3="1.818322" +Row 254 Col 4="0.6271838" +Row 254 Col 5="2.138145" +Row 255 Col 1="0.693334" +Row 255 Col 2="1.399551" +Row 255 Col 3="1.824103" +Row 255 Col 4="0.6274749" +Row 255 Col 5="2.147465" +Row 256 Col 1="0.7000006" +Row 256 Col 2="1.403444" +Row 256 Col 3="1.830027" +Row 256 Col 4="0.6277695" +Row 256 Col 5="2.157065" +Row 257 Col 1="0.7066673" +Row 257 Col 2="1.407433" +Row 257 Col 3="1.836101" +Row 257 Col 4="0.6280675" +Row 257 Col 5="2.166957" +Row 258 Col 1="0.7133339" +Row 258 Col 2="1.411518" +Row 258 Col 3="1.842328" +Row 258 Col 4="0.6283691" +Row 258 Col 5="2.177155" +Row 259 Col 1="0.7200006" +Row 259 Col 2="1.415705" +Row 259 Col 3="1.848715" +Row 259 Col 4="0.6286743" +Row 259 Col 5="2.187674" +Row 260 Col 1="0.7266672" +Row 260 Col 2="1.419997" +Row 260 Col 3="1.855268" +Row 260 Col 4="0.6289831" +Row 260 Col 5="2.19853" +Row 261 Col 1="0.7333338" +Row 261 Col 2="1.424398" +Row 261 Col 3="1.861993" +Row 261 Col 4="0.6292954" +Row 261 Col 5="2.20974" +Row 262 Col 1="0.7400004" +Row 262 Col 2="1.428912" +Row 262 Col 3="1.868898" +Row 262 Col 4="0.6296114" +Row 262 Col 5="2.221322" +Row 263 Col 1="0.7466671" +Row 263 Col 2="1.433544" +Row 263 Col 3="1.875989" +Row 263 Col 4="0.6299311" +Row 263 Col 5="2.233297" +Row 264 Col 1="0.7533337" +Row 264 Col 2="1.438298" +Row 264 Col 3="1.883274" +Row 264 Col 4="0.6302544" +Row 264 Col 5="2.245685" +Row 265 Col 1="0.7600003" +Row 265 Col 2="1.443178" +Row 265 Col 3="1.890761" +Row 265 Col 4="0.6305814" +Row 265 Col 5="2.258511" +Row 266 Col 1="0.7666669" +Row 266 Col 2="1.448191" +Row 266 Col 3="1.898459" +Row 266 Col 4="0.6309122" +Row 266 Col 5="2.271799" +Row 267 Col 1="0.7733336" +Row 267 Col 2="1.453343" +Row 267 Col 3="1.906377" +Row 267 Col 4="0.6312467" +Row 267 Col 5="2.285577" +Row 268 Col 1="0.7800002" +Row 268 Col 2="1.458638" +Row 268 Col 3="1.914526" +Row 268 Col 4="0.6315851" +Row 268 Col 5="2.299875" +Row 269 Col 1="0.7866669" +Row 269 Col 2="1.464084" +Row 269 Col 3="1.922916" +Row 269 Col 4="0.6319272" +Row 269 Col 5="2.314726" +Row 270 Col 1="0.7933335" +Row 270 Col 2="1.469687" +Row 270 Col 3="1.931558" +Row 270 Col 4="0.6322732" +Row 270 Col 5="2.330167" +Row 271 Col 1="0.8000001" +Row 271 Col 2="1.475455" +Row 271 Col 3="1.940465" +Row 271 Col 4="0.632623" +Row 271 Col 5="2.346237" +Row 272 Col 1="0.8066667" +Row 272 Col 2="1.481397" +Row 272 Col 3="1.94965" +Row 272 Col 4="0.6329768" +Row 272 Col 5="2.36298" +Row 273 Col 1="0.8133334" +Row 273 Col 2="1.487519" +Row 273 Col 3="1.959127" +Row 273 Col 4="0.6333345" +Row 273 Col 5="2.380445" +Row 274 Col 1="0.82" +Row 274 Col 2="1.493833" +Row 274 Col 3="1.968911" +Row 274 Col 4="0.6336961" +Row 274 Col 5="2.398687" +Row 275 Col 1="0.8266667" +Row 275 Col 2="1.500347" +Row 275 Col 3="1.97902" +Row 275 Col 4="0.6340618" +Row 275 Col 5="2.417765" +Row 276 Col 1="0.8333333" +Row 276 Col 2="1.507072" +Row 276 Col 3="1.989472" +Row 276 Col 4="0.6344315" +Row 276 Col 5="2.437747" +Row 277 Col 1="0.8399999" +Row 277 Col 2="1.514021" +Row 277 Col 3="2.000285" +Row 277 Col 4="0.6348052" +Row 277 Col 5="2.458709" +Row 278 Col 1="0.8466665" +Row 278 Col 2="1.521206" +Row 278 Col 3="2.011482" +Row 278 Col 4="0.635183" +Row 278 Col 5="2.480737" +Row 279 Col 1="0.8533332" +Row 279 Col 2="1.528641" +Row 279 Col 3="2.023085" +Row 279 Col 4="0.6355649" +Row 279 Col 5="2.503929" +Row 280 Col 1="0.8599998" +Row 280 Col 2="1.536342" +Row 280 Col 3="2.035121" +Row 280 Col 4="0.635951" +Row 280 Col 5="2.528396" +Row 281 Col 1="0.8666664" +Row 281 Col 2="1.544325" +Row 281 Col 3="2.047618" +Row 281 Col 4="0.6363413" +Row 281 Col 5="2.554267" +Row 282 Col 1="0.873333" +Row 282 Col 2="1.552608" +Row 282 Col 3="2.060606" +Row 282 Col 4="0.6367358" +Row 282 Col 5="2.581689" +Row 283 Col 1="0.8799997" +Row 283 Col 2="1.561212" +Row 283 Col 3="2.07412" +Row 283 Col 4="0.6371346" +Row 283 Col 5="2.610835" +Row 284 Col 1="0.8866663" +Row 284 Col 2="1.570159" +Row 284 Col 3="2.088198" +Row 284 Col 4="0.6375376" +Row 284 Col 5="2.641907" +Row 285 Col 1="0.893333" +Row 285 Col 2="1.579475" +Row 285 Col 3="2.102882" +Row 285 Col 4="0.637945" +Row 285 Col 5="2.675145" +Row 286 Col 1="0.8999996" +Row 286 Col 2="1.589187" +Row 286 Col 3="2.11822" +Row 286 Col 4="0.6383567" +Row 286 Col 5="2.710837" +Row 287 Col 1="0.9066662" +Row 287 Col 2="1.599327" +Row 287 Col 3="2.134265" +Row 287 Col 4="0.6387729" +Row 287 Col 5="2.749329" +Row 288 Col 1="0.9133328" +Row 288 Col 2="1.60993" +Row 288 Col 3="2.151077" +Row 288 Col 4="0.6391935" +Row 288 Col 5="2.791046" +Row 289 Col 1="0.9199995" +Row 289 Col 2="1.621036" +Row 289 Col 3="2.168724" +Row 289 Col 4="0.6396186" +Row 289 Col 5="2.836519" +Row 290 Col 1="0.9266661" +Row 290 Col 2="1.63269" +Row 290 Col 3="2.187284" +Row 290 Col 4="0.6400482" +Row 290 Col 5="2.886413" +Row 291 Col 1="0.9333327" +Row 291 Col 2="1.644945" +Row 291 Col 3="2.206845" +Row 291 Col 4="0.6404824" +Row 291 Col 5="2.941594" +Row 292 Col 1="0.9399993" +Row 292 Col 2="1.657861" +Row 292 Col 3="2.227512" +Row 292 Col 4="0.6409212" +Row 292 Col 5="3.003196" +Row 293 Col 1="0.9466659" +Row 293 Col 2="1.671508" +Row 293 Col 3="2.249404" +Row 293 Col 4="0.6413646" +Row 293 Col 5="3.072766" +Row 294 Col 1="0.9533326" +Row 294 Col 2="1.685968" +Row 294 Col 3="2.272664" +Row 294 Col 4="0.6418127" +Row 294 Col 5="3.152473" +Row 295 Col 1="0.9599992" +Row 295 Col 2="1.701338" +Row 295 Col 3="2.297457" +Row 295 Col 4="0.6422655" +Row 295 Col 5="3.245504" +Row 296 Col 1="0.9666659" +Row 296 Col 2="1.717735" +Row 296 Col 3="2.323987" +Row 296 Col 4="0.6427232" +Row 296 Col 5="3.356811" +Row 297 Col 1="0.9733325" +Row 297 Col 2="1.7353" +Row 297 Col 3="2.352498" +Row 297 Col 4="0.6431856" +Row 297 Col 5="3.494708" +Row 298 Col 1="0.9799991" +Row 298 Col 2="1.754206" +Row 298 Col 3="2.38329" +Row 298 Col 4="0.643653" +Row 298 Col 5="3.67483" +Row 299 Col 1="0.9866657" +Row 299 Col 2="1.77467" +Row 299 Col 3="2.416743" +Row 299 Col 4="0.6441252" +Row 299 Col 5="3.932354" +Row 300 Col 1="0.9933324" +Row 300 Col 2="1.796969" +Row 300 Col 3="2.453339" +Row 300 Col 4="0.6446024" +Row 300 Col 5="4.379872" +[End Data] + +[Titles] +Title="Elliptic Integrals of the Third Kind" +Heading="" +XAxisTitle="k" +YAxisTitle="" +[End Titles] + +[Title Options] +Title="00000000000000000024Arial" +Heading="00000000000000000016Arial" +YAxisTitle="00000000000000014.25Arial" +XAxisTitle="00000000000000000010Arial" +YAxisVertical="0" +[End Title Options] + +[Background] +Graph Background=16777215 +Page Colour=16777215 +Print Graph Background=1 +Print Page Colour=0 +[End Background] + +[Axis] +XMin=-1.1 +XMax=1.1 +YMin=0 +YMax=3 +MaxMinOptions="111101" +Axis Style=1 +Logarithmic X Axis=0 +Logarithmic Y Axis=0 +Border Style=0 +[End Axis] + +[Data Lines] +Options="117000000000000000016777216117000002550000000016777216117167116800000000016777216117042270720000000016777216611000000000000000016777216611000000000000000016777216" +[End Data Lines] + +[Data Markers] +Size 1=5 +Size 2=5 +Size 3=5 +Size 4=5 +Size 5=5 +Size 6=5 +[End Data Markers] + +[Data Labels] +Options="000100" +Primary Font="00000000000000000010Arial" +Secondary Font="00000000000000000010Arial" +Spacing X Primary=.2 +Spacing Y Primary=.5 +Spacing X Secondary=1 +Spacing Y Secondary=1 +Spacing Adjustment=1 +[End Data Labels] + +[Axis Markers] +Options 1=1 +Spacing 1=.2 +Colour 1="00000000" +Options 2=1 +Spacing 2=.5 +Colour 2="00000000" +Options 3=0 +Spacing 3=1 +Colour 3="00000000" +Options 4=0 +Spacing 4=1 +Colour 4="00000000" +Style=1 +[End Axis Markers] + +[Gridlines] +Options="100000" +Spacing X Primary=.2 +Spacing Y Primary=.5 +Spacing X Secondary=1 +Spacing Y Secondary=1 +Colour 1="00000000" +Colour 2="00000000" +Colour 3="14671839" +Colour 4="14671839" +[End Gridlines] + +[Legend] +X Position=21.846084709697 +Y Position=13.1347327490121 +Style=1 +Font="00000000000000014.25Arial" +[End Legend] + +[Best Fit Line 1] +Options1="0100000000" +Options2="0100000000" +Options3="0100000000" +Options4="0100000000" +Options5="0100000000" +Options6="0100000000" +Options7="0100000000" +Options8="0100000000" +Options9="0100000000" +[End Best Fit Line 1] + +[Best Fit Line 2] +Options1="0100000000" +Options2="0100000000" +Options3="0100000000" +Options4="0100000000" +Options5="0100000000" +Options6="0100000000" +Options7="0100000000" +Options8="0100000000" +Options9="0100000000" +[End Best Fit Line 2] + +[Best Fit Line 3] +Options1="0100000000" +Options2="0100000000" +Options3="0100000000" +Options4="0100000000" +Options5="0100000000" +Options6="0100000000" +Options7="0100000000" +Options8="0100000000" +Options9="0100000000" +[End Best Fit Line 3] + +[Best Fit Line 4] +Options1="0100000000" +Options2="0100000000" +Options3="0100000000" +Options4="0100000000" +Options5="0100000000" +Options6="0100000000" +Options7="0100000000" +Options8="0100000000" +Options9="0100000000" +[End Best Fit Line 4] + +[Best Fit Line 5] +Options1="0100000000" +Options2="0100000000" +Options3="0100000000" +Options4="0100000000" +Options5="0100000000" +Options6="0100000000" +Options7="0100000000" +Options8="0100000000" +Options9="0100000000" +[End Best Fit Line 5] + +[Best Fit Line 6] +Options1="0100000000" +Options2="0100000000" +Options3="0100000000" +Options4="0100000000" +Options5="0100000000" +Options6="0100000000" +Options7="0100000000" +Options8="0100000000" +Options9="0100000000" +[End Best Fit Line 6] + +[Best Fit Data 1] +Options1=0 +Options2=0 +Options3=0 +Options4=0 +Options5=0 +Options6=0 +X Position=5 +Y Position=5 +Style=1 +Font="00000000000000000010Arial" +Correlation Coefficient=0 +Accuracy=8 +SF Or DP=0 +Display Accuracy=0 +Display Trailing Zeros=0 +[End Best Fit Data 1] + +[Best Fit Data 2] +Options1=0 +Options2=0 +Options3=0 +Options4=0 +Options5=0 +Options6=0 +X Position=8 +Y Position=5 +Style=1 +Font="00000000000000000010Arial" +Correlation Coefficient=0 +Accuracy=8 +SF Or DP=0 +Display Accuracy=0 +Display Trailing Zeros=0 +[End Best Fit Data 2] + +[Best Fit Data 3] +Options1=0 +Options2=0 +Options3=0 +Options4=0 +Options5=0 +Options6=0 +X Position=11 +Y Position=5 +Style=1 +Font="00000000000000000010Arial" +Correlation Coefficient=0 +Accuracy=8 +SF Or DP=0 +Display Accuracy=0 +Display Trailing Zeros=0 +[End Best Fit Data 3] + +[Best Fit Data 4] +Options1=0 +Options2=0 +Options3=0 +Options4=0 +Options5=0 +Options6=0 +X Position=14 +Y Position=5 +Style=1 +Font="00000000000000000010Arial" +Correlation Coefficient=0 +Accuracy=8 +SF Or DP=0 +Display Accuracy=0 +Display Trailing Zeros=0 +[End Best Fit Data 4] + +[Best Fit Data 5] +Options1=0 +Options2=0 +Options3=0 +Options4=0 +Options5=0 +Options6=0 +X Position=17 +Y Position=5 +Style=1 +Font="00000000000000000010Arial" +Correlation Coefficient=0 +Accuracy=8 +SF Or DP=0 +Display Accuracy=0 +Display Trailing Zeros=0 +[End Best Fit Data 5] + +[Best Fit Data 6] +Options1=0 +Options2=0 +Options3=0 +Options4=0 +Options5=0 +Options6=0 +X Position=20 +Y Position=5 +Style=1 +Font="00000000000000000010Arial" +Correlation Coefficient=0 +Accuracy=8 +SF Or DP=0 +Display Accuracy=0 +Display Trailing Zeros=0 +[End Best Fit Data 6] + +[Equations] +Equation 1="" +Equation 2="" +Equation 3="" +Equation 4="" +Equation 5="" +Equation 6="" +Equation 7="" +Equation 8="" +Equation 9="" +Equation 10="" +Equation 11="" +Equation 12="" +Angle Measurement=0 +[End Equations] + +[Equation Options] +Equation 1="0100000000" +Equation 2="0100000000" +Equation 3="0100000000" +Equation 4="0100000000" +Equation 5="0100000000" +Equation 6="0100000000" +Equation 7="0100000000" +Equation 8="0100000000" +Equation 9="0100000000" +Equation 10="0100000000" +Equation 11="0100000000" +Equation 12="0100000000" +[End Equation Options] + +[Print Setup & Margins] +Paper Size=9 +Orientation=2 +Left=2.5 +Right=2.5 +Top=2.5 +Bottom=2.5 +[End Print Setup & Margins] + +[Datasheet] +Column Width 1=1500 +Column Width 2=1500 +Column Width 3=1500 +Column Width 4=1500 +Column Width 5=1500 +Column Width 6=1500 +Column Width 7=1500 +Data Titles 1="n = 0, phi = 1.25" +Data Titles 2="n = 0.5, phi = 1.25" +Data Titles 3="n = 2, phi = 0.5" +Data Titles 4="n = 0.25, phi = Pi/2" +Data Titles 5="Y5 Data" +Data Titles 6="Y6 Data" +[End Datasheet] + +[Other Graph Options] +Zoom Factor=1 +Auto Redraw=1 +[End Other Graph Options] + +[End] diff --git a/doc/graphs/ellint_c.png b/doc/graphs/ellint_c.png new file mode 100644 index 000000000..83c480318 Binary files /dev/null and b/doc/graphs/ellint_c.png differ diff --git a/doc/math.qbk b/doc/math.qbk index 437644b89..2781fadfd 100644 --- a/doc/math.qbk +++ b/doc/math.qbk @@ -1,13 +1,13 @@ [library Math Toolkit [quickbook 1.3] - [copyright 2006 John Maddock and Paul A. Bristow] + [copyright 2006 John Maddock, Paul A. Bristow and Xiaogang Zhang] [purpose Various Special Functions, Statistical Distributions, and Numerical Tools] [license Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at [@http://www.boost.org/LICENSE_1_0.txt]) ] - [authors [Maddock, John], [Bristow, Paul A.]] + [authors [Maddock, John], [Bristow, Paul A.], [Zhang, Xiaogang]] [category math] [/last-revision $Date$] ] @@ -241,6 +241,15 @@ external graphing application. [include laguerre.qbk] [include hermite.qbk] [include spherical_harmonic.qbk] + +[section Elliptic Integrals] + +[include ellint_introduction.qbk] +[include ellint_carlson.qbk] +[include ellint_legendre.qbk] + +[endsect] + [include fpclassify.qbk] [include powers.qbk] [include error_handling.qbk] diff --git a/include/boost/math/special_functions/ellint_1.hpp b/include/boost/math/special_functions/ellint_1.hpp index 91918a1d8..316a1be68 100644 --- a/include/boost/math/special_functions/ellint_1.hpp +++ b/include/boost/math/special_functions/ellint_1.hpp @@ -124,7 +124,7 @@ inline T ellint_1(T k) // Elliptic integral (Legendre form) of the first kind template -inline T ellint_1(T phi, T k) +inline T ellint_1(T k, T phi) { typedef typename tools::evaluation::type>::type value_type; return tools::checked_narrowing_cast::type>(detail::ellint_f_imp(static_cast(phi), static_cast(k)), BOOST_CURRENT_FUNCTION); diff --git a/include/boost/math/special_functions/ellint_2.hpp b/include/boost/math/special_functions/ellint_2.hpp index 35b926371..9520954f3 100644 --- a/include/boost/math/special_functions/ellint_2.hpp +++ b/include/boost/math/special_functions/ellint_2.hpp @@ -125,7 +125,7 @@ inline T ellint_2(T k) // Elliptic integral (Legendre form) of the second kind template -inline T ellint_2(T phi, T k) +inline T ellint_2(T k, T phi) { typedef typename tools::evaluation::type>::type value_type; return tools::checked_narrowing_cast::type>(detail::ellint_e_imp(static_cast(phi), static_cast(k)), BOOST_CURRENT_FUNCTION); diff --git a/include/boost/math/special_functions/ellint_3.hpp b/include/boost/math/special_functions/ellint_3.hpp index 33e57fa84..597b680c7 100644 --- a/include/boost/math/special_functions/ellint_3.hpp +++ b/include/boost/math/special_functions/ellint_3.hpp @@ -1,4 +1,5 @@ // Copyright (c) 2006 Xiaogang Zhang +// Copyright (c) 2006 John Maddock // Use, modification and distribution are subject to the // Boost Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) @@ -47,6 +48,7 @@ T ellint_pi_imp(T v, T phi, T k, T vc) } T sphi = sin(fabs(phi)); + if(v > 1 / (sphi * sphi)) { // Complex result is a domain error: @@ -119,10 +121,11 @@ T ellint_pi_imp(T v, T phi, T k, T vc) // If v > 1 we can use the identity in A&S 17.7.7/8 // to shift to 0 <= v <= 1. Unfortunately this // identity appears only to function correctly when - // 0 <= phi <= PI/2, but it's when phi is outside that + // 0 <= phi <= pi/2, but it's when phi is outside that // range that we really need it: That's when - // Carlson's formula fails, and the periodicity + // Carlson's formula fails, and what's more the periodicity // reduction used below on phi doesn't work when v > 1. + // // So we're stuck... the code is archived here in case // some bright spart can figure out the fix. // @@ -131,8 +134,19 @@ T ellint_pi_imp(T v, T phi, T k, T vc) T Nm1 = (v - k2) / v; T p1 = sqrt((-vc) * (1 - k2 / v)); T delta = sqrt(1 - k2 * sphi * sphi); + // + // These next two terms have a large amount of cancellation + // so it's not clear if this relation is useable even if + // the issues with phi > pi/2 can be fixed: + // T result = -ellint_pi_imp(N, phi, k, Nm1); result += ellint_f_imp(phi, k); + // + // This log term gives the complex result when + // n > 1/sin^2(phi) + // However that case is dealt with as an error above, + // so we should always get a real result here: + // result += log((delta + p1 * tan(phi)) / (delta - p1 * tan(phi))) / (2 * p1); return result; } @@ -170,10 +184,15 @@ T ellint_pi_imp(T v, T phi, T k, T vc) } if((m > 0) && (v > 1)) + { + // + // The region with v > 1 and phi outside [0, pi/2] is + // currently unsupported: + // return tools::domain_error( BOOST_CURRENT_FUNCTION, "Got v = %1%, but this is only supported for 0 <= phi <= pi/2", v); - + } T sinp = sin(rphi); T cosp = cos(rphi); x = cosp * cosp; @@ -248,7 +267,7 @@ T ellint_pi_imp(T v, T k, T vc) } // namespace detail template -inline T ellint_3(T v, T phi, T k) +inline T ellint_3(T k, T v, T phi) { typedef typename tools::evaluation::type>::type value_type; return tools::checked_narrowing_cast::type>( @@ -260,7 +279,7 @@ inline T ellint_3(T v, T phi, T k) } template -inline T ellint_3(T v, T k) +inline T ellint_3(T k, T v) { typedef typename tools::evaluation::type>::type value_type; return tools::checked_narrowing_cast::type>( diff --git a/include/boost/math/special_functions/ellint_rj.hpp b/include/boost/math/special_functions/ellint_rj.hpp index 1ec74d537..43726eb04 100644 --- a/include/boost/math/special_functions/ellint_rj.hpp +++ b/include/boost/math/special_functions/ellint_rj.hpp @@ -68,25 +68,23 @@ T ellint_rj_imp(T x, T y, T z, T p) // for p < 0, the integral is singular, return Cauchy principal value if (p < 0) { + // + // We must ensure that (z - y) * (y - x) is positive. + // Since the integral is symmetrical in x, y and z + // we can just permute the values: + // + if(x > y) + std::swap(x, y); + if(y > z) + std::swap(y, z); + if(x > y) + std::swap(x, y); + T q = -p; T pmy = (z - y) * (y - x) / (y + q); // p - y - if(pmy < 0) - { - // - // TODO, FIXME if you can.... (JM Dec. 2006) - // - // The logic breaks down here, we can go into - // an infinite recursion unless we bail out right away!! - // - // This may be fixable by permuting x, y, and z, but may not - // be worth the hassle, fix this if you care about this use case! - // - return tools::domain_error( - BOOST_CURRENT_FUNCTION, - "Unable to compute Cauchy principle value, p had the value %1% " - "and (z-y)(y-x) was negative. Identity formula could not be applied!", - p); - } + + BOOST_ASSERT(pmy >= 0); + T p = pmy + y; value = ellint_rj(x, y, z, p); value *= pmy; diff --git a/test/ellint_e2_data.ipp b/test/ellint_e2_data.ipp index 97ff64361..15a0bd265 100644 --- a/test/ellint_e2_data.ipp +++ b/test/ellint_e2_data.ipp @@ -1,3 +1,12 @@ +// Copyright (c) 2006 John Maddock +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +// +// Each row of test data contains in order: +// +// k, phi, E(k, phi) +// #define SC_(x) static_cast(BOOST_JOIN(x, L)) static const boost::array, 520> ellint_e2_data = { SC_(0.177219114266335964202880859375e-2), SC_(-0.804919183254241943359375e0), SC_(0.17721905416489978459933452744691987573693030723399e-2), diff --git a/test/ellint_e_data.ipp b/test/ellint_e_data.ipp index 092f5e2b7..fb8815a01 100644 --- a/test/ellint_e_data.ipp +++ b/test/ellint_e_data.ipp @@ -1,3 +1,12 @@ +// Copyright (c) 2006 John Maddock +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +// +// Each row of test data contains in order: +// +// k, E(k) +// #define SC_(x) static_cast(BOOST_JOIN(x, L)) static const boost::array, 100> ellint_e_data = { SC_(-0.990433037281036376953125e0), SC_(0.10274527688571687030049782227296053357094496206279e1), diff --git a/test/ellint_f_data.ipp b/test/ellint_f_data.ipp index d47fe2cfa..93a9ff6bb 100644 --- a/test/ellint_f_data.ipp +++ b/test/ellint_f_data.ipp @@ -1,3 +1,13 @@ +// Copyright (c) 2006 John Maddock +// +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +// +// There are three values in each row: +// +// phi, k, ellint_1(k, phi) +// #define SC_(x) static_cast(BOOST_JOIN(x, L)) static const boost::array, 610> ellint_f_data = { SC_(0.177219114266335964202880859375e-2), SC_(0.12698681652545928955078125e0), SC_(0.17721911576221833285284471505772299979929420100157e-2), diff --git a/test/ellint_pi2_data.ipp b/test/ellint_pi2_data.ipp index dbd68756e..102eb352d 100644 --- a/test/ellint_pi2_data.ipp +++ b/test/ellint_pi2_data.ipp @@ -1,3 +1,12 @@ +// Copyright (c) 2006 John Maddock +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +// +// Each row of data contains in order: +// +// n, k, PI(n, k) +// #define SC_(x) static_cast(BOOST_JOIN(x, L)) static const boost::array, 500> ellint_pi2_data = { SC_(-0.871743316650390625e2), SC_(0.12698681652545928955078125e0), SC_(0.1674125184786922275852201144520277497358358213892e0), diff --git a/test/ellint_pi3_data.ipp b/test/ellint_pi3_data.ipp index d2ef113cc..fda8b075f 100644 --- a/test/ellint_pi3_data.ipp +++ b/test/ellint_pi3_data.ipp @@ -1,3 +1,12 @@ +// Copyright (c) 2006 John Maddock +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +// +// Each row of data contains in order: +// +// n, phi, k, PI(n, phi, k) +// #define SC_(x) static_cast(BOOST_JOIN(x, L)) static const boost::array, 400> ellint_pi3_data = { SC_(0.97540400922298431396484375e-1), SC_(0.15321610867977142333984375e0), SC_(0.814723670482635498046875e0), SC_(0.15373203842748125370338546651780574888816846402842e0), diff --git a/test/ellint_pi3_large_data.ipp b/test/ellint_pi3_large_data.ipp index c1d87126c..5967d21ce 100644 --- a/test/ellint_pi3_large_data.ipp +++ b/test/ellint_pi3_large_data.ipp @@ -1,3 +1,12 @@ +// Copyright (c) 2006 John Maddock +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +// +// Each row of data contains in order: +// +// n, phi, k, PI(n, phi, k) +// #define SC_(x) static_cast(BOOST_JOIN(x, L)) static const boost::array, 380> ellint_pi3_large_data = { SC_(-0.882951507568359375e2), SC_(-0.80491924285888671875e1), SC_(0.814723670482635498046875e0), SC_(-0.87472421400728425336727040442604900083192977041785e0), diff --git a/test/ellint_rc_data.ipp b/test/ellint_rc_data.ipp index f4ad003aa..da7c7f5f0 100644 --- a/test/ellint_rc_data.ipp +++ b/test/ellint_rc_data.ipp @@ -1,3 +1,12 @@ +// Copyright (c) 2006 John Maddock +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +// +// Test data for RC, each row contains in order: +// +// x, y, RC(x, y) +// #define SC_(x) static_cast(BOOST_JOIN(x, L)) static const boost::array, 201> ellint_rc_data = { SC_(0.11698430441812742785454260394458960094979845402414e-30), SC_(0.1429457475085533184e20), SC_(0.41546482167023371731518451342517736095263780557582e-9), diff --git a/test/ellint_rd_data.ipp b/test/ellint_rd_data.ipp index 85221ced2..de544bcd5 100644 --- a/test/ellint_rd_data.ipp +++ b/test/ellint_rd_data.ipp @@ -1,3 +1,12 @@ +// Copyright (c) 2006 John Maddock +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +// +// Test data for RD, each row contains in order: +// +// x, y, z, RD(x, y, z) +// #define SC_(x) static_cast(BOOST_JOIN(x, L)) static const boost::array, 201> ellint_rd_data = { SC_(0.60682196926171104626767727515008970841312337712241e-30), SC_(0.20031258624e11), SC_(0.10313978271484375e4), SC_(0.20551372495384815463856604017047221545095240191057e-7), diff --git a/test/ellint_rf_data.ipp b/test/ellint_rf_data.ipp index 1d42e951b..dc5ea4c1a 100644 --- a/test/ellint_rf_data.ipp +++ b/test/ellint_rf_data.ipp @@ -1,3 +1,12 @@ +// Copyright (c) 2006 John Maddock +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +// +// Test data for RF, each row contains in order: +// +// x, y, z, RF(x, y, z) +// #define SC_(x) static_cast(BOOST_JOIN(x, L)) static const boost::array, 401> ellint_rf_data = { SC_(0.60682196926171104626767727515008970841312337712241e-30), SC_(0.20031258624e11), SC_(0.10313978271484375e4), SC_(0.69081557947567857896297308369623231790841946303168e-4), diff --git a/test/ellint_rj_data.ipp b/test/ellint_rj_data.ipp index f49c14170..500c028db 100644 --- a/test/ellint_rj_data.ipp +++ b/test/ellint_rj_data.ipp @@ -1,109 +1,242 @@ +// Copyright (c) 2006 John Maddock +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +// +// Test data for RF, each row contains in order: +// +// x, y, z, p, RF(x, y, z, p) +// #define SC_(x) static_cast(BOOST_JOIN(x, L)) - static const boost::array, 395> ellint_rj_data = { + static const boost::array, 801> ellint_rj_data = { + SC_(0.17778719640226356167347852945229440308832650104108e-30), SC_(0.140657017848070144e19), SC_(0.1004598712921142578125e2), SC_(-0.482979822802320768460049293935298919677734375e-9), SC_(-0.25179478604244669733973586875090503552089558764187e-9), + SC_(0.17971096343704528451751984491965084147481741634467e-30), SC_(0.89101844176293009628514463216220065078232437372208e-17), SC_(0.83764338663550372334498751058362691151424505491344e-28), SC_(0.25525904358368192101317869568e29), SC_(0.55264196567924337745014728862252651162552511364961e-18), + SC_(0.3374483874642825322028299383742755000492569610633e-30), SC_(0.46577155087788907954176e23), SC_(0.46983051300048828125e0), SC_(-0.4337557424349824941600672900676727294921875e-8), SC_(-0.29586494691174345632763961304004697052773087913144e-10), SC_(0.34628584803331255547073953716003532083475191421235e-30), SC_(0.303861990424576e15), SC_(0.4400977e7), SC_(0.8120083456e10), SC_(0.94406118682435306969091503176397574982473232273954e-16), + SC_(0.52529654597568598687401224634973212611437919511155e-30), SC_(0.58548273201185353977823232e26), SC_(0.20248201901919065867629932142790494253858923912048e-14), SC_(-0.18734671312196414516097698394344282521492941247926e-27), SC_(0.33644488398603828475913952425044358424278852139661e8), + SC_(0.62221619626030569058053553009209074892000950850727e-30), SC_(0.343400804652490021666816e24), SC_(0.67300522327423095703125e0), SC_(-0.27625999903489739661921475999406538903713226318359e-12), SC_(-0.75889847310956721783906856673041055044273454295232e-11), SC_(0.62687453931329231730011467674071804187172354186889e-30), SC_(0.26256847716031594952568184453411959111690521240234e-12), SC_(0.1063940752263547436662784e25), SC_(-0.136451337486336e15), SC_(-0.67037231980991720071044018087634320636670369191284e-24), SC_(0.68459855298386769923242872813539959368599538368623e-30), SC_(0.3576658041416457175462348437019377323527317041928e-28), SC_(0.182191292416e12), SC_(-0.363291968e9), SC_(-0.83523497967218414236437029496187282518142685409801e-12), + SC_(0.79319377739814275716610132815898742724164603635128e-30), SC_(0.149536081295309486449696123600006103515625e-7), SC_(0.110968975e7), SC_(0.39225603641135470576542739402404764287313199133678e-22), SC_(0.58404081910170394697384547096361115025170471880191e13), + SC_(0.89048248588914662625862647642457234630028429798521e-30), SC_(0.19709305012440588607850390271996382609153184795395e-27), SC_(0.11493865037410894201880001018568858790897452128896e-30), SC_(-0.12642370874130226532372489600675180554389953613281e-11), SC_(-0.63945430527093703240104260994490070888470387853874e27), SC_(0.91680349711592282765605796247359202706042027867974e-30), SC_(0.734585367784587264e18), SC_(0.1052182232419898336993917357499253478604839479385e-26), SC_(0.2412866171048483705123448575434206360597333418383e-23), SC_(0.65770139664720747088672501472576668594088104855097e16), + SC_(0.10737441240523986959769665275538259586246072191374e-29), SC_(0.17000503652400689169610359385842457413673400878906e-11), SC_(0.18877310806851385273422393249673449514610540367343e-24), SC_(-0.11655765639250777695895033508093171243654281372297e-28), SC_(0.43166762266635358600263434023771743134211282555865e33), SC_(0.11714106834475308811660531464919355963339235126279e-29), SC_(0.24252292633056640625e2), SC_(0.367521736353615183872e22), SC_(-0.4790649536162908709687890753434018342726830042011e-21), SC_(0.22701967082264264796089141494292880179559115582815e-4), SC_(0.15170719443124775223923085751802832491502232570833e-29), SC_(0.5680430348320442135445773601531982421875e-8), SC_(0.264763527397376e15), SC_(0.13735858601648942567408084869384765625e-5), SC_(0.46218215900161368547332976532325866494807961652724e0), SC_(0.16414311592283418833973460759110207528131746805707e-29), SC_(0.2019777626058022108969416021903358834932440402099e-21), SC_(0.2589416226816e13), SC_(-0.8526492879801228497171905473805963993072509765625e-11), SC_(-0.28262895694754696636159676198309944171160827781306e7), + SC_(0.18514118780253326139548161460302589871739700953216e-29), SC_(0.386711545288562774658203125e-1), SC_(0.23784641790813854100861135520972311496734619140625e-12), SC_(-0.1573566764023808e16), SC_(-0.13857417194455984598251280402623707809865243033107e-12), + SC_(0.27003399803360749163257433233715641043057849874222e-29), SC_(0.4438962912167515363689288870188763384827534963506e-23), SC_(0.75457567458852864e17), SC_(-0.11436019672743120284552631460428528953343629837036e-13), SC_(-0.11008238028815716178378898314905171879133537621566e8), + SC_(0.27604985838665253543615615843832173935883006238474e-29), SC_(0.25638719488e11), SC_(0.441928942759635320832e22), SC_(0.880926163517870008945465087890625e-4), SC_(0.47167946924686267794681000601586718795332807589313e-13), SC_(0.27727679237026680624547360688641283050751007274628e-29), SC_(0.574552528560161590576171875e-1), SC_(0.599083490669727325439453125e-1), SC_(0.326562033434624e15), SC_(0.59574348217068678836770193704601663452299198297862e-13), + SC_(0.30817991819236751066216748295709401603164490197841e-29), SC_(0.20504934709643312615865232140244245329085970297456e-17), SC_(0.73745083851314552802870354829278820574245401076041e-19), SC_(0.2719417170737870037555694580078125e-4), SC_(0.23633334716008312781302835692937431199979037634428e15), + SC_(0.40116172822941619726509594554900420026234064360422e-29), SC_(0.273342628705129491070976e24), SC_(0.13233334255616e14), SC_(-0.1860324374547417392022907733917236328125e-6), SC_(-0.41662640839102650251726859519844649467351936743988e-24), + SC_(0.41366469991877353664505423235416110752209856263632e-29), SC_(0.1080339869874636584075679427013641468012674864323e-29), SC_(0.31354745663454523796342954256033408455550670623779e-15), SC_(-0.55809874055512409540824592113494873046875e-7), SC_(-0.51464305863761418392864887639923614413758733102008e17), + SC_(0.42974403323689182985245685819973216614391367995564e-29), SC_(0.1226755567577137036837375827502683023340068757534e-15), SC_(0.73181544029618176e17), SC_(0.356656491756439208984375e0), SC_(0.57511100808304419237998619538080396492131651332701e-6), SC_(0.43727979838159528482554219689363356095561935561375e-29), SC_(0.7798122348544e13), SC_(0.8588943201947652980736e22), SC_(-0.45831213261398661135397416775299529474035908904739e-23), SC_(0.52890106746769770489956114049541553965288744960747e-8), SC_(0.44767214645416419053919245787147718165594030426536e-29), SC_(0.26553176031232e14), SC_(0.2085586588137791946752e23), SC_(0.790340763648e12), SC_(0.64331758941919291277431102504836936943662726638851e-23), + SC_(0.56396991515163736959758100092886750224006554485772e-29), SC_(0.164767579074269378772992e24), SC_(0.96442290460109492133966568871983326971530914306641e-14), SC_(-0.182207055936620593152e21), SC_(-0.16288586324488794352121434520748982365641475834901e-29), SC_(0.71060984495908924431726061148159195715493970237986e-29), SC_(0.61842984e8), SC_(0.3555642664432525634765625e0), SC_(0.133759144e9), SC_(0.28834216749836541937606611695450951218706212147855e-10), SC_(0.80490202086679616440767211156605911864354431197377e-29), SC_(0.263248904192e12), SC_(0.297980882347216843954978816e27), SC_(0.140897846221923828125e1), SC_(0.44824022549527823491543784090039049377556207542239e-18), SC_(0.93229513968235881657927660254990574951111859851663e-29), SC_(0.366241894662380218505859375e-1), SC_(0.4340599750656e13), SC_(0.105478806095575292710985138176e30), SC_(0.24012124307552155152973805705552466780637562428371e-33), SC_(0.98984072271443418184618106348812926220946298945177e-29), SC_(0.96973053952e11), SC_(0.1032632680728338890752e22), SC_(-0.34396671690046787261962890625e-2), SC_(-0.96271364111058320397683919234948561206704260148431e-21), + SC_(0.13796957375375282521258282185313922946375173684891e-28), SC_(0.603357184e9), SC_(0.56249721609616214201832207209008629433810710906982e-14), SC_(-0.58723545944948736e17), SC_(-0.58028697480534659570212041732835661494029465370265e-19), SC_(0.14087878121271588812030448853437982084687159586205e-28), SC_(0.53508747383344354605481852928e29), SC_(0.62704322937005693765167776976277025369199691340327e-17), SC_(0.235499138513371136e18), SC_(0.22302880199358479320924395693872038333122707229792e-29), + SC_(0.19187669896268843882106199046212790333876075179759e-28), SC_(0.26183668812773328027354580171959241852164268493652e-13), SC_(0.5970707e7), SC_(0.3312188584361984e16), SC_(0.92017241034815941174045547113765004391798006057029e-17), SC_(0.19696330564073048658818435820590984305819001943432e-28), SC_(0.32238440243425309843308409068705787565729120602853e-24), SC_(0.292186842467552253181952e24), SC_(-0.3806432217839128513100120064e28), SC_(-0.82513020195805722794885738700643372535526082646992e-37), SC_(0.20092729076345475268161641680692456393259236283608e-28), SC_(0.5697601591236889362335205078125e-4), SC_(0.1162191569964638329110528e26), SC_(-0.16412856978298360348657569008246504688175448904985e-21), SC_(0.31839738515206016513063561009026484616216098410256e-2), SC_(0.20426069933899679481125376462984716200236491481616e-28), SC_(0.3943929741312e13), SC_(0.23412235260009765625e2), SC_(0.10193842560436084643201024e26), SC_(0.21207853870411859766389282691659616682682417758342e-29), + SC_(0.22881844270846610652749196737333504046746971403743e-28), SC_(0.2179837304525471795325908264118197621428407728672e-16), SC_(0.86233940750171127054952112389596408092984347604215e-19), SC_(0.368157728e9), SC_(0.72529706319504487456480463098377420100634724772411e1), + SC_(0.27790564235134654243337661318427908127768828411199e-28), SC_(0.21656921296023725949679903214975529301966616912978e-20), SC_(0.16200692698475904762744903564453125e-4), SC_(0.1635257538336499151053522635820185529564874116204e-22), SC_(0.58938880546601329124832820085911559407364943754411e25), SC_(0.38307908170359829668907275664710825900011835075561e-28), SC_(0.14482298173190688572731232852675020694732666015625e-10), SC_(0.28193880243627888738304e23), SC_(0.589604375e6), SC_(0.60047466992965579411135347476169935325115071814017e-15), SC_(0.44431992244584514654678755926404518943295031559691e-28), SC_(0.48174394645500255940076463501836601110994706687052e-19), SC_(0.111553230384106831872e21), SC_(0.26075669569036418811408302358884491864634006858979e-29), SC_(0.41939587045610674859432459314508206490215441802069e15), SC_(0.45190074381881787947113833644192369803258850957835e-28), SC_(0.903221837196690095865856e24), SC_(0.197033285648384e15), SC_(0.32623424794930855341590358875691890716552734375e-10), SC_(0.61845676096363676818434676933016847521984818056106e-13), + SC_(0.67043661646154515272860423358014245865689394675811e-28), SC_(0.27387009957888e14), SC_(0.11955467241431342253831366051651271417622290817867e-26), SC_(0.87310802944e11), SC_(0.28933511748345186860086749976012259395216961852377e-15), SC_(0.72950579063556310785863719706888276620113808904403e-28), SC_(0.590493896484375e4), SC_(0.99392208896e11), SC_(-0.19527980804443359375e2), SC_(-0.16079545628777305110796074754669542322724883666308e-8), SC_(0.94777901458212457182664258521518150736237789261152e-28), SC_(0.4428201e7), SC_(0.2530101420741656313673562390278253679619336276427e-31), SC_(0.26171386241912841796875e1), SC_(0.18205396527964645652297231995003573026647291521867e-1), SC_(0.11153434660579423094016106021221904046901687488323e-27), SC_(0.750879536326465313322842121124267578125e-7), SC_(0.9310612177071408979145417106337845325469970703125e-12), SC_(0.31839368781345048800513961029245990630442975088954e-17), SC_(0.99763610438792567414792334839900304053722628109961e19), SC_(0.11969815900999513257745596351318014772377229309672e-27), SC_(0.1668161242237629641861967998969556656319035425895e-21), SC_(0.2847195703125e5), SC_(-0.12113708519078755261729959946670476256258552893996e-18), SC_(-0.58469912606844089535572230231066119898125245972777e18), SC_(0.14718026449967740426353456716434433271883469801847e-27), SC_(0.14995603510614981277719965857381914152826921874523e-28), SC_(0.1111803961616105472e19), SC_(0.508679587341021033353172242641448974609375e-8), SC_(0.12814521532382957625567079334028430774339053692899e2), SC_(0.15284006704962108878625465914339150556459706251089e-27), SC_(0.1302969292737543582916259765625e-2), SC_(0.354480992801311143493632e24), SC_(0.37605104e9), SC_(0.18607859430748510805274307470148837042692731526225e-18), + SC_(0.16409516553343363785084154944027139734674650595365e-27), SC_(0.21342112026081242375155966654008687921617593019619e-20), SC_(0.78913960056218451777354516707418952137231826782227e-14), SC_(-0.1775841411699730088002979755401611328125e-6), SC_(-0.17015599078079798684750666220401593398087597887802e16), SC_(0.18215559766104924690332214579658583558792903588607e-27), SC_(0.214253668673336505889892578125e-4), SC_(0.7301043754462531075178496e25), SC_(0.1068455829996046990704172685582307167351245880127e-12), SC_(0.11526214590948729311397784489864538809888995731212e-2), + SC_(0.20347543751535935665284243442334458135561822645851e-27), SC_(0.440987377729536e16), SC_(0.287391328125e5), SC_(-0.9624498046875e4), SC_(-0.12941824082139400213634919237534112886628905903587e-11), + SC_(0.21993065518257681430269719956396304729998221211967e-27), SC_(0.187684774264479346476449792e27), SC_(0.12580362244240480345597811588829353208161820898425e-23), SC_(0.22742198944091796875e2), SC_(0.28653876882240678152315201694479234788889731288981e-12), SC_(0.24529570625501572181775218266146503325173309053089e-27), SC_(0.25641463683753128890529908445738982436523656360805e-17), SC_(0.48869192600250244140625e-1), SC_(0.58277403084650757214336531275763466589806549578157e-23), SC_(0.54865012310632304234244856782916104369657655425137e22), + SC_(0.27311316429626442094674415847188181871613594240214e-27), SC_(0.10845691548033613824e20), SC_(0.400673984e9), SC_(-0.570043214020987676349250250495970249176025390625e-10), SC_(0.10919983255480397150227388381021408564707003279548e-16), + SC_(0.37335468826546041784004659441927058513915150877657e-27), SC_(0.1305863312148020278771843072e28), SC_(0.19190377849874556560638664818693364076673812945728e-22), SC_(0.35540905350329594324527042329539745259270322463863e-24), SC_(0.45016943962136224233438107072525001952123968791903e11), SC_(0.39141497594833019784983821157723932951078514835136e-27), SC_(0.357364711819011162112e22), SC_(0.667275905609130859375e1), SC_(0.1113973178760695906304e22), SC_(0.10731044892019837510186483399833963183503696610428e-29), + SC_(0.39262368958142762707121614333400562989589966094578e-27), SC_(0.37141335660505858048e20), SC_(0.94974504335262194265609991816745605319738388061523e-13), SC_(0.95415474769800466547930994920534431003034114837646e-14), SC_(0.21521859153131137835830879033751142752868026118185e5), + SC_(0.55263283825603576259688637477087526891102295303199e-27), SC_(0.14570690537170526341649579027404115549870766699314e-16), SC_(0.12941088853490731622934705547460304161866623869764e-26), SC_(-0.1672545540175947482997020898665141430683434009552e-14), SC_(-0.5848805184248221012929348390290312121931490384609e25), + SC_(0.56127809703514701593677302775789618452802567406812e-27), SC_(0.9228809556838246663801328395493328571319580078125e-11), SC_(0.86422194270699415064029835775727406144142150878906e-12), SC_(-0.562820141665652672823296e24), SC_(-0.45778174553622802307533432403667235723940695422331e-17), + SC_(0.60846516215783285252980856413082379488997881219342e-27), SC_(0.132249495194510903163748352e27), SC_(0.12553589416499227737881426975438926936441333025911e-29), SC_(-0.18909737802843239184991119827827787958085536956787e-13), SC_(-0.22324611373365460783950827801522919902882544645988e3), SC_(0.70854346356424203118456450594757848872274827445317e-27), SC_(0.17661992750974924766497868057479880832261187606491e-19), SC_(0.13503679168512e14), SC_(0.99978050734272746818492337364912077787941683637389e-28), SC_(0.40708318789691990117035501094747887529655008140322e18), SC_(0.95094302859126114224783559857815715520763821290429e-27), SC_(0.24968204839583968605398571483089398270749370567501e-17), SC_(0.9045842452906072139739990234375e-3), SC_(-0.3141900802028363415274725412018597126007080078125e-11), SC_(-0.2449539203496388975798784873357620168741296674017e15), + SC_(0.12077864904222012060382706089847400011033683522865e-26), SC_(0.3538321875e5), SC_(0.13553274662644757345142387805481121176853775978088e-14), SC_(-0.46783368374000422384529373153595852453251469071915e-23), SC_(0.32058124445420069844687161314261210407880181015443e16), SC_(0.16793731632787596740420928687663819571897812904515e-26), SC_(0.3518738464768e13), SC_(0.98092148011034996368806559985387139022350311279297e-13), SC_(0.7575111198086004736e19), SC_(0.65039496025983965665832815009530617268807417944382e-23), SC_(0.21755331614817437617422269623130535179188855751664e-26), SC_(0.2500394162552321830617074738256633281707763671875e-10), SC_(0.72982407463299740342380286062361920775211799206766e-27), SC_(0.247376342155264e15), SC_(0.4709775015194030811246957863705675568998476920662e-7), SC_(0.21971093546487139650040130832038324586684679279314e-26), SC_(0.63975672837429094514688e23), SC_(0.4539182297546489856e19), SC_(0.84259974327325996997237890661914493965691137777885e-26), SC_(0.72996868550237370924565332261049662117667604966241e-7), SC_(0.22982227952519826732488902867652779863117686563745e-26), SC_(0.33525770516606100656031852480509769520722329616547e-15), SC_(0.2606888e9), SC_(-0.99916063843772263862794266384148578197255119448528e-19), SC_(-0.54923986434781063090698390941147979292728868719051e12), + SC_(0.30925962897528140638428209777131250534488266998312e-26), SC_(0.31183890647663858874949482924421317875385284423828e-12), SC_(0.3378834198657619609917574050322202662555159946578e-22), SC_(-0.194349398430869870379794432e27), SC_(-0.35519121360496594488824546721514240372537441259534e-18), + SC_(0.31280255044167672158720534423471231179079217639416e-26), SC_(0.11511761115021312e17), SC_(0.152494848e11), SC_(-0.42399032147968e14), SC_(-0.30751500494692020409607948030330780776185524378836e-20), + SC_(0.38344456302173223195286237326130017242619817813276e-26), SC_(0.1287535325337014953720268054032123824574619620157e-27), SC_(0.13705567485615801022446745431989965211687137938007e-26), SC_(0.1571656949818134307861328125e-1), SC_(0.53674187831070133121718983787847933752259275058477e16), + SC_(0.42244364291200267661460233749011480646438909669627e-26), SC_(0.477498138427734375e3), SC_(0.17728046030944125033074269511337850424581574770855e-19), SC_(0.13287486274745846826646551445217506469372131620437e-29), SC_(0.74967099308934474834018743849676453308904253460129e23), + SC_(0.44974670432440498891960159215184658369128360699829e-26), SC_(0.7166851806640625e3), SC_(0.1690176772380537639327398519769468654416755271086e-22), SC_(-0.13255775939261839335703285769341164268553256988525e-13), SC_(-0.92291020959456172138416167756711444546699678378756e14), + SC_(0.48457483625271488463909528606996389233426292958429e-26), SC_(0.34402809559391418553704811749276853293953368218006e-26), SC_(0.3426654976e10), SC_(-0.8123994140625e3), SC_(-0.21276722575609983508506693538149322464940493370722e-5), SC_(0.51977933341075693398899317919762114747383096799438e-26), SC_(0.266911591494591876579813490688e30), SC_(0.53580234866956732986409406294114887714385986328125e-11), SC_(0.254200357322752e15), SC_(0.69110368402320022163407013192490694398911620896064e-27), + SC_(0.58142380573592359976870182103182017051176385183386e-26), SC_(0.37084538151638864883485879886393377091735601425171e-14), SC_(0.369338253312e12), SC_(-0.415793875e7), SC_(-0.29594443532795804955924762850953266350160249353608e-10), + SC_(0.60865414403362585004788968196643994088311036341765e-26), SC_(0.123742392e9), SC_(0.10912435391066719332460695603753930316446923640128e-25), SC_(-0.21994551145136128e17), SC_(-0.49089646351075138912034407328455569366471571417599e-18), + SC_(0.65415581823232869460973666676192176842397421610009e-26), SC_(0.6010023046875e5), SC_(0.234649834188006464409305088e27), SC_(0.9448992204852402210235595703125e-4), SC_(0.12908899786201586710341222112186672810536915287797e-12), SC_(0.77196710997203362544532626020513746761754665659527e-26), SC_(0.9461145951093060124066579601815525318148601685575e-25), SC_(0.12432433352443051997396992e26), SC_(-0.5228e6), SC_(-0.58320270863535593455030526710289059054679659475945e-16), + SC_(0.92003714929119307170488305653901118029522766122996e-26), SC_(0.207550390625e6), SC_(0.2457815154404734489393749563568292160198325291276e-16), SC_(-0.60690097317509052778401497088e30), SC_(-0.28894533691941038650796939790571157096636712776553e-30), SC_(0.11635736870608811874540057457479948586226165679891e-25), SC_(0.17671186639527258161297881214290347985361303510387e-28), SC_(0.22745186078595230213685116928e29), SC_(0.15040896827392e14), SC_(0.60417643323129282335411977676602262754782289036307e-25), SC_(0.11837831633021164326650292224515978315498715423004e-25), SC_(0.27219574150194603134877979755401611328125e-7), SC_(0.15386248307178551019952166983379913769903023636025e-28), SC_(0.87460832e8), SC_(0.46759013370870059772614259918741759451044911410075e-2), SC_(0.17550213803783570336671080151775868003491756774714e-25), SC_(0.5815067891204096e17), SC_(0.8830627750050583805952e22), SC_(-0.11121447374743291820226533572930904814057839757879e-20), SC_(0.15769698742831680011244511894063175456041078597779e-10), SC_(0.21288901426793981534691419438692370107505096726852e-25), SC_(0.5289344906157640122368e23), SC_(0.11510209314816e14), SC_(0.4249272918701171875e2), SC_(0.92648999418099558750700023051939135561434274409392e-18), + SC_(0.22996534145332723997852573283005889220225251290408e-25), SC_(0.2971597882982735143010211229658290577049228886608e-20), SC_(0.18105871401684113750600804327424580317078273150599e-24), SC_(-0.52397229666212297161109745502471923828125e-7), SC_(-0.6233022963855150137392227864366754483789628722974e19), + SC_(0.23262787026796459560488491232047662116274797106108e-25), SC_(0.6551325321197509765625e-1), SC_(0.16290072103687030632445066548764228686607680174347e-20), SC_(-0.71544082024462842504808346433264887309633195400238e-16), SC_(-0.98858559565543721166704848282937720760724555227602e18), SC_(0.27826294978205525521980137859608542144911232096849e-25), SC_(0.87440356429873925658498856170228582591246249688943e-25), SC_(0.897631640625e4), SC_(0.36269013671875e4), SC_(0.28820549055264756824493461253302827935710287805982e-3), + SC_(0.34919368622379363366113344149995795887854964367758e-25), SC_(0.253342638931968e15), SC_(0.7562174072265625e3), SC_(-0.13358971904e11), SC_(-0.12750020412892674391569363800760250228302398440321e-15), SC_(0.40640597744934306582748730017532743697978442343199e-25), SC_(0.143180119991302490234375e1), SC_(0.7372973065411514426159556023776531219482421875e-10), SC_(0.25642714125858165256502331187864603249699103210135e-25), SC_(0.16806840183003004103311088621594719873834403266311e19), SC_(0.66556817034054791977215246744979717646037778444601e-25), SC_(0.3026203967488e14), SC_(0.89236039341428712414264201591151959291892126202583e-16), SC_(0.12883867020718753337860107421875e-3), SC_(0.62189172419008455881321301576823244222445688480495e-1), SC_(0.85862603804552791851901750144015928773062740209099e-25), SC_(0.100811407958566250167576559616e30), SC_(0.4642501040129231797912992205090709774140123045072e-18), SC_(0.6697769276797771453857421875e-3), SC_(0.25597760155920837386398004521369053843545906300128e-9), + SC_(0.10089998747641633763059998585889530904667436839173e-24), SC_(0.694304406642913818359375e-1), SC_(0.12026698098510906626001926156277477275580167770386e-13), SC_(-0.15574649983556515459174837338982445161805756583817e-21), SC_(0.21070067754050388417150557140030549089180888347646e18), SC_(0.10332494589906572792043563946857459391668980497325e-24), SC_(0.363202080623525101568e21), SC_(0.31611702310388430456632212831036277123075706185773e-19), SC_(0.3834788709626559462375424e25), SC_(0.19494480412558630536765884383661183190812241864799e-32), SC_(0.11061723157371115940205422633821341626969569915673e-24), SC_(0.46915519457248313591588473499272016198347046156414e-19), SC_(0.292094455289770849049091339111328125e-6), SC_(0.155271419401486900365614907392e30), SC_(0.57608762536920856390418378494213938082655486152011e-24), SC_(0.14044194233643483429544463937103636612564738772591e-24), SC_(0.11511007425024644135191920213401317596435546875e-10), SC_(0.51712110886912e14), SC_(0.154647670346963546147209084928e30), SC_(0.80304305292253510634817499564421455993777835379657e-34), SC_(0.21315088219210617005095987448538579660858166553439e-24), SC_(0.95683287681946893599160830490291118621826171875e-11), SC_(0.3115958984375e5), SC_(0.1778788089752197265625e1), SC_(0.13058169388077874810114041226751401624143738160404e0), + SC_(0.32135673854187971346020288041515339098365411363289e-24), SC_(0.32434747971540767529127381233219938105394927058134e-26), SC_(0.697133984375e4), SC_(0.2589941282271635003553456044755876064300537109375e-10), SC_(0.23039925225726596658297664671720758993009085642785e11), + SC_(0.35477071711955241575497882018697768801047953690642e-24), SC_(0.16799917719768968541980944488815402358444957287009e-26), SC_(0.2391704532426279666843648e25), SC_(-0.9987537633480230838468608e26), SC_(-0.11170439213945264439860192238802450754200316519462e-35), + SC_(0.63171350201374448567926894124993295043246632758382e-24), SC_(0.34594001439795600424927311319582115491182941913878e-27), SC_(0.63795086741914598182229839666991088459324643622494e-23), SC_(-0.12552908898662657608504726670096805643886406222975e-23), SC_(-0.95629214294281547762205671403056105369715614300042e36), + SC_(0.67408622876536618485544101470642653945071487431306e-24), SC_(0.2471692337152e13), SC_(0.132961654303503394275328e24), SC_(-0.6788451e7), SC_(-0.33286094625146253776290000962519139005436578926647e-23), SC_(0.10695072441537967968227132372606381829210908662731e-23), SC_(0.35285359539881765141448911825262056696228540886295e-21), SC_(0.118697354167807134217582643032073974609375e-7), SC_(0.71003743825541563300385305979034455958753824234009e-14), SC_(0.35089989988978881039717099704028606373920726973772e20), + SC_(0.10793397050840846405918406985643934908360164204311e-23), SC_(0.1113690125e7), SC_(0.75714901237548921923889924164984433635483540570021e-22), SC_(0.1261075439453125e4), SC_(0.6676061172726403023950098474250977274537751230218e-4), SC_(0.14055776683884390935377421641763401121381915626074e-23), SC_(0.23893704704e13), SC_(0.829389522038503243776e21), SC_(0.1426357962191104888916015625e-1), SC_(0.88635117902348692092144299129333228841677282906924e-15), + SC_(0.14272539883421020559268456416931805121571519290313e-23), SC_(0.36702409422429027827712e23), SC_(0.325886788778007030487060546875e-2), SC_(0.45193252206280704e17), SC_(0.78763062610517413780038390821520112762583412544418e-26), + SC_(0.1809900535358029636909945199492450026643175498009e-23), SC_(0.4521496521192602813243865966796875e-5), SC_(0.8669365225699721122509799897670745849609375e-10), SC_(-0.3707945239739274256862699985504150390625e-7), SC_(-0.14189342419296741566740455781008734607151058394391e12), + SC_(0.22979825824841110086247763680828023157010076005236e-23), SC_(0.93045377009959233280039386363886244165766006039391e-29), SC_(0.65658354476458128962806926054440737061668187379837e-16), SC_(-0.9890375e4), SC_(-0.37314934922703109150578387792499853099108043778131e6), SC_(0.26973976499394821796760860105960760360263583912399e-23), SC_(0.238645943284598871514390339143574237823486328125e-10), SC_(0.23768503319901658006414734019219381138884883419848e-23), SC_(0.527652234461184e15), SC_(0.18190765247531467187582066782163346977401040810669e-7), + SC_(0.28816079125764878356579517477216619003588249370296e-23), SC_(0.882377426023595035076141357421875e-4), SC_(0.1577473308204273238016e22), SC_(-0.42506787746007220974913256138199158917084785613838e-23), SC_(0.2260606231678334898572932268877987581753719916506e4), + SC_(0.32599065541056766574490488870673046781917259195893e-23), SC_(0.192923329050787834358224912384e30), SC_(0.3097524677286855876445770263671875e-4), SC_(-0.100986093568e12), SC_(-0.12548493178296809708310951396530810777296967298351e-23), SC_(0.34268145332932435562498678286384018714522126103361e-23), SC_(0.5212696875e6), SC_(0.3849909631451136e16), SC_(0.508418523136e12), SC_(0.72162014414273809333019650903497394748188629754886e-18), + SC_(0.56386042011206437624858452043569937567335514927436e-23), SC_(0.7681872205185024e16), SC_(0.23590024284203536808490753173828125e-4), SC_(0.20797140896320343017578125e-1), SC_(0.67249380302320973888478353771861280397144005879171e-5), SC_(0.62349810733154656348475984703893669394009213746699e-23), SC_(0.3186756486421025349175685783759132587948386466284e-30), SC_(0.206639827322404864e18), SC_(0.5590021601165062747895717620849609375e-7), SC_(0.22500957165169082814761536290836745381917410205781e1), + SC_(0.63670474329021361052387975964176193132554315567972e-23), SC_(0.28074016939545422987264e23), SC_(0.17556869315576290047076213340915273874998092651367e-12), SC_(-0.1531524209357918723637248e25), SC_(-0.48982349819810203820904390481783758594463100466212e-33), + SC_(0.79077168410563814020679685421361419447872087573614e-23), SC_(0.21161119528926488937912315394561157356168786172334e-29), SC_(0.142681614079265273176133632659912109375e-6), SC_(-0.2962966449558734893798828125e-2), SC_(-0.5388142830829322167770886578711317078175280130675e8), + SC_(0.10530228911339364457321075924690629687513476753224e-22), SC_(0.483472707676213598935318528e27), SC_(0.44314850564982699138972646468012326028093886742722e-29), SC_(-0.15681767604224e14), SC_(-0.36835976310730676299394417367344677807328340135985e-24), SC_(0.10594830308589723556089853200358767617433874974608e-22), SC_(0.32064444894785992801189422607421875e-5), SC_(0.86973574563961136555481660599328536803698241897109e-22), SC_(0.416365146520547568798065185546875e-4), SC_(0.79620513846799906888063680407815759196684641264128e9), SC_(0.12363192189691982984868135714653404610974263277967e-22), SC_(0.35982240840770946433031796107826494335313327610493e-16), SC_(0.322920703887939453125e1), SC_(0.17277019497651336450993801928633292653556531673917e-28), SC_(0.58833909586422443110978922402391149473021618837133e21), + SC_(0.14850114058724673309995269779678521773758070878557e-22), SC_(0.88135538909447823165237586283144582965931590479158e-21), SC_(0.1617057321379178347342531196773052215576171875e-9), SC_(-0.8139933688528896e17), SC_(-0.41247833740064166396959255912190940026246123128608e-10), SC_(0.22156699957340918412056171273583613824664784175411e-22), SC_(0.29634864404215477406978607177734375e-4), SC_(0.119116396494848e15), SC_(0.6916903633158144e16), SC_(0.89869667124025102871982743442548976065877351596674e-21), + SC_(0.24417406495470620949839827231771108642655043752256e-22), SC_(0.523734033203125e4), SC_(0.183467209339141845703125e1), SC_(-0.12311917978180542121435792068950831890106201171875e-11), SC_(0.10021776510098977430056989669428609195606706400045e0), + SC_(0.25335998731998849030698736206528910198942927678445e-22), SC_(0.99404931640625e3), SC_(0.204871795654296875e3), SC_(-0.17732928865033286806667264e28), SC_(-0.12038609899020735067631573133766711736365792216423e-27), + SC_(0.26358550214060722931322024418533938455722065441478e-22), SC_(0.4537445192909217439591884613037109375e-6), SC_(0.16901493831299083657975146245536820360788610173586e-21), SC_(0.3449957335950946027262366266885607046788209117949e-18), SC_(0.53858834605867315707828660767349440373027075024073e23), + SC_(0.30833663466070896382006111161955350802310604763079e-22), SC_(0.14264230850949372902972644950540109798353682890593e-20), SC_(0.39928437914112261306202108102764158914510517206509e-19), SC_(-0.3631383378888131119310855865478515625e-5), SC_(-0.1213112071190513079582770219354688035523822648048e17), + SC_(0.32152307578020235295696248397110750608107743175879e-22), SC_(0.77171333762843762060779084777095704339444637298584e-14), SC_(0.1759927888961148057063232441957212337513283273438e-19), SC_(-0.2195341448531573712125986030940794080379419028759e-15), SC_(-0.83912492088792002835980756398061311778687126536753e24), SC_(0.35030939907262229474824187104684165838808240778235e-22), SC_(0.23553908385443359223970771765266363217961043119431e-16), SC_(0.21413030105610117647127543808e29), SC_(-0.174636600070766592e18), SC_(-0.46589433163832845716014527870522458470408394544791e-29), SC_(0.40076885532064810604093087225601246825767987047584e-22), SC_(0.3082144530708319507539272308349609375e-6), SC_(0.3078387737274169921875e1), SC_(-0.306541058685140992e18), SC_(-0.52681800193790643826848396355296715809602729336734e-16), SC_(0.47393636692305733664278524253798572860030269282561e-22), SC_(0.104557464599609375e3), SC_(0.4436923e7), SC_(0.27618875085853910114619402804692072095349431037903e-14), SC_(0.41627799504720195545327833769503897199882913521632e4), + SC_(0.63232212397934060070738019807261992566438379981264e-22), SC_(0.19656669921875e5), SC_(0.85838680267333984375e1), SC_(-0.23773043214411204929354878517112583573636652722882e-24), SC_(0.31955335590579409935215491096676679912082946876264e10), + SC_(0.70129216981394124517358319359700870310181386457771e-22), SC_(0.448211761474609375e3), SC_(0.2475014486984922284531527269369312674318628353376e-22), SC_(-0.15927880178899761053762373919084893714170902967453e-15), SC_(-0.67122396948539779453030130850570885552245981802717e16), + SC_(0.70776411089811926138706988062315912657584959788437e-22), SC_(0.59599255416864768e17), SC_(0.5230804920196533203125e1), SC_(-0.3854616915607552e16), SC_(-0.56932133994575562834803573946131249800277946647555e-22), + SC_(0.71863877935764437100797607417958061393203905709015e-22), SC_(0.174722980453023744e19), SC_(0.13073324703744e14), SC_(-0.26683298312969198105526272e27), SC_(-0.61987281823410613133111980521521492695625553531713e-34), + SC_(0.74762051927350566184369205465550661804385867981182e-22), SC_(0.26862682123178615729311180857336192916092225055347e-26), SC_(0.84223014588956526247936e23), SC_(0.1301752750835069196141448711201873228266493351629e-28), SC_(0.77480252682128625415386515944756210480090439704723e14), + SC_(0.92533743902997465556179028455896593691187845820423e-22), SC_(0.149624073505401611328125e1), SC_(0.8923663750663950598930432e25), SC_(0.102209814528e12), SC_(0.12937126487114329796907026194641071171060108535892e-21), SC_(0.12289824338974083826108178981784992134240752648111e-21), SC_(0.698235158528e12), SC_(0.12468150316635728813707828521728515625e-5), SC_(0.10894201096789402072317898273468017578125e-6), SC_(0.12957615412040305231117322381745422132654264610854e2), SC_(0.16709281876399104451896857451468573346753387909303e-21), SC_(0.105505156605401800151924736e28), SC_(0.36789907058298876307844693656079471111297607421875e-11), SC_(0.44886589798289497496477628875480243896348153676001e-24), SC_(0.13623440271665848922782542124576786747468037928652e5), + SC_(0.20480137977551409171276012694776647721228712839547e-21), SC_(0.52543687780784082447767556304253063949231234656262e-27), SC_(0.74365346526107147718978422623603563579308683983982e-18), SC_(-0.483856461841458695971596171148121356964111328125e-10), SC_(-0.39426565357138534357827502672260590696117791350039e21), SC_(0.24251573418152508201725062311543065773911109772598e-21), SC_(0.15525652356389520625679773191407662125129718333483e-16), SC_(0.5536424766614160801792e22), SC_(0.55148544815829756735230559840777881519665801213215e-25), SC_(0.32091940865145284106703658946942174547858789512328e10), SC_(0.33101343219058390575744884635968519337456683615528e-21), SC_(0.865986066855839453637599945068359375e-6), SC_(0.60807995981824e14), SC_(0.26816164712173073564413156940593807307003537187008e-31), SC_(0.27974902252196859786372864954767558421438937439356e9), SC_(0.34232852484893752715336362962101832141392776520661e-21), SC_(0.28644704009199202239603918686080641793337820138912e-29), SC_(0.3675726848e10), SC_(0.12510508e9), SC_(0.13723028519686398282851688320405757273703039656552e-10), SC_(0.34863327790830662300885857654195697230559147783424e-21), SC_(0.941622257232666015625e-2), SC_(0.1611729536e10), SC_(0.9274045452659739329501556448498433837812626734376e-17), SC_(0.39566873514712382541406214119913485568723205675036e6), SC_(0.3591942195412689571187997472948797567093848215336e-21), SC_(0.20276001953125e5), SC_(0.23067565607429071342632211210292164463707216326199e-28), SC_(0.2583940140902996063232421875e-1), SC_(0.19204953652332429821075894150537070676350125552163e2), SC_(0.37816734667556745747025163289015137202397909277352e-21), SC_(0.24983507829808709876928674020746257156133651733398e-14), SC_(0.3642084375e5), SC_(-0.1355347072e10), SC_(-0.27196824430587986423806969973687296096265940478318e-9), + SC_(0.46752986342868921380058106921978264280959081133915e-21), SC_(0.528067822154870882224308224e27), SC_(0.5685052480451848618115072e25), SC_(-0.59099866506205789543864529183945179702415473332877e-24), SC_(0.10198893064940502169045368957140475383349715793657e-13), + SC_(0.60174052366059316378553368571567225298046821535536e-21), SC_(0.10303296875652080092595762343334930266343200944146e-25), SC_(0.308824435098386432e18), SC_(-0.3148147e8), SC_(-0.5787851854562533682141642804720155538631133058382e-14), + SC_(0.75804509525494787096890253236172035888884579435398e-21), SC_(0.8845430532586596087103488e26), SC_(0.19398925304412841796875e1), SC_(-0.68091676439507864415645599365234375e-5), SC_(-0.16442983983143540066860704436157929741482495709281e-12), SC_(0.79665469950330159961492980445589562332742161743226e-21), SC_(0.83213808566272e14), SC_(0.56174552729503315386117012764088940457440912723541e-15), SC_(0.13703472901716443136e21), SC_(0.83919271962645325476931765438895923092890437515712e-25), + SC_(0.96362472102334232055222076765519517715929964651878e-21), SC_(0.229194643907248973846435546875e-3), SC_(0.354709317473833607436972670257091522216796875e-9), SC_(-0.33682246752230244661008495496185190790821087358786e-25), SC_(0.1973944260376198272439270856288928262653812051008e19), + SC_(0.10655219220160638660658204061957438080199267460557e-20), SC_(0.4329301314592003063808e23), SC_(0.235037732322388428860686336e27), SC_(0.32667630938933585991669946822042821870520724674911e-27), SC_(0.23602272875316702306441670462110405333561131223386e-12), + SC_(0.14091959785120442850992498264083366277255038312433e-20), SC_(0.128396337300146092061566697472e30), SC_(0.31356214050816e15), SC_(-0.38295224717969824478792493889972690038039687589894e-27), SC_(0.10393796341126502848144071691816713657763034488644e-9), SC_(0.16876090995538029053498222195215869301243571953819e-20), SC_(0.557600690481998400170491904e27), SC_(0.1795816235244274139404296875e-1), SC_(0.1630057900403404570624e22), SC_(0.2114060533267693219940512933825497532721225959918e-32), SC_(0.16957562025474358445523368203906866558128285760176e-20), SC_(0.11310173639817380151408195664008982106452094740234e-18), SC_(0.15127345e7), SC_(0.6789177e7), SC_(0.10641855692615552707664083478942417992486945142603e-7), SC_(0.23540851394404172234472420613491522312088477519865e-20), SC_(0.11023617015640261193574593543205827068633346002557e-25), SC_(0.448969248e9), SC_(0.78396986663444566392866475547677659885259515704092e-21), SC_(0.12156371321704405372177687766545701550937262774687e18), SC_(0.2396832969158041061126381509032573502437912793539e-20), SC_(0.91303257931940606795251369476318359375e-6), SC_(0.62647392985281462272e21), SC_(0.8292595739476382732391357421875e-3), SC_(0.59273041561316941749338662692759842094526004174294e-6), + SC_(0.24141449950396592978032251394348434159198291126813e-20), SC_(0.18448819419086848e17), SC_(0.55460104261295954577309919031335994077380746603012e-16), SC_(-0.5924556271255552e16), SC_(-0.14040633787027708168907065281533134041530653230269e-21), + SC_(0.27589042212186362242123678200494962808875243354123e-20), SC_(0.16342684e8), SC_(0.10564504593401150001064081607182743027806282043457e-12), SC_(-0.38404155731201171875e2), SC_(-0.33731571461048716678767845378048804924400059939478e-3), + SC_(0.32517390764125836699536241120728208287005145393778e-20), SC_(0.32148523727519219712e22), SC_(0.60515264161661452673922225736467336588411333742066e-25), SC_(-0.19435005935616e14), SC_(-0.10774119959550489880494328789835313204223260188677e-21), SC_(0.45554803310630748334844562492766673056365789307165e-20), SC_(0.11976841560564506196590386921663196062581846490502e-16), SC_(0.17776739501953125e3), SC_(-0.133709103104e12), SC_(-0.39443298300209577370446816065183322691280635216556e-10), SC_(0.50936808729767273907694413617557038786998191426392e-20), SC_(0.6635618708750336e16), SC_(0.1165913989179818382232387584e28), SC_(-0.34306954063749667618865579754583450267091393470764e-14), SC_(0.22437814945454641629039665333729669609984304587835e-16), SC_(0.5351417507930536367833561318604895795658649149118e-20), SC_(0.1111488176928805879808e22), SC_(0.286732616424560546875e2), SC_(0.4134069531147588349995203316211700439453125e-8), SC_(0.41054204043107208572454374473593992088110102327675e-6), SC_(0.8022529108706313066889313475107958772980509820627e-20), SC_(0.15554543059386610748262569359212648123502731323242e-12), SC_(0.1855688655151038464e19), SC_(0.1087248221077504e16), SC_(0.66334090751607720724294127497788518724565684316049e-22), + SC_(0.18673345450030310831705831391483241255002667458029e-19), SC_(0.16140768350376832622251404282443946390469477480956e-24), SC_(0.35751782069791464758326094786154009108614104661683e-22), SC_(-0.33426269598555897417832754399315969839889817194489e-20), SC_(-0.19501514976027199276075970653574148237237843356341e32), SC_(0.19864569542637633100393889035509276119739752175519e-19), SC_(0.6342787072e10), SC_(0.22447013671875e5), SC_(0.14114877442359296e17), SC_(0.20445336558477412082751152439615217306965941003306e-19), + SC_(0.21109476364529939751075359117074570214356299402425e-19), SC_(0.8756801014807582267041677127782781970980266472715e-25), SC_(0.19232578752860259808180970650021732008816410797181e-22), SC_(-0.128383655936e12), SC_(-0.77558438573112714615319148185209517084593174787914e0), + SC_(0.44545595303495604738852208133448318250202646595426e-19), SC_(0.19550562611967553516834072979690972715616226196289e-12), SC_(0.18799281123449514653822470500968856016443808698568e-21), SC_(-0.1141028984375e6), SC_(-0.53341932867975116606223201954549855219434719308155e3), SC_(0.48988976909583188869227858043553514022505623870529e-19), SC_(0.20838384443777613341808319091796875e-4), SC_(0.15278292e8), SC_(-0.4315188e7), SC_(-0.24580064922065191728605791899716827200685867274697e-8), SC_(0.59220483766176692878700381014733800100202643079683e-19), SC_(0.170295034922225631232e22), SC_(0.11738591232e12), SC_(0.357994224542412808887092978693544864654541015625e-10), SC_(0.5570355258929566719050106981498655214839625337254e-10), + SC_(0.66987496460547948918295480848217327007887433865108e-19), SC_(0.11343607001819294972258894083203810348232010076636e-27), SC_(0.865987129509449005126953125e-2), SC_(-0.23070771996939919337765994496e30), SC_(-0.29465261373203272668937214694852909417347758078722e-26), SC_(0.68420748430509458628227944729238707566310040419921e-19), SC_(0.2356455859375e5), SC_(0.4488765904371071685042063337256479371717432513833e-17), SC_(0.89581251356119876105976700758048657674355763798346e-27), SC_(0.34038212894914778555701304844009055705590488570062e18), SC_(0.765393322722613581412295230554931890765146818012e-19), SC_(0.50400686450302600860595703125e-2), SC_(0.9949530111868928e16), SC_(-0.5452569894273144049369088e25), SC_(-0.12383048869732072603641424387510064110009830509567e-30), + SC_(0.77559465687389450662322107690749284358844306552783e-19), SC_(0.44456448e10), SC_(0.205457109375e5), SC_(0.261885425731146261350229999616e30), SC_(0.1293487284646541813888039639818870721733813583309e-32), + SC_(0.79555820859346433961923283038897292129831839702092e-19), SC_(0.504025510381092864e18), SC_(0.77791009521484375e3), SC_(0.8640740297015296e16), SC_(0.76745730373666138656321456001439798928453136369171e-23), SC_(0.855830077692287144095867031448610084964911948191e-19), SC_(0.1095691093411232941434718668460845947265625e-7), SC_(0.25149885914288461208343505859375e-4), SC_(-0.8668230625e6), SC_(-0.362730674616372320893362617779845806049778536958e-2), + SC_(0.99617012202940202076213412410443659439351904438809e-19), SC_(0.2204087310138598244745216e25), SC_(0.3795443262788467109203338623046875e-4), SC_(-0.2224682373046875e4), SC_(-0.87529286389859507044137773984211311214700340581471e-14), + SC_(0.1032382861400751813967549509395982276771519536851e-18), SC_(0.30157555913250196121325186204842339066090062260628e-16), SC_(0.20796434360740761083994803121731046293210742881286e-24), SC_(0.32496745967566525915920276830365278017691450795912e-25), SC_(0.64064009565442704092650504115089752656148580147586e31), + SC_(0.13074397374967548717431355988216612473706845776178e-18), SC_(0.31626431251652320497669279575347900390625e-7), SC_(0.422266894020140171051025390625e-3), SC_(-0.280081402699882469066092314624e30), SC_(-0.31984168666076823129750768694111356366386582599393e-26), SC_(0.15449182507288713721863232866682302812932903179899e-18), SC_(0.133974442650952596522984094917774200439453125e-8), SC_(0.38424594277974055189327670217216623149703025319468e-21), SC_(0.652243981047462284550420008599758148193359375e-9), SC_(0.14479638868766345890465563414817157313496228971606e16), + SC_(0.1581975683677305589199413998757748345269646961242e-18), SC_(0.404438793566441745497286319732666015625e-6), SC_(0.18932908561168947981796090163086887514509726315737e-16), SC_(0.25596845038945945071386624e26), SC_(0.24310538829610847936752095264592812420662326309052e-20), + SC_(0.16677509527778160624086499150275919589603290660307e-18), SC_(0.50082130538252574789989333416135111329551950562359e-29), SC_(0.27393523857242675896004658903787332135948417999316e-20), SC_(0.69138784823058101751085119520898181200152521341806e-20), SC_(0.1382336801632085910261950405113206345876694297117e31), + SC_(0.18734172628738795211714510124956234449200564995408e-18), SC_(0.63174750153383030237819184549152851104736328125e-10), SC_(0.11239923698099365924906019645674659390465692499866e-29), SC_(-0.12493665475495438732114079503739715479396785516308e-25), SC_(0.71979531950769210186332161695236496779160461744228e26), + SC_(0.20581069188704517551523841788208013525718342862092e-18), SC_(0.79597584432992412060764095271814255738718202337623e-18), SC_(0.75974287571611502022633594876763844865744160884209e-30), SC_(0.353654027201034584064e22), SC_(0.20361005699679254438574738763998872382712274825469e-11), SC_(0.20609658618625881570536584851127681616844711243175e-18), SC_(0.827880703125e5), SC_(0.1740015537225728e16), SC_(0.53243269389726412383234783131345790874178192098043e-20), SC_(0.14027726109006742105342456541540514539299993472965e1), + SC_(0.21615742888037643762213775404379401123833304154687e-18), SC_(0.22357367204300679512099339784098384888095444001863e-27), SC_(0.22890954226473139536401912863539109821431338787079e-15), SC_(-0.18357486856244363992582619479060346279197801777627e-19), SC_(-0.87018025858581000318689585970087625982626945817888e27), SC_(0.22622955483503716568203720238550147314526839181781e-18), SC_(0.85913526136044117637383110697157917456934228539467e-16), SC_(0.6036870791327383552e20), SC_(0.5586347360256e13), SC_(0.23372306259719240017221166207655887209227135601964e-20), + SC_(0.22715338633228818618429436723693548572100553428754e-18), SC_(0.20493523314995077838798848e26), SC_(0.89597177734375e4), SC_(-0.17672784097547503280980010775813582313276128843427e-17), SC_(0.1741283841009750289852896743470165528364338969169e-5), SC_(0.30420727664434581210352358596193944606511649908498e-18), SC_(0.28656053473241627216339111328125e-4), SC_(0.94969911521617292598785838378394608128019171999767e-19), SC_(0.29194834483964315907655873161274939775466918945313e-11), SC_(0.15909034235537062513712744621803951925069372793574e16), SC_(0.33246523978462334755767677157978212676425755489618e-18), SC_(0.364377344204408356864e21), SC_(0.47603821186323272660218327918596801064457513241734e-24), SC_(0.25814216e9), SC_(0.19269257441096919530694670379923173139739144262915e-16), SC_(0.38630216070566644236610820764554752315689256647602e-18), SC_(0.13632195402405625179543049996233605725137749686837e-16), SC_(0.246089305877685546875e2), SC_(0.1399240064e10), SC_(0.96160176358544680912132367246233006471552136890136e-8), SC_(0.5065993732313771067901500902430633743733778828755e-18), SC_(0.1568245533434264871175400912761688232421875e-11), SC_(0.164856496509546701645376742817461490631103515625e-11), SC_(0.11049377558747242034087321371771395206451416015625e-10), SC_(0.24333145548513535763032420069717436356230077382352e18), + SC_(0.56496203192824509654683656084683818221492401789874e-18), SC_(0.3989972265625e5), SC_(0.10386388025240962199904871336025857786466985999141e-18), SC_(-0.1956300555677366237528064e25), SC_(-0.20985760511703309654551952723929281351715000626057e-24), + SC_(0.6105958285639939581856830766448673841750860447064e-18), SC_(0.44425352285770713933743536472320556640625e-10), SC_(0.43310928958817385137081146240234375e-5), SC_(0.3331700224e10), SC_(0.30849153168165211014337299028261182393629600707e-5), + SC_(0.74351356833997344638427159924098930332547752186656e-18), SC_(0.25260515625e6), SC_(0.20705711806766271231819329983944982104260290611819e-21), SC_(-0.97036929889871325401618645800638773835089523345232e-18), SC_(-0.44270929631699238220397253704106482840103445821599e16), + SC_(0.75868695590633990953827528458397466692986199632287e-18), SC_(0.930611462144e12), SC_(0.18147922618313051311153033283257685840533790511131e-24), SC_(-0.4468824462890625e3), SC_(-0.17122605983975616494910436179136666067164567252951e-6), SC_(0.92091661616996020185937736612924453538653324358165e-18), SC_(0.13634373630111440434120595455169677734375e-8), SC_(0.114086150930432e15), SC_(-0.177961433038848e16), SC_(-0.43742116361186372707057103765791006102104098116996e-20), SC_(0.17267258802243381463374302664526283024315489456058e-17), SC_(0.106269702911376953125e2), SC_(0.1371270220231999488e19), SC_(-0.2610413929460264625959098339080810546875e-7), SC_(-0.20151384519726350695045106393341169054390534680208e-9), + SC_(0.18472254159580004528743227276699201411247486248612e-17), SC_(0.24041662e8), SC_(0.8549778129918195190839469432830810546875e-7), SC_(-0.9977238732972182333469390869140625e-5), SC_(-0.18777158846153662023863432189916058865485224119003e3), SC_(0.18755437374336002170666266863907623019258608110249e-17), SC_(0.776579078820560653184656985104084014892578125e-9), SC_(0.1157078125e4), SC_(0.41412740422322618368e20), SC_(0.32798850146389354885754724510156799518229419256579e-19), SC_(0.22468750405760049766485005051652734664457966573536e-17), SC_(0.20721947294077835977077484130859375e-4), SC_(0.33333534375e6), SC_(0.135856362248887307941913604736328125e-4), SC_(0.33096158156088779129127640067482846233624776319543e3), + SC_(0.23677507366932257725205407394852841207466553896666e-17), SC_(0.19413969366297906845036399083384570651844569511013e-19), SC_(0.9869267940521240234375e0), SC_(-0.527360038883932767848677507072e30), SC_(-0.12360334357574898107848087376524755592649555106606e-27), + SC_(0.26571661369793510632029802376319338463872554711998e-17), SC_(0.8155011072e10), SC_(0.1562779305782940357831823844548056582932221703075e-23), SC_(-0.158908193270690389908850193023681640625e-6), SC_(-0.27385391577969229624957512379090687794348733507394e4), + SC_(0.29343589097392396787046010830923847834128537215292e-17), SC_(0.988066171875e5), SC_(0.24754359063412526643006257824154938047573476511687e-24), SC_(-0.67044108778078208e17), SC_(-0.38893042804795196357465478313524510719593882749798e-17), SC_(0.32174132911148321865672794483970164947095327079296e-17), SC_(0.716792047023773193359375e-2), SC_(0.1701292973166346200741827487945556640625e-6), SC_(0.1377628393306462584178007091395556926727294921875e-10), SC_(0.36139061055708614171982246452283892649682331582451e11), + SC_(0.33799056846205146343036125611281050851175677962601e-17), SC_(0.940699322882210253737866878509521484375e-7), SC_(0.28067035992549749107627877552034277377768375726476e-29), SC_(-0.162116563320159912109375e1), SC_(-0.8091523759270728825492872210435631725041209007519e5), + SC_(0.34736920428572363268512890321915165259269997477531e-17), SC_(0.2535458095371723175048828125e-1), SC_(0.26639236355453407782438750529430338221052338559396e-30), SC_(0.12926337963453675344812564506800251945041208695431e-25), SC_(0.13925478141182229277143817958943446485388146767132e24), + SC_(0.46574007343104197780350728130827064887853339314461e-17), SC_(0.138342221871913237479424e26), SC_(0.105195244140625e5), SC_(-0.6631563720703125e3), SC_(-0.73605758407512432062994970478816333202168423203793e-16), + SC_(0.48236623830723532346288762173713848824263550341129e-17), SC_(0.1277736968994140625e3), SC_(0.95177386513821491537123975490430893842130899429321e-15), SC_(-0.69188577160303328973482915717587071687158308069902e-30), SC_(0.60363020633141073895228450454658582983021080949361e17), + SC_(0.52655215867828667928533109554578572897298727184534e-17), SC_(0.13102694856934221302627057835335012189043046859638e-22), SC_(0.557648090759990083584e22), SC_(-0.82892526176436831519822590053081512451171875e-9), SC_(-0.49088957920041958614658255603315707964163798177224e0), + SC_(0.55920763625968573348528831146175832600420108065009e-17), SC_(0.4486362300416e13), SC_(0.15860614776611328125e2), SC_(0.67221050854803507997731193412960237765219062566757e-16), SC_(0.57906219363989289634942989085109401080228066042955e2), + SC_(0.55959876861233143262135125706180360793950967490673e-17), SC_(0.95295438343517395336428519424e29), SC_(0.963892161962576210498809814453125e-4), SC_(0.27210720655868048112324686371721327304840087890625e-12), SC_(0.29720419314845298882214745109837232793968747939632e-5), SC_(0.65166045527188006246692084100224917619925690814853e-17), SC_(0.143673929642318398691713809967041015625e-6), SC_(0.16637075914752e15), SC_(-0.24076418430271488e17), SC_(-0.2475925633548439017994534719021379048651154628174e-21), SC_(0.68176019291467402705982786548233320900180842727423e-17), SC_(0.254574008285999298095703125e-1), SC_(0.2752869427204132080078125e0), SC_(0.107289657733604314756153344e28), SC_(0.13935903209016660805915740073905015544222859166445e-25), + SC_(0.80231539790356115235923917250460135619505308568478e-17), SC_(0.48408881335894016e17), SC_(0.27153925038874149322509765625e-2), SC_(-0.337505643256008625030517578125e-2), SC_(-0.28880597171948110891286910628894512386618556229753e-5), SC_(0.80878494291046089240994343416701894966536201536655e-17), SC_(0.1615060552761815478491414528e29), SC_(0.4250650378642010683736064e25), SC_(0.550465557233664e15), SC_(0.7665682204462440903547624951783326488583724992224e-33), SC_(0.10241893091461084678650897417107046294404426589608e-16), SC_(0.6510811857879161834716796875e-2), SC_(0.33316731575161268994048e23), SC_(0.18685794677734375e4), SC_(0.61366725169065281180715385638412540622056890839468e-13), SC_(0.12692866469583270565540250585101489377848338335752e-16), SC_(0.195883875046228472335595208704e30), SC_(0.15639441e8), SC_(0.309064334791671808e19), SC_(0.30041981663937451991164678003672469797594750518722e-31), + SC_(0.13036512864804138041871853226361110955622280016541e-16), SC_(0.124515782754304e15), SC_(0.21949353142328154042672849755035713315010070800781e-12), SC_(-0.4362470948864e13), SC_(-0.18391679664039406576787168709927928959902260107376e-17), SC_(0.20065922661601206578897704790875877733924426138401e-16), SC_(0.45365798223651683691859393121603716281242668628693e-15), SC_(0.160435796715319156646728515625e-3), SC_(0.100037578913478606848e22), SC_(0.34309298342647602644365714826276998591146823420685e-17), + SC_(0.24715665357800610426718818102287400506611447781324e-16), SC_(0.15454139158925192518959104e26), SC_(0.1653589118287872e16), SC_(-0.2871475982666015625e2), SC_(-0.45825038360031330054102253640951199565393489630838e-27), SC_(0.25599855258170792768942364281414825200045015662909e-16), SC_(0.301153981126844882965087890625e-2), SC_(0.1650323114690053222170624e25), SC_(-0.4537919762181985561255714856088161468505859375e-9), SC_(-0.30097461902825564961699519247715738621951722883131e-9), + SC_(0.26924719012433700180732254469972986044012941420078e-16), SC_(0.41597107766322926041685503761868858418893069028854e-15), SC_(0.29144378043404386068337883462526366473710481841408e-20), SC_(-0.370274230861824e16), SC_(-0.11020218800329703103725212756492238562111267289754e-6), + SC_(0.27022364375023134885640124780437076879024971276522e-16), SC_(0.27506543358959030582888269221280574638246675400223e-29), SC_(0.10302131894484992e19), SC_(-0.109015556161536e15), SC_(-0.97414021009427756192024172486880966682042486122486e-21), + SC_(0.29292129777895166658878423060485829410026781260967e-16), SC_(0.3623176299517048782848e23), SC_(0.17793491421051038908068830934894322126638144254684e-15), SC_(-0.4787837861888e13), SC_(-0.10890581223892275765737490047081064660397125838898e-21), + SC_(0.36988549069333557356951958094981591784744523465633e-16), SC_(0.237869296e9), SC_(0.4375164244540203306430662971835871692327677107354e-28), SC_(-0.2537191845476627349853515625e-2), SC_(-0.12743885591175912587472375525250395917678182573964e1), + SC_(0.40798337829960889676546298421300207337480969727039e-16), SC_(0.1173381609915570272075776e25), SC_(0.63968165934984593408e20), SC_(-0.43809122158741115469526505885267337117583430483592e-22), SC_(0.41013278664791662351936843798955489687158902263061e-12), + SC_(0.4191901866745998263101558034549043441074900329113e-16), SC_(0.10302939847848110674084082249990501622960437089205e-16), SC_(0.2788808e8), SC_(-0.1267284457790898176e20), SC_(-0.12735703951375488492372016599292209320315586877608e-20), + SC_(0.64434140404769448852440039132716265157796442508698e-16), SC_(0.29474087059497833251953125e-2), SC_(0.831660695865821253391914069652557373046875e-8), SC_(-0.361036993563175201416015625e-1), SC_(-0.11781973232364219372724150746716878192145154846968e5), + SC_(0.65862403389962709829644205150600555498385801911354e-16), SC_(0.12589836710231217578946995640063576121650892880588e-24), SC_(0.15267659170852906972300245141565246870264040027036e-29), SC_(0.7304354260722909184e19), SC_(0.57797047912895605829251131842292150283514788749667e-9), SC_(0.76081326502993809482791598419737510994309559464455e-16), SC_(0.25848253930055992144687593281560111790895462036133e-13), SC_(0.1193103496916592121124267578125e-2), SC_(0.900681217081344e15), SC_(0.13125180019368326604183089646272331872983702071315e-11), + SC_(0.80672926673936861015346000414183436078019440174103e-16), SC_(0.827727653086185455322265625e-2), SC_(0.35112936003017073972307015159908215318207425070796e-21), SC_(0.29399680529072325769822208e26), SC_(0.19644856918418534438823676999423197611328855663516e-22), + SC_(0.17055543082513291604229710429763144929893314838409e-15), SC_(0.6943710148334503173828125e-1), SC_(0.61840874921367523613102701318666731822304427623749e-15), SC_(-0.65621912475964907199619112761115127860814364053887e-27), SC_(0.47019236372761355486203476899973081384386480181909e18), SC_(0.31185572008064158661122533544585166964679956436157e-15), SC_(0.103208861696e12), SC_(0.608565546572208404541015625e-1), SC_(0.111519998744668930048e22), SC_(0.12950466367514007286341944930272383433997736714818e-24), SC_(0.37240330274649388175162156855435569013934582471848e-15), SC_(0.39033365298660194220303765177959576249122619628906e-12), SC_(0.49610075975644457590973956939706113189458847045898e-14), SC_(0.2721116561243963616334440303035080432891845703125e-10), SC_(0.55780152222755682040886430039080572919535793869307e18), SC_(0.42470234622308579170574249772585062601137906312943e-15), SC_(0.273214027401991188526153564453125e-6), SC_(0.2784369140625e5), SC_(-0.122955464704e12), SC_(-0.2055859842856675244661943031533336289283609892675e-11), @@ -111,10 +244,20 @@ SC_(0.45917973708010841743520913382781145628541707992554e-15), SC_(0.19586950889472e14), SC_(0.369513875501284851712e21), SC_(0.32082223828590183491348161974631250424082394394343e-26), SC_(0.22276248931728079203626923790939253098909187196436e-7), SC_(0.92657114094649205629505850367877428652718663215637e-15), SC_(0.32666126748015500425026402808725833892822265625e-10), SC_(0.62660384591791979530528422515089914668351411819458e-14), SC_(0.1008363437193793288315646350383758544921875e-7), SC_(0.27351103948219950394607048822020994368305988636168e15), SC_(0.9461294493359490714867732208404049742966890335083e-15), SC_(0.322404707098211673610421712510287761688232421875e-10), SC_(0.431042727657187209984457310208e30), SC_(-0.25939472834579646587371826171875e-3), SC_(-0.1521655516615116593467268230648389654033527386922e-9), + SC_(0.10427554739478122301787887948876232258044183254242e-14), SC_(0.113768251392e12), SC_(0.331932704e9), SC_(-0.146179646215493039614328832e27), SC_(-0.26207104372812352384186903012531171643148694235604e-30), + SC_(0.108844972507862952984525328758991236099973320961e-14), SC_(0.8827765185515090706758201122283935546875e-7), SC_(0.12374138095446693172739117808946185395058137146407e-19), SC_(0.666504180067635268759322624e28), SC_(0.1588943443495131901438841904021519421877511484431e-22), SC_(0.11863620751000167503896864928947252337820827960968e-14), SC_(0.10501863e8), SC_(0.297662976884736e16), SC_(0.38545965e7), SC_(0.99936758376889422217427377170359816383144088083729e-14), SC_(0.1327809695148788465823841420387907419353723526001e-14), SC_(0.54374770505732477601443242143375300656771287322044e-16), SC_(0.4562802734375e3), SC_(0.46168245925155835247976908741326032343734780941558e-30), SC_(0.8733391830285032647133058752737690971215445335428e16), + SC_(0.1521184564149866656757037475244942470453679561615e-14), SC_(0.78043131116246277084876840218763405232493823859841e-18), SC_(0.8230711687937861353472e22), SC_(-0.261837272793138107705720832e27), SC_(-0.55131649903407614493273709184047126007708292640109e-35), + SC_(0.15513160671825438827187149115616193739697337150574e-14), SC_(0.128848231629674512384e21), SC_(0.453911488373981184e18), SC_(-0.272230816057921281982464e24), SC_(-0.40900195710569414677231635149406992987060532636958e-32), + SC_(0.27307124609616964874825306708316929871216416358948e-14), SC_(0.182371203125e6), SC_(0.21274221015747239239477678037285035550496559153544e-20), SC_(-0.5080252838134765625e2), SC_(-0.26859329265194173738148314393473631299909977523176e-2), SC_(0.3175585599804442958615791070542400120757520198822e-14), SC_(0.312386333942413330078125e0), SC_(0.19804426484300995555480765571588347428999554722395e-20), SC_(0.204206969528978780572352512e27), SC_(0.4598628270598817503003423168856717737399091724828e-24), SC_(0.3191302296140746501407203794542510877363383769989e-14), SC_(0.10381816564935609401309940371061152700193908060555e-22), SC_(0.10607265933659792978005498298443853855133056640625e-11), SC_(0.16962918701171875e4), SC_(0.73699415925533608404039108584957523332422130169253e4), + SC_(0.46327183795158866780328210666084487456828355789185e-14), SC_(0.18185955328e11), SC_(0.451266796875e4), SC_(-0.251544139898814464e18), SC_(-0.79514006265528568085300195845574492625676786528676e-21), + SC_(0.49741023034125236151892224256698682438582181930542e-14), SC_(0.6392963047829880451899953186511993408203125e-8), SC_(0.10878475189208984375e2), SC_(0.59239240047379667314374328772998870027484841910281e-26), SC_(0.23259804734945165563893593397187160915487194491047e13), + SC_(0.10676147262794234704674778413391322828829288482666e-13), SC_(0.43214794983836329352138753913566138198376620493946e-21), SC_(0.13713993780991436762807365477498389161326031171484e-19), SC_(0.459039679325405184e18), SC_(0.50634806424548958080863973931752282050795937648579e-9), + SC_(0.11175146230483004594624674155056709423661231994629e-13), SC_(0.13292268387650598312620966562043814396254504117678e-22), SC_(0.573736336217933740044827573001384735107421875e-9), SC_(-0.159210900019246537340222857892513275146484375e-8), SC_(-0.51263188177194923566692827645827740096413880118868e15), + SC_(0.11434902436285691862405400343050132505595684051514e-13), SC_(0.11365004815161228179931640625e-1), SC_(0.27400035858154296875e2), SC_(0.203586085846411726815232e24), SC_(0.14865595781712049736623538981536601361501882271293e-22), SC_(0.14319996604521614824712116842420073226094245910645e-13), SC_(0.502013623046875e4), SC_(0.439923968e9), SC_(0.77103273938046509121536e23), SC_(0.13127867694451221772529352791773418912044804650146e-25), SC_(0.14452686009774895481427847698796540498733520507813e-13), SC_(0.669478515625e5), SC_(0.10465634918212890625e3), SC_(0.449877052233205176889896392822265625e-5), SC_(0.83920859706880014597252065499174465623352445982047e0), SC_(0.15741248433312655941040958396115456707775592803955e-13), SC_(0.55817784918415767502848e23), SC_(0.229345916576958775296e21), SC_(0.1422582611968e13), SC_(0.11042022857014238245111043582622863593162051496085e-26), @@ -122,179 +265,354 @@ SC_(0.20907895301679711719256005153511068783700466156006e-13), SC_(0.893892793119022144310292787849903106689453125e-9), SC_(0.40748735773377120494842529296875e-3), SC_(-0.103842619771060224e19), SC_(-0.11301079598625095571338471461207721603886044979147e-14), SC_(0.33361036372650532122463573614368215203285217285156e-13), SC_(0.13796345e8), SC_(0.198710050816e12), SC_(0.45089474962351026470181957815863910479792231456031e-22), SC_(0.10816863888512989997095493619370003783591021195154e0), SC_(0.39424006729538510485078006695403018966317176818848e-13), SC_(0.57692237126522896384e20), SC_(0.63429242800339125096797943115234375e-5), SC_(0.2403500367487817497607929856e29), SC_(0.4949809604390674467680517177597868641410256650499e-36), + SC_(0.64787469822562976373703236276924144476652145385742e-13), SC_(0.901123595574664186118012928e27), SC_(0.52348109979648e14), SC_(-0.92166092189216471698798669434216327954012968124006e-30), SC_(0.1090156365125808257716087226492704191375893460149e-11), + SC_(0.76942494259615856755374352360377088189125061035156e-13), SC_(0.66135648510840369201714235709365829468252447054244e-26), SC_(0.14856115097057909918421003681032743770629167556763e-14), SC_(-0.7298071485930166476255264768e28), SC_(-0.49962292172186675708556937635053531938468515532145e-20), SC_(0.85809811133878005628972118756792042404413223266602e-13), SC_(0.231948544e9), SC_(0.35943559868918673050330880869296379387378692626953e-12), SC_(0.33152778065911218176e20), SC_(0.14822334045625801548341774563889185100510953334425e-21), + SC_(0.89437253447417069951441703778982628136873245239258e-13), SC_(0.6810400963385563236916002816e29), SC_(0.3797301248e10), SC_(0.126497719300441316942690648064e30), SC_(0.20671010726926483227997444653788556014049212414485e-41), SC_(0.10487268063512356075506204433622770011425018310547e-12), SC_(0.63315844405084463121122798948200730173070530440449e-26), SC_(0.2820757454293782533282725888e28), SC_(0.1287141702694919577644258606866425886927629562706e-20), SC_(0.7625540806887901305440815493898234863502803377371e4), + SC_(0.12564036996117605715639342633949127048254013061523e-12), SC_(0.9483047886198053293833322496e28), SC_(0.12390550980849227670011272750549835564015666022897e-16), SC_(-0.273697622787949512712657451629638671875e-6), SC_(-0.89824853650459102430566076692966043038795156299974e-6), + SC_(0.13318344907822798894869720243150368332862854003906e-12), SC_(0.648778863965304708472103811800479888916015625e-9), SC_(0.15799224663005841208176941239949009343490615719929e-18), SC_(0.438925457000732421875e1), SC_(0.15110069213515929983115826328865961997601215547368e6), SC_(0.15615465734711286849289990641409531235694885253906e-12), SC_(0.24870398826241113884932236596184834676037667122728e-20), SC_(0.12784377253954858878954355810853016350847610738128e-17), SC_(0.276238139392e12), SC_(0.19786554171476684761944278128724044945577023531761e-3), SC_(0.15995684594580228399252064264146611094474792480469e-12), SC_(0.170420291286861873152e22), SC_(0.286204729096914532827136e24), SC_(-0.8279771890329357120208442211151123046875e-7), SC_(0.65615234452566227821219269595685128171534111213131e-21), SC_(0.18399165654589544338648465782171115279197692871094e-12), SC_(0.59311699931923680645911412736e29), SC_(0.33036756992e11), SC_(0.93300527026496382632103632204234600067138671875e-10), SC_(0.10720127778005331975224440744322785134582808832009e-13), SC_(0.29870528793496387010009129880927503108978271484375e-12), SC_(0.2262512535863296e17), SC_(0.9036469625899950631026688e26), SC_(-0.21871623992919921875e1), SC_(0.5103356109347619113331878509059276755907702474308e-27), SC_(0.30400416342266090019563762325560674071311950683594e-12), SC_(0.1399889375e6), SC_(0.3335612032771822899429376e25), SC_(0.21259690531047524889030064798589592101052403450012e-15), SC_(0.34455005796404051985506726831103545959478382478102e-7), + SC_(0.87205828495917625531319572473876178264617919921875e-12), SC_(0.17828132250559781516117823566813499739247164401987e-29), SC_(0.10616928431838319469314500884810081871023612620775e-18), SC_(-0.212311297277034496e19), SC_(-0.14143132703507446245366882656756991039691353152788e-10), SC_(0.11046793904970209077021081611746922135353088378906e-11), SC_(0.395945312256e13), SC_(0.516478977703936e15), SC_(0.33489388749831173392049517199361798372968246351178e-25), SC_(0.10261044155333465315175909578459653562547787407513e-5), + SC_(0.14650218971984374505268533539492636919021606445313e-11), SC_(0.827417719457900920832e21), SC_(0.99161693125401212389746774533705320209264755249023e-13), SC_(-0.4229425548605760995328e22), SC_(-0.95402427001540155956102931856707223924536036302336e-30), SC_(0.15171425313958986080820068309549242258071899414063e-11), SC_(0.3374702880859375e4), SC_(0.8743139992458493952e19), SC_(-0.6686860561370849609375e1), SC_(-0.3002438908822274925277408606109986399523433785326e-12), SC_(0.24519117205329399311608540301676839590072631835938e-11), SC_(0.37266163191353868233690604938601609319448471069336e-13), SC_(0.17164059241625931492502552475279821268816515811295e-22), SC_(-0.32801553809475356226630220035122305463539532643935e-24), SC_(0.63515296008495797097992261176651053432804471005576e25), + SC_(0.27182867502056895503415034909266978502273559570313e-11), SC_(0.9611178584064393216e19), SC_(0.43522266445974666852999678045371003546350584579075e-29), SC_(-0.2494812472325268841899095431527758059964128278807e-20), SC_(0.13480851526964308079121034950043024547154027314665e3), SC_(0.29120870211757354795167884731199592351913452148438e-11), SC_(0.3887373507426089705638133735808321250759789222684e-21), SC_(0.6547148956315140821970999240875244140625e-7), SC_(0.12526326011789939681625675755603012304041296576251e-24), SC_(0.16426629492670114906905094296695909709456996976342e22), SC_(0.29600787966599373390863547683693468570709228515625e-11), SC_(0.3973922277237145706452353958928330746047663524223e-21), SC_(0.22686514883719433640502094462476634362246841192245e-15), SC_(0.2356390072724299979828321838226656836923211812973e-15), SC_(0.74826530999192537579310495705584399994314811536455e22), + SC_(0.33891997281570995781407873437274247407913208007813e-11), SC_(0.15147392863409494812524544e26), SC_(0.1021753437413508436293341219425201416015625e-7), SC_(-0.163353502834470571474944e24), SC_(-0.1727660327837803015143950138748892976048780042624e-33), + SC_(0.40045809550359745543346434715203940868377685546875e-11), SC_(0.15545443197401612718091273500581415284438335788764e-21), SC_(0.53111681546452992e17), SC_(0.84488384e9), SC_(0.37119938685395575343200714957460497696569465138723e-15), SC_(0.63733484635675186069647679687477648258209228515625e-11), SC_(0.14835896334213958139303302711486596921615075148304e-29), SC_(0.149358570575714111328125e1), SC_(0.1017402710753804288e19), SC_(0.34927848403310092955516711143449217869038874100458e-16), + SC_(0.883858437827900189631691318936645984649658203125e-11), SC_(0.2675533852189090413285581307472793475995567477404e-29), SC_(0.89227636509894153737931787873094435781240463256836e-13), SC_(-0.258020797841408e15), SC_(-0.14434887711525503924559220378358629382677384522122e-7), SC_(0.10552792147067169281626775045879185199737548828125e-10), SC_(0.2806226621032692492008209228515625e-4), SC_(0.5067019649024e13), SC_(0.310628116130828857421875e0), SC_(0.22948470574146532069261551613760894946094642379269e-4), SC_(0.2587575986812140627080225385725498199462890625e-10), SC_(0.133434101007878780364990234375e-2), SC_(0.18789219970703125e4), SC_(0.8687275e7), SC_(0.67256865003055763773290668910027936489380689481087e-7), + SC_(0.2844938000456931348480793531052768230438232421875e-10), SC_(0.198093310108123529216e21), SC_(0.2637005062144e13), SC_(-0.827058865837670964538119733333587646484375e-9), SC_(0.8276142376917439023807843720956102108378867803271e-12), SC_(0.287181702030014918136657797731459140777587890625e-10), SC_(0.20763506912126383440731014865551860154591068408081e-22), SC_(0.15903788229459968e17), SC_(0.2465913695459676091559231281280517578125e-7), SC_(0.39291472710261624671330092591045600800641927445849e1), SC_(0.429480374875002013368430198170244693756103515625e-10), SC_(0.9581417214429984980992e22), SC_(0.60548121100288e14), SC_(0.44916436473898050918918476221330306438783187827912e-25), SC_(0.10782263530497046514179141587685299463453106251202e-10), + SC_(0.475504878527654994968543178401887416839599609375e-10), SC_(0.458113936316282949337088e24), SC_(0.2879962761326293474439808051101863384246826171875e-10), SC_(0.38806094851569314955264e24), SC_(0.44407680593672734398585252161238633184776723369752e-33), SC_(0.48257405016460808155898121185600757598876953125e-10), SC_(0.1253181934356689453125e1), SC_(0.5335487261327490936842747904e28), SC_(0.2843008728868403019776e22), SC_(0.36520008616040154920452563084694127248774062394094e-33), SC_(0.5260512858651367196216597221791744232177734375e-10), SC_(0.211335212615120842253257408512e30), SC_(0.253812432e9), SC_(0.32648756173466563987677623601222492988327417151595e-20), SC_(0.70282134149192367841270463560033057613589565263926e-12), SC_(0.66436224577248736977708176709711551666259765625e-10), SC_(0.1287645825073152e16), SC_(0.1319026512921362432e19), SC_(0.2489169500768184661865234375e-1), SC_(0.7247273265118998238267296449606572590546815405985e-15), SC_(0.8522828276458227492184960283339023590087890625e-10), SC_(0.55899994919408890758916186314309015870094299316406e-12), SC_(0.97513915318293903280056494908833997214969713240862e-17), SC_(0.24821585375603486028032247491330840316603456585653e-21), SC_(0.83208726697417671103165106753795798717568056161077e21), + SC_(0.109099930478695483770934515632688999176025390625e-9), SC_(0.270692863967232e15), SC_(0.29007003659667536871391374330266324510496644961677e-21), SC_(0.662604696117341518402099609375e-3), SC_(0.23398784686072748897166785500571130408922056113099e-2), SC_(0.111468466401642984919817536137998104095458984375e-9), SC_(0.68559452379320356268932457055598206352442502975464e-14), SC_(0.322791595458984375e3), SC_(0.83594068023309085237182447514214800321497023105621e-15), SC_(0.34775042288691702425388939755810663167943433025528e12), SC_(0.1237108193663516431115567684173583984375e-9), SC_(0.393077021751861389033472e24), SC_(0.85326592849126535957377352366076878413243909232699e-28), SC_(0.40366524684497251396209094309597276151180267333984e-12), SC_(0.10265993706475554621328701844340119184273235491136e1), SC_(0.1776234992423297853747499175369739532470703125e-9), SC_(0.648145680315792560577392578125e-3), SC_(0.190692115536150528e18), SC_(0.30884640683662492599559357131511205807328224182129e-13), SC_(0.10167409595598760347845694686063659073232295746773e0), SC_(0.34717195784850218842620961368083953857421875e-9), SC_(0.40871053623249201233388894216602693632012233138084e-16), SC_(0.59489389257909689226875975750249807283420722114897e-22), SC_(-0.183823234412017200156697072088718414306640625e-10), SC_(-0.63436985009846869656045408170236548101195232061781e17), + SC_(0.451758797037626891324180178344249725341796875e-9), SC_(0.344271373748779296875e1), SC_(0.342428213051392e16), SC_(0.1515062195912704e16), SC_(0.58743056645089248605803114478066356773725635368598e-21), + SC_(0.626809104620207335756276734173297882080078125e-9), SC_(0.1127446541470904877056e22), SC_(0.3806862878263927996158599853515625e-4), SC_(-0.55809958980228878891696818200743746701819603117656e-22), SC_(0.9088819150803773040608210209095743642460278178193e-2), SC_(0.9231155839728444334468804299831390380859375e-9), SC_(0.148210436978768456128818797878921031951904296875e-11), SC_(0.2802693296844053863329895203088462651841439310374e-20), SC_(0.11801873e8), SC_(0.38526292759511738659280361222341157245243748651719e-1), + SC_(0.21980717246350423010881058871746063232421875e-8), SC_(0.49538579618632616607953877974068745970726013183594e-12), SC_(0.294444323290692452352e21), SC_(0.218038891637768413660577792e27), SC_(0.27986670037155934324525781256123082672651258233883e-34), + SC_(0.2402602117257401914685033261775970458984375e-8), SC_(0.42540803535525434114020215409929237537767221510876e-19), SC_(0.4942538125e6), SC_(-0.19200403581726623552300118153495613667215008435463e-24), SC_(0.28901838947785414545228654421464493653202761440022e13), SC_(0.2502269946802471167757175862789154052734375e-8), SC_(0.439172573387622833251953125e-1), SC_(0.1484655421266577700334376999080632231198251247406e-14), SC_(0.217515168e9), SC_(0.64008842323926885588584314270491747993393491744903e-6), + SC_(0.27705213678785867159604094922542572021484375e-8), SC_(0.14060803910087571466647204943001270294189453125e-9), SC_(0.79591391331746227542562333034936727926833555102348e-16), SC_(0.1130919989314004038414218297758928599705541273579e-17), SC_(0.15279162108642205238638113706086141458303770987596e19), + SC_(0.29745914620349367396556772291660308837890625e-8), SC_(0.135719256064e12), SC_(0.26312211439804296018980907041482450328759995494821e-24), SC_(-0.72325931008e11), SC_(-0.26025493618765031944582661408500103876435030194882e-14), + SC_(0.3035781848126362092443741858005523681640625e-8), SC_(0.60851728009920512e17), SC_(0.22169422886076416e17), SC_(-0.771180726587772369384765625e-2), SC_(0.58356075827457693669918024467253431530422820737776e-18), SC_(0.357227936120807498809881508350372314453125e-8), SC_(0.190531306287766710738651454448699951171875e-7), SC_(0.60475637804894883005346617466102543403394520282745e-16), SC_(0.25554468064755161278679088804333119355760572943836e-18), SC_(0.16050376680749540915211619360854206253328830762671e18), + SC_(0.5805298908256872891797684133052825927734375e-8), SC_(0.396956085205078125e3), SC_(0.23182911778654921095613188825248071874636675293591e-26), SC_(-0.14757916550624509427712e23), SC_(-0.14141726889735103114725839711364436845767347042983e-21), + SC_(0.658921095464393147267401218414306640625e-8), SC_(0.36312374337780811635291334191609812561286202425848e-24), SC_(0.3520565633613824e16), SC_(-0.95283742553550204184526308849589870675345082418062e-20), SC_(0.39383218115942262166676009411857129347834260605038e5), + SC_(0.7181391925570324019645340740680694580078125e-8), SC_(0.861479942937393161628278903663158416748046875e-9), SC_(0.65218459540529447227428438016e29), SC_(-0.21721630536744498257695212828366493340581655502319e-16), SC_(0.43184695581467687921857543427535645783935321162383e-4), + SC_(0.7274625346553875715471804141998291015625e-8), SC_(0.5271569847309365286491811275482177734375e-7), SC_(0.1207270608892123232922376449582392565762489766712e-20), SC_(-0.907864838861627276855870150029659271240234375e-9), SC_(-0.18846907217766321197261291037267280508950899795828e13), + SC_(0.768561481123697376460768282413482666015625e-8), SC_(0.746742980114208784384e22), SC_(0.1620157166788452543088295936e29), SC_(0.96551501855451422117358279079493699192937583575258e-20), SC_(0.44783395055835276765234394980567707654119207248648e-19), SC_(0.1103230484744699424481950700283050537109375e-7), SC_(0.227022734375e5), SC_(0.314360886477516032755374908447265625e-5), SC_(0.230793674752e14), SC_(0.10938135963248928821050633939985227713352325798319e-13), SC_(0.116516947201716902782209217548370361328125e-7), SC_(0.113272657281024e15), SC_(0.5554756105947418984448e22), SC_(-0.22779259015063853832005124830373254951609851559624e-18), SC_(0.45626261425943381204356625680683410530260337151658e-12), SC_(0.1463924537148386662011034786701202392578125e-7), SC_(0.2235086485323776e16), SC_(0.92567377136320512e17), SC_(-0.502123015962624e16), SC_(-0.2041653512744934342005763872578190276494619329949e-23), SC_(0.153310129036299258586950600147247314453125e-7), SC_(0.15191832576e11), SC_(0.64654147584e12), SC_(-0.109413349622840760752970661888e30), SC_(-0.11168340111963906937898650420056211408951891171444e-33), + SC_(0.284060650557194094290025532245635986328125e-7), SC_(0.65708584402419712e17), SC_(0.79746025e7), SC_(-0.103757918404631337107456e24), SC_(-0.14440448978129240797306397158111690006375043493078e-29), + SC_(0.46037570200496702454984188079833984375e-7), SC_(0.2497748291015625e4), SC_(0.37057185207840757381302088102614789022482000291348e-16), SC_(-0.88649561934381511385527829816055600531399250030518e-14), SC_(0.19027270633146013510916093701048426045586392144417e9), SC_(0.48485627957006727228872478008270263671875e-7), SC_(0.21549719333954656317750013417980168338661728019701e-26), SC_(0.8410253024559104e16), SC_(0.341893185536e12), SC_(0.21425799803606972737445032217541375450102598435277e-17), SC_(0.56142742010933943674899637699127197265625e-7), SC_(0.7819102165740332566201686859130859375e-7), SC_(0.51380279967715852817988775314006488770246505737305e-13), SC_(0.200521964168113291264e21), SC_(0.91091672374787343450225990261465422781914984618348e-16), SC_(0.5888978904522446100600063800811767578125e-7), SC_(0.19738892977879712492899096608329417718301519724111e-25), SC_(0.555923861611518077552318572998046875e-6), SC_(0.1141436e8), SC_(0.8992374739358728447181125424661522884820716934695e-3), SC_(0.64836257251954521052539348602294921875e-7), SC_(0.11649136528196886067987694424015483218044894522109e-26), SC_(0.36767340167168e14), SC_(0.493704617023468017578125e0), SC_(0.86342692064424182784615665841513322156909113570646e-5), SC_(0.9426266700529595254920423030853271484375e-7), SC_(0.1065340096e10), SC_(0.675034e7), SC_(0.11022882697838232458615974340698784317282843403518e-17), SC_(0.15300795293140386147904527178989123927003675188183e-2), SC_(0.11666782739894188125617802143096923828125e-6), SC_(0.34799534478224813938140869140625e-3), SC_(0.131195640625e6), SC_(-0.48978190038186971237336846953739494248125652120507e-22), SC_(0.2388945504612328758901280969267509380243643847542e5), + SC_(0.153669333258221740834414958953857421875e-6), SC_(0.24841828125e5), SC_(0.12379233211158146427122161981060344260185956954956e-13), SC_(-0.64715270091955995318595980768383579828650908893906e-19), SC_(0.29560340817341301491613970695503673872817011849739e10), + SC_(0.1622084795371847576461732387542724609375e-6), SC_(0.29883875829401013719709328056513446297320465063827e-30), SC_(0.4141578515625e5), SC_(-0.118396030554210304e19), SC_(-0.18077721597744865226496613232167680429316701947429e-18), SC_(0.2007315487162486533634364604949951171875e-6), SC_(0.484821384427736035149791860021650791168212890625e-10), SC_(0.35244982272e11), SC_(0.66975396207649619968e20), SC_(0.50639601528733663055818645133500624155185681965241e-23), SC_(0.2170967974279847112484276294708251953125e-6), SC_(0.10346977737162760356637413145463933451898572504768e-25), SC_(0.52484349362176e14), SC_(0.14238722776793028002018104416492860764265060424805e-12), SC_(0.36977717259341740049057345079935123328376787743457e4), + SC_(0.355180674205257673747837543487548828125e-6), SC_(0.20287806536730540463153715791122522205114364624023e-12), SC_(0.18075361207792184359277598559856414794921875e-8), SC_(-0.14129753935776534490287303924560546875e-5), SC_(-0.13543439921672448592686319863688635646982483335197e11), SC_(0.355791058836985030211508274078369140625e-6), SC_(0.41966422727541823005436582324882699435164568058099e-20), SC_(0.56214188225567340850830078125e-3), SC_(0.21398259809600358456883901528625608132466446291041e-28), SC_(0.33532126652331267769382132479020153519397794821114e17), + SC_(0.364147808795678429305553436279296875e-6), SC_(0.62041543644016967787649385890347275562817230820656e-16), SC_(0.112208826976711861789226531982421875e-4), SC_(-0.4890405858049007292720489203929901123046875e-9), SC_(-0.25380132927950750614745151203507002931269737872133e10), SC_(0.41233806769014336168766021728515625e-6), SC_(0.36580066080205142498016357421875e-3), SC_(0.78368969261646270751953125e-1), SC_(0.1548500925058203388738880396102715053530118893832e-17), SC_(0.12053469362478877684232105823926676391853113939021e8), + SC_(0.468250874519071658141911029815673828125e-6), SC_(0.4736783503633416192e19), SC_(0.25657845772245226891152621395363904506655393367165e-25), SC_(-0.11853116e8), SC_(-0.18751179628961700849769255337274434337397473288701e-14), SC_(0.68897207938789506442844867706298828125e-6), SC_(0.221162365880631296e20), SC_(0.4426536e8), SC_(0.64514155343180504894614159597243663313292927341536e-19), SC_(0.1812732423002478587070521538978714785538743939722e-8), SC_(0.71711195914758718572556972503662109375e-6), SC_(0.1054551841401995264e19), SC_(0.149447225428200880514850723557174205780029296875e-10), SC_(0.11321845307702313256969107657851948689486931698411e-21), SC_(0.12039655478363621612864710662326156428033821468659e2), SC_(0.8440589454039582051336765289306640625e-6), SC_(0.16500875e7), SC_(0.177505408e10), SC_(0.14981564160172185125964081263351575235009960351817e-21), SC_(0.11359400041521647880429712249939997827113705715643e-2), + SC_(0.9389232218381948769092559814453125e-6), SC_(0.34272542467624321146683392e26), SC_(0.33883824818190138074762051584e29), SC_(-0.268267505598857216e18), SC_(-0.4765736122164139026308620711936669799666700219745e-39), SC_(0.14005109960635309107601642608642578125e-5), SC_(0.16255437736119050960896e23), SC_(0.1638076981752402804736e22), SC_(0.12357156872339849389749039110242279093654360622168e-16), SC_(0.65926904064845259233343135625850082478676926387063e-17), + SC_(0.1407973059031064622104167938232421875e-5), SC_(0.1600049396020919356358656e25), SC_(0.56118849892227423295041715755205124853931264450324e-24), SC_(-0.24559907248456875315540531845570626501285005360842e-16), SC_(0.59281168127682335321956908269468899669273368717922e-4), + SC_(0.15967763147273217327892780303955078125e-5), SC_(0.8345118208e10), SC_(0.40453248004571117166922045171872923674527555704117e-15), SC_(-0.61496136691140435164266496e26), SC_(-0.10404042522852265374183951260504393780229288624804e-28), SC_(0.18210504322269116528332233428955078125e-5), SC_(0.2651643312436211771770929152e28), SC_(0.36905974201464127488e20), SC_(0.11870302352028901338122299224941968986968277022243e-16), SC_(0.96444453967501221098008499031138568253013964649005e-19), SC_(0.1885123992906301282346248626708984375e-5), SC_(0.25172518744793432127678756566548684645107602196601e-26), SC_(0.432213410600102056165376e24), SC_(0.1750858822896784444187573935580726214311653166078e-18), SC_(0.12475652059755078495964577464269580491486451957602e2), + SC_(0.2010440539379487745463848114013671875e-5), SC_(0.6231334375e5), SC_(0.42204349656676474209296423545367815677309408783913e-16), SC_(0.189095663973354608525312e24), SC_(0.85575637956111474497876880585018076767947579475261e-24), SC_(0.21148944142623804509639739990234375e-5), SC_(0.33435832770024875859604662764468230307102203369141e-13), SC_(0.47324655483842805109613708493123820154516818645152e-26), SC_(0.40599286578442079483896452939559944088354637159455e-23), SC_(0.86086726864892856978021290224683696142061736289937e22), + SC_(0.2252993226647959090769290924072265625e-5), SC_(0.1145677201634679759519302305603716263249225448817e-17), SC_(0.57490079546449489559552e23), SC_(-0.18280795434640203579392e24), SC_(-0.23153775255121976847102308866036253916760345172262e-32), SC_(0.2586026539574959315359592437744140625e-5), SC_(0.13906271765126904778015790844071007475134249542492e-23), SC_(0.48651935458110528998076915740966796875e-6), SC_(0.7676005010684497625088e22), SC_(0.55534780484904679566833659602625457533704982490912e-18), SC_(0.318217871608794666826725006103515625e-5), SC_(0.640806732177734375e2), SC_(0.68430225988125784590876934144e29), SC_(-0.91491688131665702501767374089924889091207660385408e-19), SC_(0.13076909413247462911450776886742720618763010654651e-10), SC_(0.3428982154218829236924648284912109375e-5), SC_(0.24666375732421875e3), SC_(0.18343744672083473263280947208875293341634460375644e-19), SC_(0.43015309196536843927560767042450606822967529296875e-12), SC_(0.24696721967211058722599902915223542353530466803084e9), + SC_(0.34367412808933295309543609619140625e-5), SC_(0.56812267303466796875e2), SC_(0.375230498611927032470703125e-1), SC_(-0.940448217079392634332180023193359375e-7), SC_(0.27222483126028747567331871746075117244762444634232e4), + SC_(0.3576953531592153012752532958984375e-5), SC_(0.14104317457808228352e20), SC_(0.49092389767073363326943535867030732333660125732422e-13), SC_(-0.1768607334231179264e20), SC_(-0.13174027442302826799661544100702814727664015808882e-26), SC_(0.37117524698260240256786346435546875e-5), SC_(0.25937127167980755099163658883298921864479780197144e-14), SC_(0.20948793299367246339967233012199776531758743658429e-20), SC_(-0.5088028e8), SC_(-0.3649939396906969854756148210998242109051626865873e-3), SC_(0.496315487907850183546543121337890625e-5), SC_(0.39944501218548349803692032e26), SC_(0.72472721302229174342168782629869383526965975761414e-16), SC_(0.3013316540734223281106096692383289337158203125e-9), SC_(0.19179116640052050131787066719787819821680219530636e-4), + SC_(0.5896066795685328543186187744140625e-5), SC_(0.83540669756266879012950000386178439626405634044204e-20), SC_(0.18486267904e11), SC_(0.711416436871559199062176048755645751953125e-8), SC_(0.16558524086880113634516369045738181687091036568877e3), + SC_(0.741827943784301169216632843017578125e-5), SC_(0.57862111028696838884929909418985971569782122969627e-17), SC_(0.21186012666429832052017445676028728485107421875e-9), SC_(-0.909995069378055632114410400390625e-4), SC_(-0.79167347903248615338879018331512795232997106267621e8), SC_(0.1020877971313893795013427734375e-4), SC_(0.54233017649833819224649352104539179464381959405728e-19), SC_(0.1330528539256192743778228759765625e-4), SC_(0.60075625e6), SC_(0.22951727888716333518770359128519740944727307583691e-2), SC_(0.115228258437127806246280670166015625e-4), SC_(0.14980029664002358913421630859375e-3), SC_(0.10872091648e11), SC_(0.974692302406765520572662353515625e-4), SC_(0.19283669680242463690410992722755728906094253397332e0), SC_(0.12364866051939316093921661376953125e-4), SC_(0.256297172992e12), SC_(0.89514893312e11), SC_(0.92516305455080018876889980106170696672052145004272e-15), SC_(0.6956851082506011937598898817563396469969835697595e-7), SC_(0.130162216009921394288539886474609375e-4), SC_(0.759344620746560394763946533203125e-4), SC_(0.22148209406780902835423848339554340607932845033396e-29), SC_(0.1025133774706451157090304e25), SC_(0.78168449939778815541125509826645235096454615091998e-21), SC_(0.151082431329996325075626373291015625e-4), SC_(0.223869393291817180493772750848e30), SC_(0.130767456e9), SC_(0.3479859515209682285785675048828125e-4), SC_(0.10638852224302699211099006621011974474497792275897e-15), + SC_(0.1537743446533568203449249267578125e-4), SC_(0.15059710423148686686545261181890964508056640625e-9), SC_(0.117395620691240765154361724853515625e-5), SC_(-0.2890202999114990234375e1), SC_(-0.71323317684118857716768611179394676433168216080032e3), + SC_(0.17955519069801084697246551513671875e-4), SC_(0.61594795968322388346471996101172408089041709899902e-14), SC_(0.17182140399616e14), SC_(-0.8879954926669597625732421875e-2), SC_(-0.30902793952357142576725810247768489948284393255416e-3), + SC_(0.385829116567037999629974365234375e-4), SC_(0.87243150589952e14), SC_(0.502113922279907786752e21), SC_(-0.44867013175405750605515785144168657045844292877374e-29), SC_(0.6784291389719445280807556938270976838477737526148e-13), SC_(0.5497968595591373741626739501953125e-4), SC_(0.2570904232561588287353515625e-1), SC_(0.142555389836268217827210559488e30), SC_(0.347529082477997995270422396070359436805186081898e-23), SC_(0.15205547141762716339195263933611696099613831306279e-9), + SC_(0.67357483203522861003875732421875e-4), SC_(0.2024667237879200631521688091840616152694565244019e-17), SC_(0.1125503860736e13), SC_(-0.28684009472e11), SC_(-0.17312469693572017037903718317715643420749673392298e-14), SC_(0.7117705536074936389923095703125e-4), SC_(0.5225739073284472832e20), SC_(0.188505269646754054144e22), SC_(0.37162215e7), SC_(0.77884931309600959064671298574702199174386529309389e-23), + SC_(0.976757219177670776844024658203125e-4), SC_(0.20999384671790071386435906496888593240052529360776e-28), SC_(0.2420024555864064e16), SC_(-0.30929401675776e14), SC_(-0.41122600386595265452718551147832124897352249792332e-19), SC_(0.10531136649660766124725341796875e-3), SC_(0.2080037632e10), SC_(0.951222915825664e15), SC_(-0.2556099821568e13), SC_(-0.16183594291792086140042069404303186458320314897362e-18), + SC_(0.1337912981398403644561767578125e-3), SC_(0.54060063803262892179191112518310546875e-6), SC_(0.431251569592525637174387802112e30), SC_(-0.40761757983463978673056514048e29), SC_(-0.42689657423364442342706084804950806299313503328401e-41), SC_(0.135120135382749140262603759765625e-3), SC_(0.15396510045028230750086205123753138601649936845206e-21), SC_(0.23207376953125e5), SC_(0.4279265340301208198070526123046875e-5), SC_(0.11583891006744848427408148566636928242683392055917e4), + SC_(0.195464599528349936008453369140625e-3), SC_(0.121048798828125e5), SC_(0.93744699823914178927300605212876675065986065149559e-24), SC_(-0.80269794149945634012159454440908189848597528021079e-27), SC_(0.85066182884649426317108513864013994356814573463698e13), + SC_(0.237512751482427120208740234375e-3), SC_(0.17427138898629124241779209114611148834228515625e-9), SC_(0.33052706405189979932401911355555057525634765625e-10), SC_(-0.56586559029248e14), SC_(-0.27820838535642758409712041258322710540301181627086e-10), + SC_(0.371529138647019863128662109375e-3), SC_(0.12312668720852486471439889495482766790246387245134e-18), SC_(0.2606333696e10), SC_(-0.20283999631852400735709807122475467622280120849609e-12), SC_(0.51157368515785829729510457458840434162083885872526e1), + SC_(0.6058839499019086360931396484375e-3), SC_(0.5217478992180805632e19), SC_(0.4103625118732452392578125e0), SC_(-0.34598269870134102862979652570629696128889918327332e-14), SC_(0.11327789817456084957191801849955967708479747758643e-5), + SC_(0.7126068812794983386993408203125e-3), SC_(0.834977504013651542016e21), SC_(0.32316998463633678540817957675549120530669733319939e-24), SC_(-0.30853410104558776083649718202650547027587890625e-11), SC_(-0.14497478832531455977117278820477686854081973067291e-6), SC_(0.11331872083246707916259765625e-2), SC_(0.7652003928866816e17), SC_(0.2029340237758464e16), SC_(0.46751457751334912e17), SC_(0.48218635922355250104615961298328372157645025546126e-24), + SC_(0.1283943769522011280059814453125e-2), SC_(0.49121531251266280226816e23), SC_(0.311947574615478515625e2), SC_(-0.1049853937656833303417716736e28), SC_(-0.33243523576876450506395708449850694875195152411876e-36), + SC_(0.210290006361901760101318359375e-2), SC_(0.4932620110638545248192561152e28), SC_(0.39087764918804168701171875e-1), SC_(-0.97106783192338154528339705536497949989183098296053e-22), SC_(0.10716357073204930403806358122863820937624055505006e-9), + SC_(0.43084057979285717010498046875e-2), SC_(0.7663212560384e13), SC_(0.15427949623089271042983806318685344877161824683753e-21), SC_(-0.10417810006584787840822059479251038283109664916992e-12), SC_(0.17169635051379646499605489602235548137277810862201e-2), SC_(0.47173579223453998565673828125e-2), SC_(0.28601321158264026057365024112938563807684451932578e-26), SC_(0.40558081566683637682324548023871102486737072467804e-15), SC_(0.15528565625e6), SC_(0.46209895630262119473421061925210201261400658526527e-2), SC_(0.4801772534847259521484375e-2), SC_(0.45398853613796871007741958773072074733645399780696e-27), SC_(0.7560605184e10), SC_(0.647133457931658995221368968486785888671875e-8), SC_(0.97150343363634710498793099113043775255963668957287e1), + SC_(0.52362792193889617919921875e-2), SC_(0.62775075435638427734375e-1), SC_(0.35503316103945850232270764479380886768922209739685e-14), SC_(-0.82191520164301076767365827890898799523711204528809e-14), SC_(0.94149739510744793867407461448723332321993376907253e9), SC_(0.6464368663728237152099609375e-2), SC_(0.34548660250448633356353536e26), SC_(0.86745184e8), SC_(0.17538673631556802019439568731943899118999076469638e-25), SC_(0.18965171138822577964416888446520897074777671876756e-13), + SC_(0.8755207993090152740478515625e-2), SC_(0.19334258367635594160367929817354861347764157147378e-29), SC_(0.19905875479770919489158908039133416469773640855578e-23), SC_(0.16162294913370678880369874300115817788991989800707e-19), SC_(0.10302469141608676846163602607369970727019331722344e23), SC_(0.105386711657047271728515625e-1), SC_(0.10971066146022716822519808e26), SC_(0.14238127367174709429046052203053697640243880490063e-25), SC_(0.12445412e8), SC_(0.81057286137718371719879398529595220079298267815081e-18), SC_(0.1206146739423274993896484375e-1), SC_(0.3369771240234375e4), SC_(0.151668605394661426544189453125e-2), SC_(0.517785288393497467041015625e-1), SC_(0.12613012578767509848590874658523101847661158577119e1), + SC_(0.12089609168469905853271484375e-1), SC_(0.97507090560084943816369411520484629201082488192398e-26), SC_(0.399211437727154176e18), SC_(-0.43687648e8), SC_(-0.12712787183712312314723670820348108729409028012771e-14), SC_(0.1223853044211864471435546875e-1), SC_(0.149331171875e5), SC_(0.25902370885233137108535751670716469965971562317009e-22), SC_(0.1585234087010320425115139642002759501338005065918e-12), SC_(0.87548765889989152595921377575214471779646231337304e6), + SC_(0.1719185896217823028564453125e-1), SC_(0.68342607872e11), SC_(0.74717364929222058918122144571648805171440455019649e-24), SC_(-0.19811498361971269233094972150865942239761352539063e-11), SC_(-0.62931581399346532875402225391415988485126399044258e-3), + SC_(0.2028485946357250213623046875e-1), SC_(0.43614054590079831541515886783599853515625e-7), SC_(0.84901359375e5), SC_(-0.402032989501953125e3), SC_(-0.14457959445537210532900171961971212086978017332471e-3), SC_(0.244647525250911712646484375e-1), SC_(0.15256551424e13), SC_(0.54413439958598412815701968192616533315231208689511e-18), SC_(0.12193387618025211711902944244911850546486675739288e-14), SC_(0.68928140233641690874066639514030215078105803150605e3), SC_(0.2503361739218235015869140625e-1), SC_(0.12629954201195087283302254587899482451973653951427e-19), SC_(0.18469444489392706000542236672e29), SC_(0.2008535602726624347269535064697265625e-5), SC_(0.15376107245372323818643874859148652065437313877165e-9), + SC_(0.256623141467571258544921875e-1), SC_(0.33872525312e11), SC_(0.14235380836999617679740726134029336127093459674064e-24), SC_(-0.54761008267973783831005426492301530003864451501272e-24), SC_(0.6002641543057883014281295950703999178968208670234e8), + SC_(0.2816712856292724609375e-1), SC_(0.20385418701171875e4), SC_(0.70816101925749637511437795979463150075616795220412e-19), SC_(-0.71224997471100448542813410313101485371589660644531e-12), SC_(0.14555984968538450265872789550217916380493832680261e3), SC_(0.389046929776668548583984375e-1), SC_(0.18785430908203125e2), SC_(0.59877638017122304e17), SC_(-0.70611488161624017152739885005985343013890087604523e-15), SC_(0.23617650093748762722636584030199656175041288661882e-6), SC_(0.500512681901454925537109375e-1), SC_(0.8265168543968919552e19), SC_(0.5917616329149883895863312384e28), SC_(0.1813467698915509796864e22), SC_(0.73014045504603704166845487809073717258890497149708e-34), + SC_(0.552595667541027069091796875e-1), SC_(0.24714513671875e5), SC_(0.15755500574372884400188753119438633820692530207452e-20), SC_(-0.1058852421875e6), SC_(-0.1385729677950429487289703993301344498336095174718e-5), + SC_(0.59153951704502105712890625e-1), SC_(0.28119016669184e16), SC_(0.46283060736691983672672256e26), SC_(0.33705512178551436908836997015329410971321759480507e-27), SC_(0.10567909802110001773228477874638062345056246984665e-17), + SC_(0.70532612502574920654296875e-1), SC_(0.509380480278670082048e21), SC_(0.6086066368937984e16), SC_(0.1157226484375e6), SC_(0.78636736502206833931370358047905890205013561234128e-20), + SC_(0.90219162404537200927734375e-1), SC_(0.1235392397312e15), SC_(0.312691328e9), SC_(-0.59579515824188623238913051216592009495798265561461e-17), SC_(0.98185483246869333393733269663055298966868810132828e-9), + SC_(0.9155814349651336669921875e-1), SC_(0.7803426304e10), SC_(0.56616158650510265207267401876833901042118668556213e-16), SC_(0.58011473761102867408662758102440028661308329567254e-29), SC_(0.23340628674965522944554049402356633166832118500539e6), + SC_(0.918718278408050537109375e-1), SC_(0.16469549560546875e4), SC_(0.1374542701881864559254609048366546630859375e-9), SC_(-0.64928905e7), SC_(-0.71534597326061132238132663299218904215199558605905e-7), + SC_(0.93234360218048095703125e-1), SC_(0.16614582122398761824502040001774922934468792234952e-23), SC_(0.51399625837802886962890625e-1), SC_(-0.79666525e7), SC_(-0.22357874328410148246257143325730977651923761352801e-5), SC_(0.1238969862461090087890625e0), SC_(0.50384063720703125e3), SC_(0.404188410838900933656576e24), SC_(-0.113500412081864704e18), SC_(-0.71516214731582476895868452877782309419286266783848e-27), SC_(0.138805568218231201171875e0), SC_(0.12325753201362607276032e23), SC_(0.6155888e8), SC_(0.17478379282804678163804057433594607573468238115311e-16), SC_(0.17562486771277811027907072136239595155317035456964e-12), + SC_(0.13968928158283233642578125e0), SC_(0.24041757569648325443267822265625e-4), SC_(0.75867372421355059130925056e26), SC_(0.14971352008162262765134699677531090489539158244758e-25), SC_(0.47162892053614125151645366512041674122628514159979e-8), + SC_(0.14648687839508056640625e0), SC_(0.189117259979248046875e2), SC_(0.64672735821725592375575075720917084254324436187744e-14), SC_(-0.1027551e8), SC_(-0.25659659832599873979437484533439372802557250970669e-6), + SC_(0.15200613439083099365234375e0), SC_(0.1863758428953588008880615234375e-2), SC_(0.64390535785573869136816111541365970083461434114724e-18), SC_(0.179179345703125e4), SC_(0.15376350655164216216009618321675610001686589538958e-1), SC_(0.15778529644012451171875e0), SC_(0.625237882301288294684127322398126125335693359375e-11), SC_(0.31923294921875e5), SC_(0.2702271331145311705768108367919921875e-6), SC_(0.12723303520232964595307120813927223117434534421018e3), + SC_(0.23154227435588836669921875e0), SC_(0.2277369958392227999866008758544921875e-5), SC_(0.817438856761605722472448e24), SC_(0.6475818008051712e16), SC_(0.10055583404578821098090114781120362999351859150366e-25), SC_(0.23772360384464263916015625e0), SC_(0.24407187456e12), SC_(0.8943501494940164775471203029155731201171875e-9), SC_(0.1651694635057152e16), SC_(0.55867742159906661083523501546119984619588397060731e-19), + SC_(0.2875674068927764892578125e0), SC_(0.6605737295872e13), SC_(0.14297552031194982191664166748523712158203125e-9), SC_(-0.3615199585953929943575623545608282448133710095244e-29), SC_(0.42333010096754627516650214935050999386320576617531e1), SC_(0.3783153593540191650390625e0), SC_(0.17932992773095424e17), SC_(0.21370270682311573798295434301053319359198212623596e-15), SC_(0.104508124376678779299254529178142547607421875e-8), SC_(0.17691847946056675201705896851975198158108716530442e-2), + SC_(0.4375163614749908447265625e0), SC_(0.8310674814993035397492349147796630859375e-7), SC_(0.34676245389175740751178287273653290934930133737613e-25), SC_(-0.13512023861210132774912e23), SC_(-0.30627734774485470796026210351340366620342763472332e-20), SC_(0.47186577320098876953125e0), SC_(0.33517950214445590972900390625e-4), SC_(0.19742964299069534676394727058454381385388387570856e-19), SC_(0.172844315049984e15), SC_(0.15571082388851563940538874881395087814248417447048e-12), SC_(0.4837694466114044189453125e0), SC_(0.2555249786376953125e2), SC_(0.14830236860416e15), SC_(-0.23092787867579242139823118840080695690630818717182e-17), SC_(0.1436783479173125676726421090088414270562031415186e-5), + SC_(0.557569086551666259765625e0), SC_(0.3669039814207884562006016e25), SC_(0.11718498101389684343524611202444485336116031248821e-19), SC_(-0.1476470668143886336e19), SC_(-0.23234337351923507362878443677455037468061124379692e-28), SC_(0.150170361995697021484375e1), SC_(0.22653612064768e14), SC_(0.931230204913778688e18), SC_(0.111986264311332864e18), SC_(0.13503306649655457756964944372267963200179420769152e-24), + SC_(0.151865482330322265625e1), SC_(0.13662545780395737088e20), SC_(0.581006519496440887451171875e-2), SC_(-0.4810541940969415009021759033203125e-4), SC_(0.26088930707430748487397772247873081286819775856106e-7), + SC_(0.155066859722137451171875e1), SC_(0.57957362287197611294686794281005859375e-6), SC_(0.15315803808343942142559420110171227706488770309301e-26), SC_(-0.24444800103136446196416126097616938750434201210737e-16), SC_(0.90955032242841468238880271499124261832873238707086e6), SC_(0.15793964862823486328125e1), SC_(0.21153786174505042274269802208549073334284835448335e-27), SC_(0.12200210459945015628591136191971600055694580078125e-11), SC_(0.29733496255367166587727790005810361189438756346348e-24), SC_(0.61221579859114224783044449357017488484292020104154e19), SC_(0.18657958507537841796875e1), SC_(0.14212401871702140532249813986709341406822204589844e-11), SC_(0.7765285505269888671753264475228206720203161239624e-14), SC_(-0.14057745442658881454581377878543473252314163378027e-27), SC_(0.34376559971843492093918769802879147369223951311666e15), SC_(0.200531482696533203125e1), SC_(0.66637542724609375e2), SC_(0.6977945379592210481152e22), SC_(-0.1538061536848545074462890625e-1), SC_(0.91899125407594934397880198635868999618633362477239e-11), + SC_(0.20796673297882080078125e1), SC_(0.23342568365977612121539683156384858975229690258857e-19), SC_(0.23369637528405983173673414509188828169783391786041e-19), SC_(-0.34493877942163741868032e23), SC_(-0.14269697288704700026456987875655755932501905967557e-20), + SC_(0.2267075061798095703125e1), SC_(0.2218880925579554614742614016e28), SC_(0.65205579121751122872981967584324703322264654443958e-30), SC_(-0.18193587803964032632038804720580493128403998248643e-24), SC_(0.18773458887343617246865569088201403078203499932518e-3), SC_(0.22948391437530517578125e1), SC_(0.1066555328369140625e3), SC_(0.576385747842019784963129344e27), SC_(0.266197237863696756221543182618916034698486328125e-10), SC_(0.10500257852828952292894301318898021528041485694642e-12), SC_(0.3046932220458984375e1), SC_(0.18625525552055897944743393684375905872507558290159e-28), SC_(0.3957605632e10), SC_(0.5475589599790442463245199178345501422882080078125e-13), SC_(0.18339098800214958731143335962554579768175711553822e3), + SC_(0.317214488983154296875e1), SC_(0.1787234588447839005169755006044073262147782230584e-29), SC_(0.808940345497902097371234304e27), SC_(-0.152660180130070528e19), SC_(-0.14544688374658353436675575543549050491674381303428e-29), + SC_(0.3488028049468994140625e1), SC_(0.72476270262057055954832829597322805701906101027987e-24), SC_(0.21465711771648e14), SC_(-0.1243223625e7), SC_(-0.36901502835170062112191501271146371543800986080238e-11), + SC_(0.393867969512939453125e1), SC_(0.51874020272408766185256645893864430640143203159534e-29), SC_(0.2930298149585723876953125e0), SC_(-0.72393528671721441014597075991332530975341796875e-10), SC_(-0.55868866117473662932589074038762750761638800985872e1), + SC_(0.502499103546142578125e1), SC_(0.1056039999054108688384e22), SC_(0.988096714019775390625e0), SC_(-0.234368023278792403589267456e27), SC_(-0.96175701943042253761365952919230517595558464851346e-35), SC_(0.7657299518585205078125e1), SC_(0.3369778067696671541852992959320545196533203125e-10), SC_(0.24060948594242438809947398636879256628162693232298e-16), SC_(-0.102500032512e12), SC_(-0.15294312119943326330072156244796735400596544767909e-9), SC_(0.7906418323516845703125e1), SC_(0.48393864862901030998784493751613466975544853481209e-29), SC_(0.6576157757081091403961181640625e-3), SC_(0.87178096e8), SC_(0.74448636454103820303158662890650993329201889005998e-7), SC_(0.12346179962158203125e2), SC_(0.304309702915784704e18), SC_(0.530327327997952e15), SC_(0.98908409223666358032640562140958007120161710190587e-19), SC_(0.1601572720936410379824366381268671633071010045693e-14), + SC_(0.1236770153045654296875e2), SC_(0.2486598558179742193396249971826250657613854855299e-16), SC_(0.425586784e9), SC_(-0.16583159541741498976819002564297989010810852050781e-11), SC_(0.12432911383477987669202622673990389191092739265681e0), + SC_(0.130841693878173828125e2), SC_(0.516425012058796509045456896e28), SC_(0.3000732163818651513042917353020530062720192427143e-28), SC_(-0.12223677825927734375e3), SC_(-0.59600143343483667135078068259806046605914824069307e-15), SC_(0.1437510585784912109375e2), SC_(0.99939889697253647682373411953449249267578125e-10), SC_(0.17284426226994398730217260527005023625882369764373e-25), SC_(0.589887122259824536740779876708984375e-5), SC_(0.82977414248016272525740543786918282743356185060072e6), + SC_(0.155408535003662109375e2), SC_(0.245863923712e12), SC_(0.88887406204705208581375488864563298833942634608052e-27), SC_(-0.3278108895443665460334159433841705322265625e-8), SC_(-0.38929911183967971616546680441778615253883243106001e-6), SC_(0.172352466583251953125e2), SC_(0.28185915786679144323656487358675803989171981811523e-13), SC_(0.549495171586755759562947787344455718994140625e-11), SC_(0.77621669365362350522745280609523053559517416326308e-27), SC_(0.29811356642573579120528904593230871758527217500489e14), SC_(0.2496727752685546875e2), SC_(0.755542572949963187056710012257099151611328125e-10), SC_(0.140444835444342210428928e24), SC_(0.333316164222896912203776e24), SC_(0.61697425131819095690805450672367980932042039110706e-33), + SC_(0.251142292022705078125e2), SC_(0.95878670103350712202666425664563793145215793375946e-30), SC_(0.1179918399429880082607269287109375e-3), SC_(-0.18006479509999357834382910370507602237921673804522e-16), SC_(-0.20767359889649299374802028064947020874111331139665e4), + SC_(0.3167168426513671875e2), SC_(0.8758339475889442837797105312347412109375e-7), SC_(0.16276235359198247911424e23), SC_(-0.478584259033203125e3), SC_(-0.98355836090519231809970625809868089762136898416754e-13), SC_(0.39971416473388671875e2), SC_(0.42171809391584026037414002688e29), SC_(0.1746199838817119598388671875e-1), SC_(0.14080540591494208027622707362473717849386561250306e-29), SC_(0.57731972252409096631390602463457410540926582027231e-12), SC_(0.4151866912841796875e2), SC_(0.84098145009994339684283693509730169685090217512879e-22), SC_(0.23743823476252146065235137939453125e-5), SC_(0.12975368223172144971355734810458670835942029953003e-13), SC_(0.41662137710714344961872274967200362824507894251896e10), + SC_(0.43738616943359375e2), SC_(0.12385733574656e14), SC_(0.18116829833984375e4), SC_(-0.6090077153104283339067490304e30), SC_(-0.17586838254223165935107868934475381781225966395627e-34), SC_(0.64164215087890625e2), SC_(0.60759354638336e14), SC_(0.15436498306983203153379328e27), SC_(0.2971673893625847995281219482421875e-6), SC_(0.3978686729151661279344274889478280044774036238231e-19), SC_(0.7396154022216796875e2), SC_(0.434943033344e14), SC_(0.44933803488252409781774450688e29), SC_(0.41030704775427855914016195271187825710512697696686e-15), SC_(0.51301839608224722528804475837632403261204586969405e-20), + SC_(0.877169342041015625e2), SC_(0.96918456256389617919921875e-2), SC_(0.1194695377349853515625e2), SC_(0.33116262677524781031382708484933630188606912270188e-17), SC_(0.17384371767206275909057752319046159769983534621041e2), SC_(0.9329457855224609375e2), SC_(0.16489136475174385000940710160662947664743371856133e-23), SC_(0.5227976893381994977626195689487990972659902516595e-26), SC_(-0.43789996198029257357120513916015625e-5), SC_(-0.15497773046920934314700228246837580600610142935771e7), SC_(0.9570084381103515625e2), SC_(0.21871560124697031597619436421586769370151159819216e-20), SC_(0.10437099306084773731823749979533318132940422628963e-21), SC_(0.31689929654272e15), SC_(0.26374911044597243314245848273113923510941888515539e-13), + SC_(0.1074904022216796875e3), SC_(0.41020025634765625e3), SC_(0.424105413258075714111328125e-1), SC_(0.12980568876719278392783962772227823734283447265625e-10), SC_(0.80632850646709506287902787976369322104798297701048e0), + SC_(0.121872039794921875e3), SC_(0.13542694460127387585121963575751635744381928816438e-16), SC_(0.12486284559632162318061163896272346215674913706846e-28), SC_(-0.17388853194235818957341654922288398665841668844223e-15), SC_(-0.29929997600778273592083592409674281287091033348276e16), SC_(0.131728790283203125e3), SC_(0.5893691639956045555799425024e28), SC_(0.269286016251644665671840694272e30), SC_(-0.19225120205890561304280076617299461303374835609466e-28), SC_(0.23747567274649262115100375303568860119505302660168e-27), SC_(0.175763397216796875e3), SC_(0.12685536053155962454420298550668289028209301250172e-19), SC_(0.1597107696533203125e2), SC_(0.193429025e7), SC_(0.30514382609340192004140933870767164997572197608833e-6), + SC_(0.19177764892578125e3), SC_(0.84045921502887936e17), SC_(0.19129386995031684168433400267318972464065419958335e-25), SC_(-0.16734773921809110196565891338898506367022129154862e-29), SC_(0.28985510548725002737255597613665541364819200143545e5), + SC_(0.366723419189453125e3), SC_(0.4729196966323688478605312e25), SC_(0.75546687480489050112e20), SC_(0.30924904845017088e17), SC_(0.13997276569086734412665389893461313536545790758017e-29), + SC_(0.403912353515625e3), SC_(0.70494434112333692610263824462890625e-6), SC_(0.4871552734375e3), SC_(-0.79337131194643530951688192e26), SC_(-0.28185565809437219331198474902626375696922113021409e-26), SC_(0.434518829345703125e3), SC_(0.429355800151824951171875e0), SC_(0.1905407088997890241444110870361328125e-5), SC_(-0.1920795655896742530676212337387238725422793886484e-27), SC_(0.41394799266597316262611547301984058012213693213971e4), SC_(0.441912933349609375e3), SC_(0.200361263104e12), SC_(0.7487427472337473110016e22), SC_(-0.94412297518186496e17), SC_(-0.2653039857585517453143101871082962619886494600764e-26), + SC_(0.4589617919921875e3), SC_(0.71164645460638957568e20), SC_(0.3440692353251506574451923370361328125e-5), SC_(0.491521358489990234375e0), SC_(0.36374021419600170802135512961854475267516040798357e-10), + SC_(0.60508642578125e3), SC_(0.986511168e9), SC_(0.864834304e9), SC_(-0.1221882493796352e16), SC_(-0.12679767958599401117463725341907765508229105680362e-18), SC_(0.82290283203125e3), SC_(0.36223742228003175114281475543975830078125e-7), SC_(0.12701055793371805794043341177064064973639689881679e-22), SC_(-0.12639319e8), SC_(-0.11012414677841827102143604394095232114440956402107e-6), + SC_(0.826349853515625e3), SC_(0.96257212198157311804282581954172398476352382607862e-31), SC_(0.590303199232e12), SC_(-0.23093588197298231534659862518310546875e-6), SC_(-0.47251948104414426539316167928430961763614109497953e-8), + SC_(0.101428350830078125e4), SC_(0.73197230504121553597519782482022700030639835409862e-27), SC_(0.56014250442752e14), SC_(0.10064316558837890625e3), SC_(0.16527977649070885637997380699331340882257467916328e-8), + SC_(0.10313978271484375e4), SC_(0.10318525717298732830018437311991874594241380691528e-14), SC_(0.14367766698608619435617583803832530975341796875e-9), SC_(-0.895382299859193153679370880126953125e-6), SC_(-0.52777525316528912144605771534399851901207874711783e6), SC_(0.10841290283203125e4), SC_(0.45628768256e12), SC_(0.44396802085974908568299784035032644232939350037448e-25), SC_(0.18678055712586235137343338338755084705573535942824e-26), SC_(0.14825366330028607186953970497682490906029019303394e7), + SC_(0.1401687744140625e4), SC_(0.2510223973128944408017559908330440521240234375e-9), SC_(0.1164431796875e6), SC_(-0.660644830067038461622222848e27), SC_(-0.47960462509741734974205321792595950931889095335366e-28), SC_(0.15455189208984375e4), SC_(0.90718428578382195030384883514111792400934880018881e-30), SC_(0.6565417468297216e16), SC_(0.460657443285032239104e23), SC_(0.12799003681657237864315630362352184152409603951107e-28), + SC_(0.1910833251953125e4), SC_(0.17696226098322235566195903544439715915359556674957e-14), SC_(0.1108289011237349741545443748691468499600887298584e-12), SC_(-0.2495210247598112768e19), SC_(-0.54899796206745991933997756649992143738257192929546e-18), + SC_(0.2011733154296875e4), SC_(0.19581301161984e14), SC_(0.85766768651814545869177326724802966485319195188075e-29), SC_(-0.103833197499625384807586669921875e-3), SC_(-0.33700014883516626520019369200567494039429584096042e-9), SC_(0.2306111083984375e4), SC_(0.1685688489456173056e19), SC_(0.22256795142604778055852756615936599983521384333793e-27), SC_(0.14603023269556422518276493291433659749145590467378e-18), SC_(0.19777900026792559511511825473920177499794471914611e0), + SC_(0.2791671630859375e4), SC_(0.267051548817752064e18), SC_(0.3821992612462592e16), SC_(-0.513896026611328125e2), SC_(0.47465293649814820831954830513948060693670317100928e-17), SC_(0.3408779052734375e4), SC_(0.20716176e8), SC_(0.18045615079140466679736426458546816320449579507113e-17), SC_(0.13555148115074189263395965099334716796875e-8), SC_(0.48164218033389365156625209765038103431165517985122e0), + SC_(0.3542151123046875e4), SC_(0.23456829198204715014597354638681281358003616333008e-13), SC_(0.1943433088069657088681196910329163074493408203125e-10), SC_(-0.12137352751010333009649936296477139513819154537089e-23), SC_(0.9333089944235657405856672732645955389783286783745e12), SC_(0.7262e4), SC_(0.29360551054278656e17), SC_(0.22317236842790725727033694003705985580674980395081e-28), SC_(0.3551572091297857536e19), SC_(0.77717359263479130667388609725775170195499855795832e-25), + SC_(0.7298279296875e4), SC_(0.135008262029312e15), SC_(0.11206973876953125e4), SC_(-0.833275332470505472e18), SC_(-0.39896293187932511702409990531619082551759834612461e-23), + SC_(0.84882138671875e4), SC_(0.1164516231628986060845252084551879447407718437546e-22), SC_(0.6352472452890624e16), SC_(0.9560064697265625e2), SC_(0.61539124658325181782209897121876769029174304828769e-10), SC_(0.8893943359375e4), SC_(0.2543300329755485778505163471925434570765698602578e-29), SC_(0.3695086771282607429611744009889662265777587890625e-11), SC_(0.30414472917553246177763126567583640280645340681076e-15), SC_(0.14819844701086027858443403271448375440180967242547e13), SC_(0.98628369140625e4), SC_(0.54858798980712890625e2), SC_(0.2356236308287407155148684978485107421875e-6), SC_(0.4253408337513412943516008448e28), SC_(0.28310666672514729188368235301172552333474839823256e-28), SC_(0.119369521484375e5), SC_(0.6284878833111793664e21), SC_(0.191033888e9), SC_(0.39331607614135449258906745840093203969711765921602e-22), SC_(0.24703761293442289267167403830981450356576108475156e-14), + SC_(0.147901005859375e5), SC_(0.62520772668534154026944814518561754825703991045316e-23), SC_(0.19445130267235161963321360384e29), SC_(-0.1193196866669472955128396274293578471770160831511e-17), SC_(0.37070531072257762272085483567842416858990215887893e-9), SC_(0.1624405078125e5), SC_(0.40561403505621103444471068204533651486640155603425e-24), SC_(0.1332809589803218841552734375e-1), SC_(0.9897776246657427883580136193775026766383806631211e-23), SC_(0.90460833618467238772568452668297266842410945407588e11), + SC_(0.212897265625e5), SC_(0.312131216214219971638146891776e30), SC_(0.287488675e7), SC_(-0.23154143879988708931705332361161708831787109375e-9), SC_(0.36218305845932609136384265282122334602299609524974e-18), + SC_(0.2428015625e5), SC_(0.9274355505795028875581920146942138671875e-8), SC_(0.26150225e6), SC_(0.11752843565346520206117193700482738416557282334907e-21), SC_(0.65259789793303665112616821920019088303053096992953e1), + SC_(0.3443290234375e5), SC_(0.87738095954812459262649215691458087947041111220869e-24), SC_(0.15664042328847327389951260556699708104133605957031e-11), SC_(-0.254119e6), SC_(-0.12772679808309511627543152880924722250588088904856e-5), + SC_(0.3773583984375e5), SC_(0.114166624e9), SC_(0.92872925184e11), SC_(-0.21438933117678971029818058013916015625e-6), SC_(0.64605728869665645180655944572088132079855990068348e-10), SC_(0.4905428125e5), SC_(0.77207493599362048142253911464649718254804611206055e-14), SC_(0.3302073455415666103363037109375e-3), SC_(0.18890981105259239958282790894372737966477870941162e-13), SC_(0.61867208756145935926407153641591060719655132590955e7), SC_(0.503876328125e5), SC_(0.72534660121208050493385086597564193056086878641509e-19), SC_(0.12543467133030450355590801336802542209625244140625e-10), SC_(0.31351818084716796875e2), SC_(0.63794778343082751128672836783837473856982281965889e-2), + SC_(0.6055764453125e5), SC_(0.21872156251105889011820549956628982266049199267854e-22), SC_(0.40034377976350386198819103091685731105225964140265e-27), SC_(0.27609765618122752e17), SC_(0.14560406525664773387691827891026264861711885032388e-16), + SC_(0.647452890625e5), SC_(0.731999936e9), SC_(0.2930758730861938998746296647368581034243106842041e-13), SC_(-0.52838748931884765625e2), SC_(-0.17120943291351892258740815320009400558969058830526e-8), SC_(0.652611328125e5), SC_(0.15427774721484081030600798989382838044548407196999e-15), SC_(0.19426667219324400548430276103317737579345703125e-9), SC_(0.58856992e8), SC_(0.36030403476542449556475604748668985232390371856757e-8), + SC_(0.815536015625e5), SC_(0.230844914913177490234375e0), SC_(0.3524259033203125e4), SC_(-0.1321976125e7), SC_(-0.23109655491331924663927580812478349761115365015562e-7), + SC_(0.870208046875e5), SC_(0.321584384e10), SC_(0.1875353171365556903538163169287145137786865234375e-10), SC_(-0.53437487793849893766722672467682446406173285904928e-27), SC_(0.81752691838560122383582346094261293418998308279632e0), + SC_(0.1250561640625e6), SC_(0.18213786e8), SC_(0.4530736e7), SC_(-0.6338109e7), SC_(-0.82054947889433688858556789211045548313964158982319e-10), SC_(0.14622103125e6), SC_(0.89081879080330633735584910937177482992410659790039e-14), SC_(0.392437056867112321024e21), SC_(0.81061882297455856620945431847309806789279862382358e-24), SC_(0.51414750463934655970368369989612419137026160043331e-4), + SC_(0.1743905625e6), SC_(0.1477561092376708984375e2), SC_(0.30685072560418650741795681818015688728696009026275e-29), SC_(0.38635334931313991546630859375e-5), SC_(0.14930460404164659296991650253819651463281336520512e1), SC_(0.18927953125e6), SC_(0.558697130491904e16), SC_(0.15689940429654907896725504e26), SC_(-0.55965794498735732531713438220322132110595703125e-10), SC_(0.43253763049715524208571587297087894361800756872535e-21), SC_(0.2110425e6), SC_(0.2278860669204673264954113440517087889741271316559e-28), SC_(0.13786283453186048e17), SC_(0.2317149639129638671875e1), SC_(0.57271797542079362254125705553590497014434725405181e-10), SC_(0.22300921875e6), SC_(0.22960517578125e4), SC_(0.46933254639405441853106942079784734541910233270121e-28), SC_(0.1788677712888375737065871362574398517608642578125e-12), SC_(0.49240542827705470999815066512520633293229227044991e3), + SC_(0.243351703125e6), SC_(0.2739399197316094099456e22), SC_(0.49426852584757985376029409962939098477363586425781e-12), SC_(-0.51383110636537278815143709462601173676432608772302e-20), SC_(0.16335452024035439445812369982936378131834825058997e-5), + SC_(0.35698746875e6), SC_(0.1922772196023861248e19), SC_(0.39861534375e6), SC_(-0.79583452052226943582938917254310240423365030437708e-17), SC_(0.14972539396832816705553188160320970310632940548863e-12), SC_(0.6869200625e6), SC_(0.12406291034494643099606037139892578125e-5), SC_(0.60078474312334545656635060929362382794743178141472e-29), SC_(-0.2437755379502970498606373439542949199676513671875e-10), SC_(-0.29175644046652151721471627315205848278147317324593e4), + SC_(0.9115189375e6), SC_(0.179409878467662494683889664e27), SC_(0.152616857880340486461855087352290638591512106359e-16), SC_(-0.1373514587769293435305984e26), SC_(-0.37222221373521878809912319999667794920422002396464e-36), SC_(0.938919625e6), SC_(0.12335309427680403189998774921476345362014725992594e-21), SC_(0.868360405803514368017204105854034423828125e-8), SC_(0.49951384010752e14), SC_(0.1087349672869820840168485856669779192236371190719e-14), SC_(0.10005244375e7), SC_(0.11613385491986150110932385359774343669414520263672e-12), SC_(0.1767129607947373434957201408e28), SC_(0.46881775649030144e17), SC_(0.19756130934559701361236894181742053882125637225069e-28), SC_(0.117237625e7), SC_(0.28658838e8), SC_(0.861307183935277657013354496e27), SC_(-0.337333418428897857666015625e-2), SC_(0.18238538582222796557049611161862806664203534063553e-18), SC_(0.1600417625e7), SC_(0.39075846958449925554176e23), SC_(0.20905065178933313063680543564260005950927734375e-9), SC_(0.30890848880558885901418688453847335919234123879917e-24), SC_(0.1474164985779584031693927432441780851726669580882e-7), + SC_(0.167349975e7), SC_(0.335835966325248591601848602294921875e-5), SC_(0.5924034386893197017088e22), SC_(-0.1327253130511962808668613433837890625e-5), SC_(0.17316118393461797400689218961605338061094088491255e-10), SC_(0.1693841875e7), SC_(0.988439261913299560546875e0), SC_(0.14889054402373871810492857583914434629716871949512e-24), SC_(-0.4169041500912129549760720692574977874755859375e-10), SC_(-0.23105803666133451280534670880230914719356541102847e-2), SC_(0.190442875e7), SC_(0.237157376e10), SC_(0.3888856079211167744e20), SC_(-0.61913955997614338586966520328047636212431825697422e-17), SC_(0.19833300648363190686727867942176248871986575138248e-15), + SC_(0.1919959e7), SC_(0.26904405370231643246370367705821990966796875e-8), SC_(0.529686175286769866943359375e-2), SC_(-0.17135624122995048290227899055737648126296335249208e-18), SC_(0.71294777984487009571872221056556404754201103533872e4), + SC_(0.1986497625e7), SC_(0.189941275119781494140625e1), SC_(0.133596098423004150390625e1), SC_(-0.344017310999333858489990234375e-2), SC_(0.40865700009209118704310385337668006597087414806334e-2), + SC_(0.28672805e7), SC_(0.56191317180416e14), SC_(0.35222303584084124587381803803722666908207497246143e-28), SC_(-0.56519235158702940680086612701416015625e-6), SC_(-0.13957538937073804403987940214950748376734725386866e-12), + SC_(0.3057799e7), SC_(0.57031360774144e14), SC_(0.334671207278780147040256e26), SC_(0.186068168841302394866943359375e-2), SC_(0.44385547752902791796369422696533745242936564907692e-21), SC_(0.31068275e7), SC_(0.24256317430431744e18), SC_(0.143404235132038593292236328125e-2), SC_(0.96258014296708486555996677315819032294541557348566e-21), SC_(0.1972598733605150297798640841340226756157118686237e-8), + SC_(0.32205e7), SC_(0.4915144753769099558912e22), SC_(0.1307531505290171480737626552581787109375e-7), SC_(0.164334032e9), SC_(0.6980534268819858473041043994511617636261409493517e-18), SC_(0.39914275e7), SC_(0.5617260831058956682682037353515625e-4), SC_(0.43573388456807634241895548780677530339229715228289e-25), SC_(0.31924774e8), SC_(0.63133932606104414776194547815667534179536676234649e-9), SC_(0.46787565e7), SC_(0.14932343959808349609375e1), SC_(0.16440348057365199213781820769542107996130653191358e-17), SC_(0.11708039093017578125e3), SC_(0.34226867487194103607643781127607630951888212570643e-4), + SC_(0.47933605e7), SC_(0.31721368112700180271268622555462940347189865902822e-26), SC_(0.25930237825377844274044036865234375e-4), SC_(-0.214466495180453821894623232e28), SC_(-0.91733319493295368134727198939095304158871839033766e-29), + SC_(0.67505405e7), SC_(0.12444449636352e15), SC_(0.2137999035767279565334320068359375e-4), SC_(-0.4992916231287458655895552e25), SC_(-0.52521328638500292117953896561071999999851161879722e-30), SC_(0.81585985e7), SC_(0.3010926884599030017852783203125e-3), SC_(0.8215554048e10), SC_(0.114206015625e6), SC_(0.50136200110028234464770086816227677834645454947399e-10), + SC_(0.11603544e8), SC_(0.313275356292724609375e2), SC_(0.290066314697265625e3), SC_(-0.9375218963623046875e2), SC_(0.28649293639742832027456393766417241439254670094355e-7), SC_(0.14428466e8), SC_(0.70876748614467584e17), SC_(0.18803361506481770337385962666972781228216793358854e-23), SC_(0.10022823697850966935315220275556287300944497201116e-25), SC_(0.71778859953945302976822186314656453326116349206407e1), + SC_(0.14455178e8), SC_(0.20228727343912268621384242806016118265688419342041e-13), SC_(0.349125194549560546875e1), SC_(0.1069340869435109198093414306640625e-3), SC_(0.63922052689648282610971529951958584600613959579745e-1), SC_(0.15583587e8), SC_(0.46741176605224609375e2), SC_(0.5554841051654164918449652077470091171562671661377e-13), SC_(0.34054815792480743332272823033907149792298696411308e-19), SC_(0.3700199128491477647155829380685393746316047810923e4), SC_(0.20014814e8), SC_(0.3708101212978363037109375e0), SC_(0.13699657060765273544864379382315910937961689342046e-19), SC_(0.7608494563549061950880059157498180866241455078125e-11), SC_(0.62708615324117416711398888201649265175697097819677e3), + SC_(0.21305708e8), SC_(0.16358995318300954765782308898640009098138844295667e-25), SC_(0.98936341703850100293138325469044502824544906616211e-13), SC_(-0.35379081781572062001539613618206203682348132133484e-14), SC_(-0.64169380348550957400835972497068436122147975451984e10), + SC_(0.23513628e8), SC_(0.289233994321472004292608e24), SC_(0.630719616e9), SC_(-0.13381082827944242446336e23), SC_(-0.66275653715849795694319915554978158944549924022817e-32), SC_(0.2359947e8), SC_(0.83892250504513065845701871993405683214864787598623e-28), SC_(0.1116302655645995400846004486083984375e-5), SC_(0.939252372042160275456e21), SC_(0.10998068538650239817719760410038058510092001135979e-22), + SC_(0.3219581e8), SC_(0.10514049531904e14), SC_(0.1142989134450544952414929866790771484375e-6), SC_(0.3264901123046875e4), SC_(0.44539831126947074252907587959611138961807523305494e-11), SC_(0.38569956e8), SC_(0.153969064060542517248e22), SC_(0.31365259264e11), SC_(0.64615751438068753629184e23), SC_(0.15901406672240710197060481639696712480117521197007e-31), SC_(0.44006012e8), SC_(0.41172763385266176e17), SC_(0.69560673828125e4), SC_(0.6943892002105712890625e1), SC_(0.11055742170934965263077931846674792260115571222994e-12), + SC_(0.44515356e8), SC_(0.163460032e9), SC_(0.58954788950949720532109000901066150901463913669431e-21), SC_(-0.84008701238901905931910629732328743557445704936981e-16), SC_(0.1016468164574996101751049497404743419692229697756e-1), SC_(0.60742564e8), SC_(0.10180891649724799208343029022216796875e-5), SC_(0.1729617489790698408202207232e29), SC_(0.13798541646137166738669772732522444264047223327907e-21), SC_(0.55002999650037162886168349807610893852430744597343e-13), + SC_(0.110924176e9), SC_(0.72381277181260981972756393027025707393702881272974e-29), SC_(0.9907270967960357666015625e-1), SC_(-0.46992797696e11), SC_(-0.7153769161341146618748649074890545875067308629286e-13), + SC_(0.138628768e9), SC_(0.24839921813791433941823936900536334689774519562944e-25), SC_(0.1002530003457735574556863866746425628662109375e-10), SC_(0.146151953125e5), SC_(0.31643515951668430782967469932625098874208800860989e-6), + SC_(0.14248488e9), SC_(0.61731988312258099732254031872e29), SC_(0.47155488899394500240213479534565823420775918905622e-28), SC_(-0.25432651776e11), SC_(-0.15560997549573948496013461708493710470300844615272e-23), SC_(0.27280976e9), SC_(0.15585372e8), SC_(0.281720957673314842395484447479248046875e-8), SC_(0.12213673845353715391448545801722502801567316055298e-13), SC_(0.5952817136866798806190819811444904820394334558943e-2), SC_(0.339495296e9), SC_(0.27455182077952e14), SC_(0.3135611338752e15), SC_(0.402709184e9), SC_(0.16499235413105133151072312126744836197182326227857e-17), SC_(0.355727936e9), SC_(0.49794778812580822691949943719295546451682199506905e-24), SC_(0.1241846768099137683456e22), SC_(0.7965702487139983595526434005087182869351289729587e-26), SC_(0.17776375912355973204091948059938294188844121829538e-1), SC_(0.4000056e9), SC_(0.667866475003904e15), SC_(0.1143672109375e6), SC_(0.41925702284651838570496e25), SC_(0.23627988424029165896561703037511481776791931850582e-30), SC_(0.470933376e9), SC_(0.11153424070550668062429267024526780005544424057007e-13), SC_(0.1022445289472e13), SC_(0.3036598381787523315662848e25), SC_(0.51082525159717437740996972959268224682068490870662e-29), + SC_(0.480171648e9), SC_(0.81851918776879678213563875328e29), SC_(0.25317517949927424e17), SC_(-0.761762807808e12), SC_(0.14807577909106632829053240787195997254181008262149e-29), SC_(0.53041488e9), SC_(0.46393568e9), SC_(0.579481973517204096424393355846405029296875e-8), SC_(-0.242978e8), SC_(-0.40688072399254155903354266338099994715882814754534e-12), SC_(0.599453888e9), SC_(0.17675467453150265344e21), SC_(0.1340962341126144e16), SC_(0.18613109664666893650064594112336635589599609375e-9), SC_(0.55371046708594014602877624160531183618809435731096e-20), + SC_(0.738515392e9), SC_(0.13571258581209030066176e23), SC_(0.2301062643527984619140625e-1), SC_(-0.76610397713172684319715699530206620693206787109375e-12), SC_(0.79685761608775251576239402421443352242583336939208e-13), SC_(0.814350976e9), SC_(0.11488148e8), SC_(0.19480861678725900179769036451744575015598837097741e-22), SC_(0.2380423411208374286693172481332745269194293372822e-27), SC_(0.44619130608245420753145073869509688203154097908354e5), + SC_(0.1756078592e10), SC_(0.26120992187958165504e20), SC_(0.26754587434396626122179441154003143310546875e-9), SC_(0.18746973490642741795614695493449097273634996893782e-28), SC_(0.19478325268074938295934076576198224696942609355331e-7), + SC_(0.3003238912e10), SC_(0.5025710997504e13), SC_(0.1350108672e10), SC_(0.5902561359107494354248046875e-2), SC_(0.88103370060025420319508578791540142249966037628539e-14), + SC_(0.3204498688e10), SC_(0.6025548983379369616386611596681177616119384765625e-12), SC_(0.1022096374072134494781494140625e-2), SC_(-0.17716674949936054272e20), SC_(-0.47182058754855865854157515823805004295335565607572e-22), SC_(0.409506688e10), SC_(0.660258883726783096790313720703125e-4), SC_(0.11791503058925568539244861654413654150630463846028e-17), SC_(-0.10290368356898529759481386580688422327511943876743e-15), SC_(0.60420197885529575064878739038372357567146506347851e5), + SC_(0.794944256e10), SC_(0.57736081071197986602783203125e-2), SC_(0.2809777657073205428808056832e28), SC_(0.1966196e7), SC_(0.70403086897656371856817889132578689069531096518923e-21), + SC_(0.10259405824e11), SC_(0.35736448257653877024582131372021365223190514370799e-17), SC_(0.1626183676572159287754752e26), SC_(-0.3575664937749412075618238304741680622100830078125e-11), SC_(0.38830584832202869897569424004002309620276039209424e-14), + SC_(0.11937830912e11), SC_(0.7411516898803712e16), SC_(0.9116515625e4), SC_(-0.64115528232747007219859456e26), SC_(-0.43778554180175377391336585696830906679687162003759e-32), + SC_(0.13030267904e11), SC_(0.121054592e9), SC_(0.45041238147072e14), SC_(-0.5887378692626953125e1), SC_(0.32105605417518275901900628191290524679687102175416e-14), + SC_(0.14041162752e11), SC_(0.16802999673239973138530304e26), SC_(0.46871312598868006987253009842930850936681963503361e-17), SC_(-0.15507884900705449904439296e26), SC_(-0.85367992662173210620394366920086679245817675476894e-36), + SC_(0.15637035008e11), SC_(0.134159215839460458496e21), SC_(0.52544137753835862096607467464082219521515071392059e-15), SC_(-0.24948805243951710508554242551326751708984375e-8), SC_(0.19030304523928762876188956443874663859228088039831e-13), SC_(0.17571876864e11), SC_(0.78331889736129170520187100955465240744456415725866e-27), SC_(0.29027516841888427734375e1), SC_(0.86297228563125827349722385406494140625e-6), SC_(0.22453186161261513391158868662040316475654593711161e-1), + SC_(0.18376677376e11), SC_(0.5392075674848229027702473104000091552734375e-9), SC_(0.69036960018143309015045095329037686884040172076524e-29), SC_(-0.5439871484375e5), SC_(-0.68408988305143483178776308392189960121866243138031e-8), + SC_(0.19167623168e11), SC_(0.8768775788564570846326161408e28), SC_(0.622147854301147162914276123046875e-5), SC_(-0.4378748023750764003328e22), SC_(-0.10075098730638899475891515746562096511093203179736e-33), + SC_(0.28634155008e11), SC_(0.67717655e7), SC_(0.439299052929024e15), SC_(-0.2764094369161640019069239296e28), SC_(-0.32055233575435343214064577748503293504534051786254e-33), SC_(0.29924868096e11), SC_(0.2513091862201690673828125e0), SC_(0.364701990405672009728e21), SC_(0.1808835506439208984375e1), SC_(0.86504407140564687954319212516129000830686668187889e-15), SC_(0.3143396352e11), SC_(0.13810928266794127506964991575307193802925529863273e-29), SC_(0.2529551275074481964111328125e-3), SC_(0.6610492153669156323303468525409698486328125e-8), SC_(0.20487685573371894368634282236661104960787516256632e2), SC_(0.49448484864e11), SC_(0.37633713292972600066048e23), SC_(0.35798815666608753114714008801007788456267201895617e-28), SC_(0.51093983547468719468029134909980992773625985137187e-19), SC_(0.48326339555697561141802721066317632742526727641684e-6), SC_(0.62930939904e11), SC_(0.177573984375e5), SC_(0.46090615400837396702570999962311759645672282204032e-17), SC_(0.13151506414305676629098713952040449869790306181017e-23), SC_(0.3439413116522142892624105600224528287109958555919e3), SC_(0.67647336448e11), SC_(0.59025825792e11), SC_(0.63456950551354910536750724756131128750454202264858e-27), SC_(0.240986118684672e15), SC_(0.76528228072326729363880402140106115135029881663388e-19), + SC_(0.82854125568e11), SC_(0.58830391620982291911135882706044579926359106014644e-24), SC_(0.63024210653626119155168439078806841280311346054077e-14), SC_(-0.54368220029374445673164828463086450938135385513306e-14), SC_(-0.10829361597055536224749850825972154484392198615189e10), + SC_(0.120054595584e12), SC_(0.82902877667147644928e20), SC_(0.1294386796875e6), SC_(0.124762982982533251072e21), SC_(0.28237302458133933514902456909194247729198978347614e-28), + SC_(0.140797837312e12), SC_(0.14323210329885870979668017974210037525351329329437e-26), SC_(0.49604859973225045211182859805632006100495345890522e-16), SC_(0.4708577083789577955030836164951324462890625e-8), SC_(0.16771706036912324754305210348028914314093661469228e5), SC_(0.187841462272e12), SC_(0.2085087317027500830590724945068359375e-5), SC_(0.23632697338789035110002273443186027179763186722994e-16), SC_(0.225691846571862697601318359375e-2), SC_(0.12845456754243698010038246582418683448773573315963e-1), + SC_(0.193607401472e12), SC_(0.1391435716868727467954158782958984375e-5), SC_(0.17110982071244507096707820892333984375e-5), SC_(-0.19561825628872353505405663801313808497495116967002e-21), SC_(0.80864759729644611943700382157345057894976359904086e2), + SC_(0.22130761728e12), SC_(0.27802641477000539246127245560908891101555874547646e-25), SC_(0.118848793208599090576171875e0), SC_(-0.12405722141265869140625e1), SC_(-0.9276223639209647401714189337787584324485796249616e-5), + SC_(0.22663667712e12), SC_(0.17455190938486797591622234904207289218902587890625e-11), SC_(0.85543193037952672645625784483272222025185271832015e-23), SC_(-0.1899995365173348970453916098985154078822091775636e-30), SC_(0.15499929512914335968618015050069017861297159802942e14), + SC_(0.2321313792e12), SC_(0.226527254199027083814144134521484375e-5), SC_(0.37947044e8), SC_(-0.1516351389696e13), SC_(-0.23023007721783712880856647301078004224131288409007e-16), SC_(0.345189679104e12), SC_(0.79820903020739723608895214436397557193018231780357e-25), SC_(0.64729720161775472443612539086288393264112528413534e-17), SC_(0.66532361109504e14), SC_(0.26363301676819092424392344158949682932356960745854e-17), + SC_(0.394305110016e12), SC_(0.15888269576316649472e20), SC_(0.83157216696884789248e20), SC_(0.28352812140199936e17), SC_(0.74462783081321149104186552543671046301745851204849e-27), + SC_(0.496015867904e12), SC_(0.3791820544e10), SC_(0.776127685546875e4), SC_(0.215147537119264598004519939422607421875e-6), SC_(0.10086837230189300603966221534673195400104347338484e-10), + SC_(0.503288594432e12), SC_(0.586938125e5), SC_(0.12771843437840908067390157228141150513173185387927e-22), SC_(-0.349487481798860244452953338623046875e-5), SC_(-0.72029932947474925429881196156855684741460064981511e-10), SC_(0.572994879488e12), SC_(0.4479686882443445386870784e25), SC_(0.3949284499458758322165682321378970124179942071882e-27), SC_(0.266417008e9), SC_(0.17777000343056153959167725670822180789645379680768e-21), SC_(0.871788642304e12), SC_(0.20654001974429033907974591176490695466905211929998e-22), SC_(0.25783102660851220989209976272113706693474803698419e-30), SC_(0.64431740406461198732239319017208248330241815438058e-21), SC_(0.12190391991221392971014057913471308591001568711459e17), + SC_(0.875494899712e12), SC_(0.226093597412109375e3), SC_(0.18276990966796875e4), SC_(-0.40538668260659298304e20), SC_(-0.87620862396447187589874183773402645045819979837542e-24), SC_(0.92167176192e12), SC_(0.14617966115474700927734375e0), SC_(0.2962839789688587188720703125e-1), SC_(-0.323903481159090176e20), SC_(-0.15195656115724489327613368628209569908647297359072e-23), SC_(0.92746285056e12), SC_(0.7325884342193603515625e1), SC_(0.41534478125e6), SC_(0.183796966075897216796875e1), SC_(0.27055962004569991229008545959063589325367143232165e-8), SC_(0.1323015995392e13), SC_(0.83436345194574414174670806687572621740400791168213e-15), SC_(0.26587446043832553782635536032685763530025724321604e-19), SC_(-0.90369778533118636580140234418583988079687330241541e-22), SC_(0.1951740446546404665680568108327258162423989400208e13), SC_(0.163744841728e13), SC_(0.69148334649344262144e20), SC_(0.250710905670486651305984e24), SC_(0.183021328125e6), SC_(0.48966517083340871380066403254311456796061982956658e-26), + SC_(0.2146243837952e13), SC_(0.45278131287698752949211211671354249119758605957031e-12), SC_(0.8430518290874368e16), SC_(-0.885746479034423828125e0), SC_(0.17097085336400584019692272359292345057350265227936e-20), + SC_(0.2737008279552e13), SC_(0.88910703354695418642432e23), SC_(0.147013624882674776017665863037109375e-4), SC_(-0.138948e8), SC_(-0.36742469187297405316759652722949922342798960833565e-23), SC_(0.2881296007168e13), SC_(0.1000261828920656625996343791484832763671875e-7), SC_(0.56146556854248046875e2), SC_(0.8827687217586030590550931806697492528618331775192e-23), SC_(0.42509319401345334213228978799787099767368705469532e-1), SC_(0.3195750580224e13), SC_(0.1209453678131103515625e2), SC_(0.31177688248907589260716655132910091197118163108826e-14), SC_(-0.4171597312e10), SC_(-0.42339731362918471841305207444900093823614717619802e-14), + SC_(0.7204262903808e13), SC_(0.3381689405394563993960448e25), SC_(0.638556383965607886848e21), SC_(-0.42120456509063168e17), SC_(0.15575317217390122072535796938363987704778724700227e-32), SC_(0.753277075456e13), SC_(0.57189246319545947866425095185149984899908304214478e-14), SC_(0.50392141342744323462734544896e29), SC_(0.89861124028964329323118259971904802659416547361282e-25), SC_(0.84550625913050425059505347644181958622837497454849e-12), SC_(0.1591604150272e14), SC_(0.351564170056957952e18), SC_(0.39915753210320770987303899714279126384431587576396e-26), SC_(0.18147198280875792132716788562593424505831606627446e-28), SC_(0.6817961989239844144699667620358050442805270214532e-1), + SC_(0.17455096266752e14), SC_(0.71139728908672437321728e23), SC_(0.6174588866134016e17), SC_(-0.7305752277374267578125e1), SC_(0.16172835812094374773587673038596961971155471054338e-24), SC_(0.20741449842688e14), SC_(0.4743499375e6), SC_(0.60682196926171104626767727515008970841312337712241e-30), SC_(0.5702780928e10), SC_(0.62259465015751190680345333485921749493056982782287e-15), SC_(0.21823460737024e14), SC_(0.894460328026980278082191944122314453125e-8), SC_(0.30660718630209872134773085861070285318419337272644e-15), SC_(-0.56302317568e11), SC_(-0.25481170543505063442394384037544272844775408193195e-15), + SC_(0.2193780375552e14), SC_(0.1688042402747669257223606109619140625e-5), SC_(0.59463684184086124685157367095470539860668220270753e-30), SC_(-0.222474092611611039629312e24), SC_(-0.67345779651737834090180971110607868330593254403912e-28), SC_(0.29861301190656e14), SC_(0.716266594827175140380859375e-2), SC_(0.13375914401765930660715049355796724128708774514962e-19), SC_(0.5779358744576e13), SC_(0.1685308032674899584230388525959903398092800817358e-17), SC_(0.31117235191808e14), SC_(0.3356745714722109141803230158984661102294921875e-9), SC_(0.37225551903247833251953125e-1), SC_(0.31484928851968e16), SC_(0.31461807745559740553343508795707704290534229744319e-20), SC_(0.31191365320704e14), SC_(0.2293932139873504638671875e0), SC_(0.61834249098451553748337548320711315606925672313013e-29), SC_(-0.5982092726894592e16), SC_(-0.15851321158930386974141141277129380455515234242728e-20), + SC_(0.334870085632e14), SC_(0.17562439325047307647764682769775390625e-6), SC_(0.17353881263527453121215165896486687553690320129363e-22), SC_(0.10955010354518890380859375e0), SC_(0.34852876235448366352201127880568420062336702413456e-4), + SC_(0.49020114305024e14), SC_(0.42052690625e6), SC_(0.4350305370112e13), SC_(-0.34981801878572553268209030398156159993725477716509e-27), SC_(0.12284492784759096402363590266094328751671947697601e-13), SC_(0.56026120323072e14), SC_(0.2968644096e10), SC_(0.1669806335196404329218048e25), SC_(0.982560210944e12), SC_(0.43746483211725186557066605349769416924313629385926e-24), + SC_(0.59092118798336e14), SC_(0.25544630272e11), SC_(0.2050561617030631850390847488e28), SC_(-0.93237160106262528e17), SC_(-0.30932050569017569606289330408961535535923960046675e-29), + SC_(0.84026647904256e14), SC_(0.9030235625e6), SC_(0.19341944851038290442859641874855406926125844790931e-22), SC_(-0.16183332281234661790268972050670093221214074219461e-20), SC_(0.92854739256706577680259328294562476549023411198166e0), SC_(0.8952989351936e14), SC_(0.5821022205054759979248046875e-4), SC_(0.16930462580604928e17), SC_(0.1441475953158445649402789888e28), SC_(0.64162028557540900736318509011534441036686622697431e-34), SC_(0.91714010218496e14), SC_(0.15903771355407769760859082452952861785888671875e-10), SC_(0.20621651441981357349985057544616166528433660182218e-25), SC_(-0.15444423355232689276661517396860290318727493286133e-12), SC_(-0.19570533284217657144679813507410046091944093838418e5), + SC_(0.10547181387776e15), SC_(0.89483831787109375e3), SC_(0.2971664653159677982330322265625e-3), SC_(-0.29433792561152e14), SC_(-0.12801467922824471201024289479258151431375228395145e-18), SC_(0.169495918280704e15), SC_(0.106314858496e12), SC_(0.30307608021550191165014175615417981032514993522398e-23), SC_(-0.9743143455125391483306884765625e-3), SC_(-0.21692895673463102774513663302873888611459425087084e-17), SC_(0.184614706479104e15), SC_(0.1988045896512735359317049344e28), SC_(0.9218556175925116928e19), SC_(0.16526283776e11), SC_(0.87247196888777165991030567036355416711562753499749e-29), SC_(0.22044892725248e15), SC_(0.68194390016e11), SC_(0.82951904279513563542883824670263768282126026765155e-25), SC_(-0.1445260835453154868446290493011474609375e-6), SC_(-0.14232560771964035551334897919749042153183656620622e-17), @@ -303,35 +621,72 @@ SC_(0.40286692573184e15), SC_(0.52038092193792e16), SC_(0.30787743926144863285121466844884707825258374214172e-14), SC_(0.9836614990234375e2), SC_(0.32815320852077160002078659428612679661864800516549e-15), SC_(0.47637881421824e15), SC_(0.256083277054131031036376953125e-2), SC_(0.894934712937934631550844928e27), SC_(0.63026674329507604827741060164026480733691095673533e-29), SC_(0.28443800019599121882423433218568170528455090132486e-17), SC_(0.798277117149184e15), SC_(0.64990261775881629335552e23), SC_(0.629183676416e12), SC_(0.27870030942626650843907398780174844432622194290161e-17), SC_(0.18094555178717438538171833996718524897966754339758e-22), + SC_(0.95759886188544e15), SC_(0.4659874708323741288040764629840850830078125e-8), SC_(0.727262651482112e15), SC_(-0.5518754816e10), SC_(-0.19616453227008195539690596715591394184621211909383e-21), + SC_(0.1551973144854528e16), SC_(0.10139344880747031860591903938868807433237861914677e-19), SC_(0.7740245504e10), SC_(-0.58571932827648e14), SC_(-0.67506981129091845750446190909330129850985465284433e-20), SC_(0.1559443435159552e16), SC_(0.1296097951186681029867031611502170562744140625e-9), SC_(0.21495435284055487900379567949710191143708470917773e-19), SC_(-0.12168303266687867641299147791755785874556750059128e-16), SC_(0.79720158864628729749958531950878190394078531069807e5), + SC_(0.159586086551552e16), SC_(0.94693035634918487630784511566162109375e-6), SC_(0.3069093933762029289472e22), SC_(-0.489862862294809540651139465216e30), SC_(-0.95301791507625821088034070804748092896597785006237e-39), SC_(0.1755992815566848e16), SC_(0.311160515592192e15), SC_(0.879396533966064453125e1), SC_(-0.42764948393697586245822784899152190331642064968776e-24), SC_(0.40833330349573571058183037703406707577578239212629e-13), SC_(0.183459460939776e16), SC_(0.58535432060362684618705258305616519358052915120161e-26), SC_(0.151380081803154098452068865299224853515625e-7), SC_(0.85484123133369723281636554248303846992307342134154e-25), SC_(0.26347058287077926347365609944873061617273956547542e10), + SC_(0.2038235383463936e16), SC_(0.197336701599744e16), SC_(0.78108794987201690673828125e-2), SC_(0.19746285946216817928151632558983474829972237785114e-19), SC_(0.35463365959776981995585843867682572518957434928647e-12), SC_(0.2082685879058432e16), SC_(0.911282624e9), SC_(0.1114427401123063379525632e25), SC_(0.37492192874537494211295562962504845927469432353973e-17), SC_(0.64091497549275033408033422864822796853191222161235e-22), SC_(0.2460775474003968e16), SC_(0.11911894016e11), SC_(0.11488683748933763072e20), SC_(0.2671757689356288e16), SC_(0.33954867185231449127923450476505270618078000384498e-24), + SC_(0.2660433739644928e16), SC_(0.2021791625e7), SC_(0.39646356055629828823414282575648289336041796455945e-27), SC_(-0.90965958552407811523940472930860323685919865965843e-16), SC_(0.89536100819620633898256567017554320012190758544577e-8), + SC_(0.3490414963195904e16), SC_(0.15486944554331788202011050222970875434036486240075e-20), SC_(0.65645105e7), SC_(-0.3862249885736011563008e22), SC_(-0.15030321942773773313070642569575229578631232758305e-27), SC_(0.3732843586912256e16), SC_(0.91425932943820953369140625e-1), SC_(0.27109355651322886594095651346947306592483073472977e-17), SC_(-0.2280010496e10), SC_(-0.27270972086797623874696761025941465895226780556069e-15), SC_(0.3762704347037696e16), SC_(0.10164524532769642241629852708355797252185587220552e-24), SC_(0.27152649027584e16), SC_(0.383565435413402155973017215728759765625e-6), SC_(0.23804839018775718073693636074253046814229093331093e-11), + SC_(0.6551729407524864e16), SC_(0.25762003497220575809478759765625e-3), SC_(0.156271296e9), SC_(-0.7108036079443991184234619140625e-3), SC_(0.54358974535033512119646257223362074375935527544017e-10), SC_(0.7552590468349952e16), SC_(0.575958067183616e15), SC_(0.23832502919148795513995921571681613215787365334108e-18), SC_(-0.16014309555286814611860677563630328545940528783831e-20), SC_(0.93858067563758918073486329121399146014156473797673e-5), SC_(0.7617166912258048e16), SC_(0.78087929856e11), SC_(0.23989477554782208e17), SC_(0.83931917784951364861476853784783003220582031644881e-18), SC_(0.27034519724555596789443192463038139534250181357333e-19), + SC_(0.8222450747703296e16), SC_(0.8274803712e10), SC_(0.527242330357572379789492224e27), SC_(0.48895778381210611976766991253265851212856409555572e-30), SC_(0.74455751091076848286943297672181953481088219377495e-24), SC_(0.8870075981365248e16), SC_(0.9699246828571174660704143659015197265205188159598e-20), SC_(0.86747422243322953296456139754310066421454789020729e-25), SC_(-0.30056768339968e15), SC_(-0.42847731490613056519922750895506180779273890356379e-20), + SC_(0.8947236142579712e16), SC_(0.64884398852035896076984045066637918353080749511719e-12), SC_(0.3640597240689233647108096e25), SC_(-0.20160019901007336504105681634819746061656770691473e-25), SC_(0.33521550963867647751710831933851768581523193451564e-12), + SC_(0.9247942909100032e16), SC_(0.66864512022555389032059044995826013746409444138408e-17), SC_(0.34406117105255590527265189612451978026091969908862e-23), SC_(0.16972130859375e5), SC_(0.46568116999240819390977312271152595288904115985538e-10), + SC_(0.15615699003113472e17), SC_(0.2157478536102264143892170977778732776641845703125e-10), SC_(0.92339736328125e4), SC_(0.2467952464569808657124383444170234724879264831543e-14), SC_(0.28137654352976876055827088720392588615737493813187e-3), + SC_(0.18757896003125248e17), SC_(0.27796297217719256877899169921875e-3), SC_(0.3795939164774608798325061798095703125e-5), SC_(-0.4411582267493940889835357666015625e-4), SC_(-0.16561241734027399380354476330796336941583283787624e-4), + SC_(0.19790925832126464e17), SC_(0.14673756579750143547516416653309079265454784035683e-15), SC_(0.3067474539712255353944014848e28), SC_(-0.46111488638490765946006906581919557197059289510577e-24), SC_(0.33318296543710703146930010704335335102607434599885e-12), SC_(0.31614863423832064e17), SC_(0.64014885e7), SC_(0.82997499668329372719087076888666576479636205476709e-19), SC_(0.97673453929425068759145069339947469290799664243252e-24), SC_(0.1474082113274986927473821089453469821830117865384e0), SC_(0.35496891089158144e17), SC_(0.1432262115478515625e3), SC_(0.24132785049458572347706444480878020231965231517934e-25), SC_(0.537947271368466317653656005859375e-4), SC_(0.28483638915557694690075255204358779291820018303066e-6), + SC_(0.37258725328683008e17), SC_(0.27527139900776398375687894235391167938115142930643e-29), SC_(0.34671355e7), SC_(-0.329579110257327556610107421875e-2), SC_(-0.44826666388956802711142928493336346675505691157686e-14), + SC_(0.45080659638616064e17), SC_(0.66192871423119660955992064e26), SC_(0.65104581211365760324995297566040105840304400052279e-28), SC_(-0.4609219395046437739438260905444622039794921875e-9), SC_(0.30393593195986173088236185388151378128529468124634e-25), + SC_(0.55441482261200896e17), SC_(0.84905730317661677425908674864238508128710947175932e-22), SC_(0.68363272192e11), SC_(0.4260724998144e14), SC_(0.11697925063926465337112606670912855638056790467033e-20), SC_(0.62729268668399616e17), SC_(0.10206736333437342809907509471629755506880924287999e-26), SC_(0.81748619457743373061928487104122026290137009371661e-27), SC_(-0.59081488088599881019268440147710709923287045273327e-27), SC_(0.17296073749639974583005326897055234716422193206457e19), + SC_(0.67960092158328832e17), SC_(0.18397274324487521318375543111309916577411627258698e-20), SC_(0.17372376323945837306439443636918440461158752441406e-11), SC_(0.22240787693568e14), SC_(0.15314765068954850046837516568238243973823802962003e-19), SC_(0.98211402249928704e17), SC_(0.91343463282100856304168701171875e-5), SC_(0.61815804943327298417046040349825952731066536216531e-20), SC_(0.15683097532096506747707287147074704802829359095995e-22), SC_(0.14847580243473942674356093212105732071171909400697e6), SC_(0.10021945407963136e18), SC_(0.28705071104e11), SC_(0.1324882283108628599609807308112863211135845631361e-16), SC_(-0.21994842184582347981213138944e29), SC_(-0.38428198134253200965721479225788208168133625801132e-35), SC_(0.105732534230319104e18), SC_(0.3443469676067678619801881723105907440185546875e-9), SC_(0.13889756370430423980110642247760388383326368710868e-22), SC_(0.26158144e10), SC_(0.79112331506380595128354554585081093242068772744655e-16), + SC_(0.11384566732292096e18), SC_(0.58757351632535552e19), SC_(0.273440826416015625e3), SC_(-0.63452058800333914204274688e26), SC_(-0.65725875175758627471160771763067147666834253039354e-34), + SC_(0.117433949289971712e18), SC_(0.162249111923529198975302278995513916015625e-7), SC_(0.109367839992046356201171875e0), SC_(-0.25682033451598259706675813002826197495309656915197e-20), SC_(0.32066589256601074054642730535177997208081794531389e-2), SC_(0.124700664587616256e18), SC_(0.3095501916077023035392e22), SC_(0.4245943000138700927533056e25), SC_(0.53696867131834092023185408e27), SC_(0.13177984836158444046950861908532532345926893822506e-37), + SC_(0.128395461743607808e18), SC_(0.206836903384823477636694016e27), SC_(0.53310077419155277311801910400390625e-5), SC_(-0.66452324352e12), SC_(-0.16246339708306689726375619149754640087627232329011e-29), + SC_(0.140845240494850048e18), SC_(0.15238641357421875e4), SC_(0.9007602981666816e16), SC_(-0.21558438e8), SC_(0.15155109340272247166088816142038442919912329856745e-21), SC_(0.15402689026326528e18), SC_(0.6474543616e10), SC_(0.3346712684759722833405248820781707763671875e-8), SC_(0.28833691527365083704665074771632166453248624892738e-29), SC_(0.4096276045356790148209349023868569849111705574315e-7), SC_(0.245924553149120512e18), SC_(0.12432241406593107741605394588021265875441186132822e-25), SC_(0.11698430441812742785454260394458960094979845402414e-30), SC_(0.10142405428001112064e20), SC_(0.30423445192187443924267108883316508334540324904605e-25), + SC_(0.30980423739768832e18), SC_(0.76340669757426261951512576e26), SC_(0.632591748046875e4), SC_(-0.1336046131083024763393742235552397179532135851332e-20), SC_(0.22571232473347972583727080449588071170762441941591e-21), + SC_(0.357437417575153664e18), SC_(0.2173093520104885101318359375e-1), SC_(0.12372333568e11), SC_(-0.12248384952545166015625e1), SC_(0.53657229424973014573915434188099752907498200207294e-14), SC_(0.36385554182438912e18), SC_(0.4880095232e11), SC_(0.22669229503540638814840235681913327425718307495117e-12), SC_(-0.93454334481970799504143406421455969601552737913153e-21), SC_(0.48923745747855953399656188111764955982957757716394e-6), SC_(0.415087526638780416e18), SC_(0.140571919027433667616047104e27), SC_(0.11791684300987981259822845458984375e-4), SC_(0.17635498046875e2), SC_(0.14682572203222134214343874166237989457260012270301e-21), + SC_(0.441417256711225344e18), SC_(0.3197955992849934712832e22), SC_(0.1093556445397325660451315343379974365234375e-7), SC_(-0.9779507932627939936764960293658077716827392578125e-11), SC_(0.32078703557500394804653928990709084664190346053448e-14), SC_(0.45362430968070144e18), SC_(0.317074383652647862272e22), SC_(0.89612589356621110444032e24), SC_(0.180616595243008e15), SC_(0.38407704573117072373094012615593598112899782284232e-30), SC_(0.466885347624615936e18), SC_(0.1095394379005843587298734717096385279518671401362e-29), SC_(0.8691929266426547798016e23), SC_(0.58962798910790525160497549395088867640879470854998e-17), SC_(0.96336031777320908719244768706875836157689599501609e-11), + SC_(0.53813397598240768e18), SC_(0.9151597128974336e16), SC_(0.24511930706754350706155776151717873290181159973145e-13), SC_(0.33505779800327468727968837771957314765596674943637e-24), SC_(0.36045288702975935176739474723909622333219641680094e-8), + SC_(0.812948248690950144e18), SC_(0.573921154459150755823616e25), SC_(0.44215075630028238618624e23), SC_(0.8585306549072265625e2), SC_(0.12603969062001301466969564143853380112338605539371e-30), + SC_(0.915670672271736832e18), SC_(0.39675285911547656146099641153758563749676113729947e-22), SC_(0.14906016349079502514296535764515283517539501190186e-13), SC_(-0.3871874820760012880782596766948699951171875e-8), SC_(-0.56087300675732405982389260047019515740430536251903e1), SC_(0.921704585926541312e18), SC_(0.106680765625e6), SC_(0.56570606632127019614208e23), SC_(0.2693166200043876672351857498571899170690391311922e-24), SC_(0.13985495225057612995722164718279974711007682172634e-20), SC_(0.1993097509492228096e19), SC_(0.31910282975259219863080686896417148545879172161222e-17), SC_(0.6051646e8), SC_(0.7197362225152e13), SC_(0.19298193055539541472180089436877636761796212157916e-20), + SC_(0.2513717777072652288e19), SC_(0.871877928148023784160614013671875e-4), SC_(0.10190402621727351770774006081609545752708623211902e-23), SC_(0.498152734340617797670347499661147594451904296875e-11), SC_(0.14259607366931342684347648514473148016605549985246e0), + SC_(0.4173026783555223552e19), SC_(0.25325901731494375978251987705874090841683295149966e-25), SC_(0.2247014312744140625e3), SC_(-0.1925644398234143277786857472e28), SC_(-0.15341643472452791881468857304558692672132616776398e-34), + SC_(0.459235907791224832e19), SC_(0.87862375252982516382616040573338977992534637451172e-13), SC_(0.401803645910803197693894617259502410888671875e-9), SC_(0.3200137703142619193802752e25), SC_(0.14730346091716177809600030451184040334577470221661e-31), + SC_(0.5077423201034698752e19), SC_(0.93737803399562835693359375e-3), SC_(0.17346513114802064592367969453334808349609375e-10), SC_(0.114951548280117776812403462827205657958984375e-8), SC_(0.18694696679082786599750684587309554591836894744968e-2), + SC_(0.7115694558070964224e19), SC_(0.911697810579426004551351070404052734375e-7), SC_(0.353218575e7), SC_(-0.69922551130979362004308562936482492999405571568888e-30), SC_(0.54114818216034650154393366386810274769974582629441e-7), SC_(0.868149367402397696e19), SC_(0.18117627432139048989226726261264354120224815206108e-26), SC_(0.55646827574017444434287932233212870187285398193566e-25), SC_(0.2699863558762810316865550031364962002555785147706e-19), SC_(0.26675383124052748044060181233075977741996031511065e12), + SC_(0.871409419378753536e19), SC_(0.10055294386176e15), SC_(0.19118333886464e15), SC_(0.19455523781994563368983933894919118035016225576328e-21), SC_(0.30245570478436121805641627713230961372684706522729e-21), SC_(0.9400097640298840064e19), SC_(0.8751563727855682373046875e-3), SC_(0.423289281913088785772479250432e30), SC_(0.794114232982437888e18), SC_(0.22504688367446473660334442312164588173070712711901e-32), + SC_(0.10280280887589339136e20), SC_(0.49921325198101894818741785761816914940427547878188e-26), SC_(0.5754278161047093248e19), SC_(-0.13595621377765355429940102970217622596615925090191e-21), SC_(0.20270137682870188516129112599835658832987453293531e-9), SC_(0.11316614577233330176e20), SC_(0.900104978432e12), SC_(0.12594157657128558086556679995737795252352952957153e-13), SC_(0.401503996716456867943634279072284698486328125e-9), SC_(0.73425500027611546587881384574097676840747502710601e-10), SC_(0.16893768561871290368e20), SC_(0.38262641055553103797137737274169921875e-7), SC_(0.56400939474343658730504103004932403564453125e-10), SC_(-0.348154485225677490234375e0), SC_(-0.18170651414739782456395795561758287675420244467194e-7), + SC_(0.1748333989082431488e20), SC_(0.248268663883209228515625e0), SC_(0.339717292032e12), SC_(0.23636871875e6), SC_(0.39724752710467164452324293888383999524241837515003e-17), + SC_(0.1917414138422755328e20), SC_(0.40000660111603838852169207047177953984196108194737e-21), SC_(0.19299584181631174594238409616964169401853723684326e-18), SC_(-0.2447043658252288e17), SC_(-0.11497180098873460666081866507470383163261042553405e-23), + SC_(0.30205231483425128448e20), SC_(0.20213326246758156110559789819802745114429853856564e-16), SC_(0.11798525e8), SC_(-0.72186512098956854158015270537643843098507632355387e-26), SC_(0.40894641444986862014203206172561233922281613197619e-3), SC_(0.3083335169004797952e20), SC_(0.25554565784928256e17), SC_(0.55001718457514670035379822365939617156982421875e-10), SC_(-0.475754700601100921630859375e-1), SC_(0.52682237786148250108822272500251195557773448891767e-21), SC_(0.32557997250865790976e20), SC_(0.152981488e9), SC_(0.13022084679680682421649408e26), SC_(0.328559815883636474609375e0), SC_(0.12571931624708992335316981931132371770582533530642e-24), SC_(0.38083625921602912256e20), SC_(0.14043506688e11), SC_(0.13209346463532805303342509972708285204134881496429e-15), SC_(-0.56693135519481074879877269268035888671875e-7), SC_(0.83158459743638934087112797685339082141513696858831e-15), @@ -340,27 +695,57 @@ SC_(0.113674073964877447168e21), SC_(0.183615109375e6), SC_(0.404058591811917722225189208984375e-4), SC_(-0.55481593261847917064658769950259091085359441919422e-24), SC_(0.24338715310708295782533356891202968386388823460614e-8), SC_(0.12116116760789254144e21), SC_(0.2893880591727793216705322265625e-3), SC_(0.130319118499755859375e1), SC_(0.381011011567616e15), SC_(0.12398589388448327034537697871075774660376423130072e-22), SC_(0.140771054246300745728e21), SC_(0.4364620208740234375e2), SC_(0.10711124272997777587041261201942927950011067906889e-29), SC_(-0.57519616e8), SC_(-0.34019512662514247429907106459469873769817730537827e-16), + SC_(0.15262866262926032896e21), SC_(0.78398e6), SC_(0.3786630536101888e16), SC_(0.62870051086045850977047303157811296808459919772775e-28), SC_(0.17803821835344232596567077346772829000234069893566e-18), SC_(0.2306652249771737088e21), SC_(0.72487803782646221227581317947397110401652753353119e-15), SC_(0.2927755373186121728e19), SC_(0.85256172876455101027449670235067169521414598420961e-20), SC_(0.27306690726663827206563405623101192238717602008124e-10), + SC_(0.263866535486334959616e21), SC_(0.150418243408203125e3), SC_(0.70894723477708281518115769172324141873507978746372e-27), SC_(-0.3900062680322030756578725083109804932239106623718e-30), SC_(0.25137329125431234354297233526449824654887426191218e4), SC_(0.398680594063019737088e21), SC_(0.10907375003199604179826565086841583251953125e-9), SC_(0.41478983876103159289527866349089890718460083007813e-12), SC_(-0.6966302212096e13), SC_(-0.57993424418345427711698913329809965986376276110811e-21), SC_(0.486625867239520206848e21), SC_(0.2663514463837359985504355062296832912238642165903e-19), SC_(0.4719122320543576863524228422930565122003386188676e-26), SC_(-0.12369338210470428252452159488e29), SC_(-0.52486756707121894054043599617133836143966167046517e-36), SC_(0.532848913858758180864e21), SC_(0.2804503330955387951917145983316004276275634765625e-10), SC_(0.172887280972042231349248e25), SC_(0.182365325927734375e3), SC_(0.11497047485079965458009798428538418185914230259387e-22), + SC_(0.834580765033977872384e21), SC_(0.15617056749761104583740234375e-1), SC_(0.71962334215641021728515625e-1), SC_(-0.521713036505389027297496795654296875e-5), SC_(0.1335697144755327396002625953088980177925473155612e-7), + SC_(0.897051039890164154368e21), SC_(0.9091429412364959716796875e-2), SC_(0.103353980929199451566091738641262054443359375e-8), SC_(-0.39896293614162682356244622113147248278805078597342e-27), SC_(0.71535020612477739974214063462457085760294155498574e-3), SC_(0.91184909420951764992e21), SC_(0.65724690529779712e17), SC_(0.22635786081082187592983245849609375e-4), SC_(0.28443816312700986870254382665734738111495971679688e-11), SC_(0.70357550553979701321067050402995067028922500261273e-15), SC_(0.949726407769284673536e21), SC_(0.3587426362916534827718351152725517749786376953125e-11), SC_(0.15142064652433650485798833454982273253063182524288e-29), SC_(0.5263105426198626304e19), SC_(0.65505386294903740961944955600649868934680759606662e-27), + SC_(0.1099886552444978593792e22), SC_(0.11876603850689937599006851654101415277642317391837e-21), SC_(0.13402266243506853384161978158875538902350399439456e-19), SC_(-0.58575987284375708479930064918883569902163799270056e-20), SC_(-0.38608701661390120303681923440636689787864952197327e10), SC_(0.1146824826980038344704e22), SC_(0.123134608e9), SC_(0.36464645756234167146109012677852867501115952109103e-20), SC_(0.145960173568e12), SC_(0.25695141822340345338516566415967223808824193353226e-20), SC_(0.1672886569909744566272e22), SC_(0.22487528568887739897399753816881196044619173335377e-19), SC_(0.185430274308630309240832e25), SC_(0.29157344e8), SC_(0.15669081776377370465324112158766399865034932740325e-25), + SC_(0.1711439775257338052608e22), SC_(0.30659185015094057321365504e26), SC_(0.7833119869232177734375e1), SC_(-0.5409414316032e13), SC_(-0.30985201642688029716457103329179602366602811022103e-33), SC_(0.2926998047169095663616e22), SC_(0.3667952402432e14), SC_(0.28799857572511128652513152655127873625243270679086e-26), SC_(0.88063873291015625e2), SC_(0.15325644590239837768811954228179177539171136144697e-17), + SC_(0.427296043882866802688e22), SC_(0.14208654969087828444471944343733085282244221758674e-22), SC_(0.1716118473408512e16), SC_(-0.17996093839902769152e21), SC_(-0.16601104234961252621793669598304861576818344610456e-29), + SC_(0.439028906074585432064e22), SC_(0.320426825e7), SC_(0.32412401535258716801207369728e29), SC_(-0.30931359806372614114377728e26), SC_(-0.27607657181716051791812572528647867932005126507654e-38), SC_(0.5882928907194279657472e22), SC_(0.19802219475157014020096e25), SC_(0.49511542775217689241155796992e29), SC_(0.372750661335885524749755859375e-2), SC_(0.3559981037118474445665924937030462589994417113189e-35), SC_(0.6443661400749065109504e22), SC_(0.240611655851932728105631744e29), SC_(0.15126033260477136128765155826087636266509091563425e-30), SC_(0.95370733737945556640625e0), SC_(0.38753317214698960194399613216931555454276746759297e-24), + SC_(0.6865513577844859469824e22), SC_(0.401415872e9), SC_(0.2812358319675629247660032e25), SC_(-0.2376111269076472061493248e27), SC_(-0.33007281458590603457624836915435654293066634477422e-37), + SC_(0.8553573619324145369088e22), SC_(0.17097021875e6), SC_(0.799823729380687897165824e25), SC_(-0.11171394538600498691494067315943539142608642578125e-10), SC_(0.53609971873333187098178460340334684598225230879559e-24), + SC_(0.12478698822407829848064e23), SC_(0.1965407257080078125e3), SC_(0.344887394304e12), SC_(-0.18247611706101452000439167022705078125e-5), SC_(0.32425282996209840045906418036654137989438047272958e-16), + SC_(0.12842575035600576970752e23), SC_(0.9170528e7), SC_(0.19517806153831335214121622811944689601659774780273e-12), SC_(-0.1536849212646484375e3), SC_(-0.28866373378511381562208782155938170760762386941484e-17), + SC_(0.1434108250941351264256e23), SC_(0.5747814608928768e16), SC_(0.44840411765612042671591552789323031902313232421875e-12), SC_(0.3930397855449088e16), SC_(0.55974105791738659682356948062274012447992428623037e-26), + SC_(0.1791534183567796994048e23), SC_(0.117519666905088e15), SC_(0.4539695293836727165124608e25), SC_(-0.11851369472e11), SC_(0.5136960010384668990061595781452168149528396570548e-29), + SC_(0.37615667369265726488576e23), SC_(0.60285032077445066533982753753662109375e-7), SC_(0.20308769621033541627525034757551728598068407904975e-22), SC_(-0.247466049536e12), SC_(-0.13827879934614263120844099105951850431902385276528e-20), SC_(0.62052514199351953719296e23), SC_(0.53361689503260041482896036939970185741799468814861e-19), SC_(0.9145080596241438650400768e25), SC_(0.88322341442108154296875e-1), SC_(0.21049044423814160247516381166203365355421196509206e-22), + SC_(0.637769379930724892672e23), SC_(0.171703486984142728033475577831268310546875e-7), SC_(0.24447546456940472126007080078125e-3), SC_(-0.26166733832192e14), SC_(-0.92116642322940181469976802769678911153660574378313e-23), + SC_(0.68404845977357665697792e23), SC_(0.72781658358531814423386663293058518320322036743164e-13), SC_(0.69982016e9), SC_(0.16710320473225417331633553408e30), SC_(0.12006936511735891151610090899032124035778652751878e-38), SC_(0.73319304495133544677376e23), SC_(0.2395810662364936952348672e25), SC_(0.24744480848549735980552416482594396338057229911556e-22), SC_(0.42062228e8), SC_(0.17336426124777650281100655275560249740310858728334e-26), + SC_(0.75699898250962334121984e23), SC_(0.29487300065576848347864702404308445693459361791611e-15), SC_(0.269071126588155160952832e26), SC_(0.1079208448e10), SC_(0.10050952810470758835622016409950300106552466316446e-27), + SC_(0.90721537714466311897088e23), SC_(0.391979743592841216e18), SC_(0.15474599e8), SC_(-0.22537551191366473088399216280475560110119998360502e-28), SC_(0.1696578299691663677244712148792478977665952793766e-21), + SC_(0.9457270987101889888256e23), SC_(0.5066510699517101396372603661077960168768186122179e-16), SC_(0.462716831308237710032896e24), SC_(0.84645887067429873701351894510480633471161127090454e-15), SC_(0.67289657651508478617450509217543609215998762913744e-15), SC_(0.98595622295761632362496e23), SC_(0.1268757375e7), SC_(0.35219765472105368786515100509859621524810791015625e-12), SC_(-0.103132532828012544e18), SC_(-0.12278243966700762109179057970948886254224771593575e-26), + SC_(0.125138271246813010853888e24), SC_(0.507435381412506103515625e0), SC_(0.457703061401844024658203125e-1), SC_(-0.2404502470656e13), SC_(-0.52988754487843399200517365148569210454939618816664e-22), + SC_(0.210179409744077661405184e24), SC_(0.775467603201754089842406683474462128114628768627e-26), SC_(0.1351436267417501696e19), SC_(-0.9742528076171875e3), SC_(-0.48421711808796773233785861274336554356656425853338e-29), SC_(0.211431536541276225667072e24), SC_(0.209520402514204164096e23), SC_(0.374303497374057769775390625e-1), SC_(0.119524568020779042853973805904388427734375e-7), SC_(0.19038048046682714911932275529728701896995311231633e-20), + SC_(0.261697851292622694383616e24), SC_(0.232045472709846499328e21), SC_(0.740444091796875e3), SC_(-0.40228969244368584234905483754118904471397399902344e-12), SC_(0.2584457357103991738079307538340636200872583014807e-21), SC_(0.277204771630374352584704e24), SC_(0.178649388253688812255859375e-1), SC_(0.1626075136e10), SC_(0.32477325439453125e2), SC_(0.38373039029677064419294488780664341812940671142276e-16), SC_(0.283834790857804101976064e24), SC_(0.1190209257472e16), SC_(0.14477963558912e14), SC_(0.4968694503397173407776768e25), SC_(0.1201225027146965514322811861323721315530271750753e-34), SC_(0.283915729550307204530176e24), SC_(0.2116143198171993589085104758851230144500732421875e-11), SC_(0.14341135e7), SC_(0.5234013997795115008e19), SC_(0.16303242760584592161576898954092115216713837835169e-28), + SC_(0.385585445901317154275328e24), SC_(0.34954261617532788444443056161126115455317631131038e-20), SC_(0.962023936e9), SC_(0.1173024060108218691311776638031005859375e-6), SC_(0.71438835322268723367469707367256359972531243523922e-12), + SC_(0.48688847917066659823616e24), SC_(0.12212552573408426924125600686592708205013835254249e-21), SC_(0.1269279595243605041993096779751049041351507185027e-17), SC_(-0.72183370215235675049388064383748542240937240421772e-17), SC_(-0.87497936351054671381052980107636114663083556746798e6), + SC_(0.499508033700919974559744e24), SC_(0.83543058300870143401334898234397545457863287765576e-22), SC_(0.83509703330004320109836157826066482812166213989258e-13), SC_(0.28795215625e6), SC_(0.324824360656453279750504665337982414528286007074e-15), SC_(0.606468632937360311451648e24), SC_(0.2216391133125217294264075462706387042999267578125e-10), SC_(0.12612983614823632236281100094325209625724382167533e-23), SC_(0.27668977677607065057685531428433023393154144287109e-12), SC_(0.22836510730242525394190340897974708875725743760574e1), + SC_(0.903024183216244059537408e24), SC_(0.15518063165544166788813746673722175600112280614926e-28), SC_(0.62680088576e11), SC_(-0.497913248836994171142578125e-1), SC_(-0.50366521060667220070702394050068183035765006836168e-22), + SC_(0.903113750805633203961856e24), SC_(0.2226578423545856e16), SC_(0.42335034231655299663543701171875e-3), SC_(0.72104642819988094924627148093521618126520988933947e-24), SC_(0.79999537635872505410233957947111656702210094502265e-16), + SC_(0.1031290663771427871653888e25), SC_(0.257509465140248750003593158908188343048095703125e-10), SC_(0.2186597346798524300263424e25), SC_(-0.40490232490529281863807058161608409818654763512313e-18), SC_(0.3809772984915159073428314854828102660677914157018e-17), SC_(0.106024931377857842642944e25), SC_(0.2087689239260726026259362697601318359375e-6), SC_(0.8719922561795101501047611236572265625e-9), SC_(0.76085361343068974874624e24), SC_(0.13617175123806700013292760824408068565561587489962e-33), SC_(0.1404590434004466388697088e25), SC_(0.2110544375e6), SC_(0.2084326724156433559977984e25), SC_(0.516740970708992e15), SC_(0.12115287981044689713392709277915156534118670211248e-30), + SC_(0.1511774231638439207370752e25), SC_(0.11230262057176420704600692485968125650585766606149e-24), SC_(0.2174006933223990990452293632e28), SC_(-0.2921577472e11), SC_(-0.42627147535886558844166037730594649807162499889897e-37), SC_(0.1611108507323484384264192e25), SC_(0.11971012087915599989354498156046702206367626786232e-15), SC_(0.191893782528e12), SC_(0.873085859375e5), SC_(0.2867037497672644519809952844518942654262315886081e-19), SC_(0.1657523685947075284959232e25), SC_(0.25513326169038305064700172114511289578331343363971e-18), SC_(0.80186429235745095942144e23), SC_(0.1547967032333730230675428174436092376708984375e-9), SC_(0.10388880365043120092474875588793613904886787794866e-17), SC_(0.2325958174819757687046144e25), SC_(0.10062084498940748744644224643707275390625e-8), SC_(0.73901765063055790960788726806640625e-5), SC_(0.1686328448e10), SC_(0.20077650573547504082824414766675227623171993152151e-19), @@ -369,32 +754,62 @@ SC_(0.3658255674684168267104256e25), SC_(0.347205125e7), SC_(0.952333915392338525421568e25), SC_(0.493732747180191557510859063296e30), SC_(0.38595612990567469629333401973433790503717814345531e-41), SC_(0.80777571722833747247104e25), SC_(0.55398272e10), SC_(0.341833367802954728115011584e27), SC_(0.4525246741929405710336e22), SC_(0.13127412651201261844673654075052287525110627430968e-35), SC_(0.18820064668587267094216704e26), SC_(0.302210201308383830109960399568080902099609375e-9), SC_(0.33895318467300131244893458519885746926814107382597e-21), SC_(-0.220309690490694265463389456272125244140625e-7), SC_(-0.8857373512501906409555193551969219570566044570186e-4), + SC_(0.21080026013603626963959808e26), SC_(0.46500309524870072390394842225085081377500273447367e-20), SC_(0.111704088747501373291015625e0), SC_(-0.2204564333716972336895229952e28), SC_(-0.93741877431301314282215548916844170971630819751383e-38), SC_(0.24925849334950778558742528e26), SC_(0.31317834636651731435069138009717243018286553235541e-24), SC_(0.446171086848e12), SC_(0.611424244567615460255183279514312744140625e-10), SC_(0.18071495322856456358853957065938890778533770500459e-12), + SC_(0.25957591871894418276483072e26), SC_(0.33820226466031909703805272138232851375505561009049e-17), SC_(0.407093465328216552734375e-1), SC_(-0.74596487672624371624736927532950403474387712776661e-17), SC_(0.55899053627950401691741891899760992409332510195374e-3), SC_(0.34176589422481911700258816e26), SC_(0.2594374745967797935009002685546875e-4), SC_(0.32639631015324299667668128677178174257278442382813e-11), SC_(-0.39206009507215186830735710722877728969003926356995e-26), SC_(0.99656432592835780571086861488747564238726543822412e-3), + SC_(0.52899930894361691974270976e26), SC_(0.403085186917451210319995880126953125e-5), SC_(0.6825940447919154921472e22), SC_(-0.14375419641822445568e20), SC_(-0.60363232208546199946445713316543948296321482911499e-34), + SC_(0.537890916288306029264896e26), SC_(0.12782816893625960774148491808127646127292821945365e-26), SC_(0.573235595703125e4), SC_(-0.12544778125e6), SC_(-0.71657596009498530548482712636575535494211682114149e-17), + SC_(0.8433542407536772363845632e26), SC_(0.42796459072778090240040672609944646251280316040511e-25), SC_(0.22687100431950362857652078512823989875357710843673e-19), SC_(0.11294291974004753756629686802523751532056905944046e-20), SC_(0.88701138982547221081855811970715058644159621057193e8), + SC_(0.139104185388464893432168448e27), SC_(0.231760859375e5), SC_(0.43720544762662627569227424828568473458290100097656e-12), SC_(0.2374636544e10), SC_(0.6921609089013412373280402427506383594598908716228e-21), + SC_(0.156845304607866907279753216e27), SC_(0.976198280113749206066131591796875e-4), SC_(0.10936154937744140625e3), SC_(-0.41998498541662710058071359488e30), SC_(-0.16652502911178853185876697517315755871318331105826e-40), SC_(0.157999646511767429891227648e27), SC_(0.69354773968300552570460372409157516301196394394729e-27), SC_(0.40459505460468958310676912404346694529522210359573e-15), SC_(0.2743745536e11), SC_(0.26472063332119141767164566279621494424995662755822e-21), + SC_(0.169200325045883132536946688e27), SC_(0.12987603416915550095353577472e30), SC_(0.20901618155057581480384722985230161462766318436479e-21), SC_(-0.8212174501576704e16), SC_(-0.49333829304862756761854981623471626931832589089802e-40), SC_(0.18019738841891322915192832e27), SC_(0.1161228928e10), SC_(0.18421718410258806513944641963201765549884569850292e-21), SC_(-0.39847982078741191696921488112504566858618204605591e-21), SC_(0.17283122168253610043193906220733507044384388549389e-6), + SC_(0.240541779585381516324110336e27), SC_(0.2905063139374032543660320015987963415682315826416e-13), SC_(0.36726935534616426233006549022576515777221278780118e-24), SC_(0.5391843328e12), SC_(0.10685173357205110804114321359031375712546961715976e-22), SC_(0.26160499139176195703177216e27), SC_(0.25551566240720070127823149164214555639773607254028e-14), SC_(0.2455513858048e13), SC_(0.76865694789146174443197825024e29), SC_(0.42102041637540574313527997216886696455400412572293e-40), SC_(0.28423416574930367528566784e27), SC_(0.34055852755898730066519419779069721698760986328125e-11), SC_(0.70640065850067723747656760044083495790872423425455e-25), SC_(0.10020495667270640877824310586985401272386297932826e-18), SC_(0.47817076033607555350752704896344130871965359055178e3), SC_(0.339603340911883980420153344e27), SC_(0.539351792484352e16), SC_(0.5777183105237782001495361328125e-3), SC_(-0.42759100966109184e17), SC_(-0.63088198011691858070252939500618223753106170783744e-29), SC_(0.418457674697258348132171776e27), SC_(0.1146871355062355355511214309376e31), SC_(0.4832090820796481536e19), SC_(0.2239617e8), SC_(0.85607629029587105611757975652813867965916905262051e-36), SC_(0.482905248935018145708507136e27), SC_(0.11712293277443256300383769147321899595226568635553e-17), SC_(0.43801356384862208e17), SC_(0.790541259765625e4), SC_(0.11524019934599608840071663225685934856677773818628e-22), + SC_(0.704943726729360116931362816e27), SC_(0.280859119791213305197045481472e30), SC_(0.9329180732400125083648e22), SC_(-0.263649216e9), SC_(0.35954212306917041544272590413024826280517747178928e-37), + SC_(0.108138576895876428321521664e28), SC_(0.121629664e9), SC_(0.837203197023246876672e21), SC_(-0.34636652e8), SC_(0.3495258670475377943600732910414924000928562264996e-27), + SC_(0.1583264268936843798561947648e28), SC_(0.74033955225251559624163877337821304536191746592522e-16), SC_(0.106813757838608580641448497772216796875e-8), SC_(-0.95081157982349395751953125e-1), SC_(-0.78067064686933324405048609338056968328732594995288e-11), + SC_(0.1903848463306411019979456512e28), SC_(0.41524315625e6), SC_(0.9603179872256e13), SC_(-0.33670611871566835660019023634959012269973754882813e-11), SC_(0.7013450981963919041695196214483817396500069641397e-21), + SC_(0.1982984109938909458353618944e28), SC_(0.57559058523154999707763811983890536611676287215116e-28), SC_(0.18954326454529174714382811136e29), SC_(-0.71769535185590157312e20), SC_(-0.12181377246911709254263035815242321871232107633234e-40), + SC_(0.222246520174005267545980928e28), SC_(0.24442432318827852328354708908776139753005196553204e-21), SC_(0.1358339280940150480054651703124000152939184472259e-28), SC_(0.1929096832275390625e3), SC_(0.93043265128569252665328167060574294046977922061101e-14), SC_(0.228460490382675067103346688e28), SC_(0.1059283606822132483824577235054573273384526110874e-22), SC_(0.7495925e5), SC_(0.18313684375e6), SC_(0.45341966440085175811927852865624259192364499711347e-18), SC_(0.2295552972647520995079356416e28), SC_(0.8116024169921875e3), SC_(0.406449488413065216e18), SC_(0.1210972363736206571586395807697363987873694080033e-25), SC_(0.11680274510678021465134575907548276246526274420346e-21), + SC_(0.2314228013625886776106156032e28), SC_(0.14528588632178353334811760078082443214952945709229e-14), SC_(0.54849175282200488156594176e26), SC_(0.5798830216008354909718036651611328125e-7), SC_(0.54921077785694851775062771637993351556303331064265e-22), + SC_(0.3699745104553947847137951744e28), SC_(0.34977231725807742732787449097997501262533496350712e-30), SC_(0.120393285632e12), SC_(0.954876e8), SC_(0.22448886572410705870109454870839959584090293621426e-22), SC_(0.3838393489343095451259240448e28), SC_(0.103355013339542251670339584e27), SC_(0.98872197265625e4), SC_(0.57959118635033995205500453873348476463434053584933e-17), SC_(0.12041009164150948897691954156849133755234146202352e-26), SC_(0.5654821947040481368071995392e28), SC_(0.47785181184e14), SC_(0.40587309056e11), SC_(-0.37375441752374172210693359375e-3), SC_(0.48193946518009700351168874164523132159351681991985e-24), + SC_(0.6775909979186304065686470656e28), SC_(0.8062150656e10), SC_(0.348559752335036776448e21), SC_(-0.8760775059456393216e19), SC_(-0.10282120977675613763363596767906302856864535909313e-33), SC_(0.7376334675354954747676196864e28), SC_(0.3832167254355459644063744e25), SC_(0.86986000872677090266227306614155168063007295131683e-15), SC_(-0.635832114613491743743541248e28), SC_(-0.24621535270065684155147722097385679585890775903462e-40), SC_(0.9551179238333844741448269824e28), SC_(0.7608356306944e13), SC_(0.5558017730712890625e1), SC_(0.41698188855306519252274162436284849815711030154158e-27), SC_(0.15612097421897443717100059952264109969304027375674e-18), + SC_(0.10531197197128523245005307904e29), SC_(0.12791422998544384e17), SC_(0.660148875e6), SC_(0.33461133902897741824e20), SC_(0.40438261456319118306216960428142150932574137900723e-32), SC_(0.12457122281020492087329554432e29), SC_(0.7671683806842035634176e22), SC_(0.232967583002618994214572012424468994140625e-7), SC_(-0.24723743603662803294991612279574155763839371502399e-16), SC_(0.22166650205242874655754051451333910848954470186131e-19), SC_(0.15703756321543097476213374976e29), SC_(0.3366045475006103515625e1), SC_(0.15573768317699432373046875e0), SC_(0.6116611973854022065889826509770647605297401467399e-30), SC_(0.11358697102558723782406276684855724930886990175612e-11), + SC_(0.16696330462519916007687979008e29), SC_(0.1930155264e10), SC_(0.63629325734928786425753617162284769825930652586976e-20), SC_(0.12920223388671875e4), SC_(0.2308199605723093565210069675443489489234691184839e-19), + SC_(0.17764058704888363507915948032e29), SC_(0.79766535274496e14), SC_(0.39754495142903122994659328e26), SC_(-0.14620739417686359499606065152e29), SC_(-0.57422745573841589040276380059216580638301950767727e-41), SC_(0.31748377778186208813596540928e29), SC_(0.1675580742552227722297344e25), SC_(0.42063803333440515664792681748951699777781240829747e-29), SC_(0.429656843192433391960064e24), SC_(0.23926759355712048744385470425532188141681573695193e-37), SC_(0.3649235853244794839343562752e29), SC_(0.12279541379302346893022276017590817959179716467588e-21), SC_(0.40871462586513926278727773609006357347084303910378e-20), SC_(0.87854579712e12), SC_(0.67492676307713588597128960931053684956956100221764e-24), + SC_(0.36533776047685956616782348288e29), SC_(0.82729172633504849398988767461560200899839401245117e-13), SC_(0.8131970819162112e17), SC_(-0.1192539684780058450996875762939453125e-5), SC_(0.13274939233001620432487252088510733166654023704738e-22), + SC_(0.63201895715548519849695117312e29), SC_(0.659935944174255143387136e24), SC_(0.235792458057403564453125e0), SC_(-0.3216055136681984e16), SC_(-0.18080738259064818364416597919348501783180949800115e-37), SC_(0.6372859541648241998931427328e29), SC_(0.242449971847236156463623046875e-2), SC_(0.27421585230570622547519032963236895739100873470306e-15), SC_(-0.303756275177001953125e2), SC_(-0.2116865223447144892600764830285901409868915835424e-14), + SC_(0.66201188727981103266043789312e29), SC_(0.733696256e9), SC_(0.350810660994547712e18), SC_(-0.2088726080984315558453090488910675048828125e-8), SC_(0.1518448361705534157919668106359692557429828526005e-25), + SC_(0.67397727780311165361354440704e29), SC_(0.2701057007003141150867456e25), SC_(0.32037437278282544783625240825131186284124851226807e-14), SC_(-0.14639644477145580259147550350462552160024642944336e-12), SC_(0.26795251743869315367874488984214665026594244506073e-20), SC_(0.74469943825056746033385570304e29), SC_(0.25381451890023692523876122624e29), SC_(0.353061568e9), SC_(0.3667164349963059066794812679290771484375e-7), SC_(0.70123509979767730264405232269736730186653622643256e-31), + SC_(0.83503273667541398709050802176e29), SC_(0.64436475218886656e17), SC_(0.1095445250048e15), SC_(-0.27828965472666412863213985278623730405131117028594e-26), SC_(0.18517871294794141505416209832668190646081405513643e-27), SC_(0.154135841378084202520367857664e30), SC_(0.11531852972032e14), SC_(0.28385876039913134187331286456979634325037409325887e-20), SC_(0.64800658718743622607072501400418684802673396916362e-20), SC_(0.31602768754325763081308012038930598073631539942634e-10), + SC_(0.205367992548434895604069433344e30), SC_(0.18794387499923534284127922718010683666989280027337e-18), SC_(0.644523545719734272e18), SC_(0.21339260514789921879362708770529188928577468686854e-21), SC_(0.77709407338464422363910627214199294770600429104781e-13), + SC_(0.288644753185258968910800093184e30), SC_(0.3712882e7), SC_(0.67304340158588786789888913154097233038086756096163e-21), SC_(0.228604896e9), SC_(0.6770315462223105083152407343178427212980572931536e-22), SC_(0.32259278802051668555153276928e30), SC_(0.6638677978515625e3), SC_(0.11419584692467545095073688798947841860353946685791e-13), SC_(-0.914323027245700359344482421875e-4), SC_(-0.77167253067005495411786081658186819275011987939055e-17), SC_(0.593089902380358100434877939712e30), SC_(0.6506956228718475954142519412926048971712589263916e-14), SC_(0.61562469482421875e2), SC_(0.2321270964224e13), SC_(0.21597485998566959444034291971333852159947917872266e-25), + SC_(0.653810657301073942950006751232e30), SC_(0.3684862263296e13), SC_(0.1658748045099008e17), SC_(-0.2043063195140096e16), SC_(-0.17992368419735800205714333900182443278381089486339e-30), SC_(0.90054999923278052824918786048e30), SC_(0.5752800417419362304e19), SC_(0.23091611800228823082094034944e29), SC_(0.437946654856204986572265625e-1), SC_(0.20691242362670718543784273355620160692479713280658e-36), SC_(0.1138966491359350198995104301056e31), SC_(0.16628866613248e14), SC_(0.83722254681922700089433337836521478725337885862245e-21), SC_(0.351686295552e12), SC_(0.16740484414913831836071532979123766364786418157375e-26), + SC_(0.1155650423248669340749283721216e31), SC_(0.55448366981994133391117331177699867339470074512064e-18), SC_(0.120595209390657634304e22), SC_(-0.31079530179668142456832e23), SC_(-0.20503537182647658707141982907149513184896420806907e-36), }; #undef SC_ diff --git a/test/test_carlson.cpp b/test/test_carlson.cpp index e0c12e818..a41b790b5 100644 --- a/test/test_carlson.cpp +++ b/test/test_carlson.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2006 Xiaogang Zhang +// Copyright (c) 2006 John Maddock // Use, modification and distribution are subject to the // Boost Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) @@ -90,14 +90,14 @@ void expected_results() ".*", // platform largest_type, // test type(s) ".*RJ.*", // test data group - ".*", 150, 50); // test function + ".*", 180, 50); // test function add_expected_result( ".*", // compiler ".*", // stdlib ".*", // platform "real_concept", // test type(s) ".*RJ.*", // test data group - ".*", 150, 50); // test function + ".*", 180, 50); // test function add_expected_result( ".*", // compiler ".*", // stdlib diff --git a/test/test_ellint_1.cpp b/test/test_ellint_1.cpp index 6d8f2b121..1f62d6ccb 100644 --- a/test/test_ellint_1.cpp +++ b/test/test_ellint_1.cpp @@ -1,4 +1,5 @@ // Copyright (c) 2006 Xiaogang Zhang +// Copyright (c) 2006 John Maddock // // Use, modification and distribution are subject to the // Boost Software License, Version 1.0. (See accompanying file @@ -97,8 +98,8 @@ void do_test_ellint_f(T& data, const char* type_name, const char* test) result = boost::math::tools::test( data, boost::lambda::bind(fp2, - boost::lambda::ret(boost::lambda::_1[0]), - boost::lambda::ret(boost::lambda::_1[1])), + boost::lambda::ret(boost::lambda::_1[1]), + boost::lambda::ret(boost::lambda::_1[0])), boost::lambda::ret(boost::lambda::_1[2])); handle_test_result(result, data[result.worst()], result.worst(), type_name, "boost::math::ellint_1", test); diff --git a/test/test_ellint_2.cpp b/test/test_ellint_2.cpp index b87a7e1e7..741cfaac3 100644 --- a/test/test_ellint_2.cpp +++ b/test/test_ellint_2.cpp @@ -1,4 +1,5 @@ // Copyright (c) 2006 Xiaogang Zhang +// Copyright (c) 2006 John Maddock // Use, modification and distribution are subject to the // Boost Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) @@ -96,8 +97,8 @@ void do_test_ellint_e2(const T& data, const char* type_name, const char* test) result = boost::math::tools::test( data, boost::lambda::bind(fp2, - boost::lambda::ret(boost::lambda::_1[0]), - boost::lambda::ret(boost::lambda::_1[1])), + boost::lambda::ret(boost::lambda::_1[1]), + boost::lambda::ret(boost::lambda::_1[0])), boost::lambda::ret(boost::lambda::_1[2])); handle_test_result(result, data[result.worst()], result.worst(), type_name, "boost::math::ellint_2", test); diff --git a/test/test_ellint_3.cpp b/test/test_ellint_3.cpp index 39c616295..98eb2ef8b 100644 --- a/test/test_ellint_3.cpp +++ b/test/test_ellint_3.cpp @@ -1,4 +1,5 @@ // Copyright (c) 2006 Xiaogang Zhang +// Copyright (c) 2006 John Maddock // Use, modification and distribution are subject to the // Boost Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) @@ -112,9 +113,9 @@ void do_test_ellint_pi3(T& data, const char* type_name, const char* test) result = boost::math::tools::test( data, boost::lambda::bind(fp2, + boost::lambda::ret(boost::lambda::_1[2]), boost::lambda::ret(boost::lambda::_1[0]), - boost::lambda::ret(boost::lambda::_1[1]), - boost::lambda::ret(boost::lambda::_1[2])), + boost::lambda::ret(boost::lambda::_1[1])), boost::lambda::ret(boost::lambda::_1[3])); handle_test_result(result, data[result.worst()], result.worst(), type_name, "boost::math::ellint_3", test); @@ -137,8 +138,8 @@ void do_test_ellint_pi2(T& data, const char* type_name, const char* test) result = boost::math::tools::test( data, boost::lambda::bind(fp2, - boost::lambda::ret(boost::lambda::_1[0]), - boost::lambda::ret(boost::lambda::_1[1])), + boost::lambda::ret(boost::lambda::_1[1]), + boost::lambda::ret(boost::lambda::_1[0])), boost::lambda::ret(boost::lambda::_1[2])); handle_test_result(result, data[result.worst()], result.worst(), type_name, "boost::math::ellint_3", test); @@ -211,11 +212,11 @@ void test_spots(T, const char* type_name) do_test_ellint_pi2(ellint_pi2_data, type_name, "Complete Elliptic Integral PI: Random Data"); // Special cases, exceptions etc: - BOOST_CHECK_THROW(boost::math::ellint_3(T(-1), T(0), T(1.0001)), std::domain_error); - BOOST_CHECK_THROW(boost::math::ellint_3(T(20), T(1.5), T(0.5)), std::domain_error); - BOOST_CHECK_THROW(boost::math::ellint_3(T(-1), T(1.0001)), std::domain_error); - BOOST_CHECK_THROW(boost::math::ellint_3(T(1), T(0.5)), std::domain_error); - BOOST_CHECK_THROW(boost::math::ellint_3(T(2), T(0.5)), std::domain_error); + BOOST_CHECK_THROW(boost::math::ellint_3(T(1.0001), T(-1), T(0)), std::domain_error); + BOOST_CHECK_THROW(boost::math::ellint_3(T(0.5), T(20), T(1.5)), std::domain_error); + BOOST_CHECK_THROW(boost::math::ellint_3(T(1.0001), T(-1)), std::domain_error); + BOOST_CHECK_THROW(boost::math::ellint_3(T(0.5), T(1)), std::domain_error); + BOOST_CHECK_THROW(boost::math::ellint_3(T(0.5), T(2)), std::domain_error); } int test_main(int, char* []) diff --git a/tools/ellint_f_data.cpp b/tools/ellint_f_data.cpp index bae3e075d..aca70597d 100644 --- a/tools/ellint_f_data.cpp +++ b/tools/ellint_f_data.cpp @@ -23,7 +23,7 @@ float truncate_to_float(float const * pf) template T ellint_f_data(T phi, T k) { - return ellint_1(phi, k); + return ellint_1(k, phi); } int test_main(int argc, char*argv []) diff --git a/tools/ellint_pi2_data.cpp b/tools/ellint_pi2_data.cpp index 9cb355c0d..8287e748c 100644 --- a/tools/ellint_pi2_data.cpp +++ b/tools/ellint_pi2_data.cpp @@ -38,7 +38,7 @@ int test_main(int argc, char*argv []) return 1; NTL::RR (*fp)(NTL::RR, NTL::RR) = &ellint_3; - data.insert(fp, arg1, arg2); + data.insert(fp, arg2, arg1); std::cout << "Any more data [y/n]?"; std::getline(std::cin, line); diff --git a/tools/ellint_pi3_data.cpp b/tools/ellint_pi3_data.cpp index f8168c087..39a79d30b 100644 --- a/tools/ellint_pi3_data.cpp +++ b/tools/ellint_pi3_data.cpp @@ -25,7 +25,7 @@ std::tr1::tuple generate_data(NTL::RR n, NTL::RR phi) std::tr1::uniform_real ui(0, 1); float k = ui(r); NTL::RR kr(truncate_to_float(&k)); - NTL::RR result = boost::math::ellint_3(n, phi, kr); + NTL::RR result = boost::math::ellint_3(kr, n, phi); return std::tr1::make_tuple(kr, result); }