summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--DCS.bib23
-rw-r--r--Makefile8
-rw-r--r--chapter04/content_ch04.tex225
-rw-r--r--chapter04/win_blackman.svg1592
-rw-r--r--chapter04/win_gauss.svg1604
-rw-r--r--chapter04/win_hamming.svg1595
-rw-r--r--chapter04/win_hann.svg1596
-rw-r--r--chapter04/win_rect.svg1594
-rw-r--r--chapter04/win_tri.svg1599
-rw-r--r--common/settings.tex9
10 files changed, 9801 insertions, 44 deletions
diff --git a/DCS.bib b/DCS.bib
index 5799af3..9d08198 100644
--- a/DCS.bib
+++ b/DCS.bib
@@ -7,7 +7,7 @@
howpublished = {Wikimedia},
year = {2007},
note = {License: \href{https://creativecommons.org/licenses/by-sa/3.0/deed.en}{CC-BY-SA
- 3.0}},
+ 3.0}, Accessed: 2020-05-26},
owner = {ple},
timestamp = {2020.05.05},
url = {https://en.wikipedia.org/wiki/File:Rainbow_above_Kaviskis_Lake,_Lithuania.jpg}
@@ -20,7 +20,7 @@
month = {11},
year = {2016},
note = {License: \href{https://creativecommons.org/licenses/by-sa/3.0/deed.en}{CC-BY-SA
- 3.0}},
+ 3.0}, Accessed: 2020-05-26},
owner = {ple},
timestamp = {2020.05.17},
url = {https://commons.wikimedia.org/wiki/File:Comparison_convolution_correlation.svg}
@@ -31,7 +31,7 @@
title = {Netowrk topologies},
howpublished = {Wikimedia},
year = {2011},
- note = {License: Public Domain},
+ note = {License: Public Domain, Accessed: 2020-05-26},
owner = {ple},
timestamp = {2020.05.04},
url = {https://en.wikipedia.org/wiki/File:NetworkTopologies.svg}
@@ -42,7 +42,7 @@
title = {Electromagnetic spectrum},
year = {2012},
note = {License: \href{https://creativecommons.org/licenses/by-sa/3.0/deed.en}{CC-BY-SA
- 3.0}},
+ 3.0}, Accessed: 2020-05-26},
owner = {ple},
timestamp = {2020.05.03},
url = {https://en.wikipedia.org/wiki/File:Electromagnetic-Spectrum.svg}
@@ -78,7 +78,7 @@
howpublished = {Wikimedia},
year = {2007},
note = {License: \href{https://creativecommons.org/licenses/by-sa/3.0/deed.en}{CC-BY-SA
- 3.0}},
+ 3.0}, Accessed: 2020-05-26},
owner = {ple},
timestamp = {2020.05.03},
url = {https://en.wikipedia.org/wiki/File:EM_Spectrum_Properties_edit.svg}
@@ -96,6 +96,19 @@
url = {https://en.wikisource.org/wiki/A_Dynamical_Theory_of_the_Electromagnetic_Field}
}
+@MISC{Niemitalo2013,
+ author = {Olli Niemitalo},
+ title = {Window function and frequency response},
+ howpublished = {Wikipedia},
+ month = {02},
+ year = {2013},
+ note = {License: \href{https://creativecommons.org/publicdomain/zero/1.0/deed.en}{CC0
+ 1.0}, Accessed: 2020-05-26},
+ owner = {ple},
+ timestamp = {2020.05.26},
+ url = {https://en.wikipedia.org/wiki/Window_function}
+}
+
@BOOK{Shannon1949,
title = {The Mathematical Theory of Communication},
publisher = {University of Illinois Press},
diff --git a/Makefile b/Makefile
index 9977656..c13a8b4 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ LATEXMK_PVC = $(LATEXMK) -pvc
ALL_CHAPTERS = $(BUILD_DIR)/chapter00.pdf $(BUILD_DIR)/chapter01.pdf $(BUILD_DIR)/chapter02.pdf $(BUILD_DIR)/chapter03.pdf $(BUILD_DIR)/chapter04.pdf
ALL_EXERCISES = $(BUILD_DIR)/exercise00.pdf $(BUILD_DIR)/exercise01.pdf $(BUILD_DIR)/exercise02.pdf $(BUILD_DIR)/exercise03.pdf
-ALL_SVGS = $(BUILD_DIR)/svg/ch01_EM_Spectrum_Properties.pdf $(BUILD_DIR)/svg/ch01_Electromagnetic-Spectrum.pdf $(BUILD_DIR)/svg/ch01_NetworkTopologies.pdf $(BUILD_DIR)/svg/ch03_Conv_Corr_Auto.pdf
+ALL_SVGS = $(BUILD_DIR)/svg/ch01_EM_Spectrum_Properties.pdf $(BUILD_DIR)/svg/ch01_Electromagnetic-Spectrum.pdf $(BUILD_DIR)/svg/ch01_NetworkTopologies.pdf $(BUILD_DIR)/svg/ch03_Conv_Corr_Auto.pdf $(BUILD_DIR)/svg/ch04_win_blackman.pdf $(BUILD_DIR)/svg/ch04_win_hamming.pdf $(BUILD_DIR)/svg/ch04_win_hann.pdf $(BUILD_DIR)/svg/ch04_win_rect.pdf $(BUILD_DIR)/svg/ch04_win_tri.pdf $(BUILD_DIR)/svg/ch04_win_gauss.pdf
COMMON_DEPS = common/settings.tex common/titlepage.tex common/acronym.tex common/imprint.tex DCS.bib
all: chapters exercises complete
@@ -44,6 +44,12 @@ $(BUILD_DIR)/svg/ch01_EM_Spectrum_Properties.pdf: chapter01/EM_Spectrum_Properti
$(BUILD_DIR)/svg/ch01_Electromagnetic-Spectrum.pdf: chapter01/Electromagnetic-Spectrum.svg
$(BUILD_DIR)/svg/ch01_NetworkTopologies.pdf: chapter01/NetworkTopologies.svg
$(BUILD_DIR)/svg/ch03_Conv_Corr_Auto.pdf: chapter03/Comparison_convolution_correlation.svg
+$(BUILD_DIR)/svg/ch04_win_blackman.pdf: chapter04/win_blackman.svg
+$(BUILD_DIR)/svg/ch04_win_hamming.pdf: chapter04/win_hamming.svg
+$(BUILD_DIR)/svg/ch04_win_hann.pdf: chapter04/win_hann.svg
+$(BUILD_DIR)/svg/ch04_win_rect.pdf: chapter04/win_rect.svg
+$(BUILD_DIR)/svg/ch04_win_tri.pdf: chapter04/win_tri.svg
+$(BUILD_DIR)/svg/ch04_win_gauss.pdf: chapter04/win_gauss.svg
%-watch: main/%.tex
mkdir -p $(BUILD_DIR)
diff --git a/chapter04/content_ch04.tex b/chapter04/content_ch04.tex
index e3a90ac..e93f287 100644
--- a/chapter04/content_ch04.tex
+++ b/chapter04/content_ch04.tex
@@ -1061,7 +1061,7 @@ The \ac{DFT} \eqref{eq:ch04:dft} can be expressed as a linear system of equation
\cmplxvect{X} = \underline{\mat{F}} \cdot \cmplxvect{x}
\end{equation}
-The $N \times N$ transformation matrix $\underline{\mat{F}}$ is the \index{DFTmatrx} \textbf{ac{DFT} matrix} with the elements:
+The $N \times N$ transformation matrix $\underline{\mat{F}}$ is the \index{DFT matrx} \textbf{\ac{DFT} matrix} with the elements:
\begin{equation}
\underline{F}_{pq} = \underline{w}^{p \cdot q}
\end{equation}
@@ -1135,7 +1135,8 @@ A sequence of length $N$ is taken out of $\underline{x}[n]$:
\end{equation}
The act of extracting $N$ subsequent samples out of $\underline{x}[n]$ is called \index{windowing} \textbf{windowing}. To illustrate this, imagine that you watch a sequence moving to the left through a window. The movement to the left is the time advance. Because of the window, you see a certain extract of $\underline{x}[n]$ only at one time.
-\todo{Window illustration}
+%TODO
+%\todo{Window illustration}
This sequence is repeated indefinitely (\emph{periodic continuation}):
\begin{equation}
@@ -1169,22 +1170,31 @@ Windowing and periodic continuation is, in fact, a sampling of the \ac{DTFT} (se
The widowing of $\underline{x}[n]$ to obtain $\underline{x}_N[n]$ as discussed before did not change the values of $\underline{x}[n]$. This can be expressed as a multiplication of the original sequence with the rectangular function:
\begin{equation}
- \underline{x}_W[n] = \underline{x}_N[n] \cdot \underbrace{w_{rect,N}[n]}_{\text{Rectangular window}}
+ \underline{x}_W[n] = \underline{x}_N[n] \cdot \underbrace{w_{rect,M}[n]}_{\text{Rectangular window}}
\end{equation}
-where
+where $w_{rect,M}[n]$ is the rectangular function of the length $M$:
\begin{equation}
- w_{rect,N}[n] = \begin{cases}
- 1 &\quad \text{if } \; 0 \geq n < N, \\
+ w_{rect,M}[n] = \begin{cases}
+ 1 &\quad \text{if } \; -\frac{M-1}{2} \leq n \leq \frac{M-1}{2}, \\
0 &\quad \text{else}.
\end{cases}
\end{equation}
+$M$ shall be an odd number.
-$w[n]$ is called \index{window function} \textbf{window function}.
+$w_M[n]$ is called \index{window function} \textbf{window function}.
\begin{definition}{Window function}
- A \index{window function} \textbf{window function} $w[n]$ is applied to the periodically continued sequence $\underline{x}_N[n]$ by multiplication:
+ A \index{window function} \textbf{window function} $w_M[n]$ is applied to the periodically continued sequence $\underline{x}_N[n]$ by multiplication:
\begin{equation}
- \underline{x}_N[n] \equiv \underline{x}[n] \cdot w[n]
+ \underline{x}_N[n] \equiv \underline{x}[n] \cdot w_M[n]
\end{equation}
+
+ Window functions are $w_M[n]$:
+ \begin{itemize}
+ \item limited to a length of $M$
+ \item where $M$ is an odd number,
+ \item always symmetric (even functions), and
+ \item real-valued.
+ \end{itemize}
\end{definition}
\subsubsection{Spectral Leakage}
@@ -1207,6 +1217,16 @@ This has some implications:
\end{itemize}
This effect is called \index{spectral leakage} \textbf{spectral leakage}.
+\begin{fact}
+ The window changes only the amplitude spectrum, but not the phase of the sampled signal.
+\end{fact}
+\begin{itemize}
+ \item The window function is an even, real-valued function.
+ \item Its Fourier transform is therefore always real-valued, too.
+ \item The purely real-valued ($\arg{\cdot} = 0 \text{ or } \pm \pi$) Fourier transform cannot change the phase of the signal.
+\end{itemize}
+
+
\begin{figure}[H]
\centering
@@ -1242,6 +1262,11 @@ This effect is called \index{spectral leakage} \textbf{spectral leakage}.
%ytick={0},
]
\addplot[red, thick, smooth, domain=0:4, samples=50] plot(\x, {cos(deg(pi*\x))});
+
+ \pgfplotsinvokeforeach{0,0.25,...,4}{
+ \addplot[blue] coordinates {(#1,0) (#1,{cos(deg(pi*#1))})};
+ \addplot[blue, only marks, mark=o] coordinates {(#1,{cos(deg(pi*#1))})};
+ }
\end{axis}
\end{tikzpicture}
}
@@ -1254,7 +1279,7 @@ This effect is called \index{spectral leakage} \textbf{spectral leakage}.
width=0.35\linewidth,
scale only axis,
xlabel={$n$},
- ylabel={$w[n]$},
+ ylabel={$w_9[n]$},
%grid style={line width=.6pt, color=lightgray},
%grid=both,
grid=none,
@@ -1269,7 +1294,7 @@ This effect is called \index{spectral leakage} \textbf{spectral leakage}.
at={(ticklabel* cs:1.05)},
anchor=east,
},
- xmin=-0.5,
+ xmin=-8.5,
xmax=8.5,
ymin=0,
ymax=1.2,
@@ -1277,12 +1302,23 @@ This effect is called \index{spectral leakage} \textbf{spectral leakage}.
%xticklabels={$- \omega_S$, $- \frac{\omega_S}{2}$, $0$, $\frac{\omega_S}{2}$, $\omega_S$},
%ytick={0},
]
- \addplot[blue, thick] coordinates {(-0.5,0) (0,0)};
- \addplot[blue, thick] coordinates {(0,1) (8,1)};
- \addplot[blue, thick] coordinates {(8,0) (8.5,0)};
-
- \addplot[blue, thick, dashed] coordinates {(0,0) (0,1)};
- \addplot[blue, thick, dashed] coordinates {(8,1) (8,0)};
+ \pgfplotsinvokeforeach{-4,-3,...,4}{
+ \addplot[blue] coordinates {(#1,0) (#1,1)};
+ \addplot[blue, only marks, mark=o] coordinates {(#1,1)};
+ }
+ \pgfplotsinvokeforeach{-8,-7,...,-5}{
+ \addplot[blue, only marks, mark=o] coordinates {(#1,0)};
+ }
+ \pgfplotsinvokeforeach{5,6,...,8}{
+ \addplot[blue, only marks, mark=o] coordinates {(#1,0)};
+ }
+
+% \addplot[blue, thick] coordinates {(-0.5,0) (0,0)};
+% \addplot[blue, thick] coordinates {(0,1) (8,1)};
+% \addplot[blue, thick] coordinates {(8,0) (8.5,0)};
+%
+% \addplot[blue, thick, dashed] coordinates {(0,0) (0,1)};
+% \addplot[blue, thick, dashed] coordinates {(8,1) (8,0)};
\end{axis}
\end{tikzpicture}
}
@@ -1310,15 +1346,26 @@ This effect is called \index{spectral leakage} \textbf{spectral leakage}.
at={(ticklabel* cs:1.05)},
anchor=east,
},
- xmin=0,
- xmax=4.5,
- ymin=-1.2,
+ xmin=-8.5,
+ xmax=8.5,
+ ymin=0,
ymax=1.2,
%xtick={-1, -0.5, 0, 0.5, 1},
%xticklabels={$- \omega_S$, $- \frac{\omega_S}{2}$, $0$, $\frac{\omega_S}{2}$, $\omega_S$},
%ytick={0},
]
- \addplot[red, thick, smooth, domain=0:4, samples=50] plot(\x, {cos(deg(pi*\x))});
+ \addplot[red] coordinates {(2,0) (2,1)};
+ \addplot[red] coordinates {(-2,0) (-2,1)};
+ \addplot[red, only marks, mark=o] coordinates {(-2,1) (2,1)};
+ \pgfplotsinvokeforeach{-8,-7,...,-3}{
+ \addplot[red, only marks, mark=o] coordinates {(#1,0)};
+ }
+ \pgfplotsinvokeforeach{-1,0,1}{
+ \addplot[red, only marks, mark=o] coordinates {(#1,0)};
+ }
+ \pgfplotsinvokeforeach{3,4,...,8}{
+ \addplot[red, only marks, mark=o] coordinates {(#1,0)};
+ }
\end{axis}
\end{tikzpicture}
}
@@ -1346,20 +1393,65 @@ This effect is called \index{spectral leakage} \textbf{spectral leakage}.
at={(ticklabel* cs:1.05)},
anchor=east,
},
- xmin=-4.5,
- xmax=4.5,
+ xmin=-8.5,
+ xmax=8.5,
ymin=0,
- ymax=1.2,
+ ymax=9.5,
%xtick={-1, -0.5, 0, 0.5, 1},
%xticklabels={$- \omega_S$, $- \frac{\omega_S}{2}$, $0$, $\frac{\omega_S}{2}$, $\omega_S$},
%ytick={0},
]
- \addplot[blue, thick] coordinates {(-0.5,0) (0,0)};
- \addplot[blue, thick] coordinates {(0,1) (8,1)};
- \addplot[blue, thick] coordinates {(8,0) (8.5,0)};
-
- \addplot[blue, thick, dashed] coordinates {(0,0) (0,1)};
- \addplot[blue, thick, dashed] coordinates {(8,1) (8,0)};
+ \addplot[blue, dashed, smooth, domain=-8:8, samples=50] plot(\x, {9*abs(asinc((pi*\x/8), 9))});
+ \pgfplotsinvokeforeach{-8,-7,...,8}{
+ \addplot[red] coordinates {(#1,0) (#1,{9*abs(asinc((pi*#1/8), 9))})};
+ \addplot[red, only marks, mark=o] coordinates {(#1,{9*abs(asinc((pi*#1/8), 9))})};
+ }
+
+ \draw[blue, dashed] (axis cs:1.5,7) -- (axis cs:2.5,7) node[right,align=left,color=blue]{$\underline{W}\left(e^{j\phi}\right)$\\ $\phi=2\pi\frac{k}{N}$};
+ \draw (axis cs:-1,7) node[left,align=right,color=blue]{Main lobe};
+ \draw (axis cs:-2,3) node[left,align=right,color=blue]{Side lobes};
+ \end{axis}
+ \end{tikzpicture}
+ }
+
+
+ \subfloat[Amplitude spectrum of the windowed signal, showing spectral leakage]{
+ \centering
+ \begin{tikzpicture}
+ \begin{axis}[
+ height={0.15\textheight},
+ width=0.7\linewidth,
+ scale only axis,
+ xlabel={$k$},
+ ylabel={$\underline{X}_W[k]$},
+ %grid style={line width=.6pt, color=lightgray},
+ %grid=both,
+ grid=none,
+ legend pos=north east,
+ axis y line=middle,
+ axis x line=middle,
+ every axis x label/.style={
+ at={(ticklabel* cs:1.05)},
+ anchor=north,
+ },
+ every axis y label/.style={
+ at={(ticklabel* cs:1.05)},
+ anchor=east,
+ },
+ xmin=-8.5,
+ xmax=8.5,
+ ymin=0,
+ ymax=12.5,
+ %xtick={-1, -0.5, 0, 0.5, 1},
+ %xticklabels={$- \omega_S$, $- \frac{\omega_S}{2}$, $0$, $\frac{\omega_S}{2}$, $\omega_S$},
+ %ytick={0},
+ ]
+ \addplot[blue, dashed, smooth, domain=-8:8, samples=50] plot(\x, {9*abs(asinc((pi*(\x+2)/8), 9)) + 9*abs(asinc((pi*(\x-2)/8), 9))});
+ \pgfplotsinvokeforeach{-8,-7,...,8}{
+ \addplot[red] coordinates {(#1,0) (#1,{9*abs(asinc((pi*(#1+2)/8), 9)) + 9*abs(asinc((pi*(#1-2)/8), 9))})};
+ \addplot[red, only marks, mark=o] coordinates {(#1,{9*abs(asinc((pi*(#1+2)/8), 9)) + 9*abs(asinc((pi*(#1-2)/8), 9))})};
+ }
+ \draw[blue, dashed] (axis cs:3,9) -- (axis cs:3.7,9) node[right,align=left,color=blue]{$\left.\underline{X}_W\left(e^{j\phi}\right)\right|_{\phi=2\pi\frac{k}{N}}$};
\end{axis}
\end{tikzpicture}
}
@@ -1367,8 +1459,54 @@ This effect is called \index{spectral leakage} \textbf{spectral leakage}.
\caption{Spectral leakage of a mono-chromatic signal}
\end{figure}
+In the above example:
+\begin{itemize}
+ \item The monochromatic signal has two ideal pulses in its amplitude spectrum.
+ \item The rectangular window has a sinc-like amplitude spectrum.
+ \item Due to the convolution, the ideal pulses of the monochromatic signal are ``leak'' across the frequency axis and take a sinc-like pattern, too.
+\end{itemize}
+
+The selection of the window function has implications on the spectral leakage:
+\begin{itemize}
+ \item The width of the \emph{main lobe}, defines how much the sampled signal is spread across the frequency axis.
+ \item The \emph{main lobe} should be narrow, in order to retain the original shape of the signal.
+ \item The amplitudes of the \emph{side lobes} define the noise, which emerges.
+ \item The \emph{side lobes} should be as weak as possible regarding their amplitudes, in order to reduce the noise and improve the \ac{SNR}.
+\end{itemize}
+
+\begin{fact}
+ Generally, window functions with narrow main lobes have strong side lobes, and vice versa. So, there is always a trade-off.
+\end{fact}
+
\begin{landscape}
\subsubsection{Some Window Functions}
+
+ \begin{longtable}[H]{|l|l|l|l|l|}
+ \hline
+ Name & Function $w[n]$ & Peak side lobe & Main lobe width & Time domain and frequency response \\
+ \hline
+ \hline
+ Rectangular & $w[n] = \begin{cases}1, &\quad 0 \leq n \leq M,\\ 0, &\quad \text{otherwise}.\end{cases}$ & \SI{-13}{dB} & $\frac{4\pi}{M+1}$ & \includegraphics[width=5cm]{svg/ch04_win_rect.pdf} \\
+ \hline
+ Hamming & $w[n] = \begin{cases}0.54 - 0.46 \cos\left(\frac{2 \pi n}{M}\right), &\quad 0 \leq n \leq M,\\ 0, &\quad \text{otherwise}.\end{cases}$ & \SI{-41}{dB} & $\frac{8\pi}{M}$ & \includegraphics[width=5cm]{svg/ch04_win_hamming.pdf} \\
+ \hline
+ Hann & $w[n] = \begin{cases}0.5 - 0.5 \cos\left(\frac{2 \pi n}{M}\right), &\quad 0 \leq n \leq M,\\ 0, &\quad \text{otherwise}.\end{cases}$ & \SI{-31}{dB} & $\frac{8\pi}{M}$ & \includegraphics[width=5cm]{svg/ch04_win_hann.pdf} \\
+ \hline
+ Blackman & $w[n] = \begin{cases}0.42 - 0.5 \cos\left(\frac{2 \pi n}{M}\right) & \\ \quad + 0.08 \cos\left(\frac{4 \pi n}{M}\right), &\quad 0 \leq n \leq M,\\ 0, &\quad \text{otherwise}.\end{cases}$ & \SI{-57}{dB} & $\frac{12\pi}{M}$ & \includegraphics[width=5cm]{svg/ch04_win_blackman.pdf} \\
+ \hline
+ Bartlett & $w[n] = \begin{cases}2n/M, &\quad 0 \leq n \leq M/2,\\ 2 - 2n/M, &\quad M/2 < n \leq M,\\ 0, &\quad \text{otherwise}.\end{cases}$ & \SI{-25}{dB} & $\frac{8\pi}{M}$ & \includegraphics[width=5cm]{svg/ch04_win_tri.pdf} \\
+ \hline
+ Gauss & $w[n] = \begin{cases}\exp\left(- \frac{1}{2} \left(\frac{n - M/2}{\sigma M / 2}\right)^2\right), &\quad 0 \leq n \leq M,\\ 0, &\quad \text{otherwise}.\end{cases}$ & \multicolumn{2}{l|}{Adjustable by $\sigma$} & \includegraphics[width=5cm]{svg/ch04_win_gauss.pdf} \\
+ \hline
+ \end{longtable}
+
+ \textit{Picture credits:} \licensequote{\cite{Niemitalo2013}}{Olli Niemitalo}{\href{https://creativecommons.org/publicdomain/zero/1.0/deed.en}{CC0 1.0}}
+
+ \begin{itemize}
+ \item Now, you see the trade-off which must be made between narrow main lobe and weak side lobes.
+ \item The rectangular window has a narrow main lobe but strong side lobes.
+ \item The Blackman window has weak side lobes but a wide main lobe.
+ \end{itemize}
\end{landscape}
@@ -1597,26 +1735,36 @@ All considerations apply for ergodic or \ac{WSS} processes only:
\end{equation}
\end{itemize}
-\subsection{Energy Spectral Density}
-
-%TODO
+\subsubsection{Energy Spectral Density}
Parseval's theorem for discrete systems:
\begin{equation}
\sum\limits_{n=0}^{N-1} \left|\underline{x}[n]\right|^2 = \frac{1}{N} \sum\limits_{k=0}^{N-1} \left|\underline{X}[k]\right|^2
\end{equation}
+The signal energy is defined to:
\begin{equation}
- E = \sum\limits_{n=0}^{N-1} \left|\underline{x}[n]\right|^2
+ E = T_S^2 \sum\limits_{n=0}^{N-1} \left|\underline{x}[n]\right|^2 \stackrel{!}{=} \sum\limits_{n=0}^{N-1} \underline{\mathrm{S}}_{E,xx}[k]
\end{equation}
+The sampling period $T_S$ (spacing between the samples) must be kept, because the physical energy depends on the duration of the samples.
+The energy spectral density is:
\begin{equation}
- \underline{\mathrm{S}}_{E,xx}[k] = \left|\underline{X}[k]\right|^2
+ \underline{\mathrm{S}}_{E,xx}[k] = \frac{T_S^2}{N} \left|\underline{X}[k]\right|^2
\end{equation}
-\todo{PSD}
+\subsubsection{Power Spectral Density}
-%\subsection{Noise}
+The signal power is:
+\begin{equation}
+ P = \frac{T_S^2}{T} \sum\limits_{n=0}^{N-1} \left|\underline{x}[n]\right|^2 \stackrel{!}{=} \sum\limits_{n=0}^{N-1} \underline{\mathrm{S}}_{xx}[k]
+\end{equation}
+Where $T = N T_S$ is the duration of the signal.
+
+Using the Parseval's theorem:
+\begin{equation}
+ \underline{\mathrm{S}}_{xx}[k] = \underline{\mathrm{S}}_{P,xx}[k] = \frac{T_S}{N} \sum\limits_{n=0}^{N-1} \left|\underline{X}[k]\right|^2
+\end{equation}
\section{Digital Signals and Systems}
@@ -1928,7 +2076,8 @@ For example if the \ac{PCM} value is $\left(10010100\right)_2$, its real value i
The \index{least significant bit} \textbf{\ac{LSB}} is the digit with the exponent $2^0$.
\end{excursus}
-\todo{Plot error}
+%TODO
+%\todo{Plot error}
The quantization error superimposes the original signal and is therefore noise -- the \index{quantization noise} \textbf{quantization noise}.
diff --git a/chapter04/win_blackman.svg b/chapter04/win_blackman.svg
new file mode 100644
index 0000000..3432d57
--- /dev/null
+++ b/chapter04/win_blackman.svg
@@ -0,0 +1,1592 @@
+<?xml version="1.0" encoding="windows-1252" standalone="no"?>
+<svg
+ viewBox="0 0 1200 600"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+>
+
+<title>Window function and its Fourier transform &#8211; Blackman</title>
+<desc>Produced by GNUPLOT 5.2 patchlevel 6 </desc>
+
+<g id="gnuplot_canvas">
+
+<rect x="0" y="0" width="1200" height="600" fill="#ffffff"/>
+<defs>
+
+ <circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
+ <path id='gpPt0' stroke-width='0.179' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
+ <path id='gpPt1' stroke-width='0.179' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
+ <path id='gpPt2' stroke-width='0.179' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
+ <rect id='gpPt3' stroke-width='0.179' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
+ <rect id='gpPt4' stroke-width='0.179' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
+ <circle id='gpPt5' stroke-width='0.179' stroke='currentColor' cx='0' cy='0' r='1'/>
+ <use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
+ <path id='gpPt7' stroke-width='0.179' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
+ <use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
+ <use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
+ <use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
+ <use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
+ <use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
+ <path id='gpPt13' stroke-width='0.179' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
+ <use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
+ <filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
+ <feFlood flood-color='#FFFFFF' flood-opacity='1' result='bgnd'/>
+ <feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
+ </filter>
+ <filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
+ <feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
+ <feComposite in='SourceGraphic' in2='grey' operator='atop'/>
+ </filter>
+</defs>
+<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g stroke='none' shape-rendering='crispEdges'>
+ <polygon fill = 'rgb(255, 255, 255)' points = '96.0,516.0 557.8,516.0 557.8,84.2 96.0,84.2 '/>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,516.0 L557.9,516.0 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,516.0 L111.6,516.0 M557.9,516.0 L542.3,516.0 '/> <g transform="translate(85.5,522.5)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,474.9 L557.9,474.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,474.9 L111.6,474.9 M557.9,474.9 L542.3,474.9 '/> <g transform="translate(85.5,481.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.1</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,433.7 L557.9,433.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,433.7 L111.6,433.7 M557.9,433.7 L542.3,433.7 '/> <g transform="translate(85.5,440.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.2</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,392.6 L557.9,392.6 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,392.6 L111.6,392.6 M557.9,392.6 L542.3,392.6 '/> <g transform="translate(85.5,399.1)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.3</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,351.5 L557.9,351.5 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,351.5 L111.6,351.5 M557.9,351.5 L542.3,351.5 '/> <g transform="translate(85.5,358.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.4</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,310.3 L557.9,310.3 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,310.3 L111.6,310.3 M557.9,310.3 L542.3,310.3 '/> <g transform="translate(85.5,316.8)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.5</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,269.2 L557.9,269.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,269.2 L111.6,269.2 M557.9,269.2 L542.3,269.2 '/> <g transform="translate(85.5,275.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.6</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,228.1 L557.9,228.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,228.1 L111.6,228.1 M557.9,228.1 L542.3,228.1 '/> <g transform="translate(85.5,234.6)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.7</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,186.9 L557.9,186.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,186.9 L111.6,186.9 M557.9,186.9 L542.3,186.9 '/> <g transform="translate(85.5,193.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.8</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,145.8 L557.9,145.8 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,145.8 L111.6,145.8 M557.9,145.8 L542.3,145.8 '/> <g transform="translate(85.5,152.3)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.9</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,104.7 L557.9,104.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,104.7 L111.6,104.7 M557.9,104.7 L542.3,104.7 '/> <g transform="translate(85.5,111.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >1</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,516.0 L96.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,516.0 L96.0,500.4 M96.0,84.1 L96.0,99.7 '/> <g transform="translate(96.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" > 0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M153.7,516.0 L153.7,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M153.7,516.0 L153.7,500.4 M153.7,84.1 L153.7,99.7 '/> <g transform="translate(153.7,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M211.5,516.0 L211.5,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M211.5,516.0 L211.5,500.4 M211.5,84.1 L211.5,99.7 '/> <g transform="translate(211.5,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M269.2,516.0 L269.2,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M269.2,516.0 L269.2,500.4 M269.2,84.1 L269.2,99.7 '/> <g transform="translate(269.2,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M327.0,516.0 L327.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M327.0,516.0 L327.0,500.4 M327.0,84.1 L327.0,99.7 '/> <g transform="translate(327.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M384.7,516.0 L384.7,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M384.7,516.0 L384.7,500.4 M384.7,84.1 L384.7,99.7 '/> <g transform="translate(384.7,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M442.4,516.0 L442.4,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M442.4,516.0 L442.4,500.4 M442.4,84.1 L442.4,99.7 '/> <g transform="translate(442.4,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M500.2,516.0 L500.2,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M500.2,516.0 L500.2,500.4 M500.2,84.1 L500.2,99.7 '/> <g transform="translate(500.2,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M557.9,516.0 L557.9,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M557.9,516.0 L557.9,500.4 M557.9,84.1 L557.9,99.7 '/> <g transform="translate(557.9,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text xml:space="preserve"><tspan font-family="Microsoft Sans Serif" font-weight="bold" xml:space="preserve"> N</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(40.6,300.1) rotate(-90)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >amplitude</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(326.9,581.3)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >samples</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(326.9,39.9)" stroke="none" fill="rgb(0,0,0)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >Blackman window</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+ <g id="gnuplot_plot_1a" ><title>gnuplot_plot_1a</title>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g stroke='none' shape-rendering='crispEdges'>
+ <polygon fill = 'rgb( 0, 102, 153)' points = '96.0,516.0 96.0,516.0 96.9,516.0 97.8,516.0 98.7,515.9 99.6,515.9 100.5,515.9 101.4,515.8 102.3,515.7 103.2,515.6 104.1,515.5 105.0,515.4 105.9,515.3 106.8,515.2 107.7,515.0 108.6,514.9
+109.5,514.7 110.4,514.6 111.3,514.4 112.2,514.2 113.1,513.9 114.0,513.7 114.9,513.5 115.8,513.2 116.7,513.0 117.7,512.7 118.6,512.4 119.5,512.1 120.4,511.8 121.3,511.4 122.2,511.1 123.1,510.7
+124.0,510.4 124.9,510.0 125.8,509.6 126.7,509.2 127.6,508.7 128.5,508.3 129.4,507.8 130.3,507.3 131.2,506.8 132.1,506.3 133.0,505.8 133.9,505.3 134.8,504.7 135.7,504.1 136.6,503.5 137.5,502.9
+138.4,502.3 139.3,501.7 140.2,501.0 141.1,500.3 142.0,499.6 142.9,498.9 143.8,498.1 144.7,497.4 145.6,496.6 146.5,495.8 147.4,495.0 148.3,494.1 149.2,493.3 150.1,492.4 151.0,491.5 151.9,490.6
+152.8,489.6 153.7,488.7 154.6,487.7 155.5,486.7 156.4,485.6 157.3,484.6 158.2,483.5 159.2,482.4 160.1,481.3 161.0,480.1 161.9,479.0 162.8,477.8 163.7,476.6 164.6,475.3 165.5,474.0 166.4,472.8
+167.3,471.4 168.2,470.1 169.1,468.7 170.0,467.3 170.9,465.9 171.8,464.5 172.7,463.0 173.6,461.5 174.5,460.0 175.4,458.5 176.3,456.9 177.2,455.3 178.1,453.7 179.0,452.0 179.9,450.4 180.8,448.7
+181.7,447.0 182.6,445.2 183.5,443.4 184.4,441.6 185.3,439.8 186.2,438.0 187.1,436.1 188.0,434.2 188.9,432.3 189.8,430.3 190.7,428.3 191.6,426.3 192.5,424.3 193.4,422.2 194.3,420.2 195.2,418.0
+196.1,415.9 197.0,413.8 197.9,411.6 198.8,409.4 199.7,407.2 200.6,404.9 201.6,402.6 202.5,400.3 203.4,398.0 204.3,395.7 205.2,393.3 206.1,390.9 207.0,388.5 207.9,386.1 208.8,383.6 209.7,381.2
+210.6,378.7 211.5,376.1 212.4,373.6 213.3,371.1 214.2,368.5 215.1,365.9 216.0,363.3 216.9,360.7 217.8,358.0 218.7,355.4 219.6,352.7 220.5,350.0 221.4,347.3 222.3,344.6 223.2,341.8 224.1,339.1
+225.0,336.3 225.9,333.5 226.8,330.7 227.7,327.9 228.6,325.1 229.5,322.3 230.4,319.5 231.3,316.6 232.2,313.8 233.1,310.9 234.0,308.0 234.9,305.2 235.8,302.3 236.7,299.4 237.6,296.5 238.5,293.6
+239.4,290.7 240.3,287.8 241.2,284.9 242.1,282.0 243.1,279.1 244.0,276.2 244.9,273.3 245.8,270.4 246.7,267.5 247.6,264.6 248.5,261.7 249.4,258.8 250.3,255.9 251.2,253.0 252.1,250.1 253.0,247.3
+253.9,244.4 254.8,241.6 255.7,238.7 256.6,235.9 257.5,233.1 258.4,230.3 259.3,227.5 260.2,224.7 261.1,221.9 262.0,219.2 262.9,216.5 263.8,213.7 264.7,211.0 265.6,208.3 266.5,205.7 267.4,203.0
+268.3,200.4 269.2,197.8 270.1,195.2 271.0,192.7 271.9,190.1 272.8,187.6 273.7,185.1 274.6,182.7 275.5,180.2 276.4,177.8 277.3,175.5 278.2,173.1 279.1,170.8 280.0,168.5 280.9,166.2 281.8,164.0
+282.7,161.8 283.6,159.6 284.5,157.5 285.5,155.4 286.4,153.3 287.3,151.3 288.2,149.3 289.1,147.4 290.0,145.5 290.9,143.6 291.8,141.7 292.7,139.9 293.6,138.2 294.5,136.4 295.4,134.8 296.3,133.1
+297.2,131.5 298.1,130.0 299.0,128.4 299.9,127.0 300.8,125.5 301.7,124.2 302.6,122.8 303.5,121.5 304.4,120.3 305.3,119.1 306.2,117.9 307.1,116.8 308.0,115.7 308.9,114.7 309.8,113.7 310.7,112.8
+311.6,111.9 312.5,111.1 313.4,110.3 314.3,109.6 315.2,108.9 316.1,108.3 317.0,107.7 317.9,107.2 318.8,106.7 319.7,106.3 320.6,105.9 321.5,105.6 322.4,105.3 323.3,105.1 324.2,104.9 325.1,104.8
+326.0,104.7 327.0,104.7 327.9,104.7 328.8,104.8 329.7,104.9 330.6,105.1 331.5,105.3 332.4,105.6 333.3,105.9 334.2,106.3 335.1,106.7 336.0,107.2 336.9,107.7 337.8,108.3 338.7,108.9 339.6,109.6
+340.5,110.3 341.4,111.1 342.3,111.9 343.2,112.8 344.1,113.7 345.0,114.7 345.9,115.7 346.8,116.8 347.7,117.9 348.6,119.1 349.5,120.3 350.4,121.5 351.3,122.8 352.2,124.2 353.1,125.5 354.0,127.0
+354.9,128.4 355.8,130.0 356.7,131.5 357.6,133.1 358.5,134.8 359.4,136.4 360.3,138.2 361.2,139.9 362.1,141.7 363.0,143.6 363.9,145.5 364.8,147.4 365.7,149.3 366.6,151.3 367.5,153.3 368.4,155.4
+369.4,157.5 370.3,159.6 371.2,161.8 372.1,164.0 373.0,166.2 373.9,168.5 374.8,170.8 375.7,173.1 376.6,175.5 377.5,177.8 378.4,180.2 379.3,182.7 380.2,185.1 381.1,187.6 382.0,190.1 382.9,192.7
+383.8,195.2 384.7,197.8 385.6,200.4 386.5,203.0 387.4,205.7 388.3,208.3 389.2,211.0 390.1,213.7 391.0,216.5 391.9,219.2 392.8,221.9 393.7,224.7 394.6,227.5 395.5,230.3 396.4,233.1 397.3,235.9
+398.2,238.7 399.1,241.6 400.0,244.4 400.9,247.3 401.8,250.1 402.7,253.0 403.6,255.9 404.5,258.8 405.4,261.7 406.3,264.6 407.2,267.5 408.1,270.4 409.0,273.3 409.9,276.2 410.8,279.1 411.8,282.0
+412.7,284.9 413.6,287.8 414.5,290.7 415.4,293.6 416.3,296.5 417.2,299.4 418.1,302.3 419.0,305.2 419.9,308.0 420.8,310.9 421.7,313.8 422.6,316.6 423.5,319.5 424.4,322.3 425.3,325.1 426.2,327.9
+427.1,330.7 428.0,333.5 428.9,336.3 429.8,339.1 430.7,341.8 431.6,344.6 432.5,347.3 433.4,350.0 434.3,352.7 435.2,355.4 436.1,358.0 437.0,360.7 437.9,363.3 438.8,365.9 439.7,368.5 440.6,371.1
+441.5,373.6 442.4,376.1 443.3,378.7 444.2,381.2 445.1,383.6 446.0,386.1 446.9,388.5 447.8,390.9 448.7,393.3 449.6,395.7 450.5,398.0 451.4,400.3 452.3,402.6 453.3,404.9 454.2,407.2 455.1,409.4
+456.0,411.6 456.9,413.8 457.8,415.9 458.7,418.0 459.6,420.2 460.5,422.2 461.4,424.3 462.3,426.3 463.2,428.3 464.1,430.3 465.0,432.3 465.9,434.2 466.8,436.1 467.7,438.0 468.6,439.8 469.5,441.6
+470.4,443.4 471.3,445.2 472.2,447.0 473.1,448.7 474.0,450.4 474.9,452.0 475.8,453.7 476.7,455.3 477.6,456.9 478.5,458.5 479.4,460.0 480.3,461.5 481.2,463.0 482.1,464.5 483.0,465.9 483.9,467.3
+484.8,468.7 485.7,470.1 486.6,471.4 487.5,472.8 488.4,474.0 489.3,475.3 490.2,476.6 491.1,477.8 492.0,479.0 492.9,480.1 493.8,481.3 494.7,482.4 495.7,483.5 496.6,484.6 497.5,485.6 498.4,486.7
+499.3,487.7 500.2,488.7 501.1,489.6 502.0,490.6 502.9,491.5 503.8,492.4 504.7,493.3 505.6,494.1 506.5,495.0 507.4,495.8 508.3,496.6 509.2,497.4 510.1,498.1 511.0,498.9 511.9,499.6 512.8,500.3
+513.7,501.0 514.6,501.7 515.5,502.3 516.4,502.9 517.3,503.5 518.2,504.1 519.1,504.7 520.0,505.3 520.9,505.8 521.8,506.3 522.7,506.8 523.6,507.3 524.5,507.8 525.4,508.3 526.3,508.7 527.2,509.2
+528.1,509.6 529.0,510.0 529.9,510.4 530.8,510.7 531.7,511.1 532.6,511.4 533.5,511.8 534.4,512.1 535.3,512.4 536.2,512.7 537.2,513.0 538.1,513.2 539.0,513.5 539.9,513.7 540.8,513.9 541.7,514.2
+542.6,514.4 543.5,514.6 544.4,514.7 545.3,514.9 546.2,515.0 547.1,515.2 548.0,515.3 548.9,515.4 549.8,515.5 550.7,515.6 551.6,515.7 552.5,515.8 553.4,515.9 554.3,515.9 555.2,515.9 556.1,516.0
+557.0,516.0 557.9,516.0 557.9,516.0 557.0,516.0 556.1,516.0 555.2,516.0 554.3,516.0 553.4,516.0 552.5,516.0 551.6,516.0 550.7,516.0 549.8,516.0 548.9,516.0 548.0,516.0 547.1,516.0 546.2,516.0
+545.3,516.0 544.4,516.0 543.5,516.0 542.6,516.0 541.7,516.0 540.8,516.0 539.9,516.0 539.0,516.0 538.1,516.0 537.2,516.0 536.2,516.0 535.3,516.0 534.4,516.0 533.5,516.0 532.6,516.0 531.7,516.0
+530.8,516.0 529.9,516.0 529.0,516.0 528.1,516.0 527.2,516.0 526.3,516.0 525.4,516.0 524.5,516.0 523.6,516.0 522.7,516.0 521.8,516.0 520.9,516.0 520.0,516.0 519.1,516.0 518.2,516.0 517.3,516.0
+516.4,516.0 515.5,516.0 514.6,516.0 513.7,516.0 512.8,516.0 511.9,516.0 511.0,516.0 510.1,516.0 509.2,516.0 508.3,516.0 507.4,516.0 506.5,516.0 505.6,516.0 504.7,516.0 503.8,516.0 502.9,516.0
+502.0,516.0 501.1,516.0 500.2,516.0 499.3,516.0 498.4,516.0 497.5,516.0 496.6,516.0 495.7,516.0 494.7,516.0 493.8,516.0 492.9,516.0 492.0,516.0 491.1,516.0 490.2,516.0 489.3,516.0 488.4,516.0
+487.5,516.0 486.6,516.0 485.7,516.0 484.8,516.0 483.9,516.0 483.0,516.0 482.1,516.0 481.2,516.0 480.3,516.0 479.4,516.0 478.5,516.0 477.6,516.0 476.7,516.0 475.8,516.0 474.9,516.0 474.0,516.0
+473.1,516.0 472.2,516.0 471.3,516.0 470.4,516.0 469.5,516.0 468.6,516.0 467.7,516.0 466.8,516.0 465.9,516.0 465.0,516.0 464.1,516.0 463.2,516.0 462.3,516.0 461.4,516.0 460.5,516.0 459.6,516.0
+458.7,516.0 457.8,516.0 456.9,516.0 456.0,516.0 455.1,516.0 454.2,516.0 453.3,516.0 452.3,516.0 451.4,516.0 450.5,516.0 449.6,516.0 448.7,516.0 447.8,516.0 446.9,516.0 446.0,516.0 445.1,516.0
+444.2,516.0 443.3,516.0 442.4,516.0 441.5,516.0 440.6,516.0 439.7,516.0 438.8,516.0 437.9,516.0 437.0,516.0 436.1,516.0 435.2,516.0 434.3,516.0 433.4,516.0 432.5,516.0 431.6,516.0 430.7,516.0
+429.8,516.0 428.9,516.0 428.0,516.0 427.1,516.0 426.2,516.0 425.3,516.0 424.4,516.0 423.5,516.0 422.6,516.0 421.7,516.0 420.8,516.0 419.9,516.0 419.0,516.0 418.1,516.0 417.2,516.0 416.3,516.0
+415.4,516.0 414.5,516.0 413.6,516.0 412.7,516.0 411.8,516.0 410.8,516.0 409.9,516.0 409.0,516.0 408.1,516.0 407.2,516.0 406.3,516.0 405.4,516.0 404.5,516.0 403.6,516.0 402.7,516.0 401.8,516.0
+400.9,516.0 400.0,516.0 399.1,516.0 398.2,516.0 397.3,516.0 396.4,516.0 395.5,516.0 394.6,516.0 393.7,516.0 392.8,516.0 391.9,516.0 391.0,516.0 390.1,516.0 389.2,516.0 388.3,516.0 387.4,516.0
+386.5,516.0 385.6,516.0 384.7,516.0 383.8,516.0 382.9,516.0 382.0,516.0 381.1,516.0 380.2,516.0 379.3,516.0 378.4,516.0 377.5,516.0 376.6,516.0 375.7,516.0 374.8,516.0 373.9,516.0 373.0,516.0
+372.1,516.0 371.2,516.0 370.3,516.0 369.4,516.0 368.4,516.0 367.5,516.0 366.6,516.0 365.7,516.0 364.8,516.0 363.9,516.0 363.0,516.0 362.1,516.0 361.2,516.0 360.3,516.0 359.4,516.0 358.5,516.0
+357.6,516.0 356.7,516.0 355.8,516.0 354.9,516.0 354.0,516.0 353.1,516.0 352.2,516.0 351.3,516.0 350.4,516.0 349.5,516.0 348.6,516.0 347.7,516.0 346.8,516.0 345.9,516.0 345.0,516.0 344.1,516.0
+343.2,516.0 342.3,516.0 341.4,516.0 340.5,516.0 339.6,516.0 338.7,516.0 337.8,516.0 336.9,516.0 336.0,516.0 335.1,516.0 334.2,516.0 333.3,516.0 332.4,516.0 331.5,516.0 330.6,516.0 329.7,516.0
+328.8,516.0 327.9,516.0 327.0,516.0 326.0,516.0 325.1,516.0 324.2,516.0 323.3,516.0 322.4,516.0 321.5,516.0 320.6,516.0 319.7,516.0 318.8,516.0 317.9,516.0 317.0,516.0 316.1,516.0 315.2,516.0
+314.3,516.0 313.4,516.0 312.5,516.0 311.6,516.0 310.7,516.0 309.8,516.0 308.9,516.0 308.0,516.0 307.1,516.0 306.2,516.0 305.3,516.0 304.4,516.0 303.5,516.0 302.6,516.0 301.7,516.0 300.8,516.0
+299.9,516.0 299.0,516.0 298.1,516.0 297.2,516.0 296.3,516.0 295.4,516.0 294.5,516.0 293.6,516.0 292.7,516.0 291.8,516.0 290.9,516.0 290.0,516.0 289.1,516.0 288.2,516.0 287.3,516.0 286.4,516.0
+285.5,516.0 284.5,516.0 283.6,516.0 282.7,516.0 281.8,516.0 280.9,516.0 280.0,516.0 279.1,516.0 278.2,516.0 277.3,516.0 276.4,516.0 275.5,516.0 274.6,516.0 273.7,516.0 272.8,516.0 271.9,516.0
+271.0,516.0 270.1,516.0 269.2,516.0 268.3,516.0 267.4,516.0 266.5,516.0 265.6,516.0 264.7,516.0 263.8,516.0 262.9,516.0 262.0,516.0 261.1,516.0 260.2,516.0 259.3,516.0 258.4,516.0 257.5,516.0
+256.6,516.0 255.7,516.0 254.8,516.0 253.9,516.0 253.0,516.0 252.1,516.0 251.2,516.0 250.3,516.0 249.4,516.0 248.5,516.0 247.6,516.0 246.7,516.0 245.8,516.0 244.9,516.0 244.0,516.0 243.1,516.0
+242.1,516.0 241.2,516.0 240.3,516.0 239.4,516.0 238.5,516.0 237.6,516.0 236.7,516.0 235.8,516.0 234.9,516.0 234.0,516.0 233.1,516.0 232.2,516.0 231.3,516.0 230.4,516.0 229.5,516.0 228.6,516.0
+227.7,516.0 226.8,516.0 225.9,516.0 225.0,516.0 224.1,516.0 223.2,516.0 222.3,516.0 221.4,516.0 220.5,516.0 219.6,516.0 218.7,516.0 217.8,516.0 216.9,516.0 216.0,516.0 215.1,516.0 214.2,516.0
+213.3,516.0 212.4,516.0 211.5,516.0 210.6,516.0 209.7,516.0 208.8,516.0 207.9,516.0 207.0,516.0 206.1,516.0 205.2,516.0 204.3,516.0 203.4,516.0 202.5,516.0 201.6,516.0 200.6,516.0 199.7,516.0
+198.8,516.0 197.9,516.0 197.0,516.0 196.1,516.0 195.2,516.0 194.3,516.0 193.4,516.0 192.5,516.0 191.6,516.0 190.7,516.0 189.8,516.0 188.9,516.0 188.0,516.0 187.1,516.0 186.2,516.0 185.3,516.0
+184.4,516.0 183.5,516.0 182.6,516.0 181.7,516.0 180.8,516.0 179.9,516.0 179.0,516.0 178.1,516.0 177.2,516.0 176.3,516.0 175.4,516.0 174.5,516.0 173.6,516.0 172.7,516.0 171.8,516.0 170.9,516.0
+170.0,516.0 169.1,516.0 168.2,516.0 167.3,516.0 166.4,516.0 165.5,516.0 164.6,516.0 163.7,516.0 162.8,516.0 161.9,516.0 161.0,516.0 160.1,516.0 159.2,516.0 158.2,516.0 157.3,516.0 156.4,516.0
+155.5,516.0 154.6,516.0 153.7,516.0 152.8,516.0 151.9,516.0 151.0,516.0 150.1,516.0 149.2,516.0 148.3,516.0 147.4,516.0 146.5,516.0 145.6,516.0 144.7,516.0 143.8,516.0 142.9,516.0 142.0,516.0
+141.1,516.0 140.2,516.0 139.3,516.0 138.4,516.0 137.5,516.0 136.6,516.0 135.7,516.0 134.8,516.0 133.9,516.0 133.0,516.0 132.1,516.0 131.2,516.0 130.3,516.0 129.4,516.0 128.5,516.0 127.6,516.0
+126.7,516.0 125.8,516.0 124.9,516.0 124.0,516.0 123.1,516.0 122.2,516.0 121.3,516.0 120.4,516.0 119.5,516.0 118.6,516.0 117.7,516.0 116.7,516.0 115.8,516.0 114.9,516.0 114.0,516.0 113.1,516.0
+112.2,516.0 111.3,516.0 110.4,516.0 109.5,516.0 108.6,516.0 107.7,516.0 106.8,516.0 105.9,516.0 105.0,516.0 104.1,516.0 103.2,516.0 102.3,516.0 101.4,516.0 100.5,516.0 99.6,516.0 98.7,516.0
+97.8,516.0 96.9,516.0 96.0,516.0 96.0,516.0 '/>
+ </g>
+ <path stroke='rgb( 0, 102, 153)' d='M96.0,516.0 L96.9,516.0 L97.8,516.0 L98.7,515.9 L99.6,515.9 L100.5,515.9 L101.4,515.8 L102.3,515.7
+ L103.2,515.6 L104.1,515.5 L105.0,515.4 L105.9,515.3 L106.8,515.2 L107.7,515.0 L108.6,514.9 L109.5,514.7
+ L110.4,514.6 L111.3,514.4 L112.2,514.2 L113.1,513.9 L114.0,513.7 L114.9,513.5 L115.8,513.2 L116.7,513.0
+ L117.7,512.7 L118.6,512.4 L119.5,512.1 L120.4,511.8 L121.3,511.4 L122.2,511.1 L123.1,510.7 L124.0,510.4
+ L124.9,510.0 L125.8,509.6 L126.7,509.2 L127.6,508.7 L128.5,508.3 L129.4,507.8 L130.3,507.3 L131.2,506.8
+ L132.1,506.3 L133.0,505.8 L133.9,505.3 L134.8,504.7 L135.7,504.1 L136.6,503.5 L137.5,502.9 L138.4,502.3
+ L139.3,501.7 L140.2,501.0 L141.1,500.3 L142.0,499.6 L142.9,498.9 L143.8,498.1 L144.7,497.4 L145.6,496.6
+ L146.5,495.8 L147.4,495.0 L148.3,494.1 L149.2,493.3 L150.1,492.4 L151.0,491.5 L151.9,490.6 L152.8,489.6
+ L153.7,488.7 L154.6,487.7 L155.5,486.7 L156.4,485.6 L157.3,484.6 L158.2,483.5 L159.2,482.4 L160.1,481.3
+ L161.0,480.1 L161.9,479.0 L162.8,477.8 L163.7,476.6 L164.6,475.3 L165.5,474.0 L166.4,472.8 L167.3,471.4
+ L168.2,470.1 L169.1,468.7 L170.0,467.3 L170.9,465.9 L171.8,464.5 L172.7,463.0 L173.6,461.5 L174.5,460.0
+ L175.4,458.5 L176.3,456.9 L177.2,455.3 L178.1,453.7 L179.0,452.0 L179.9,450.4 L180.8,448.7 L181.7,447.0
+ L182.6,445.2 L183.5,443.4 L184.4,441.6 L185.3,439.8 L186.2,438.0 L187.1,436.1 L188.0,434.2 L188.9,432.3
+ L189.8,430.3 L190.7,428.3 L191.6,426.3 L192.5,424.3 L193.4,422.2 L194.3,420.2 L195.2,418.0 L196.1,415.9
+ L197.0,413.8 L197.9,411.6 L198.8,409.4 L199.7,407.2 L200.6,404.9 L201.6,402.6 L202.5,400.3 L203.4,398.0
+ L204.3,395.7 L205.2,393.3 L206.1,390.9 L207.0,388.5 L207.9,386.1 L208.8,383.6 L209.7,381.2 L210.6,378.7
+ L211.5,376.1 L212.4,373.6 L213.3,371.1 L214.2,368.5 L215.1,365.9 L216.0,363.3 L216.9,360.7 L217.8,358.0
+ L218.7,355.4 L219.6,352.7 L220.5,350.0 L221.4,347.3 L222.3,344.6 L223.2,341.8 L224.1,339.1 L225.0,336.3
+ L225.9,333.5 L226.8,330.7 L227.7,327.9 L228.6,325.1 L229.5,322.3 L230.4,319.5 L231.3,316.6 L232.2,313.8
+ L233.1,310.9 L234.0,308.0 L234.9,305.2 L235.8,302.3 L236.7,299.4 L237.6,296.5 L238.5,293.6 L239.4,290.7
+ L240.3,287.8 L241.2,284.9 L242.1,282.0 L243.1,279.1 L244.0,276.2 L244.9,273.3 L245.8,270.4 L246.7,267.5
+ L247.6,264.6 L248.5,261.7 L249.4,258.8 L250.3,255.9 L251.2,253.0 L252.1,250.1 L253.0,247.3 L253.9,244.4
+ L254.8,241.6 L255.7,238.7 L256.6,235.9 L257.5,233.1 L258.4,230.3 L259.3,227.5 L260.2,224.7 L261.1,221.9
+ L262.0,219.2 L262.9,216.5 L263.8,213.7 L264.7,211.0 L265.6,208.3 L266.5,205.7 L267.4,203.0 L268.3,200.4
+ L269.2,197.8 L270.1,195.2 L271.0,192.7 L271.9,190.1 L272.8,187.6 L273.7,185.1 L274.6,182.7 L275.5,180.2
+ L276.4,177.8 L277.3,175.5 L278.2,173.1 L279.1,170.8 L280.0,168.5 L280.9,166.2 L281.8,164.0 L282.7,161.8
+ L283.6,159.6 L284.5,157.5 L285.5,155.4 L286.4,153.3 L287.3,151.3 L288.2,149.3 L289.1,147.4 L290.0,145.5
+ L290.9,143.6 L291.8,141.7 L292.7,139.9 L293.6,138.2 L294.5,136.4 L295.4,134.8 L296.3,133.1 L297.2,131.5
+ L298.1,130.0 L299.0,128.4 L299.9,127.0 L300.8,125.5 L301.7,124.2 L302.6,122.8 L303.5,121.5 L304.4,120.3
+ L305.3,119.1 L306.2,117.9 L307.1,116.8 L308.0,115.7 L308.9,114.7 L309.8,113.7 L310.7,112.8 L311.6,111.9
+ L312.5,111.1 L313.4,110.3 L314.3,109.6 L315.2,108.9 L316.1,108.3 L317.0,107.7 L317.9,107.2 L318.8,106.7
+ L319.7,106.3 L320.6,105.9 L321.5,105.6 L322.4,105.3 L323.3,105.1 L324.2,104.9 L325.1,104.8 L326.0,104.7
+ L327.0,104.7 L327.9,104.7 L328.8,104.8 L329.7,104.9 L330.6,105.1 L331.5,105.3 L332.4,105.6 L333.3,105.9
+ L334.2,106.3 L335.1,106.7 L336.0,107.2 L336.9,107.7 L337.8,108.3 L338.7,108.9 L339.6,109.6 L340.5,110.3
+ L341.4,111.1 L342.3,111.9 L343.2,112.8 L344.1,113.7 L345.0,114.7 L345.9,115.7 L346.8,116.8 L347.7,117.9
+ L348.6,119.1 L349.5,120.3 L350.4,121.5 L351.3,122.8 L352.2,124.2 L353.1,125.5 L354.0,127.0 L354.9,128.4
+ L355.8,130.0 L356.7,131.5 L357.6,133.1 L358.5,134.8 L359.4,136.4 L360.3,138.2 L361.2,139.9 L362.1,141.7
+ L363.0,143.6 L363.9,145.5 L364.8,147.4 L365.7,149.3 L366.6,151.3 L367.5,153.3 L368.4,155.4 L369.4,157.5
+ L370.3,159.6 L371.2,161.8 L372.1,164.0 L373.0,166.2 L373.9,168.5 L374.8,170.8 L375.7,173.1 L376.6,175.5
+ L377.5,177.8 L378.4,180.2 L379.3,182.7 L380.2,185.1 L381.1,187.6 L382.0,190.1 L382.9,192.7 L383.8,195.2
+ L384.7,197.8 L385.6,200.4 L386.5,203.0 L387.4,205.7 L388.3,208.3 L389.2,211.0 L390.1,213.7 L391.0,216.5
+ L391.9,219.2 L392.8,221.9 L393.7,224.7 L394.6,227.5 L395.5,230.3 L396.4,233.1 L397.3,235.9 L398.2,238.7
+ L399.1,241.6 L400.0,244.4 L400.9,247.3 L401.8,250.1 L402.7,253.0 L403.6,255.9 L404.5,258.8 L405.4,261.7
+ L406.3,264.6 L407.2,267.5 L408.1,270.4 L409.0,273.3 L409.9,276.2 L410.8,279.1 L411.8,282.0 L412.7,284.9
+ L413.6,287.8 L414.5,290.7 L415.4,293.6 L416.3,296.5 L417.2,299.4 L418.1,302.3 L419.0,305.2 L419.9,308.0
+ L420.8,310.9 L421.7,313.8 L422.6,316.6 L423.5,319.5 L424.4,322.3 L425.3,325.1 L426.2,327.9 L427.1,330.7
+ L428.0,333.5 L428.9,336.3 L429.8,339.1 L430.7,341.8 L431.6,344.6 L432.5,347.3 L433.4,350.0 L434.3,352.7
+ L435.2,355.4 L436.1,358.0 L437.0,360.7 L437.9,363.3 L438.8,365.9 L439.7,368.5 L440.6,371.1 L441.5,373.6
+ L442.4,376.1 L443.3,378.7 L444.2,381.2 L445.1,383.6 L446.0,386.1 L446.9,388.5 L447.8,390.9 L448.7,393.3
+ L449.6,395.7 L450.5,398.0 L451.4,400.3 L452.3,402.6 L453.3,404.9 L454.2,407.2 L455.1,409.4 L456.0,411.6
+ L456.9,413.8 L457.8,415.9 L458.7,418.0 L459.6,420.2 L460.5,422.2 L461.4,424.3 L462.3,426.3 L463.2,428.3
+ L464.1,430.3 L465.0,432.3 L465.9,434.2 L466.8,436.1 L467.7,438.0 L468.6,439.8 L469.5,441.6 L470.4,443.4
+ L471.3,445.2 L472.2,447.0 L473.1,448.7 L474.0,450.4 L474.9,452.0 L475.8,453.7 L476.7,455.3 L477.6,456.9
+ L478.5,458.5 L479.4,460.0 L480.3,461.5 L481.2,463.0 L482.1,464.5 L483.0,465.9 L483.9,467.3 L484.8,468.7
+ L485.7,470.1 L486.6,471.4 L487.5,472.8 L488.4,474.0 L489.3,475.3 L490.2,476.6 L491.1,477.8 L492.0,479.0
+ L492.9,480.1 L493.8,481.3 L494.7,482.4 L495.7,483.5 L496.6,484.6 L497.5,485.6 L498.4,486.7 L499.3,487.7
+ L500.2,488.7 L501.1,489.6 L502.0,490.6 L502.9,491.5 L503.8,492.4 L504.7,493.3 L505.6,494.1 L506.5,495.0
+ L507.4,495.8 L508.3,496.6 L509.2,497.4 L510.1,498.1 L511.0,498.9 L511.9,499.6 L512.8,500.3 L513.7,501.0
+ L514.6,501.7 L515.5,502.3 L516.4,502.9 L517.3,503.5 L518.2,504.1 L519.1,504.7 L520.0,505.3 L520.9,505.8
+ L521.8,506.3 L522.7,506.8 L523.6,507.3 L524.5,507.8 L525.4,508.3 L526.3,508.7 L527.2,509.2 L528.1,509.6
+ L529.0,510.0 L529.9,510.4 L530.8,510.7 L531.7,511.1 L532.6,511.4 L533.5,511.8 L534.4,512.1 L535.3,512.4
+ L536.2,512.7 L537.2,513.0 L538.1,513.2 L539.0,513.5 L539.9,513.7 L540.8,513.9 L541.7,514.2 L542.6,514.4
+ L543.5,514.6 L544.4,514.7 L545.3,514.9 L546.2,515.0 L547.1,515.2 L548.0,515.3 L548.9,515.4 L549.8,515.5
+ L550.7,515.6 L551.6,515.7 L552.5,515.8 L553.4,515.9 L554.3,515.9 L555.2,515.9 L556.1,516.0 L557.0,516.0
+ L557.9,516.0 L557.0,516.0 L556.1,516.0 L555.2,516.0 L554.3,516.0 L553.4,516.0 L552.5,516.0 L551.6,516.0
+ L550.7,516.0 L549.8,516.0 L548.9,516.0 L548.0,516.0 L547.1,516.0 L546.2,516.0 L545.3,516.0 L544.4,516.0
+ L543.5,516.0 L542.6,516.0 L541.7,516.0 L540.8,516.0 L539.9,516.0 L539.0,516.0 L538.1,516.0 L537.2,516.0
+ L536.2,516.0 L535.3,516.0 L534.4,516.0 L533.5,516.0 L532.6,516.0 L531.7,516.0 L530.8,516.0 L529.9,516.0
+ L529.0,516.0 L528.1,516.0 L527.2,516.0 L526.3,516.0 L525.4,516.0 L524.5,516.0 L523.6,516.0 L522.7,516.0
+ L521.8,516.0 L520.9,516.0 L520.0,516.0 L519.1,516.0 L518.2,516.0 L517.3,516.0 L516.4,516.0 L515.5,516.0
+ L514.6,516.0 L513.7,516.0 L512.8,516.0 L511.9,516.0 L511.0,516.0 L510.1,516.0 L509.2,516.0 L508.3,516.0
+ L507.4,516.0 L506.5,516.0 L505.6,516.0 L504.7,516.0 L503.8,516.0 L502.9,516.0 L502.0,516.0 L501.1,516.0
+ L500.2,516.0 L499.3,516.0 L498.4,516.0 L497.5,516.0 L496.6,516.0 L495.7,516.0 L494.7,516.0 L493.8,516.0
+ L492.9,516.0 L492.0,516.0 L491.1,516.0 L490.2,516.0 L489.3,516.0 L488.4,516.0 L487.5,516.0 L486.6,516.0
+ L485.7,516.0 L484.8,516.0 L483.9,516.0 L483.0,516.0 L482.1,516.0 L481.2,516.0 L480.3,516.0 L479.4,516.0
+ L478.5,516.0 L477.6,516.0 L476.7,516.0 L475.8,516.0 L474.9,516.0 L474.0,516.0 L473.1,516.0 L472.2,516.0
+ L471.3,516.0 L470.4,516.0 L469.5,516.0 L468.6,516.0 L467.7,516.0 L466.8,516.0 L465.9,516.0 L465.0,516.0
+ L464.1,516.0 L463.2,516.0 L462.3,516.0 L461.4,516.0 L460.5,516.0 L459.6,516.0 L458.7,516.0 L457.8,516.0
+ L456.9,516.0 L456.0,516.0 L455.1,516.0 L454.2,516.0 L453.3,516.0 L452.3,516.0 L451.4,516.0 L450.5,516.0
+ L449.6,516.0 L448.7,516.0 L447.8,516.0 L446.9,516.0 L446.0,516.0 L445.1,516.0 L444.2,516.0 L443.3,516.0
+ L442.4,516.0 L441.5,516.0 L440.6,516.0 L439.7,516.0 L438.8,516.0 L437.9,516.0 L437.0,516.0 L436.1,516.0
+ L435.2,516.0 L434.3,516.0 L433.4,516.0 L432.5,516.0 L431.6,516.0 L430.7,516.0 L429.8,516.0 L428.9,516.0
+ L428.0,516.0 L427.1,516.0 L426.2,516.0 L425.3,516.0 L424.4,516.0 L423.5,516.0 L422.6,516.0 L421.7,516.0
+ L420.8,516.0 L419.9,516.0 L419.0,516.0 L418.1,516.0 L417.2,516.0 L416.3,516.0 L415.4,516.0 L414.5,516.0
+ L413.6,516.0 L412.7,516.0 L411.8,516.0 L410.8,516.0 L409.9,516.0 L409.0,516.0 L408.1,516.0 L407.2,516.0
+ L406.3,516.0 L405.4,516.0 L404.5,516.0 L403.6,516.0 L402.7,516.0 L401.8,516.0 L400.9,516.0 L400.0,516.0
+ L399.1,516.0 L398.2,516.0 L397.3,516.0 L396.4,516.0 L395.5,516.0 L394.6,516.0 L393.7,516.0 L392.8,516.0
+ L391.9,516.0 L391.0,516.0 L390.1,516.0 L389.2,516.0 L388.3,516.0 L387.4,516.0 L386.5,516.0 L385.6,516.0
+ L384.7,516.0 L383.8,516.0 L382.9,516.0 L382.0,516.0 L381.1,516.0 L380.2,516.0 L379.3,516.0 L378.4,516.0
+ L377.5,516.0 L376.6,516.0 L375.7,516.0 L374.8,516.0 L373.9,516.0 L373.0,516.0 L372.1,516.0 L371.2,516.0
+ L370.3,516.0 L369.4,516.0 L368.4,516.0 L367.5,516.0 L366.6,516.0 L365.7,516.0 L364.8,516.0 L363.9,516.0
+ L363.0,516.0 L362.1,516.0 L361.2,516.0 L360.3,516.0 L359.4,516.0 L358.5,516.0 L357.6,516.0 L356.7,516.0
+ L355.8,516.0 L354.9,516.0 L354.0,516.0 L353.1,516.0 L352.2,516.0 L351.3,516.0 L350.4,516.0 L349.5,516.0
+ L348.6,516.0 L347.7,516.0 L346.8,516.0 L345.9,516.0 L345.0,516.0 L344.1,516.0 L343.2,516.0 L342.3,516.0
+ L341.4,516.0 L340.5,516.0 L339.6,516.0 L338.7,516.0 L337.8,516.0 L336.9,516.0 L336.0,516.0 L335.1,516.0
+ L334.2,516.0 L333.3,516.0 L332.4,516.0 L331.5,516.0 L330.6,516.0 L329.7,516.0 L328.8,516.0 L327.9,516.0
+ L327.0,516.0 L326.0,516.0 L325.1,516.0 L324.2,516.0 L323.3,516.0 L322.4,516.0 L321.5,516.0 L320.6,516.0
+ L319.7,516.0 L318.8,516.0 L317.9,516.0 L317.0,516.0 L316.1,516.0 L315.2,516.0 L314.3,516.0 L313.4,516.0
+ L312.5,516.0 L311.6,516.0 L310.7,516.0 L309.8,516.0 L308.9,516.0 L308.0,516.0 L307.1,516.0 L306.2,516.0
+ L305.3,516.0 L304.4,516.0 L303.5,516.0 L302.6,516.0 L301.7,516.0 L300.8,516.0 L299.9,516.0 L299.0,516.0
+ L298.1,516.0 L297.2,516.0 L296.3,516.0 L295.4,516.0 L294.5,516.0 L293.6,516.0 L292.7,516.0 L291.8,516.0
+ L290.9,516.0 L290.0,516.0 L289.1,516.0 L288.2,516.0 L287.3,516.0 L286.4,516.0 L285.5,516.0 L284.5,516.0
+ L283.6,516.0 L282.7,516.0 L281.8,516.0 L280.9,516.0 L280.0,516.0 L279.1,516.0 L278.2,516.0 L277.3,516.0
+ L276.4,516.0 L275.5,516.0 L274.6,516.0 L273.7,516.0 L272.8,516.0 L271.9,516.0 L271.0,516.0 L270.1,516.0
+ L269.2,516.0 L268.3,516.0 L267.4,516.0 L266.5,516.0 L265.6,516.0 L264.7,516.0 L263.8,516.0 L262.9,516.0
+ L262.0,516.0 L261.1,516.0 L260.2,516.0 L259.3,516.0 L258.4,516.0 L257.5,516.0 L256.6,516.0 L255.7,516.0
+ L254.8,516.0 L253.9,516.0 L253.0,516.0 L252.1,516.0 L251.2,516.0 L250.3,516.0 L249.4,516.0 L248.5,516.0
+ L247.6,516.0 L246.7,516.0 L245.8,516.0 L244.9,516.0 L244.0,516.0 L243.1,516.0 L242.1,516.0 L241.2,516.0
+ L240.3,516.0 L239.4,516.0 L238.5,516.0 L237.6,516.0 L236.7,516.0 L235.8,516.0 L234.9,516.0 L234.0,516.0
+ L233.1,516.0 L232.2,516.0 L231.3,516.0 L230.4,516.0 L229.5,516.0 L228.6,516.0 L227.7,516.0 L226.8,516.0
+ L225.9,516.0 L225.0,516.0 L224.1,516.0 L223.2,516.0 L222.3,516.0 L221.4,516.0 L220.5,516.0 L219.6,516.0
+ L218.7,516.0 L217.8,516.0 L216.9,516.0 L216.0,516.0 L215.1,516.0 L214.2,516.0 L213.3,516.0 L212.4,516.0
+ L211.5,516.0 L210.6,516.0 L209.7,516.0 L208.8,516.0 L207.9,516.0 L207.0,516.0 L206.1,516.0 L205.2,516.0
+ L204.3,516.0 L203.4,516.0 L202.5,516.0 L201.6,516.0 L200.6,516.0 L199.7,516.0 L198.8,516.0 L197.9,516.0
+ L197.0,516.0 L196.1,516.0 L195.2,516.0 L194.3,516.0 L193.4,516.0 L192.5,516.0 L191.6,516.0 L190.7,516.0
+ L189.8,516.0 L188.9,516.0 L188.0,516.0 L187.1,516.0 L186.2,516.0 L185.3,516.0 L184.4,516.0 L183.5,516.0
+ L182.6,516.0 L181.7,516.0 L180.8,516.0 L179.9,516.0 L179.0,516.0 L178.1,516.0 L177.2,516.0 L176.3,516.0
+ L175.4,516.0 L174.5,516.0 L173.6,516.0 L172.7,516.0 L171.8,516.0 L170.9,516.0 L170.0,516.0 L169.1,516.0
+ L168.2,516.0 L167.3,516.0 L166.4,516.0 L165.5,516.0 L164.6,516.0 L163.7,516.0 L162.8,516.0 L161.9,516.0
+ L161.0,516.0 L160.1,516.0 L159.2,516.0 L158.2,516.0 L157.3,516.0 L156.4,516.0 L155.5,516.0 L154.6,516.0
+ L153.7,516.0 L152.8,516.0 L151.9,516.0 L151.0,516.0 L150.1,516.0 L149.2,516.0 L148.3,516.0 L147.4,516.0
+ L146.5,516.0 L145.6,516.0 L144.7,516.0 L143.8,516.0 L142.9,516.0 L142.0,516.0 L141.1,516.0 L140.2,516.0
+ L139.3,516.0 L138.4,516.0 L137.5,516.0 L136.6,516.0 L135.7,516.0 L134.8,516.0 L133.9,516.0 L133.0,516.0
+ L132.1,516.0 L131.2,516.0 L130.3,516.0 L129.4,516.0 L128.5,516.0 L127.6,516.0 L126.7,516.0 L125.8,516.0
+ L124.9,516.0 L124.0,516.0 L123.1,516.0 L122.2,516.0 L121.3,516.0 L120.4,516.0 L119.5,516.0 L118.6,516.0
+ L117.7,516.0 L116.7,516.0 L115.8,516.0 L114.9,516.0 L114.0,516.0 L113.1,516.0 L112.2,516.0 L111.3,516.0
+ L110.4,516.0 L109.5,516.0 L108.6,516.0 L107.7,516.0 L106.8,516.0 L105.9,516.0 L105.0,516.0 L104.1,516.0
+ L103.2,516.0 L102.3,516.0 L101.4,516.0 L100.5,516.0 L99.6,516.0 L98.7,516.0 L97.8,516.0 L96.9,516.0
+ L96.0,516.0 '/></g>
+ </g>
+ <g id="gnuplot_plot_2a" ><title>gnuplot_plot_2a</title>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,516.0 L96.9,516.0 L97.8,516.0 L98.7,515.9 L99.6,515.9 L100.5,515.9 L101.4,515.8 L102.3,515.7
+ L103.2,515.6 L104.1,515.5 L105.0,515.4 L105.9,515.3 L106.8,515.2 L107.7,515.0 L108.6,514.9 L109.5,514.7
+ L110.4,514.6 L111.3,514.4 L112.2,514.2 L113.1,513.9 L114.0,513.7 L114.9,513.5 L115.8,513.2 L116.7,513.0
+ L117.7,512.7 L118.6,512.4 L119.5,512.1 L120.4,511.8 L121.3,511.4 L122.2,511.1 L123.1,510.7 L124.0,510.4
+ L124.9,510.0 L125.8,509.6 L126.7,509.2 L127.6,508.7 L128.5,508.3 L129.4,507.8 L130.3,507.3 L131.2,506.8
+ L132.1,506.3 L133.0,505.8 L133.9,505.3 L134.8,504.7 L135.7,504.1 L136.6,503.5 L137.5,502.9 L138.4,502.3
+ L139.3,501.7 L140.2,501.0 L141.1,500.3 L142.0,499.6 L142.9,498.9 L143.8,498.1 L144.7,497.4 L145.6,496.6
+ L146.5,495.8 L147.4,495.0 L148.3,494.1 L149.2,493.3 L150.1,492.4 L151.0,491.5 L151.9,490.6 L152.8,489.6
+ L153.7,488.7 L154.6,487.7 L155.5,486.7 L156.4,485.6 L157.3,484.6 L158.2,483.5 L159.2,482.4 L160.1,481.3
+ L161.0,480.1 L161.9,479.0 L162.8,477.8 L163.7,476.6 L164.6,475.3 L165.5,474.0 L166.4,472.8 L167.3,471.4
+ L168.2,470.1 L169.1,468.7 L170.0,467.3 L170.9,465.9 L171.8,464.5 L172.7,463.0 L173.6,461.5 L174.5,460.0
+ L175.4,458.5 L176.3,456.9 L177.2,455.3 L178.1,453.7 L179.0,452.0 L179.9,450.4 L180.8,448.7 L181.7,447.0
+ L182.6,445.2 L183.5,443.4 L184.4,441.6 L185.3,439.8 L186.2,438.0 L187.1,436.1 L188.0,434.2 L188.9,432.3
+ L189.8,430.3 L190.7,428.3 L191.6,426.3 L192.5,424.3 L193.4,422.2 L194.3,420.2 L195.2,418.0 L196.1,415.9
+ L197.0,413.8 L197.9,411.6 L198.8,409.4 L199.7,407.2 L200.6,404.9 L201.6,402.6 L202.5,400.3 L203.4,398.0
+ L204.3,395.7 L205.2,393.3 L206.1,390.9 L207.0,388.5 L207.9,386.1 L208.8,383.6 L209.7,381.2 L210.6,378.7
+ L211.5,376.1 L212.4,373.6 L213.3,371.1 L214.2,368.5 L215.1,365.9 L216.0,363.3 L216.9,360.7 L217.8,358.0
+ L218.7,355.4 L219.6,352.7 L220.5,350.0 L221.4,347.3 L222.3,344.6 L223.2,341.8 L224.1,339.1 L225.0,336.3
+ L225.9,333.5 L226.8,330.7 L227.7,327.9 L228.6,325.1 L229.5,322.3 L230.4,319.5 L231.3,316.6 L232.2,313.8
+ L233.1,310.9 L234.0,308.0 L234.9,305.2 L235.8,302.3 L236.7,299.4 L237.6,296.5 L238.5,293.6 L239.4,290.7
+ L240.3,287.8 L241.2,284.9 L242.1,282.0 L243.1,279.1 L244.0,276.2 L244.9,273.3 L245.8,270.4 L246.7,267.5
+ L247.6,264.6 L248.5,261.7 L249.4,258.8 L250.3,255.9 L251.2,253.0 L252.1,250.1 L253.0,247.3 L253.9,244.4
+ L254.8,241.6 L255.7,238.7 L256.6,235.9 L257.5,233.1 L258.4,230.3 L259.3,227.5 L260.2,224.7 L261.1,221.9
+ L262.0,219.2 L262.9,216.5 L263.8,213.7 L264.7,211.0 L265.6,208.3 L266.5,205.7 L267.4,203.0 L268.3,200.4
+ L269.2,197.8 L270.1,195.2 L271.0,192.7 L271.9,190.1 L272.8,187.6 L273.7,185.1 L274.6,182.7 L275.5,180.2
+ L276.4,177.8 L277.3,175.5 L278.2,173.1 L279.1,170.8 L280.0,168.5 L280.9,166.2 L281.8,164.0 L282.7,161.8
+ L283.6,159.6 L284.5,157.5 L285.5,155.4 L286.4,153.3 L287.3,151.3 L288.2,149.3 L289.1,147.4 L290.0,145.5
+ L290.9,143.6 L291.8,141.7 L292.7,139.9 L293.6,138.2 L294.5,136.4 L295.4,134.8 L296.3,133.1 L297.2,131.5
+ L298.1,130.0 L299.0,128.4 L299.9,127.0 L300.8,125.5 L301.7,124.2 L302.6,122.8 L303.5,121.5 L304.4,120.3
+ L305.3,119.1 L306.2,117.9 L307.1,116.8 L308.0,115.7 L308.9,114.7 L309.8,113.7 L310.7,112.8 L311.6,111.9
+ L312.5,111.1 L313.4,110.3 L314.3,109.6 L315.2,108.9 L316.1,108.3 L317.0,107.7 L317.9,107.2 L318.8,106.7
+ L319.7,106.3 L320.6,105.9 L321.5,105.6 L322.4,105.3 L323.3,105.1 L324.2,104.9 L325.1,104.8 L326.0,104.7
+ L327.0,104.7 L327.9,104.7 L328.8,104.8 L329.7,104.9 L330.6,105.1 L331.5,105.3 L332.4,105.6 L333.3,105.9
+ L334.2,106.3 L335.1,106.7 L336.0,107.2 L336.9,107.7 L337.8,108.3 L338.7,108.9 L339.6,109.6 L340.5,110.3
+ L341.4,111.1 L342.3,111.9 L343.2,112.8 L344.1,113.7 L345.0,114.7 L345.9,115.7 L346.8,116.8 L347.7,117.9
+ L348.6,119.1 L349.5,120.3 L350.4,121.5 L351.3,122.8 L352.2,124.2 L353.1,125.5 L354.0,127.0 L354.9,128.4
+ L355.8,130.0 L356.7,131.5 L357.6,133.1 L358.5,134.8 L359.4,136.4 L360.3,138.2 L361.2,139.9 L362.1,141.7
+ L363.0,143.6 L363.9,145.5 L364.8,147.4 L365.7,149.3 L366.6,151.3 L367.5,153.3 L368.4,155.4 L369.4,157.5
+ L370.3,159.6 L371.2,161.8 L372.1,164.0 L373.0,166.2 L373.9,168.5 L374.8,170.8 L375.7,173.1 L376.6,175.5
+ L377.5,177.8 L378.4,180.2 L379.3,182.7 L380.2,185.1 L381.1,187.6 L382.0,190.1 L382.9,192.7 L383.8,195.2
+ L384.7,197.8 L385.6,200.4 L386.5,203.0 L387.4,205.7 L388.3,208.3 L389.2,211.0 L390.1,213.7 L391.0,216.5
+ L391.9,219.2 L392.8,221.9 L393.7,224.7 L394.6,227.5 L395.5,230.3 L396.4,233.1 L397.3,235.9 L398.2,238.7
+ L399.1,241.6 L400.0,244.4 L400.9,247.3 L401.8,250.1 L402.7,253.0 L403.6,255.9 L404.5,258.8 L405.4,261.7
+ L406.3,264.6 L407.2,267.5 L408.1,270.4 L409.0,273.3 L409.9,276.2 L410.8,279.1 L411.8,282.0 L412.7,284.9
+ L413.6,287.8 L414.5,290.7 L415.4,293.6 L416.3,296.5 L417.2,299.4 L418.1,302.3 L419.0,305.2 L419.9,308.0
+ L420.8,310.9 L421.7,313.8 L422.6,316.6 L423.5,319.5 L424.4,322.3 L425.3,325.1 L426.2,327.9 L427.1,330.7
+ L428.0,333.5 L428.9,336.3 L429.8,339.1 L430.7,341.8 L431.6,344.6 L432.5,347.3 L433.4,350.0 L434.3,352.7
+ L435.2,355.4 L436.1,358.0 L437.0,360.7 L437.9,363.3 L438.8,365.9 L439.7,368.5 L440.6,371.1 L441.5,373.6
+ L442.4,376.1 L443.3,378.7 L444.2,381.2 L445.1,383.6 L446.0,386.1 L446.9,388.5 L447.8,390.9 L448.7,393.3
+ L449.6,395.7 L450.5,398.0 L451.4,400.3 L452.3,402.6 L453.3,404.9 L454.2,407.2 L455.1,409.4 L456.0,411.6
+ L456.9,413.8 L457.8,415.9 L458.7,418.0 L459.6,420.2 L460.5,422.2 L461.4,424.3 L462.3,426.3 L463.2,428.3
+ L464.1,430.3 L465.0,432.3 L465.9,434.2 L466.8,436.1 L467.7,438.0 L468.6,439.8 L469.5,441.6 L470.4,443.4
+ L471.3,445.2 L472.2,447.0 L473.1,448.7 L474.0,450.4 L474.9,452.0 L475.8,453.7 L476.7,455.3 L477.6,456.9
+ L478.5,458.5 L479.4,460.0 L480.3,461.5 L481.2,463.0 L482.1,464.5 L483.0,465.9 L483.9,467.3 L484.8,468.7
+ L485.7,470.1 L486.6,471.4 L487.5,472.8 L488.4,474.0 L489.3,475.3 L490.2,476.6 L491.1,477.8 L492.0,479.0
+ L492.9,480.1 L493.8,481.3 L494.7,482.4 L495.7,483.5 L496.6,484.6 L497.5,485.6 L498.4,486.7 L499.3,487.7
+ L500.2,488.7 L501.1,489.6 L502.0,490.6 L502.9,491.5 L503.8,492.4 L504.7,493.3 L505.6,494.1 L506.5,495.0
+ L507.4,495.8 L508.3,496.6 L509.2,497.4 L510.1,498.1 L511.0,498.9 L511.9,499.6 L512.8,500.3 L513.7,501.0
+ L514.6,501.7 L515.5,502.3 L516.4,502.9 L517.3,503.5 L518.2,504.1 L519.1,504.7 L520.0,505.3 L520.9,505.8
+ L521.8,506.3 L522.7,506.8 L523.6,507.3 L524.5,507.8 L525.4,508.3 L526.3,508.7 L527.2,509.2 L528.1,509.6
+ L529.0,510.0 L529.9,510.4 L530.8,510.7 L531.7,511.1 L532.6,511.4 L533.5,511.8 L534.4,512.1 L535.3,512.4
+ L536.2,512.7 L537.2,513.0 L538.1,513.2 L539.0,513.5 L539.9,513.7 L540.8,513.9 L541.7,514.2 L542.6,514.4
+ L543.5,514.6 L544.4,514.7 L545.3,514.9 L546.2,515.0 L547.1,515.2 L548.0,515.3 L548.9,515.4 L549.8,515.5
+ L550.7,515.6 L551.6,515.7 L552.5,515.8 L553.4,515.9 L554.3,515.9 L555.2,515.9 L556.1,516.0 L557.0,516.0
+ L557.9,516.0 L557.0,516.0 L556.1,516.0 L555.2,516.0 L554.3,516.0 L553.4,516.0 L552.5,516.0 L551.6,516.0
+ L550.7,516.0 L549.8,516.0 L548.9,516.0 L548.0,516.0 L547.1,516.0 L546.2,516.0 L545.3,516.0 L544.4,516.0
+ L543.5,516.0 L542.6,516.0 L541.7,516.0 L540.8,516.0 L539.9,516.0 L539.0,516.0 L538.1,516.0 L537.2,516.0
+ L536.2,516.0 L535.3,516.0 L534.4,516.0 L533.5,516.0 L532.6,516.0 L531.7,516.0 L530.8,516.0 L529.9,516.0
+ L529.0,516.0 L528.1,516.0 L527.2,516.0 L526.3,516.0 L525.4,516.0 L524.5,516.0 L523.6,516.0 L522.7,516.0
+ L521.8,516.0 L520.9,516.0 L520.0,516.0 L519.1,516.0 L518.2,516.0 L517.3,516.0 L516.4,516.0 L515.5,516.0
+ L514.6,516.0 L513.7,516.0 L512.8,516.0 L511.9,516.0 L511.0,516.0 L510.1,516.0 L509.2,516.0 L508.3,516.0
+ L507.4,516.0 L506.5,516.0 L505.6,516.0 L504.7,516.0 L503.8,516.0 L502.9,516.0 L502.0,516.0 L501.1,516.0
+ L500.2,516.0 L499.3,516.0 L498.4,516.0 L497.5,516.0 L496.6,516.0 L495.7,516.0 L494.7,516.0 L493.8,516.0
+ L492.9,516.0 L492.0,516.0 L491.1,516.0 L490.2,516.0 L489.3,516.0 L488.4,516.0 L487.5,516.0 L486.6,516.0
+ L485.7,516.0 L484.8,516.0 L483.9,516.0 L483.0,516.0 L482.1,516.0 L481.2,516.0 L480.3,516.0 L479.4,516.0
+ L478.5,516.0 L477.6,516.0 L476.7,516.0 L475.8,516.0 L474.9,516.0 L474.0,516.0 L473.1,516.0 L472.2,516.0
+ L471.3,516.0 L470.4,516.0 L469.5,516.0 L468.6,516.0 L467.7,516.0 L466.8,516.0 L465.9,516.0 L465.0,516.0
+ L464.1,516.0 L463.2,516.0 L462.3,516.0 L461.4,516.0 L460.5,516.0 L459.6,516.0 L458.7,516.0 L457.8,516.0
+ L456.9,516.0 L456.0,516.0 L455.1,516.0 L454.2,516.0 L453.3,516.0 L452.3,516.0 L451.4,516.0 L450.5,516.0
+ L449.6,516.0 L448.7,516.0 L447.8,516.0 L446.9,516.0 L446.0,516.0 L445.1,516.0 L444.2,516.0 L443.3,516.0
+ L442.4,516.0 L441.5,516.0 L440.6,516.0 L439.7,516.0 L438.8,516.0 L437.9,516.0 L437.0,516.0 L436.1,516.0
+ L435.2,516.0 L434.3,516.0 L433.4,516.0 L432.5,516.0 L431.6,516.0 L430.7,516.0 L429.8,516.0 L428.9,516.0
+ L428.0,516.0 L427.1,516.0 L426.2,516.0 L425.3,516.0 L424.4,516.0 L423.5,516.0 L422.6,516.0 L421.7,516.0
+ L420.8,516.0 L419.9,516.0 L419.0,516.0 L418.1,516.0 L417.2,516.0 L416.3,516.0 L415.4,516.0 L414.5,516.0
+ L413.6,516.0 L412.7,516.0 L411.8,516.0 L410.8,516.0 L409.9,516.0 L409.0,516.0 L408.1,516.0 L407.2,516.0
+ L406.3,516.0 L405.4,516.0 L404.5,516.0 L403.6,516.0 L402.7,516.0 L401.8,516.0 L400.9,516.0 L400.0,516.0
+ L399.1,516.0 L398.2,516.0 L397.3,516.0 L396.4,516.0 L395.5,516.0 L394.6,516.0 L393.7,516.0 L392.8,516.0
+ L391.9,516.0 L391.0,516.0 L390.1,516.0 L389.2,516.0 L388.3,516.0 L387.4,516.0 L386.5,516.0 L385.6,516.0
+ L384.7,516.0 L383.8,516.0 L382.9,516.0 L382.0,516.0 L381.1,516.0 L380.2,516.0 L379.3,516.0 L378.4,516.0
+ L377.5,516.0 L376.6,516.0 L375.7,516.0 L374.8,516.0 L373.9,516.0 L373.0,516.0 L372.1,516.0 L371.2,516.0
+ L370.3,516.0 L369.4,516.0 L368.4,516.0 L367.5,516.0 L366.6,516.0 L365.7,516.0 L364.8,516.0 L363.9,516.0
+ L363.0,516.0 L362.1,516.0 L361.2,516.0 L360.3,516.0 L359.4,516.0 L358.5,516.0 L357.6,516.0 L356.7,516.0
+ L355.8,516.0 L354.9,516.0 L354.0,516.0 L353.1,516.0 L352.2,516.0 L351.3,516.0 L350.4,516.0 L349.5,516.0
+ L348.6,516.0 L347.7,516.0 L346.8,516.0 L345.9,516.0 L345.0,516.0 L344.1,516.0 L343.2,516.0 L342.3,516.0
+ L341.4,516.0 L340.5,516.0 L339.6,516.0 L338.7,516.0 L337.8,516.0 L336.9,516.0 L336.0,516.0 L335.1,516.0
+ L334.2,516.0 L333.3,516.0 L332.4,516.0 L331.5,516.0 L330.6,516.0 L329.7,516.0 L328.8,516.0 L327.9,516.0
+ L327.0,516.0 L326.0,516.0 L325.1,516.0 L324.2,516.0 L323.3,516.0 L322.4,516.0 L321.5,516.0 L320.6,516.0
+ L319.7,516.0 L318.8,516.0 L317.9,516.0 L317.0,516.0 L316.1,516.0 L315.2,516.0 L314.3,516.0 L313.4,516.0
+ L312.5,516.0 L311.6,516.0 L310.7,516.0 L309.8,516.0 L308.9,516.0 L308.0,516.0 L307.1,516.0 L306.2,516.0
+ L305.3,516.0 L304.4,516.0 L303.5,516.0 L302.6,516.0 L301.7,516.0 L300.8,516.0 L299.9,516.0 L299.0,516.0
+ L298.1,516.0 L297.2,516.0 L296.3,516.0 L295.4,516.0 L294.5,516.0 L293.6,516.0 L292.7,516.0 L291.8,516.0
+ L290.9,516.0 L290.0,516.0 L289.1,516.0 L288.2,516.0 L287.3,516.0 L286.4,516.0 L285.5,516.0 L284.5,516.0
+ L283.6,516.0 L282.7,516.0 L281.8,516.0 L280.9,516.0 L280.0,516.0 L279.1,516.0 L278.2,516.0 L277.3,516.0
+ L276.4,516.0 L275.5,516.0 L274.6,516.0 L273.7,516.0 L272.8,516.0 L271.9,516.0 L271.0,516.0 L270.1,516.0
+ L269.2,516.0 L268.3,516.0 L267.4,516.0 L266.5,516.0 L265.6,516.0 L264.7,516.0 L263.8,516.0 L262.9,516.0
+ L262.0,516.0 L261.1,516.0 L260.2,516.0 L259.3,516.0 L258.4,516.0 L257.5,516.0 L256.6,516.0 L255.7,516.0
+ L254.8,516.0 L253.9,516.0 L253.0,516.0 L252.1,516.0 L251.2,516.0 L250.3,516.0 L249.4,516.0 L248.5,516.0
+ L247.6,516.0 L246.7,516.0 L245.8,516.0 L244.9,516.0 L244.0,516.0 L243.1,516.0 L242.1,516.0 L241.2,516.0
+ L240.3,516.0 L239.4,516.0 L238.5,516.0 L237.6,516.0 L236.7,516.0 L235.8,516.0 L234.9,516.0 L234.0,516.0
+ L233.1,516.0 L232.2,516.0 L231.3,516.0 L230.4,516.0 L229.5,516.0 L228.6,516.0 L227.7,516.0 L226.8,516.0
+ L225.9,516.0 L225.0,516.0 L224.1,516.0 L223.2,516.0 L222.3,516.0 L221.4,516.0 L220.5,516.0 L219.6,516.0
+ L218.7,516.0 L217.8,516.0 L216.9,516.0 L216.0,516.0 L215.1,516.0 L214.2,516.0 L213.3,516.0 L212.4,516.0
+ L211.5,516.0 L210.6,516.0 L209.7,516.0 L208.8,516.0 L207.9,516.0 L207.0,516.0 L206.1,516.0 L205.2,516.0
+ L204.3,516.0 L203.4,516.0 L202.5,516.0 L201.6,516.0 L200.6,516.0 L199.7,516.0 L198.8,516.0 L197.9,516.0
+ L197.0,516.0 L196.1,516.0 L195.2,516.0 L194.3,516.0 L193.4,516.0 L192.5,516.0 L191.6,516.0 L190.7,516.0
+ L189.8,516.0 L188.9,516.0 L188.0,516.0 L187.1,516.0 L186.2,516.0 L185.3,516.0 L184.4,516.0 L183.5,516.0
+ L182.6,516.0 L181.7,516.0 L180.8,516.0 L179.9,516.0 L179.0,516.0 L178.1,516.0 L177.2,516.0 L176.3,516.0
+ L175.4,516.0 L174.5,516.0 L173.6,516.0 L172.7,516.0 L171.8,516.0 L170.9,516.0 L170.0,516.0 L169.1,516.0
+ L168.2,516.0 L167.3,516.0 L166.4,516.0 L165.5,516.0 L164.6,516.0 L163.7,516.0 L162.8,516.0 L161.9,516.0
+ L161.0,516.0 L160.1,516.0 L159.2,516.0 L158.2,516.0 L157.3,516.0 L156.4,516.0 L155.5,516.0 L154.6,516.0
+ L153.7,516.0 L152.8,516.0 L151.9,516.0 L151.0,516.0 L150.1,516.0 L149.2,516.0 L148.3,516.0 L147.4,516.0
+ L146.5,516.0 L145.6,516.0 L144.7,516.0 L143.8,516.0 L142.9,516.0 L142.0,516.0 L141.1,516.0 L140.2,516.0
+ L139.3,516.0 L138.4,516.0 L137.5,516.0 L136.6,516.0 L135.7,516.0 L134.8,516.0 L133.9,516.0 L133.0,516.0
+ L132.1,516.0 L131.2,516.0 L130.3,516.0 L129.4,516.0 L128.5,516.0 L127.6,516.0 L126.7,516.0 L125.8,516.0
+ L124.9,516.0 L124.0,516.0 L123.1,516.0 L122.2,516.0 L121.3,516.0 L120.4,516.0 L119.5,516.0 L118.6,516.0
+ L117.7,516.0 L116.7,516.0 L115.8,516.0 L114.9,516.0 L114.0,516.0 L113.1,516.0 L112.2,516.0 L111.3,516.0
+ L110.4,516.0 L109.5,516.0 L108.6,516.0 L107.7,516.0 L106.8,516.0 L105.9,516.0 L105.0,516.0 L104.1,516.0
+ L103.2,516.0 L102.3,516.0 L101.4,516.0 L100.5,516.0 L99.6,516.0 L98.7,516.0 L97.8,516.0 L96.9,516.0
+ L96.0,516.0 '/></g>
+ </g>
+<g fill="none" color="#FFFFFF" stroke="rgb( 0, 0, 0)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 38, 38, 38)' d='M96.0,516.0 L557.9,516.0 M96.0,84.1 L557.9,84.1 M96.0,516.0 L96.0,84.1 M557.9,516.0 L557.9,84.1
+ '/></g>
+<g fill="none" color="black" stroke="rgb( 38, 38, 38)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g stroke='none' shape-rendering='crispEdges'>
+ <polygon fill = 'rgb(255, 255, 255)' points = '714.0,516.0 1175.8,516.0 1175.8,84.2 714.0,84.2 '/>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,516.0 L1175.9,516.0 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,516.0 L729.6,516.0 M1175.9,516.0 L1160.3,516.0 '/> <g transform="translate(703.5,522.5)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-130</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,484.2 L1175.9,484.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,484.2 L729.6,484.2 M1175.9,484.2 L1160.3,484.2 '/> <g transform="translate(703.5,490.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-120</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,452.5 L1175.9,452.5 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,452.5 L729.6,452.5 M1175.9,452.5 L1160.3,452.5 '/> <g transform="translate(703.5,459.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-110</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,420.7 L1175.9,420.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,420.7 L729.6,420.7 M1175.9,420.7 L1160.3,420.7 '/> <g transform="translate(703.5,427.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-100</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,389.0 L1175.9,389.0 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,389.0 L729.6,389.0 M1175.9,389.0 L1160.3,389.0 '/> <g transform="translate(703.5,395.5)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-90</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,357.2 L1175.9,357.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,357.2 L729.6,357.2 M1175.9,357.2 L1160.3,357.2 '/> <g transform="translate(703.5,363.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-80</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,325.5 L1175.9,325.5 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,325.5 L729.6,325.5 M1175.9,325.5 L1160.3,325.5 '/> <g transform="translate(703.5,332.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-70</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,293.7 L1175.9,293.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,293.7 L729.6,293.7 M1175.9,293.7 L1160.3,293.7 '/> <g transform="translate(703.5,300.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-60</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,261.9 L1175.9,261.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,261.9 L729.6,261.9 M1175.9,261.9 L1160.3,261.9 '/> <g transform="translate(703.5,268.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-50</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,230.2 L1175.9,230.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,230.2 L729.6,230.2 M1175.9,230.2 L1160.3,230.2 '/> <g transform="translate(703.5,236.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-40</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,198.4 L1175.9,198.4 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,198.4 L729.6,198.4 M1175.9,198.4 L1160.3,198.4 '/> <g transform="translate(703.5,204.9)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-30</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,166.7 L1175.9,166.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,166.7 L729.6,166.7 M1175.9,166.7 L1160.3,166.7 '/> <g transform="translate(703.5,173.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-20</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,134.9 L1175.9,134.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,134.9 L729.6,134.9 M1175.9,134.9 L1160.3,134.9 '/> <g transform="translate(703.5,141.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-10</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,103.2 L1175.9,103.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,103.2 L729.6,103.2 M1175.9,103.2 L1160.3,103.2 '/> <g transform="translate(703.5,109.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,516.0 L714.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,516.0 L714.0,500.4 M714.0,84.1 L714.0,99.7 '/> <g transform="translate(714.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-40</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M829.5,516.0 L829.5,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M829.5,516.0 L829.5,500.4 M829.5,84.1 L829.5,99.7 '/> <g transform="translate(829.5,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-20</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M945.0,516.0 L945.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M945.0,516.0 L945.0,500.4 M945.0,84.1 L945.0,99.7 '/> <g transform="translate(945.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M1060.4,516.0 L1060.4,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M1060.4,516.0 L1060.4,500.4 M1060.4,84.1 L1060.4,99.7 '/> <g transform="translate(1060.4,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >20</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M1175.9,516.0 L1175.9,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M1175.9,516.0 L1175.9,500.4 M1175.9,84.1 L1175.9,99.7 '/> <g transform="translate(1175.9,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >40</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(648.1,300.1) rotate(-90)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >decibels</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(944.9,581.3)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >bins</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(944.9,39.9)" stroke="none" fill="rgb(0,0,0)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >Fourier transform</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+ <g id="gnuplot_plot_1b" ><title>gnuplot_plot_1b</title>
+<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb(222, 125, 0)' d='M714.0,516.0 M714.2,516.0 M714.4,516.0 L714.4,508.1 M714.5,516.0 L714.5,497.2 M714.7,516.0 L714.7,489.5
+ M714.9,516.0 L714.9,483.8 M715.1,516.0 L715.1,479.2 M715.3,516.0 L715.3,475.5 M715.4,516.0 L715.4,472.4
+ M715.6,516.0 L715.6,469.9 M715.8,516.0 L715.8,467.8 M716.0,516.0 L716.0,466.2 M716.2,516.0 L716.2,464.8
+ M716.3,516.0 L716.3,463.8 M716.5,516.0 L716.5,463.1 M716.7,516.0 L716.7,462.6 M716.9,516.0 L716.9,462.4
+ M717.1,516.0 L717.1,462.5 M717.2,516.0 L717.2,462.8 M717.4,516.0 L717.4,463.4 M717.6,516.0 L717.6,464.3
+ M717.8,516.0 L717.8,465.6 M718.0,516.0 L718.0,467.1 M718.1,516.0 L718.1,469.1 M718.3,516.0 L718.3,471.5
+ M718.5,516.0 L718.5,474.4 M718.7,516.0 L718.7,478.0 M718.9,516.0 L718.9,482.5 M719.1,516.0 L719.1,488.2
+ M719.2,516.0 L719.2,495.8 M719.4,516.0 L719.4,506.8 M719.6,516.0 M719.8,516.0 M720.0,516.0 M720.1,516.0
+ L720.1,506.0 M720.3,516.0 L720.3,495.1 M720.5,516.0 L720.5,487.5 M720.7,516.0 L720.7,481.7 M720.9,516.0
+ L720.9,477.1 M721.0,516.0 L721.0,473.4 M721.2,516.0 L721.2,470.3 M721.4,516.0 L721.4,467.8 M721.6,516.0
+ L721.6,465.7 M721.8,516.0 L721.8,464.1 M721.9,516.0 L721.9,462.7 M722.1,516.0 L722.1,461.7 M722.3,516.0
+ L722.3,460.9 M722.5,516.0 L722.5,460.5 M722.7,516.0 L722.7,460.3 M722.8,516.0 L722.8,460.4 M723.0,516.0
+ L723.0,460.7 M723.2,516.0 L723.2,461.3 M723.4,516.0 L723.4,462.2 M723.6,516.0 L723.6,463.4 M723.7,516.0
+ L723.7,465.0 M723.9,516.0 L723.9,467.0 M724.1,516.0 L724.1,469.4 M724.3,516.0 L724.3,472.3 M724.5,516.0
+ L724.5,475.9 M724.6,516.0 L724.6,480.4 M724.8,516.0 L724.8,486.1 M725.0,516.0 L725.0,493.7 M725.2,516.0
+ L725.2,504.7 M725.4,516.0 M725.5,516.0 M725.7,516.0 M725.9,516.0 L725.9,503.9 M726.1,516.0 L726.1,493.0
+ M726.3,516.0 L726.3,485.3 M726.4,516.0 L726.4,479.5 M726.6,516.0 L726.6,474.9 M726.8,516.0 L726.8,471.2
+ M727.0,516.0 L727.0,468.2 M727.2,516.0 L727.2,465.7 M727.4,516.0 L727.4,463.6 M727.5,516.0 L727.5,461.9
+ M727.7,516.0 L727.7,460.5 M727.9,516.0 L727.9,459.5 M728.1,516.0 L728.1,458.8 M728.3,516.0 L728.3,458.3
+ M728.4,516.0 L728.4,458.1 M728.6,516.0 L728.6,458.2 M728.8,516.0 L728.8,458.5 M729.0,516.0 L729.0,459.1
+ M729.2,516.0 L729.2,460.0 M729.3,516.0 L729.3,461.3 M729.5,516.0 L729.5,462.8 M729.7,516.0 L729.7,464.8
+ M729.9,516.0 L729.9,467.2 M730.1,516.0 L730.1,470.1 M730.2,516.0 L730.2,473.7 M730.4,516.0 L730.4,478.2
+ M730.6,516.0 L730.6,483.9 M730.8,516.0 L730.8,491.5 M731.0,516.0 L731.0,502.5 M731.1,516.0 M731.3,516.0
+ M731.5,516.0 M731.7,516.0 L731.7,501.7 M731.9,516.0 L731.9,490.7 M732.0,516.0 L732.0,483.1 M732.2,516.0
+ L732.2,477.3 M732.4,516.0 L732.4,472.7 M732.6,516.0 L732.6,469.0 M732.8,516.0 L732.8,466.0 M732.9,516.0
+ L732.9,463.4 M733.1,516.0 L733.1,461.4 M733.3,516.0 L733.3,459.7 M733.5,516.0 L733.5,458.3 M733.7,516.0
+ L733.7,457.3 M733.8,516.0 L733.8,456.5 M734.0,516.0 L734.0,456.1 M734.2,516.0 L734.2,455.9 M734.4,516.0
+ L734.4,455.9 M734.6,516.0 L734.6,456.3 M734.7,516.0 L734.7,456.9 M734.9,516.0 L734.9,457.8 M735.1,516.0
+ L735.1,459.0 M735.3,516.0 L735.3,460.6 M735.5,516.0 L735.5,462.5 M735.7,516.0 L735.7,464.9 M735.8,516.0
+ L735.8,467.9 M736.0,516.0 L736.0,471.5 M736.2,516.0 L736.2,475.9 M736.4,516.0 L736.4,481.6 M736.6,516.0
+ L736.6,489.2 M736.7,516.0 L736.7,500.2 M736.9,516.0 M737.1,516.0 M737.3,516.0 M737.5,516.0 L737.5,499.4
+ M737.6,516.0 L737.6,488.5 M737.8,516.0 L737.8,480.8 M738.0,516.0 L738.0,475.0 M738.2,516.0 L738.2,470.4
+ M738.4,516.0 L738.4,466.7 M738.5,516.0 L738.5,463.7 M738.7,516.0 L738.7,461.2 M738.9,516.0 L738.9,459.1
+ M739.1,516.0 L739.1,457.4 M739.3,516.0 L739.3,456.0 M739.4,516.0 L739.4,455.0 M739.6,516.0 L739.6,454.3
+ M739.8,516.0 L739.8,453.8 M740.0,516.0 L740.0,453.6 M740.2,516.0 L740.2,453.6 M740.3,516.0 L740.3,454.0
+ M740.5,516.0 L740.5,454.6 M740.7,516.0 L740.7,455.5 M740.9,516.0 L740.9,456.7 M741.1,516.0 L741.1,458.3
+ M741.2,516.0 L741.2,460.2 M741.4,516.0 L741.4,462.6 M741.6,516.0 L741.6,465.5 M741.8,516.0 L741.8,469.1
+ M742.0,516.0 L742.0,473.6 M742.1,516.0 L742.1,479.3 M742.3,516.0 L742.3,486.9 M742.5,516.0 L742.5,497.9
+ M742.7,516.0 M742.9,516.0 M743.0,516.0 L743.0,515.9 M743.2,516.0 L743.2,497.1 M743.4,516.0 L743.4,486.2
+ M743.6,516.0 L743.6,478.5 M743.8,516.0 L743.8,472.7 M744.0,516.0 L744.0,468.1 M744.1,516.0 L744.1,464.4
+ M744.3,516.0 L744.3,461.3 M744.5,516.0 L744.5,458.8 M744.7,516.0 L744.7,456.7 M744.9,516.0 L744.9,455.0
+ M745.0,516.0 L745.0,453.7 M745.2,516.0 L745.2,452.6 M745.4,516.0 L745.4,451.9 M745.6,516.0 L745.6,451.4
+ M745.8,516.0 L745.8,451.2 M745.9,516.0 L745.9,451.3 M746.1,516.0 L746.1,451.6 M746.3,516.0 L746.3,452.2
+ M746.5,516.0 L746.5,453.1 M746.7,516.0 L746.7,454.3 M746.8,516.0 L746.8,455.9 M747.0,516.0 L747.0,457.8
+ M747.2,516.0 L747.2,460.2 M747.4,516.0 L747.4,463.2 M747.6,516.0 L747.6,466.8 M747.7,516.0 L747.7,471.2
+ M747.9,516.0 L747.9,476.9 M748.1,516.0 L748.1,484.5 M748.3,516.0 L748.3,495.5 M748.5,516.0 L748.5,514.6
+ M748.6,516.0 M748.8,516.0 L748.8,513.6 M749.0,516.0 L749.0,494.7 M749.2,516.0 L749.2,483.8 M749.4,516.0
+ L749.4,476.1 M749.5,516.0 L749.5,470.3 M749.7,516.0 L749.7,465.7 M749.9,516.0 L749.9,462.0 M750.1,516.0
+ L750.1,458.9 M750.3,516.0 L750.3,456.4 M750.4,516.0 L750.4,454.3 M750.6,516.0 L750.6,452.6 M750.8,516.0
+ L750.8,451.3 M751.0,516.0 L751.0,450.2 M751.2,516.0 L751.2,449.5 M751.3,516.0 L751.3,449.0 M751.5,516.0
+ L751.5,448.8 M751.7,516.0 L751.7,448.9 M751.9,516.0 L751.9,449.2 M752.1,516.0 L752.1,449.8 M752.3,516.0
+ L752.3,450.7 M752.4,516.0 L752.4,451.9 M752.6,516.0 L752.6,453.5 M752.8,516.0 L752.8,455.4 M753.0,516.0
+ L753.0,457.8 M753.2,516.0 L753.2,460.7 M753.3,516.0 L753.3,464.3 M753.5,516.0 L753.5,468.8 M753.7,516.0
+ L753.7,474.5 M753.9,516.0 L753.9,482.1 M754.1,516.0 L754.1,493.0 M754.2,516.0 L754.2,512.1 M754.4,516.0
+ M754.6,516.0 L754.6,511.1 M754.8,516.0 L754.8,492.3 M755.0,516.0 L755.0,481.3 M755.1,516.0 L755.1,473.6
+ M755.3,516.0 L755.3,467.8 M755.5,516.0 L755.5,463.2 M755.7,516.0 L755.7,459.5 M755.9,516.0 L755.9,456.4
+ M756.0,516.0 L756.0,453.9 M756.2,516.0 L756.2,451.8 M756.4,516.0 L756.4,450.1 M756.6,516.0 L756.6,448.8
+ M756.8,516.0 L756.8,447.7 M756.9,516.0 L756.9,447.0 M757.1,516.0 L757.1,446.5 M757.3,516.0 L757.3,446.3
+ M757.5,516.0 L757.5,446.4 M757.7,516.0 L757.7,446.7 M757.8,516.0 L757.8,447.3 M758.0,516.0 L758.0,448.2
+ M758.2,516.0 L758.2,449.4 M758.4,516.0 L758.4,450.9 M758.6,516.0 L758.6,452.9 M758.7,516.0 L758.7,455.3
+ M758.9,516.0 L758.9,458.2 M759.1,516.0 L759.1,461.8 M759.3,516.0 L759.3,466.2 M759.5,516.0 L759.5,471.9
+ M759.6,516.0 L759.6,479.5 M759.8,516.0 L759.8,490.5 M760.0,516.0 L760.0,509.6 M760.2,516.0 M760.4,516.0
+ L760.4,508.6 M760.6,516.0 L760.6,489.7 M760.7,516.0 L760.7,478.8 M760.9,516.0 L760.9,471.1 M761.1,516.0
+ L761.1,465.3 M761.3,516.0 L761.3,460.7 M761.5,516.0 L761.5,457.0 M761.6,516.0 L761.6,453.9 M761.8,516.0
+ L761.8,451.4 '/> <path stroke='rgb(222, 125, 0)' d='M762.0,516.0 L762.0,449.3 M762.2,516.0 L762.2,447.6 M762.4,516.0 L762.4,446.2 M762.5,516.0 L762.5,445.2
+ M762.7,516.0 L762.7,444.4 M762.9,516.0 L762.9,443.9 M763.1,516.0 L763.1,443.7 M763.3,516.0 L763.3,443.8
+ M763.4,516.0 L763.4,444.1 M763.6,516.0 L763.6,444.7 M763.8,516.0 L763.8,445.6 M764.0,516.0 L764.0,446.8
+ M764.2,516.0 L764.2,448.3 M764.3,516.0 L764.3,450.3 M764.5,516.0 L764.5,452.7 M764.7,516.0 L764.7,455.6
+ M764.9,516.0 L764.9,459.2 M765.1,516.0 L765.1,463.6 M765.2,516.0 L765.2,469.3 M765.4,516.0 L765.4,476.9
+ M765.6,516.0 L765.6,487.9 M765.8,516.0 L765.8,507.0 M766.0,516.0 M766.1,516.0 L766.1,506.0 M766.3,516.0
+ L766.3,487.1 M766.5,516.0 L766.5,476.1 M766.7,516.0 L766.7,468.5 M766.9,516.0 L766.9,462.6 M767.0,516.0
+ L767.0,458.0 M767.2,516.0 L767.2,454.3 M767.4,516.0 L767.4,451.2 M767.6,516.0 L767.6,448.7 M767.8,516.0
+ L767.8,446.6 M767.9,516.0 L767.9,444.9 M768.1,516.0 L768.1,443.6 M768.3,516.0 L768.3,442.5 M768.5,516.0
+ L768.5,441.8 M768.7,516.0 L768.7,441.3 M768.9,516.0 L768.9,441.1 M769.0,516.0 L769.0,441.1 M769.2,516.0
+ L769.2,441.4 M769.4,516.0 L769.4,442.0 M769.6,516.0 L769.6,442.9 M769.8,516.0 L769.8,444.1 M769.9,516.0
+ L769.9,445.7 M770.1,516.0 L770.1,447.6 M770.3,516.0 L770.3,450.0 M770.5,516.0 L770.5,452.9 M770.7,516.0
+ L770.7,456.5 M770.8,516.0 L770.8,460.9 M771.0,516.0 L771.0,466.6 M771.2,516.0 L771.2,474.2 M771.4,516.0
+ L771.4,485.1 M771.6,516.0 L771.6,504.3 M771.7,516.0 M771.9,516.0 L771.9,503.3 M772.1,516.0 L772.1,484.4
+ M772.3,516.0 L772.3,473.4 M772.5,516.0 L772.5,465.7 M772.6,516.0 L772.6,459.9 M772.8,516.0 L772.8,455.3
+ M773.0,516.0 L773.0,451.6 M773.2,516.0 L773.2,448.5 M773.4,516.0 L773.4,446.0 M773.5,516.0 L773.5,443.9
+ M773.7,516.0 L773.7,442.2 M773.9,516.0 L773.9,440.8 M774.1,516.0 L774.1,439.8 M774.3,516.0 L774.3,439.0
+ M774.4,516.0 L774.4,438.5 M774.6,516.0 L774.6,438.3 M774.8,516.0 L774.8,438.4 M775.0,516.0 L775.0,438.7
+ M775.2,516.0 L775.2,439.3 M775.3,516.0 L775.3,440.2 M775.5,516.0 L775.5,441.4 M775.7,516.0 L775.7,442.9
+ M775.9,516.0 L775.9,444.8 M776.1,516.0 L776.1,447.2 M776.2,516.0 L776.2,450.1 M776.4,516.0 L776.4,453.7
+ M776.6,516.0 L776.6,458.2 M776.8,516.0 L776.8,463.8 M777.0,516.0 L777.0,471.4 M777.2,516.0 L777.2,482.3
+ M777.3,516.0 L777.3,501.4 M777.5,516.0 M777.7,516.0 L777.7,500.5 M777.9,516.0 L777.9,481.6 M778.1,516.0
+ L778.1,470.6 M778.2,516.0 L778.2,462.9 M778.4,516.0 L778.4,457.1 M778.6,516.0 L778.6,452.5 M778.8,516.0
+ L778.8,448.8 M779.0,516.0 L779.0,445.7 M779.1,516.0 L779.1,443.2 M779.3,516.0 L779.3,441.1 M779.5,516.0
+ L779.5,439.4 M779.7,516.0 L779.7,438.0 M779.9,516.0 L779.9,436.9 M780.0,516.0 L780.0,436.2 M780.2,516.0
+ L780.2,435.7 M780.4,516.0 L780.4,435.5 M780.6,516.0 L780.6,435.5 M780.8,516.0 L780.8,435.8 M780.9,516.0
+ L780.9,436.4 M781.1,516.0 L781.1,437.3 M781.3,516.0 L781.3,438.5 M781.5,516.0 L781.5,440.0 M781.7,516.0
+ L781.7,442.0 M781.8,516.0 L781.8,444.3 M782.0,516.0 L782.0,447.2 M782.2,516.0 L782.2,450.8 M782.4,516.0
+ L782.4,455.3 M782.6,516.0 L782.6,461.0 M782.7,516.0 L782.7,468.5 M782.9,516.0 L782.9,479.5 M783.1,516.0
+ L783.1,498.5 M783.3,516.0 M783.5,516.0 L783.5,497.6 M783.6,516.0 L783.6,478.7 M783.8,516.0 L783.8,467.7
+ M784.0,516.0 L784.0,460.0 M784.2,516.0 L784.2,454.2 M784.4,516.0 L784.4,449.6 M784.5,516.0 L784.5,445.9
+ M784.7,516.0 L784.7,442.8 M784.9,516.0 L784.9,440.2 M785.1,516.0 L785.1,438.1 M785.3,516.0 L785.3,436.4
+ M785.5,516.0 L785.5,435.1 M785.6,516.0 L785.6,434.0 M785.8,516.0 L785.8,433.2 M786.0,516.0 L786.0,432.7
+ M786.2,516.0 L786.2,432.5 M786.4,516.0 L786.4,432.6 M786.5,516.0 L786.5,432.9 M786.7,516.0 L786.7,433.5
+ M786.9,516.0 L786.9,434.3 M787.1,516.0 L787.1,435.5 M787.3,516.0 L787.3,437.1 M787.4,516.0 L787.4,439.0
+ M787.6,516.0 L787.6,441.4 M787.8,516.0 L787.8,444.3 M788.0,516.0 L788.0,447.8 M788.2,516.0 L788.2,452.3
+ M788.3,516.0 L788.3,458.0 M788.5,516.0 L788.5,465.5 M788.7,516.0 L788.7,476.5 M788.9,516.0 L788.9,495.5
+ M789.1,516.0 M789.2,516.0 L789.2,494.6 M789.4,516.0 L789.4,475.7 M789.6,516.0 L789.6,464.7 M789.8,516.0
+ L789.8,457.0 M790.0,516.0 L790.0,451.2 M790.1,516.0 L790.1,446.6 M790.3,516.0 L790.3,442.8 M790.5,516.0
+ L790.5,439.8 M790.7,516.0 L790.7,437.2 M790.9,516.0 L790.9,435.1 M791.0,516.0 L791.0,433.4 M791.2,516.0
+ L791.2,432.0 M791.4,516.0 L791.4,431.0 M791.6,516.0 L791.6,430.2 M791.8,516.0 L791.8,429.7 M791.9,516.0
+ L791.9,429.5 M792.1,516.0 L792.1,429.5 M792.3,516.0 L792.3,429.8 M792.5,516.0 L792.5,430.4 M792.7,516.0
+ L792.7,431.3 M792.8,516.0 L792.8,432.5 M793.0,516.0 L793.0,434.0 M793.2,516.0 L793.2,435.9 M793.4,516.0
+ L793.4,438.3 M793.6,516.0 L793.6,441.2 M793.7,516.0 L793.7,444.8 M793.9,516.0 L793.9,449.2 M794.1,516.0
+ L794.1,454.9 M794.3,516.0 L794.3,462.4 M794.5,516.0 L794.5,473.3 M794.7,516.0 L794.7,492.4 M794.8,516.0
+ M795.0,516.0 L795.0,491.5 M795.2,516.0 L795.2,472.6 M795.4,516.0 L795.4,461.6 M795.6,516.0 L795.6,453.9
+ M795.7,516.0 L795.7,448.1 M795.9,516.0 L795.9,443.5 M796.1,516.0 L796.1,439.7 M796.3,516.0 L796.3,436.6
+ M796.5,516.0 L796.5,434.1 M796.6,516.0 L796.6,432.0 M796.8,516.0 L796.8,430.2 M797.0,516.0 L797.0,428.9
+ M797.2,516.0 L797.2,427.8 M797.4,516.0 L797.4,427.0 M797.5,516.0 L797.5,426.5 M797.7,516.0 L797.7,426.3
+ M797.9,516.0 L797.9,426.3 M798.1,516.0 L798.1,426.6 M798.3,516.0 L798.3,427.2 M798.4,516.0 L798.4,428.1
+ M798.6,516.0 L798.6,429.3 M798.8,516.0 L798.8,430.8 M799.0,516.0 L799.0,432.7 M799.2,516.0 L799.2,435.1
+ M799.3,516.0 L799.3,438.0 M799.5,516.0 L799.5,441.5 M799.7,516.0 L799.7,446.0 M799.9,516.0 L799.9,451.7
+ M800.1,516.0 L800.1,459.2 M800.2,516.0 L800.2,470.1 M800.4,516.0 L800.4,489.2 M800.6,516.0 M800.8,516.0
+ L800.8,488.3 M801.0,516.0 L801.0,469.4 M801.1,516.0 L801.1,458.4 M801.3,516.0 L801.3,450.7 M801.5,516.0
+ L801.5,444.8 M801.7,516.0 L801.7,440.2 M801.9,516.0 L801.9,436.5 M802.0,516.0 L802.0,433.4 M802.2,516.0
+ L802.2,430.8 M802.4,516.0 L802.4,428.7 M802.6,516.0 L802.6,427.0 M802.8,516.0 L802.8,425.6 M803.0,516.0
+ L803.0,424.5 M803.1,516.0 L803.1,423.7 M803.3,516.0 L803.3,423.2 M803.5,516.0 L803.5,423.0 M803.7,516.0
+ L803.7,423.0 M803.9,516.0 L803.9,423.3 M804.0,516.0 L804.0,423.9 M804.2,516.0 L804.2,424.8 M804.4,516.0
+ L804.4,426.0 M804.6,516.0 L804.6,427.5 M804.8,516.0 L804.8,429.4 M804.9,516.0 L804.9,431.7 M805.1,516.0
+ L805.1,434.6 M805.3,516.0 L805.3,438.2 M805.5,516.0 L805.5,442.6 M805.7,516.0 L805.7,448.3 M805.8,516.0
+ L805.8,455.8 M806.0,516.0 L806.0,466.8 M806.2,516.0 L806.2,485.8 M806.4,516.0 M806.6,516.0 L806.6,484.9
+ M806.7,516.0 L806.7,466.0 M806.9,516.0 L806.9,455.0 M807.1,516.0 L807.1,447.3 M807.3,516.0 L807.3,441.5
+ M807.5,516.0 L807.5,436.8 M807.6,516.0 L807.6,433.1 M807.8,516.0 L807.8,430.0 M808.0,516.0 L808.0,427.4
+ M808.2,516.0 L808.2,425.3 M808.4,516.0 L808.4,423.6 M808.5,516.0 L808.5,422.2 M808.7,516.0 L808.7,421.1
+ M808.9,516.0 L808.9,420.3 '/> <path stroke='rgb(222, 125, 0)' d='M809.1,516.0 L809.1,419.8 M809.3,516.0 L809.3,419.6 M809.4,516.0 L809.4,419.6 M809.6,516.0 L809.6,419.9
+ M809.8,516.0 L809.8,420.5 M810.0,516.0 L810.0,421.3 M810.2,516.0 L810.2,422.5 M810.3,516.0 L810.3,424.0
+ M810.5,516.0 L810.5,425.9 M810.7,516.0 L810.7,428.3 M810.9,516.0 L810.9,431.2 M811.1,516.0 L811.1,434.7
+ M811.3,516.0 L811.3,439.2 M811.4,516.0 L811.4,444.8 M811.6,516.0 L811.6,452.4 M811.8,516.0 L811.8,463.3
+ M812.0,516.0 L812.0,482.3 M812.2,516.0 M812.3,516.0 L812.3,481.4 M812.5,516.0 L812.5,462.5 M812.7,516.0
+ L812.7,451.5 M812.9,516.0 L812.9,443.8 M813.1,516.0 L813.1,437.9 M813.2,516.0 L813.2,433.3 M813.4,516.0
+ L813.4,429.5 M813.6,516.0 L813.6,426.4 M813.8,516.0 L813.8,423.9 M814.0,516.0 L814.0,421.7 M814.1,516.0
+ L814.1,420.0 M814.3,516.0 L814.3,418.6 M814.5,516.0 L814.5,417.5 M814.7,516.0 L814.7,416.7 M814.9,516.0
+ L814.9,416.2 M815.0,516.0 L815.0,416.0 M815.2,516.0 L815.2,416.0 M815.4,516.0 L815.4,416.3 M815.6,516.0
+ L815.6,416.9 M815.8,516.0 L815.8,417.7 M815.9,516.0 L815.9,418.9 M816.1,516.0 L816.1,420.4 M816.3,516.0
+ L816.3,422.3 M816.5,516.0 L816.5,424.7 M816.7,516.0 L816.7,427.5 M816.8,516.0 L816.8,431.1 M817.0,516.0
+ L817.0,435.5 M817.2,516.0 L817.2,441.2 M817.4,516.0 L817.4,448.7 M817.6,516.0 L817.6,459.6 M817.7,516.0
+ L817.7,478.6 M817.9,516.0 M818.1,516.0 L818.1,477.8 M818.3,516.0 L818.3,458.8 M818.5,516.0 L818.5,447.8
+ M818.6,516.0 L818.6,440.1 M818.8,516.0 L818.8,434.2 M819.0,516.0 L819.0,429.6 M819.2,516.0 L819.2,425.8
+ M819.4,516.0 L819.4,422.7 M819.6,516.0 L819.6,420.2 M819.7,516.0 L819.7,418.0 M819.9,516.0 L819.9,416.3
+ M820.1,516.0 L820.1,414.9 M820.3,516.0 L820.3,413.8 M820.5,516.0 L820.5,413.0 M820.6,516.0 L820.6,412.5
+ M820.8,516.0 L820.8,412.3 M821.0,516.0 L821.0,412.3 M821.2,516.0 L821.2,412.6 M821.4,516.0 L821.4,413.1
+ M821.5,516.0 L821.5,414.0 M821.7,516.0 L821.7,415.1 M821.9,516.0 L821.9,416.6 M822.1,516.0 L822.1,418.5
+ M822.3,516.0 L822.3,420.9 M822.4,516.0 L822.4,423.8 M822.6,516.0 L822.6,427.3 M822.8,516.0 L822.8,431.7
+ M823.0,516.0 L823.0,437.4 M823.2,516.0 L823.2,444.9 M823.3,516.0 L823.3,455.8 M823.5,516.0 L823.5,474.8
+ M823.7,516.0 M823.9,516.0 L823.9,474.0 M824.1,516.0 L824.1,455.0 M824.2,516.0 L824.2,444.0 M824.4,516.0
+ L824.4,436.3 M824.6,516.0 L824.6,430.4 M824.8,516.0 L824.8,425.8 M825.0,516.0 L825.0,422.0 M825.1,516.0
+ L825.1,418.9 M825.3,516.0 L825.3,416.3 M825.5,516.0 L825.5,414.2 M825.7,516.0 L825.7,412.4 M825.9,516.0
+ L825.9,411.0 M826.0,516.0 L826.0,409.9 M826.2,516.0 L826.2,409.1 M826.4,516.0 L826.4,408.6 M826.6,516.0
+ L826.6,408.3 M826.8,516.0 L826.8,408.3 M826.9,516.0 L826.9,408.6 M827.1,516.0 L827.1,409.2 M827.3,516.0
+ L827.3,410.0 M827.5,516.0 L827.5,411.2 M827.7,516.0 L827.7,412.7 M827.9,516.0 L827.9,414.6 M828.0,516.0
+ L828.0,416.9 M828.2,516.0 L828.2,419.8 M828.4,516.0 L828.4,423.3 M828.6,516.0 L828.6,427.7 M828.8,516.0
+ L828.8,433.4 M828.9,516.0 L828.9,440.9 M829.1,516.0 L829.1,451.8 M829.3,516.0 L829.3,470.8 M829.5,516.0
+ M829.7,516.0 L829.7,470.0 M829.8,516.0 L829.8,451.0 M830.0,516.0 L830.0,440.0 M830.2,516.0 L830.2,432.2
+ M830.4,516.0 L830.4,426.4 M830.6,516.0 L830.6,421.7 M830.7,516.0 L830.7,417.9 M830.9,516.0 L830.9,414.8
+ M831.1,516.0 L831.1,412.2 M831.3,516.0 L831.3,410.1 M831.5,516.0 L831.5,408.3 M831.6,516.0 L831.6,406.9
+ M831.8,516.0 L831.8,405.8 M832.0,516.0 L832.0,405.0 M832.2,516.0 L832.2,404.5 M832.4,516.0 L832.4,404.2
+ M832.5,516.0 L832.5,404.2 M832.7,516.0 L832.7,404.5 M832.9,516.0 L832.9,405.1 M833.1,516.0 L833.1,405.9
+ M833.3,516.0 L833.3,407.1 M833.4,516.0 L833.4,408.5 M833.6,516.0 L833.6,410.4 M833.8,516.0 L833.8,412.8
+ M834.0,516.0 L834.0,415.6 M834.2,516.0 L834.2,419.2 M834.3,516.0 L834.3,423.6 M834.5,516.0 L834.5,429.2
+ M834.7,516.0 L834.7,436.7 M834.9,516.0 L834.9,447.6 M835.1,516.0 L835.1,466.6 M835.2,516.0 M835.4,516.0
+ L835.4,465.8 M835.6,516.0 L835.6,446.8 M835.8,516.0 L835.8,435.7 M836.0,516.0 L836.0,428.0 M836.2,516.0
+ L836.2,422.1 M836.3,516.0 L836.3,417.5 M836.5,516.0 L836.5,413.7 M836.7,516.0 L836.7,410.5 M836.9,516.0
+ L836.9,408.0 M837.1,516.0 L837.1,405.8 M837.2,516.0 L837.2,404.1 M837.4,516.0 L837.4,402.6 M837.6,516.0
+ L837.6,401.5 M837.8,516.0 L837.8,400.7 M838.0,516.0 L838.0,400.2 M838.1,516.0 L838.1,399.9 M838.3,516.0
+ L838.3,399.9 M838.5,516.0 L838.5,400.2 M838.7,516.0 L838.7,400.7 M838.9,516.0 L838.9,401.5 M839.0,516.0
+ L839.0,402.7 M839.2,516.0 L839.2,404.2 M839.4,516.0 L839.4,406.1 M839.6,516.0 L839.6,408.4 M839.8,516.0
+ L839.8,411.2 M839.9,516.0 L839.9,414.8 M840.1,516.0 L840.1,419.2 M840.3,516.0 L840.3,424.8 M840.5,516.0
+ L840.5,432.3 M840.7,516.0 L840.7,443.1 M840.8,516.0 L840.8,462.1 M841.0,516.0 M841.2,516.0 L841.2,461.3
+ M841.4,516.0 L841.4,442.3 M841.6,516.0 L841.6,431.3 M841.7,516.0 L841.7,423.5 M841.9,516.0 L841.9,417.7
+ M842.1,516.0 L842.1,413.0 M842.3,516.0 L842.3,409.2 M842.5,516.0 L842.5,406.1 M842.6,516.0 L842.6,403.5
+ M842.8,516.0 L842.8,401.3 M843.0,516.0 L843.0,399.5 M843.2,516.0 L843.2,398.1 M843.4,516.0 L843.4,397.0
+ M843.5,516.0 L843.5,396.2 M843.7,516.0 L843.7,395.6 M843.9,516.0 L843.9,395.4 M844.1,516.0 L844.1,395.3
+ M844.3,516.0 L844.3,395.6 M844.5,516.0 L844.5,396.1 M844.6,516.0 L844.6,397.0 M844.8,516.0 L844.8,398.1
+ M845.0,516.0 L845.0,399.6 M845.2,516.0 L845.2,401.4 M845.4,516.0 L845.4,403.8 M845.5,516.0 L845.5,406.6
+ M845.7,516.0 L845.7,410.1 M845.9,516.0 L845.9,414.5 M846.1,516.0 L846.1,420.1 M846.3,516.0 L846.3,427.6
+ M846.4,516.0 L846.4,438.5 M846.6,516.0 L846.6,457.4 M846.8,516.0 M847.0,516.0 L847.0,456.7 M847.2,516.0
+ L847.2,437.6 M847.3,516.0 L847.3,426.6 M847.5,516.0 L847.5,418.8 M847.7,516.0 L847.7,412.9 M847.9,516.0
+ L847.9,408.3 M848.1,516.0 L848.1,404.4 M848.2,516.0 L848.2,401.3 M848.4,516.0 L848.4,398.7 M848.6,516.0
+ L848.6,396.5 M848.8,516.0 L848.8,394.8 M849.0,516.0 L849.0,393.3 M849.1,516.0 L849.1,392.2 M849.3,516.0
+ L849.3,391.4 M849.5,516.0 L849.5,390.8 M849.7,516.0 L849.7,390.5 M849.9,516.0 L849.9,390.5 M850.0,516.0
+ L850.0,390.8 M850.2,516.0 L850.2,391.3 M850.4,516.0 L850.4,392.1 M850.6,516.0 L850.6,393.2 M850.8,516.0
+ L850.8,394.7 M850.9,516.0 L850.9,396.6 M851.1,516.0 L851.1,398.9 M851.3,516.0 L851.3,401.7 M851.5,516.0
+ L851.5,405.2 M851.7,516.0 L851.7,409.6 M851.8,516.0 L851.8,415.2 M852.0,516.0 L852.0,422.7 M852.2,516.0
+ L852.2,433.5 M852.4,516.0 L852.4,452.5 M852.6,516.0 M852.8,516.0 L852.8,451.7 M852.9,516.0 L852.9,432.7
+ M853.1,516.0 L853.1,421.6 M853.3,516.0 L853.3,413.8 M853.5,516.0 L853.5,407.9 M853.7,516.0 L853.7,403.2
+ M853.8,516.0 L853.8,399.4 M854.0,516.0 L854.0,396.3 M854.2,516.0 L854.2,393.7 M854.4,516.0 L854.4,391.5
+ M854.6,516.0 L854.6,389.7 M854.7,516.0 L854.7,388.3 M854.9,516.0 L854.9,387.1 M855.1,516.0 L855.1,386.3
+ M855.3,516.0 L855.3,385.7 M855.5,516.0 L855.5,385.4 M855.6,516.0 L855.6,385.4 M855.8,516.0 L855.8,385.6
+ M856.0,516.0 L856.0,386.2 '/> <path stroke='rgb(222, 125, 0)' d='M856.2,516.0 L856.2,387.0 M856.4,516.0 L856.4,388.1 M856.5,516.0 L856.5,389.5 M856.7,516.0 L856.7,391.4
+ M856.9,516.0 L856.9,393.7 M857.1,516.0 L857.1,396.5 M857.3,516.0 L857.3,400.0 M857.4,516.0 L857.4,404.4
+ M857.6,516.0 L857.6,410.0 M857.8,516.0 L857.8,417.4 M858.0,516.0 L858.0,428.3 M858.2,516.0 L858.2,447.2
+ M858.3,516.0 M858.5,516.0 L858.5,446.4 M858.7,516.0 L858.7,427.4 M858.9,516.0 L858.9,416.3 M859.1,516.0
+ L859.1,408.5 M859.2,516.0 L859.2,402.6 M859.4,516.0 L859.4,397.9 M859.6,516.0 L859.6,394.1 M859.8,516.0
+ L859.8,390.9 M860.0,516.0 L860.0,388.3 M860.1,516.0 L860.1,386.1 M860.3,516.0 L860.3,384.3 M860.5,516.0
+ L860.5,382.9 M860.7,516.0 L860.7,381.7 M860.9,516.0 L860.9,380.9 M861.1,516.0 L861.1,380.3 M861.2,516.0
+ L861.2,380.0 M861.4,516.0 L861.4,379.9 M861.6,516.0 L861.6,380.2 M861.8,516.0 L861.8,380.7 M862.0,516.0
+ L862.0,381.5 M862.1,516.0 L862.1,382.6 M862.3,516.0 L862.3,384.0 M862.5,516.0 L862.5,385.9 M862.7,516.0
+ L862.7,388.1 M862.9,516.0 L862.9,391.0 M863.0,516.0 L863.0,394.4 M863.2,516.0 L863.2,398.8 M863.4,516.0
+ L863.4,404.4 M863.6,516.0 L863.6,411.8 M863.8,516.0 L863.8,422.7 M863.9,516.0 L863.9,441.6 M864.1,516.0
+ M864.3,516.0 L864.3,440.8 M864.5,516.0 L864.5,421.7 M864.7,516.0 L864.7,410.6 M864.8,516.0 L864.8,402.8
+ M865.0,516.0 L865.0,396.9 M865.2,516.0 L865.2,392.2 M865.4,516.0 L865.4,388.4 M865.6,516.0 L865.6,385.2
+ M865.7,516.0 L865.7,382.6 M865.9,516.0 L865.9,380.4 M866.1,516.0 L866.1,378.6 M866.3,516.0 L866.3,377.1
+ M866.5,516.0 L866.5,375.9 M866.6,516.0 L866.6,375.1 M866.8,516.0 L866.8,374.5 M867.0,516.0 L867.0,374.2
+ M867.2,516.0 L867.2,374.1 M867.4,516.0 L867.4,374.3 M867.5,516.0 L867.5,374.8 M867.7,516.0 L867.7,375.6
+ M867.9,516.0 L867.9,376.7 M868.1,516.0 L868.1,378.1 M868.3,516.0 L868.3,380.0 M868.4,516.0 L868.4,382.2
+ M868.6,516.0 L868.6,385.0 M868.8,516.0 L868.8,388.5 M869.0,516.0 L869.0,392.8 M869.2,516.0 L869.2,398.4
+ M869.3,516.0 L869.3,405.9 M869.5,516.0 L869.5,416.7 M869.7,516.0 L869.7,435.5 M869.9,516.0 M870.1,516.0
+ L870.1,434.8 M870.3,516.0 L870.3,415.7 M870.4,516.0 L870.4,404.6 M870.6,516.0 L870.6,396.8 M870.8,516.0
+ L870.8,390.8 M871.0,516.0 L871.0,386.1 M871.2,516.0 L871.2,382.3 M871.3,516.0 L871.3,379.1 M871.5,516.0
+ L871.5,376.4 M871.7,516.0 L871.7,374.2 M871.9,516.0 L871.9,372.4 M872.1,516.0 L872.1,370.9 M872.2,516.0
+ L872.2,369.7 M872.4,516.0 L872.4,368.9 M872.6,516.0 L872.6,368.3 M872.8,516.0 L872.8,367.9 M873.0,516.0
+ L873.0,367.8 M873.1,516.0 L873.1,368.0 M873.3,516.0 L873.3,368.5 M873.5,516.0 L873.5,369.3 M873.7,516.0
+ L873.7,370.4 M873.9,516.0 L873.9,371.8 M874.0,516.0 L874.0,373.6 M874.2,516.0 L874.2,375.9 M874.4,516.0
+ L874.4,378.6 M874.6,516.0 L874.6,382.1 M874.8,516.0 L874.8,386.4 M874.9,516.0 L874.9,392.0 M875.1,516.0
+ L875.1,399.4 M875.3,516.0 L875.3,410.2 M875.5,516.0 L875.5,429.1 M875.7,516.0 M875.8,516.0 L875.8,428.3
+ M876.0,516.0 L876.0,409.2 M876.2,516.0 L876.2,398.0 M876.4,516.0 L876.4,390.2 M876.6,516.0 L876.6,384.3
+ M876.7,516.0 L876.7,379.5 M876.9,516.0 L876.9,375.7 M877.1,516.0 L877.1,372.5 M877.3,516.0 L877.3,369.8
+ M877.5,516.0 L877.5,367.6 M877.6,516.0 L877.6,365.7 M877.8,516.0 L877.8,364.2 M878.0,516.0 L878.0,363.0
+ M878.2,516.0 L878.2,362.1 M878.4,516.0 L878.4,361.5 M878.6,516.0 L878.6,361.2 M878.7,516.0 L878.7,361.1
+ M878.9,516.0 L878.9,361.3 M879.1,516.0 L879.1,361.7 M879.3,516.0 L879.3,362.5 M879.5,516.0 L879.5,363.5
+ M879.6,516.0 L879.6,364.9 M879.8,516.0 L879.8,366.7 M880.0,516.0 L880.0,369.0 M880.2,516.0 L880.2,371.7
+ M880.4,516.0 L880.4,375.2 M880.5,516.0 L880.5,379.5 M880.7,516.0 L880.7,385.0 M880.9,516.0 L880.9,392.4
+ M881.1,516.0 L881.1,403.2 M881.3,516.0 L881.3,422.0 M881.4,516.0 M881.6,516.0 L881.6,421.3 M881.8,516.0
+ L881.8,402.1 M882.0,516.0 L882.0,391.0 M882.2,516.0 L882.2,383.1 M882.3,516.0 L882.3,377.2 M882.5,516.0
+ L882.5,372.4 M882.7,516.0 L882.7,368.5 M882.9,516.0 L882.9,365.3 M883.1,516.0 L883.1,362.6 M883.2,516.0
+ L883.2,360.4 M883.4,516.0 L883.4,358.5 M883.6,516.0 L883.6,357.0 M883.8,516.0 L883.8,355.8 M884.0,516.0
+ L884.0,354.9 M884.1,516.0 L884.1,354.2 M884.3,516.0 L884.3,353.9 M884.5,516.0 L884.5,353.7 M884.7,516.0
+ L884.7,353.9 M884.9,516.0 L884.9,354.4 M885.0,516.0 L885.0,355.1 M885.2,516.0 L885.2,356.1 M885.4,516.0
+ L885.4,357.5 M885.6,516.0 L885.6,359.3 M885.8,516.0 L885.8,361.5 M885.9,516.0 L885.9,364.2 M886.1,516.0
+ L886.1,367.7 M886.3,516.0 L886.3,372.0 M886.5,516.0 L886.5,377.5 M886.7,516.0 L886.7,384.9 M886.9,516.0
+ L886.9,395.6 M887.0,516.0 L887.0,414.4 M887.2,516.0 M887.4,516.0 L887.4,413.6 M887.6,516.0 L887.6,394.5
+ M887.8,516.0 L887.8,383.3 M887.9,516.0 L887.9,375.4 M888.1,516.0 L888.1,369.4 M888.3,516.0 L888.3,364.6
+ M888.5,516.0 L888.5,360.7 M888.7,516.0 L888.7,357.5 M888.8,516.0 L888.8,354.8 M889.0,516.0 L889.0,352.5
+ M889.2,516.0 L889.2,350.6 M889.4,516.0 L889.4,349.1 M889.6,516.0 L889.6,347.8 M889.7,516.0 L889.7,346.9
+ M889.9,516.0 L889.9,346.2 M890.1,516.0 L890.1,345.9 M890.3,516.0 L890.3,345.7 M890.5,516.0 L890.5,345.9
+ M890.6,516.0 L890.6,346.3 M890.8,516.0 L890.8,347.0 M891.0,516.0 L891.0,348.0 M891.2,516.0 L891.2,349.4
+ M891.4,516.0 L891.4,351.1 M891.5,516.0 L891.5,353.3 M891.7,516.0 L891.7,356.0 M891.9,516.0 L891.9,359.4
+ M892.1,516.0 L892.1,363.7 M892.3,516.0 L892.3,369.2 M892.4,516.0 L892.4,376.5 M892.6,516.0 L892.6,387.3
+ M892.8,516.0 L892.8,406.0 M893.0,516.0 M893.2,516.0 L893.2,405.2 M893.3,516.0 L893.3,386.0 M893.5,516.0
+ L893.5,374.8 M893.7,516.0 L893.7,366.9 M893.9,516.0 L893.9,360.9 M894.1,516.0 L894.1,356.1 M894.2,516.0
+ L894.2,352.2 M894.4,516.0 L894.4,348.9 M894.6,516.0 L894.6,346.1 M894.8,516.0 L894.8,343.9 M895.0,516.0
+ L895.0,341.9 M895.2,516.0 L895.2,340.4 M895.3,516.0 L895.3,339.1 M895.5,516.0 L895.5,338.2 M895.7,516.0
+ L895.7,337.5 M895.9,516.0 L895.9,337.1 M896.1,516.0 L896.1,336.9 M896.2,516.0 L896.2,337.0 M896.4,516.0
+ L896.4,337.4 M896.6,516.0 L896.6,338.1 M896.8,516.0 L896.8,339.1 M897.0,516.0 L897.0,340.4 M897.1,516.0
+ L897.1,342.1 M897.3,516.0 L897.3,344.3 M897.5,516.0 L897.5,347.0 M897.7,516.0 L897.7,350.4 M897.9,516.0
+ L897.9,354.6 M898.0,516.0 L898.0,360.0 M898.2,516.0 L898.2,367.4 M898.4,516.0 L898.4,378.1 M898.6,516.0
+ L898.6,396.8 M898.8,516.0 M898.9,516.0 L898.9,396.0 M899.1,516.0 L899.1,376.7 M899.3,516.0 L899.3,365.5
+ M899.5,516.0 L899.5,357.6 M899.7,516.0 L899.7,351.5 M899.8,516.0 L899.8,346.7 M900.0,516.0 L900.0,342.7
+ M900.2,516.0 L900.2,339.4 M900.4,516.0 L900.4,336.6 M900.6,516.0 L900.6,334.3 M900.7,516.0 L900.7,332.4
+ M900.9,516.0 L900.9,330.8 M901.1,516.0 L901.1,329.5 M901.3,516.0 L901.3,328.5 M901.5,516.0 L901.5,327.8
+ M901.6,516.0 L901.6,327.3 M901.8,516.0 L901.8,327.1 M902.0,516.0 L902.0,327.2 M902.2,516.0 L902.2,327.6
+ M902.4,516.0 L902.4,328.2 M902.5,516.0 L902.5,329.2 M902.7,516.0 L902.7,330.5 M902.9,516.0 L902.9,332.2
+ M903.1,516.0 L903.1,334.3 '/> <path stroke='rgb(222, 125, 0)' d='M903.3,516.0 L903.3,336.9 M903.5,516.0 L903.5,340.3 M903.6,516.0 L903.6,344.5 M903.8,516.0 L903.8,349.9
+ M904.0,516.0 L904.0,357.2 M904.2,516.0 L904.2,367.8 M904.4,516.0 L904.4,386.5 M904.5,516.0 M904.7,516.0
+ L904.7,385.7 M904.9,516.0 L904.9,366.4 M905.1,516.0 L905.1,355.1 M905.3,516.0 L905.3,347.2 M905.4,516.0
+ L905.4,341.1 M905.6,516.0 L905.6,336.2 M905.8,516.0 L905.8,332.2 M906.0,516.0 L906.0,328.8 M906.2,516.0
+ L906.2,326.0 M906.3,516.0 L906.3,323.7 M906.5,516.0 L906.5,321.7 M906.7,516.0 L906.7,320.1 M906.9,516.0
+ L906.9,318.8 M907.1,516.0 L907.1,317.7 M907.2,516.0 L907.2,317.0 M907.4,516.0 L907.4,316.5 M907.6,516.0
+ L907.6,316.3 M907.8,516.0 L907.8,316.3 M908.0,516.0 L908.0,316.6 M908.1,516.0 L908.1,317.2 M908.3,516.0
+ L908.3,318.2 M908.5,516.0 L908.5,319.4 M908.7,516.0 L908.7,321.1 M908.9,516.0 L908.9,323.2 M909.0,516.0
+ L909.0,325.8 M909.2,516.0 L909.2,329.1 M909.4,516.0 L909.4,333.2 M909.6,516.0 L909.6,338.6 M909.8,516.0
+ L909.8,345.9 M909.9,516.0 L909.9,356.5 M910.1,516.0 L910.1,375.1 M910.3,516.0 M910.5,516.0 L910.5,374.2
+ M910.7,516.0 L910.7,354.9 M910.8,516.0 L910.8,343.6 M911.0,516.0 L911.0,335.6 M911.2,516.0 L911.2,329.5
+ M911.4,516.0 L911.4,324.6 M911.6,516.0 L911.6,320.5 M911.8,516.0 L911.8,317.1 M911.9,516.0 L911.9,314.3
+ M912.1,516.0 L912.1,311.9 M912.3,516.0 L912.3,309.9 M912.5,516.0 L912.5,308.2 M912.7,516.0 L912.7,306.9
+ M912.8,516.0 L912.8,305.8 M913.0,516.0 L913.0,305.0 M913.2,516.0 L913.2,304.5 M913.4,516.0 L913.4,304.3
+ M913.6,516.0 L913.6,304.3 M913.7,516.0 L913.7,304.6 M913.9,516.0 L913.9,305.1 M914.1,516.0 L914.1,306.0
+ M914.3,516.0 L914.3,307.3 M914.5,516.0 L914.5,308.9 M914.6,516.0 L914.6,311.0 M914.8,516.0 L914.8,313.6
+ M915.0,516.0 L915.0,316.8 M915.2,516.0 L915.2,321.0 M915.4,516.0 L915.4,326.3 M915.5,516.0 L915.5,333.6
+ M915.7,516.0 L915.7,344.1 M915.9,516.0 L915.9,362.8 M916.1,516.0 M916.3,516.0 L916.3,361.9 M916.4,516.0
+ L916.4,342.5 M916.6,516.0 L916.6,331.2 M916.8,516.0 L916.8,323.2 M917.0,516.0 L917.0,317.0 M917.2,516.0
+ L917.2,312.1 M917.3,516.0 L917.3,308.1 M917.5,516.0 L917.5,304.7 M917.7,516.0 L917.7,301.8 M917.9,516.0
+ L917.9,299.5 M918.1,516.0 L918.1,297.5 M918.2,516.0 L918.2,295.8 M918.4,516.0 L918.4,294.5 M918.6,516.0
+ L918.6,293.4 M918.8,516.0 L918.8,292.6 M919.0,516.0 L919.0,292.1 M919.1,516.0 L919.1,291.9 M919.3,516.0
+ L919.3,292.0 M919.5,516.0 L919.5,292.3 M919.7,516.0 L919.7,292.9 M919.9,516.0 L919.9,293.9 M920.1,516.0
+ L920.1,295.2 M920.2,516.0 L920.2,296.8 M920.4,516.0 L920.4,299.0 M920.6,516.0 L920.6,301.7 M920.8,516.0
+ L920.8,305.0 M921.0,516.0 L921.0,309.3 M921.1,516.0 L921.1,314.7 M921.3,516.0 L921.3,322.1 M921.5,516.0
+ L921.5,332.8 M921.7,516.0 L921.7,351.6 M921.9,516.0 M922.0,516.0 L922.0,351.1 M922.2,516.0 L922.2,331.9
+ M922.4,516.0 L922.4,320.8 M922.6,516.0 L922.6,313.0 M922.8,516.0 L922.8,307.2 M922.9,516.0 L922.9,302.6
+ M923.1,516.0 L923.1,298.8 M923.3,516.0 L923.3,295.8 M923.5,516.0 L923.5,293.4 M923.7,516.0 L923.7,291.4
+ M923.8,516.0 L923.8,289.9 M924.0,516.0 L924.0,288.8 M924.2,516.0 L924.2,288.1 M924.4,516.0 L924.4,287.7
+ M924.6,516.0 L924.6,287.7 M924.7,516.0 L924.7,288.1 M924.9,516.0 L924.9,288.9 M925.1,516.0 L925.1,290.0
+ M925.3,516.0 L925.3,291.6 M925.5,516.0 L925.5,293.7 M925.6,516.0 L925.6,296.3 M925.8,516.0 L925.8,299.6
+ M926.0,516.0 L926.0,303.7 M926.2,516.0 L926.2,308.7 M926.4,516.0 L926.4,314.9 M926.5,516.0 L926.5,322.8
+ M926.7,516.0 L926.7,333.1 M926.9,516.0 L926.9,347.4 M927.1,516.0 L927.1,369.7 M927.3,516.0 L927.3,424.5
+ M927.4,516.0 L927.4,409.5 M927.6,516.0 M927.8,516.0 L927.8,370.2 M928.0,516.0 L928.0,340.9 M928.2,516.0
+ L928.2,321.5 M928.4,516.0 L928.4,306.6 M928.5,516.0 L928.5,294.4 M928.7,516.0 L928.7,284.0 M928.9,516.0
+ L928.9,274.9 M929.1,516.0 L929.1,266.7 M929.3,516.0 L929.3,259.3 M929.4,516.0 L929.4,252.6 M929.6,516.0
+ L929.6,246.3 M929.8,516.0 L929.8,240.5 M930.0,516.0 L930.0,235.0 M930.2,516.0 L930.2,229.9 M930.3,516.0
+ L930.3,225.0 M930.5,516.0 L930.5,220.4 M930.7,516.0 L930.7,216.1 M930.9,516.0 L930.9,211.9 M931.1,516.0
+ L931.1,207.9 M931.2,516.0 L931.2,204.1 M931.4,516.0 L931.4,200.4 M931.6,516.0 L931.6,196.9 M931.8,516.0
+ L931.8,193.6 M932.0,516.0 L932.0,190.3 M932.1,516.0 L932.1,187.2 M932.3,516.0 L932.3,184.2 M932.5,516.0
+ L932.5,181.2 M932.7,516.0 L932.7,178.4 M932.9,516.0 L932.9,175.7 M933.0,516.0 L933.0,173.1 M933.2,516.0
+ L933.2,170.5 M933.4,516.0 L933.4,168.0 M933.6,516.0 L933.6,165.6 M933.8,516.0 L933.8,163.3 M933.9,516.0
+ L933.9,161.0 M934.1,516.0 L934.1,158.8 M934.3,516.0 L934.3,156.7 M934.5,516.0 L934.5,154.6 M934.7,516.0
+ L934.7,152.6 M934.8,516.0 L934.8,150.6 M935.0,516.0 L935.0,148.7 M935.2,516.0 L935.2,146.9 M935.4,516.0
+ L935.4,145.1 M935.6,516.0 L935.6,143.4 M935.7,516.0 L935.7,141.7 M935.9,516.0 L935.9,140.0 M936.1,516.0
+ L936.1,138.4 M936.3,516.0 L936.3,136.9 M936.5,516.0 L936.5,135.4 M936.7,516.0 L936.7,133.9 M936.8,516.0
+ L936.8,132.5 M937.0,516.0 L937.0,131.1 M937.2,516.0 L937.2,129.8 M937.4,516.0 L937.4,128.5 M937.6,516.0
+ L937.6,127.2 M937.7,516.0 L937.7,126.0 M937.9,516.0 L937.9,124.8 M938.1,516.0 L938.1,123.6 M938.3,516.0
+ L938.3,122.5 M938.5,516.0 L938.5,121.4 M938.6,516.0 L938.6,120.4 M938.8,516.0 L938.8,119.4 M939.0,516.0
+ L939.0,118.4 M939.2,516.0 L939.2,117.5 M939.4,516.0 L939.4,116.6 M939.5,516.0 L939.5,115.7 M939.7,516.0
+ L939.7,114.8 M939.9,516.0 L939.9,114.0 M940.1,516.0 L940.1,113.2 M940.3,516.0 L940.3,112.5 M940.4,516.0
+ L940.4,111.8 M940.6,516.0 L940.6,111.1 M940.8,516.0 L940.8,110.4 M941.0,516.0 L941.0,109.8 M941.2,516.0
+ L941.2,109.2 M941.3,516.0 L941.3,108.6 M941.5,516.0 L941.5,108.1 M941.7,516.0 L941.7,107.6 M941.9,516.0
+ L941.9,107.1 M942.1,516.0 L942.1,106.6 M942.2,516.0 L942.2,106.2 M942.4,516.0 L942.4,105.8 M942.6,516.0
+ L942.6,105.5 M942.8,516.0 L942.8,105.1 M943.0,516.0 L943.0,104.8 M943.1,516.0 L943.1,104.5 M943.3,516.0
+ L943.3,104.3 M943.5,516.0 L943.5,104.0 M943.7,516.0 L943.7,103.8 M943.9,516.0 L943.9,103.6 M944.0,516.0
+ L944.0,103.5 M944.2,516.0 L944.2,103.4 M944.4,516.0 L944.4,103.3 M944.6,516.0 L944.6,103.2 M944.8,516.0
+ L944.8,103.2 M945.0,516.0 L945.0,103.2 M945.1,516.0 L945.1,103.2 M945.3,516.0 L945.3,103.2 M945.5,516.0
+ L945.5,103.3 M945.7,516.0 L945.7,103.4 M945.9,516.0 L945.9,103.5 M946.0,516.0 L946.0,103.6 M946.2,516.0
+ L946.2,103.8 M946.4,516.0 L946.4,104.0 M946.6,516.0 L946.6,104.3 M946.8,516.0 L946.8,104.5 M946.9,516.0
+ L946.9,104.8 M947.1,516.0 L947.1,105.1 M947.3,516.0 L947.3,105.5 M947.5,516.0 L947.5,105.8 M947.7,516.0
+ L947.7,106.2 M947.8,516.0 L947.8,106.6 M948.0,516.0 L948.0,107.1 M948.2,516.0 L948.2,107.6 M948.4,516.0
+ L948.4,108.1 M948.6,516.0 L948.6,108.6 M948.7,516.0 L948.7,109.2 M948.9,516.0 L948.9,109.8 M949.1,516.0
+ L949.1,110.4 M949.3,516.0 L949.3,111.1 M949.5,516.0 L949.5,111.8 M949.6,516.0 L949.6,112.5 M949.8,516.0
+ L949.8,113.2 '/> <path stroke='rgb(222, 125, 0)' d='M950.0,516.0 L950.0,114.0 M950.2,516.0 L950.2,114.8 M950.4,516.0 L950.4,115.7 M950.5,516.0 L950.5,116.6
+ M950.7,516.0 L950.7,117.5 M950.9,516.0 L950.9,118.4 M951.1,516.0 L951.1,119.4 M951.3,516.0 L951.3,120.4
+ M951.4,516.0 L951.4,121.4 M951.6,516.0 L951.6,122.5 M951.8,516.0 L951.8,123.6 M952.0,516.0 L952.0,124.8
+ M952.2,516.0 L952.2,126.0 M952.3,516.0 L952.3,127.2 M952.5,516.0 L952.5,128.5 M952.7,516.0 L952.7,129.8
+ M952.9,516.0 L952.9,131.1 M953.1,516.0 L953.1,132.5 M953.2,516.0 L953.2,133.9 M953.4,516.0 L953.4,135.4
+ M953.6,516.0 L953.6,136.9 M953.8,516.0 L953.8,138.4 M954.0,516.0 L954.0,140.0 M954.2,516.0 L954.2,141.7
+ M954.3,516.0 L954.3,143.4 M954.5,516.0 L954.5,145.1 M954.7,516.0 L954.7,146.9 M954.9,516.0 L954.9,148.7
+ M955.1,516.0 L955.1,150.6 M955.2,516.0 L955.2,152.6 M955.4,516.0 L955.4,154.6 M955.6,516.0 L955.6,156.7
+ M955.8,516.0 L955.8,158.8 M956.0,516.0 L956.0,161.0 M956.1,516.0 L956.1,163.3 M956.3,516.0 L956.3,165.6
+ M956.5,516.0 L956.5,168.0 M956.7,516.0 L956.7,170.5 M956.9,516.0 L956.9,173.1 M957.0,516.0 L957.0,175.7
+ M957.2,516.0 L957.2,178.4 M957.4,516.0 L957.4,181.2 M957.6,516.0 L957.6,184.2 M957.8,516.0 L957.8,187.2
+ M957.9,516.0 L957.9,190.3 M958.1,516.0 L958.1,193.6 M958.3,516.0 L958.3,196.9 M958.5,516.0 L958.5,200.4
+ M958.7,516.0 L958.7,204.1 M958.8,516.0 L958.8,207.9 M959.0,516.0 L959.0,211.9 M959.2,516.0 L959.2,216.1
+ M959.4,516.0 L959.4,220.4 M959.6,516.0 L959.6,225.0 M959.7,516.0 L959.7,229.9 M959.9,516.0 L959.9,235.0
+ M960.1,516.0 L960.1,240.5 M960.3,516.0 L960.3,246.3 M960.5,516.0 L960.5,252.6 M960.6,516.0 L960.6,259.3
+ M960.8,516.0 L960.8,266.7 M961.0,516.0 L961.0,274.9 M961.2,516.0 L961.2,284.0 M961.4,516.0 L961.4,294.4
+ M961.5,516.0 L961.5,306.6 M961.7,516.0 L961.7,321.5 M961.9,516.0 L961.9,340.9 M962.1,516.0 L962.1,370.2
+ M962.3,516.0 M962.5,516.0 L962.5,409.5 M962.6,516.0 L962.6,424.5 M962.8,516.0 L962.8,369.7 M963.0,516.0
+ L963.0,347.4 M963.2,516.0 L963.2,333.1 M963.4,516.0 L963.4,322.8 M963.5,516.0 L963.5,314.9 M963.7,516.0
+ L963.7,308.7 M963.9,516.0 L963.9,303.7 M964.1,516.0 L964.1,299.6 M964.3,516.0 L964.3,296.3 M964.4,516.0
+ L964.4,293.7 M964.6,516.0 L964.6,291.6 M964.8,516.0 L964.8,290.0 M965.0,516.0 L965.0,288.9 M965.2,516.0
+ L965.2,288.1 M965.3,516.0 L965.3,287.7 M965.5,516.0 L965.5,287.7 M965.7,516.0 L965.7,288.1 M965.9,516.0
+ L965.9,288.8 M966.1,516.0 L966.1,289.9 M966.2,516.0 L966.2,291.4 M966.4,516.0 L966.4,293.4 M966.6,516.0
+ L966.6,295.8 M966.8,516.0 L966.8,298.8 M967.0,516.0 L967.0,302.6 M967.1,516.0 L967.1,307.2 M967.3,516.0
+ L967.3,313.0 M967.5,516.0 L967.5,320.8 M967.7,516.0 L967.7,331.9 M967.9,516.0 L967.9,351.1 M968.0,516.0
+ M968.2,516.0 L968.2,351.6 M968.4,516.0 L968.4,332.8 M968.6,516.0 L968.6,322.1 M968.8,516.0 L968.8,314.7
+ M968.9,516.0 L968.9,309.3 M969.1,516.0 L969.1,305.0 M969.3,516.0 L969.3,301.7 M969.5,516.0 L969.5,299.0
+ M969.7,516.0 L969.7,296.8 M969.8,516.0 L969.8,295.2 M970.0,516.0 L970.0,293.9 M970.2,516.0 L970.2,292.9
+ M970.4,516.0 L970.4,292.3 M970.6,516.0 L970.6,292.0 M970.8,516.0 L970.8,291.9 M970.9,516.0 L970.9,292.1
+ M971.1,516.0 L971.1,292.6 M971.3,516.0 L971.3,293.4 M971.5,516.0 L971.5,294.5 M971.7,516.0 L971.7,295.8
+ M971.8,516.0 L971.8,297.5 M972.0,516.0 L972.0,299.5 M972.2,516.0 L972.2,301.8 M972.4,516.0 L972.4,304.7
+ M972.6,516.0 L972.6,308.1 M972.7,516.0 L972.7,312.1 M972.9,516.0 L972.9,317.0 M973.1,516.0 L973.1,323.2
+ M973.3,516.0 L973.3,331.2 M973.5,516.0 L973.5,342.5 M973.6,516.0 L973.6,361.9 M973.8,516.0 M974.0,516.0
+ L974.0,362.8 M974.2,516.0 L974.2,344.1 M974.4,516.0 L974.4,333.6 M974.5,516.0 L974.5,326.3 M974.7,516.0
+ L974.7,321.0 M974.9,516.0 L974.9,316.8 M975.1,516.0 L975.1,313.6 M975.3,516.0 L975.3,311.0 M975.4,516.0
+ L975.4,308.9 M975.6,516.0 L975.6,307.3 M975.8,516.0 L975.8,306.0 M976.0,516.0 L976.0,305.1 M976.2,516.0
+ L976.2,304.6 M976.3,516.0 L976.3,304.3 M976.5,516.0 L976.5,304.3 M976.7,516.0 L976.7,304.5 M976.9,516.0
+ L976.9,305.0 M977.1,516.0 L977.1,305.8 M977.2,516.0 L977.2,306.9 M977.4,516.0 L977.4,308.2 M977.6,516.0
+ L977.6,309.9 M977.8,516.0 L977.8,311.9 M978.0,516.0 L978.0,314.3 M978.1,516.0 L978.1,317.1 M978.3,516.0
+ L978.3,320.5 M978.5,516.0 L978.5,324.6 M978.7,516.0 L978.7,329.5 M978.9,516.0 L978.9,335.6 M979.1,516.0
+ L979.1,343.6 M979.2,516.0 L979.2,354.9 M979.4,516.0 L979.4,374.2 M979.6,516.0 M979.8,516.0 L979.8,375.1
+ M980.0,516.0 L980.0,356.5 M980.1,516.0 L980.1,345.9 M980.3,516.0 L980.3,338.6 M980.5,516.0 L980.5,333.2
+ M980.7,516.0 L980.7,329.1 M980.9,516.0 L980.9,325.8 M981.0,516.0 L981.0,323.2 M981.2,516.0 L981.2,321.1
+ M981.4,516.0 L981.4,319.4 M981.6,516.0 L981.6,318.2 M981.8,516.0 L981.8,317.2 M981.9,516.0 L981.9,316.6
+ M982.1,516.0 L982.1,316.3 M982.3,516.0 L982.3,316.3 M982.5,516.0 L982.5,316.5 M982.7,516.0 L982.7,317.0
+ M982.8,516.0 L982.8,317.7 M983.0,516.0 L983.0,318.8 M983.2,516.0 L983.2,320.1 M983.4,516.0 L983.4,321.7
+ M983.6,516.0 L983.6,323.7 M983.7,516.0 L983.7,326.0 M983.9,516.0 L983.9,328.8 M984.1,516.0 L984.1,332.2
+ M984.3,516.0 L984.3,336.2 M984.5,516.0 L984.5,341.1 M984.6,516.0 L984.6,347.2 M984.8,516.0 L984.8,355.1
+ M985.0,516.0 L985.0,366.4 M985.2,516.0 L985.2,385.7 M985.4,516.0 M985.5,516.0 L985.5,386.5 M985.7,516.0
+ L985.7,367.8 M985.9,516.0 L985.9,357.2 M986.1,516.0 L986.1,349.9 M986.3,516.0 L986.3,344.5 M986.4,516.0
+ L986.4,340.3 M986.6,516.0 L986.6,336.9 M986.8,516.0 L986.8,334.3 M987.0,516.0 L987.0,332.2 M987.2,516.0
+ L987.2,330.5 M987.4,516.0 L987.4,329.2 M987.5,516.0 L987.5,328.2 M987.7,516.0 L987.7,327.6 M987.9,516.0
+ L987.9,327.2 M988.1,516.0 L988.1,327.1 M988.3,516.0 L988.3,327.3 M988.4,516.0 L988.4,327.8 M988.6,516.0
+ L988.6,328.5 M988.8,516.0 L988.8,329.5 M989.0,516.0 L989.0,330.8 M989.2,516.0 L989.2,332.4 M989.3,516.0
+ L989.3,334.3 M989.5,516.0 L989.5,336.6 M989.7,516.0 L989.7,339.4 M989.9,516.0 L989.9,342.7 M990.1,516.0
+ L990.1,346.7 M990.2,516.0 L990.2,351.5 M990.4,516.0 L990.4,357.6 M990.6,516.0 L990.6,365.5 M990.8,516.0
+ L990.8,376.7 M991.0,516.0 L991.0,396.0 M991.1,516.0 M991.3,516.0 L991.3,396.8 M991.5,516.0 L991.5,378.1
+ M991.7,516.0 L991.7,367.4 M991.9,516.0 L991.9,360.0 M992.0,516.0 L992.0,354.6 M992.2,516.0 L992.2,350.4
+ M992.4,516.0 L992.4,347.0 M992.6,516.0 L992.6,344.3 M992.8,516.0 L992.8,342.1 M992.9,516.0 L992.9,340.4
+ M993.1,516.0 L993.1,339.1 M993.3,516.0 L993.3,338.1 M993.5,516.0 L993.5,337.4 M993.7,516.0 L993.7,337.0
+ M993.8,516.0 L993.8,336.9 M994.0,516.0 L994.0,337.1 M994.2,516.0 L994.2,337.5 M994.4,516.0 L994.4,338.2
+ M994.6,516.0 L994.6,339.1 M994.7,516.0 L994.7,340.4 M994.9,516.0 L994.9,341.9 M995.1,516.0 L995.1,343.9
+ M995.3,516.0 L995.3,346.1 M995.5,516.0 L995.5,348.9 M995.7,516.0 L995.7,352.2 M995.8,516.0 L995.8,356.1
+ M996.0,516.0 L996.0,360.9 M996.2,516.0 L996.2,366.9 M996.4,516.0 L996.4,374.8 M996.6,516.0 L996.6,386.0
+ M996.7,516.0 L996.7,405.2 '/> <path stroke='rgb(222, 125, 0)' d='M996.9,516.0 M997.1,516.0 L997.1,406.0 M997.3,516.0 L997.3,387.3 M997.5,516.0 L997.5,376.5 M997.6,516.0
+ L997.6,369.2 M997.8,516.0 L997.8,363.7 M998.0,516.0 L998.0,359.4 M998.2,516.0 L998.2,356.0 M998.4,516.0
+ L998.4,353.3 M998.5,516.0 L998.5,351.1 M998.7,516.0 L998.7,349.4 M998.9,516.0 L998.9,348.0 M999.1,516.0
+ L999.1,347.0 M999.3,516.0 L999.3,346.3 M999.4,516.0 L999.4,345.9 M999.6,516.0 L999.6,345.7 M999.8,516.0
+ L999.8,345.9 M1000.0,516.0 L1000.0,346.2 M1000.2,516.0 L1000.2,346.9 M1000.3,516.0 L1000.3,347.8 M1000.5,516.0
+ L1000.5,349.1 M1000.7,516.0 L1000.7,350.6 M1000.9,516.0 L1000.9,352.5 M1001.1,516.0 L1001.1,354.8 M1001.2,516.0
+ L1001.2,357.5 M1001.4,516.0 L1001.4,360.7 M1001.6,516.0 L1001.6,364.6 M1001.8,516.0 L1001.8,369.4 M1002.0,516.0
+ L1002.0,375.4 M1002.1,516.0 L1002.1,383.3 M1002.3,516.0 L1002.3,394.5 M1002.5,516.0 L1002.5,413.6 M1002.7,516.0
+ M1002.9,516.0 L1002.9,414.4 M1003.0,516.0 L1003.0,395.6 M1003.2,516.0 L1003.2,384.9 M1003.4,516.0 L1003.4,377.5
+ M1003.6,516.0 L1003.6,372.0 M1003.8,516.0 L1003.8,367.7 M1004.0,516.0 L1004.0,364.2 M1004.1,516.0 L1004.1,361.5
+ M1004.3,516.0 L1004.3,359.3 M1004.5,516.0 L1004.5,357.5 M1004.7,516.0 L1004.7,356.1 M1004.9,516.0 L1004.9,355.1
+ M1005.0,516.0 L1005.0,354.4 M1005.2,516.0 L1005.2,353.9 M1005.4,516.0 L1005.4,353.7 M1005.6,516.0 L1005.6,353.9
+ M1005.8,516.0 L1005.8,354.2 M1005.9,516.0 L1005.9,354.9 M1006.1,516.0 L1006.1,355.8 M1006.3,516.0 L1006.3,357.0
+ M1006.5,516.0 L1006.5,358.5 M1006.7,516.0 L1006.7,360.4 M1006.8,516.0 L1006.8,362.6 M1007.0,516.0 L1007.0,365.3
+ M1007.2,516.0 L1007.2,368.5 M1007.4,516.0 L1007.4,372.4 M1007.6,516.0 L1007.6,377.2 M1007.7,516.0 L1007.7,383.1
+ M1007.9,516.0 L1007.9,391.0 M1008.1,516.0 L1008.1,402.1 M1008.3,516.0 L1008.3,421.3 M1008.5,516.0 M1008.6,516.0
+ L1008.6,422.0 M1008.8,516.0 L1008.8,403.2 M1009.0,516.0 L1009.0,392.4 M1009.2,516.0 L1009.2,385.0 M1009.4,516.0
+ L1009.4,379.5 M1009.5,516.0 L1009.5,375.2 M1009.7,516.0 L1009.7,371.7 M1009.9,516.0 L1009.9,369.0 M1010.1,516.0
+ L1010.1,366.7 M1010.3,516.0 L1010.3,364.9 M1010.4,516.0 L1010.4,363.5 M1010.6,516.0 L1010.6,362.5 M1010.8,516.0
+ L1010.8,361.7 M1011.0,516.0 L1011.0,361.3 M1011.2,516.0 L1011.2,361.1 M1011.3,516.0 L1011.3,361.2 M1011.5,516.0
+ L1011.5,361.5 M1011.7,516.0 L1011.7,362.1 M1011.9,516.0 L1011.9,363.0 M1012.1,516.0 L1012.1,364.2 M1012.3,516.0
+ L1012.3,365.7 M1012.4,516.0 L1012.4,367.6 M1012.6,516.0 L1012.6,369.8 M1012.8,516.0 L1012.8,372.5 M1013.0,516.0
+ L1013.0,375.7 M1013.2,516.0 L1013.2,379.5 M1013.3,516.0 L1013.3,384.3 M1013.5,516.0 L1013.5,390.2 M1013.7,516.0
+ L1013.7,398.0 M1013.9,516.0 L1013.9,409.2 M1014.1,516.0 L1014.1,428.3 M1014.2,516.0 M1014.4,516.0 L1014.4,429.1
+ M1014.6,516.0 L1014.6,410.2 M1014.8,516.0 L1014.8,399.4 M1015.0,516.0 L1015.0,392.0 M1015.1,516.0 L1015.1,386.4
+ M1015.3,516.0 L1015.3,382.1 M1015.5,516.0 L1015.5,378.6 M1015.7,516.0 L1015.7,375.9 M1015.9,516.0 L1015.9,373.6
+ M1016.0,516.0 L1016.0,371.8 M1016.2,516.0 L1016.2,370.4 M1016.4,516.0 L1016.4,369.3 M1016.6,516.0 L1016.6,368.5
+ M1016.8,516.0 L1016.8,368.0 M1016.9,516.0 L1016.9,367.8 M1017.1,516.0 L1017.1,367.9 M1017.3,516.0 L1017.3,368.3
+ M1017.5,516.0 L1017.5,368.9 M1017.7,516.0 L1017.7,369.7 M1017.8,516.0 L1017.8,370.9 M1018.0,516.0 L1018.0,372.4
+ M1018.2,516.0 L1018.2,374.2 M1018.4,516.0 L1018.4,376.4 M1018.6,516.0 L1018.6,379.1 M1018.7,516.0 L1018.7,382.3
+ M1018.9,516.0 L1018.9,386.1 M1019.1,516.0 L1019.1,390.8 M1019.3,516.0 L1019.3,396.8 M1019.5,516.0 L1019.5,404.6
+ M1019.6,516.0 L1019.6,415.7 M1019.8,516.0 L1019.8,434.8 M1020.0,516.0 M1020.2,516.0 L1020.2,435.5 M1020.4,516.0
+ L1020.4,416.7 M1020.6,516.0 L1020.6,405.9 M1020.7,516.0 L1020.7,398.4 M1020.9,516.0 L1020.9,392.8 M1021.1,516.0
+ L1021.1,388.5 M1021.3,516.0 L1021.3,385.0 M1021.5,516.0 L1021.5,382.2 M1021.6,516.0 L1021.6,380.0 M1021.8,516.0
+ L1021.8,378.1 M1022.0,516.0 L1022.0,376.7 M1022.2,516.0 L1022.2,375.6 M1022.4,516.0 L1022.4,374.8 M1022.5,516.0
+ L1022.5,374.3 M1022.7,516.0 L1022.7,374.1 M1022.9,516.0 L1022.9,374.2 M1023.1,516.0 L1023.1,374.5 M1023.3,516.0
+ L1023.3,375.1 M1023.4,516.0 L1023.4,375.9 M1023.6,516.0 L1023.6,377.1 M1023.8,516.0 L1023.8,378.6 M1024.0,516.0
+ L1024.0,380.4 M1024.2,516.0 L1024.2,382.6 M1024.3,516.0 L1024.3,385.2 M1024.5,516.0 L1024.5,388.4 M1024.7,516.0
+ L1024.7,392.2 M1024.9,516.0 L1024.9,396.9 M1025.1,516.0 L1025.1,402.8 M1025.2,516.0 L1025.2,410.6 M1025.4,516.0
+ L1025.4,421.7 M1025.6,516.0 L1025.6,440.8 M1025.8,516.0 M1026.0,516.0 L1026.0,441.6 M1026.1,516.0 L1026.1,422.7
+ M1026.3,516.0 L1026.3,411.8 M1026.5,516.0 L1026.5,404.4 M1026.7,516.0 L1026.7,398.8 M1026.9,516.0 L1026.9,394.4
+ M1027.0,516.0 L1027.0,391.0 M1027.2,516.0 L1027.2,388.1 M1027.4,516.0 L1027.4,385.9 M1027.6,516.0 L1027.6,384.0
+ M1027.8,516.0 L1027.8,382.6 M1027.9,516.0 L1027.9,381.5 M1028.1,516.0 L1028.1,380.7 M1028.3,516.0 L1028.3,380.2
+ M1028.5,516.0 L1028.5,379.9 M1028.7,516.0 L1028.7,380.0 M1028.8,516.0 L1028.8,380.3 M1029.0,516.0 L1029.0,380.9
+ M1029.2,516.0 L1029.2,381.7 M1029.4,516.0 L1029.4,382.9 M1029.6,516.0 L1029.6,384.3 M1029.8,516.0 L1029.8,386.1
+ M1029.9,516.0 L1029.9,388.3 M1030.1,516.0 L1030.1,390.9 M1030.3,516.0 L1030.3,394.1 M1030.5,516.0 L1030.5,397.9
+ M1030.7,516.0 L1030.7,402.6 M1030.8,516.0 L1030.8,408.5 M1031.0,516.0 L1031.0,416.3 M1031.2,516.0 L1031.2,427.4
+ M1031.4,516.0 L1031.4,446.4 M1031.6,516.0 M1031.7,516.0 L1031.7,447.2 M1031.9,516.0 L1031.9,428.3 M1032.1,516.0
+ L1032.1,417.4 M1032.3,516.0 L1032.3,410.0 M1032.5,516.0 L1032.5,404.4 M1032.6,516.0 L1032.6,400.0 M1032.8,516.0
+ L1032.8,396.5 M1033.0,516.0 L1033.0,393.7 M1033.2,516.0 L1033.2,391.4 M1033.4,516.0 L1033.4,389.5 M1033.5,516.0
+ L1033.5,388.1 M1033.7,516.0 L1033.7,387.0 M1033.9,516.0 L1033.9,386.2 M1034.1,516.0 L1034.1,385.6 M1034.3,516.0
+ L1034.3,385.4 M1034.4,516.0 L1034.4,385.4 M1034.6,516.0 L1034.6,385.7 M1034.8,516.0 L1034.8,386.3 M1035.0,516.0
+ L1035.0,387.1 M1035.2,516.0 L1035.2,388.3 M1035.3,516.0 L1035.3,389.7 M1035.5,516.0 L1035.5,391.5 M1035.7,516.0
+ L1035.7,393.7 M1035.9,516.0 L1035.9,396.3 M1036.1,516.0 L1036.1,399.4 M1036.2,516.0 L1036.2,403.2 M1036.4,516.0
+ L1036.4,407.9 M1036.6,516.0 L1036.6,413.8 M1036.8,516.0 L1036.8,421.6 M1037.0,516.0 L1037.0,432.7 M1037.1,516.0
+ L1037.1,451.7 M1037.3,516.0 M1037.5,516.0 L1037.5,452.5 M1037.7,516.0 L1037.7,433.5 M1037.9,516.0 L1037.9,422.7
+ M1038.1,516.0 L1038.1,415.2 M1038.2,516.0 L1038.2,409.6 M1038.4,516.0 L1038.4,405.2 M1038.6,516.0 L1038.6,401.7
+ M1038.8,516.0 L1038.8,398.9 M1039.0,516.0 L1039.0,396.6 M1039.1,516.0 L1039.1,394.7 M1039.3,516.0 L1039.3,393.2
+ M1039.5,516.0 L1039.5,392.1 M1039.7,516.0 L1039.7,391.3 M1039.9,516.0 L1039.9,390.8 M1040.0,516.0 L1040.0,390.5
+ M1040.2,516.0 L1040.2,390.5 M1040.4,516.0 L1040.4,390.8 M1040.6,516.0 L1040.6,391.4 M1040.8,516.0 L1040.8,392.2
+ M1040.9,516.0 L1040.9,393.3 M1041.1,516.0 L1041.1,394.8 M1041.3,516.0 L1041.3,396.5 M1041.5,516.0 L1041.5,398.7
+ M1041.7,516.0 L1041.7,401.3 M1041.8,516.0 L1041.8,404.4 M1042.0,516.0 L1042.0,408.3 M1042.2,516.0 L1042.2,412.9
+ M1042.4,516.0 L1042.4,418.8 M1042.6,516.0 L1042.6,426.6 M1042.7,516.0 L1042.7,437.6 M1042.9,516.0 L1042.9,456.7
+ M1043.1,516.0 M1043.3,516.0 L1043.3,457.4 M1043.5,516.0 L1043.5,438.5 M1043.6,516.0 L1043.6,427.6 M1043.8,516.0
+ L1043.8,420.1 '/> <path stroke='rgb(222, 125, 0)' d='M1044.0,516.0 L1044.0,414.5 M1044.2,516.0 L1044.2,410.1 M1044.4,516.0 L1044.4,406.6 M1044.5,516.0 L1044.5,403.8
+ M1044.7,516.0 L1044.7,401.4 M1044.9,516.0 L1044.9,399.6 M1045.1,516.0 L1045.1,398.1 M1045.3,516.0 L1045.3,397.0
+ M1045.4,516.0 L1045.4,396.1 M1045.6,516.0 L1045.6,395.6 M1045.8,516.0 L1045.8,395.3 M1046.0,516.0 L1046.0,395.4
+ M1046.2,516.0 L1046.2,395.6 M1046.4,516.0 L1046.4,396.2 M1046.5,516.0 L1046.5,397.0 M1046.7,516.0 L1046.7,398.1
+ M1046.9,516.0 L1046.9,399.5 M1047.1,516.0 L1047.1,401.3 M1047.3,516.0 L1047.3,403.5 M1047.4,516.0 L1047.4,406.1
+ M1047.6,516.0 L1047.6,409.2 M1047.8,516.0 L1047.8,413.0 M1048.0,516.0 L1048.0,417.7 M1048.2,516.0 L1048.2,423.5
+ M1048.3,516.0 L1048.3,431.3 M1048.5,516.0 L1048.5,442.3 M1048.7,516.0 L1048.7,461.3 M1048.9,516.0 M1049.1,516.0
+ L1049.1,462.1 M1049.2,516.0 L1049.2,443.1 M1049.4,516.0 L1049.4,432.3 M1049.6,516.0 L1049.6,424.8 M1049.8,516.0
+ L1049.8,419.2 M1050.0,516.0 L1050.0,414.8 M1050.1,516.0 L1050.1,411.2 M1050.3,516.0 L1050.3,408.4 M1050.5,516.0
+ L1050.5,406.1 M1050.7,516.0 L1050.7,404.2 M1050.9,516.0 L1050.9,402.7 M1051.0,516.0 L1051.0,401.5 M1051.2,516.0
+ L1051.2,400.7 M1051.4,516.0 L1051.4,400.2 M1051.6,516.0 L1051.6,399.9 M1051.8,516.0 L1051.8,399.9 M1051.9,516.0
+ L1051.9,400.2 M1052.1,516.0 L1052.1,400.7 M1052.3,516.0 L1052.3,401.5 M1052.5,516.0 L1052.5,402.6 M1052.7,516.0
+ L1052.7,404.1 M1052.8,516.0 L1052.8,405.8 M1053.0,516.0 L1053.0,408.0 M1053.2,516.0 L1053.2,410.5 M1053.4,516.0
+ L1053.4,413.7 M1053.6,516.0 L1053.6,417.5 M1053.7,516.0 L1053.7,422.1 M1053.9,516.0 L1053.9,428.0 M1054.1,516.0
+ L1054.1,435.7 M1054.3,516.0 L1054.3,446.8 M1054.5,516.0 L1054.5,465.8 M1054.7,516.0 M1054.8,516.0 L1054.8,466.6
+ M1055.0,516.0 L1055.0,447.6 M1055.2,516.0 L1055.2,436.7 M1055.4,516.0 L1055.4,429.2 M1055.6,516.0 L1055.6,423.6
+ M1055.7,516.0 L1055.7,419.2 M1055.9,516.0 L1055.9,415.6 M1056.1,516.0 L1056.1,412.8 M1056.3,516.0 L1056.3,410.4
+ M1056.5,516.0 L1056.5,408.5 M1056.6,516.0 L1056.6,407.1 M1056.8,516.0 L1056.8,405.9 M1057.0,516.0 L1057.0,405.1
+ M1057.2,516.0 L1057.2,404.5 M1057.4,516.0 L1057.4,404.2 M1057.5,516.0 L1057.5,404.2 M1057.7,516.0 L1057.7,404.5
+ M1057.9,516.0 L1057.9,405.0 M1058.1,516.0 L1058.1,405.8 M1058.3,516.0 L1058.3,406.9 M1058.4,516.0 L1058.4,408.3
+ M1058.6,516.0 L1058.6,410.1 M1058.8,516.0 L1058.8,412.2 M1059.0,516.0 L1059.0,414.8 M1059.2,516.0 L1059.2,417.9
+ M1059.3,516.0 L1059.3,421.7 M1059.5,516.0 L1059.5,426.4 M1059.7,516.0 L1059.7,432.2 M1059.9,516.0 L1059.9,440.0
+ M1060.1,516.0 L1060.1,451.0 M1060.2,516.0 L1060.2,470.0 M1060.4,516.0 M1060.6,516.0 L1060.6,470.8 M1060.8,516.0
+ L1060.8,451.8 M1061.0,516.0 L1061.0,440.9 M1061.1,516.0 L1061.1,433.4 M1061.3,516.0 L1061.3,427.7 M1061.5,516.0
+ L1061.5,423.3 M1061.7,516.0 L1061.7,419.8 M1061.9,516.0 L1061.9,416.9 M1062.0,516.0 L1062.0,414.6 M1062.2,516.0
+ L1062.2,412.7 M1062.4,516.0 L1062.4,411.2 M1062.6,516.0 L1062.6,410.0 M1062.8,516.0 L1062.8,409.2 M1063.0,516.0
+ L1063.0,408.6 M1063.1,516.0 L1063.1,408.3 M1063.3,516.0 L1063.3,408.3 M1063.5,516.0 L1063.5,408.6 M1063.7,516.0
+ L1063.7,409.1 M1063.9,516.0 L1063.9,409.9 M1064.0,516.0 L1064.0,411.0 M1064.2,516.0 L1064.2,412.4 M1064.4,516.0
+ L1064.4,414.2 M1064.6,516.0 L1064.6,416.3 M1064.8,516.0 L1064.8,418.9 M1064.9,516.0 L1064.9,422.0 M1065.1,516.0
+ L1065.1,425.8 M1065.3,516.0 L1065.3,430.4 M1065.5,516.0 L1065.5,436.3 M1065.7,516.0 L1065.7,444.0 M1065.8,516.0
+ L1065.8,455.0 M1066.0,516.0 L1066.0,474.0 M1066.2,516.0 M1066.4,516.0 L1066.4,474.8 M1066.6,516.0 L1066.6,455.8
+ M1066.7,516.0 L1066.7,444.9 M1066.9,516.0 L1066.9,437.4 M1067.1,516.0 L1067.1,431.7 M1067.3,516.0 L1067.3,427.3
+ M1067.5,516.0 L1067.5,423.8 M1067.6,516.0 L1067.6,420.9 M1067.8,516.0 L1067.8,418.5 M1068.0,516.0 L1068.0,416.6
+ M1068.2,516.0 L1068.2,415.1 M1068.4,516.0 L1068.4,414.0 M1068.5,516.0 L1068.5,413.1 M1068.7,516.0 L1068.7,412.6
+ M1068.9,516.0 L1068.9,412.3 M1069.1,516.0 L1069.1,412.3 M1069.3,516.0 L1069.3,412.5 M1069.4,516.0 L1069.4,413.0
+ M1069.6,516.0 L1069.6,413.8 M1069.8,516.0 L1069.8,414.9 M1070.0,516.0 L1070.0,416.3 M1070.2,516.0 L1070.2,418.0
+ M1070.3,516.0 L1070.3,420.2 M1070.5,516.0 L1070.5,422.7 M1070.7,516.0 L1070.7,425.8 M1070.9,516.0 L1070.9,429.6
+ M1071.1,516.0 L1071.1,434.2 M1071.3,516.0 L1071.3,440.1 M1071.4,516.0 L1071.4,447.8 M1071.6,516.0 L1071.6,458.8
+ M1071.8,516.0 L1071.8,477.8 M1072.0,516.0 M1072.2,516.0 L1072.2,478.6 M1072.3,516.0 L1072.3,459.6 M1072.5,516.0
+ L1072.5,448.7 M1072.7,516.0 L1072.7,441.2 M1072.9,516.0 L1072.9,435.5 M1073.1,516.0 L1073.1,431.1 M1073.2,516.0
+ L1073.2,427.5 M1073.4,516.0 L1073.4,424.7 M1073.6,516.0 L1073.6,422.3 M1073.8,516.0 L1073.8,420.4 M1074.0,516.0
+ L1074.0,418.9 M1074.1,516.0 L1074.1,417.7 M1074.3,516.0 L1074.3,416.9 M1074.5,516.0 L1074.5,416.3 M1074.7,516.0
+ L1074.7,416.0 M1074.9,516.0 L1074.9,416.0 M1075.0,516.0 L1075.0,416.2 M1075.2,516.0 L1075.2,416.7 M1075.4,516.0
+ L1075.4,417.5 M1075.6,516.0 L1075.6,418.6 M1075.8,516.0 L1075.8,420.0 M1075.9,516.0 L1075.9,421.7 M1076.1,516.0
+ L1076.1,423.9 M1076.3,516.0 L1076.3,426.4 M1076.5,516.0 L1076.5,429.5 M1076.7,516.0 L1076.7,433.3 M1076.8,516.0
+ L1076.8,437.9 M1077.0,516.0 L1077.0,443.8 M1077.2,516.0 L1077.2,451.5 M1077.4,516.0 L1077.4,462.5 M1077.6,516.0
+ L1077.6,481.4 M1077.7,516.0 M1077.9,516.0 L1077.9,482.3 M1078.1,516.0 L1078.1,463.3 M1078.3,516.0 L1078.3,452.4
+ M1078.5,516.0 L1078.5,444.8 M1078.6,516.0 L1078.6,439.2 M1078.8,516.0 L1078.8,434.7 M1079.0,516.0 L1079.0,431.2
+ M1079.2,516.0 L1079.2,428.3 M1079.4,516.0 L1079.4,425.9 M1079.6,516.0 L1079.6,424.0 M1079.7,516.0 L1079.7,422.5
+ M1079.9,516.0 L1079.9,421.3 M1080.1,516.0 L1080.1,420.5 M1080.3,516.0 L1080.3,419.9 M1080.5,516.0 L1080.5,419.6
+ M1080.6,516.0 L1080.6,419.6 M1080.8,516.0 L1080.8,419.8 M1081.0,516.0 L1081.0,420.3 M1081.2,516.0 L1081.2,421.1
+ M1081.4,516.0 L1081.4,422.2 M1081.5,516.0 L1081.5,423.6 M1081.7,516.0 L1081.7,425.3 M1081.9,516.0 L1081.9,427.4
+ M1082.1,516.0 L1082.1,430.0 M1082.3,516.0 L1082.3,433.1 M1082.4,516.0 L1082.4,436.8 M1082.6,516.0 L1082.6,441.5
+ M1082.8,516.0 L1082.8,447.3 M1083.0,516.0 L1083.0,455.0 M1083.2,516.0 L1083.2,466.0 M1083.3,516.0 L1083.3,484.9
+ M1083.5,516.0 M1083.7,516.0 L1083.7,485.8 M1083.9,516.0 L1083.9,466.8 M1084.1,516.0 L1084.1,455.8 M1084.2,516.0
+ L1084.2,448.3 M1084.4,516.0 L1084.4,442.6 M1084.6,516.0 L1084.6,438.2 M1084.8,516.0 L1084.8,434.6 M1085.0,516.0
+ L1085.0,431.7 M1085.1,516.0 L1085.1,429.4 M1085.3,516.0 L1085.3,427.5 M1085.5,516.0 L1085.5,426.0 M1085.7,516.0
+ L1085.7,424.8 M1085.9,516.0 L1085.9,423.9 M1086.0,516.0 L1086.0,423.3 M1086.2,516.0 L1086.2,423.0 M1086.4,516.0
+ L1086.4,423.0 M1086.6,516.0 L1086.6,423.2 M1086.8,516.0 L1086.8,423.7 M1086.9,516.0 L1086.9,424.5 M1087.1,516.0
+ L1087.1,425.6 M1087.3,516.0 L1087.3,427.0 M1087.5,516.0 L1087.5,428.7 M1087.7,516.0 L1087.7,430.8 M1087.9,516.0
+ L1087.9,433.4 M1088.0,516.0 L1088.0,436.5 M1088.2,516.0 L1088.2,440.2 M1088.4,516.0 L1088.4,444.8 M1088.6,516.0
+ L1088.6,450.7 M1088.8,516.0 L1088.8,458.4 M1088.9,516.0 L1088.9,469.4 M1089.1,516.0 L1089.1,488.3 M1089.3,516.0
+ M1089.5,516.0 L1089.5,489.2 M1089.7,516.0 L1089.7,470.1 M1089.8,516.0 L1089.8,459.2 M1090.0,516.0 L1090.0,451.7
+ M1090.2,516.0 L1090.2,446.0 M1090.4,516.0 L1090.4,441.5 M1090.6,516.0 L1090.6,438.0 M1090.7,516.0 L1090.7,435.1
+ M1090.9,516.0 L1090.9,432.7 '/> <path stroke='rgb(222, 125, 0)' d='M1091.1,516.0 L1091.1,430.8 M1091.3,516.0 L1091.3,429.3 M1091.5,516.0 L1091.5,428.1 M1091.6,516.0 L1091.6,427.2
+ M1091.8,516.0 L1091.8,426.6 M1092.0,516.0 L1092.0,426.3 M1092.2,516.0 L1092.2,426.3 M1092.4,516.0 L1092.4,426.5
+ M1092.5,516.0 L1092.5,427.0 M1092.7,516.0 L1092.7,427.8 M1092.9,516.0 L1092.9,428.9 M1093.1,516.0 L1093.1,430.2
+ M1093.3,516.0 L1093.3,432.0 M1093.4,516.0 L1093.4,434.1 M1093.6,516.0 L1093.6,436.6 M1093.8,516.0 L1093.8,439.7
+ M1094.0,516.0 L1094.0,443.5 M1094.2,516.0 L1094.2,448.1 M1094.3,516.0 L1094.3,453.9 M1094.5,516.0 L1094.5,461.6
+ M1094.7,516.0 L1094.7,472.6 M1094.9,516.0 L1094.9,491.5 M1095.1,516.0 M1095.2,516.0 L1095.2,492.4 M1095.4,516.0
+ L1095.4,473.3 M1095.6,516.0 L1095.6,462.4 M1095.8,516.0 L1095.8,454.9 M1096.0,516.0 L1096.0,449.2 M1096.2,516.0
+ L1096.2,444.8 M1096.3,516.0 L1096.3,441.2 M1096.5,516.0 L1096.5,438.3 M1096.7,516.0 L1096.7,435.9 M1096.9,516.0
+ L1096.9,434.0 M1097.1,516.0 L1097.1,432.5 M1097.2,516.0 L1097.2,431.3 M1097.4,516.0 L1097.4,430.4 M1097.6,516.0
+ L1097.6,429.8 M1097.8,516.0 L1097.8,429.5 M1098.0,516.0 L1098.0,429.5 M1098.1,516.0 L1098.1,429.7 M1098.3,516.0
+ L1098.3,430.2 M1098.5,516.0 L1098.5,431.0 M1098.7,516.0 L1098.7,432.0 M1098.9,516.0 L1098.9,433.4 M1099.0,516.0
+ L1099.0,435.1 M1099.2,516.0 L1099.2,437.2 M1099.4,516.0 L1099.4,439.8 M1099.6,516.0 L1099.6,442.8 M1099.8,516.0
+ L1099.8,446.6 M1099.9,516.0 L1099.9,451.2 M1100.1,516.0 L1100.1,457.0 M1100.3,516.0 L1100.3,464.7 M1100.5,516.0
+ L1100.5,475.7 M1100.7,516.0 L1100.7,494.6 M1100.8,516.0 M1101.0,516.0 L1101.0,495.5 M1101.2,516.0 L1101.2,476.5
+ M1101.4,516.0 L1101.4,465.5 M1101.6,516.0 L1101.6,458.0 M1101.7,516.0 L1101.7,452.3 M1101.9,516.0 L1101.9,447.8
+ M1102.1,516.0 L1102.1,444.3 M1102.3,516.0 L1102.3,441.4 M1102.5,516.0 L1102.5,439.0 M1102.6,516.0 L1102.6,437.1
+ M1102.8,516.0 L1102.8,435.5 M1103.0,516.0 L1103.0,434.3 M1103.2,516.0 L1103.2,433.5 M1103.4,516.0 L1103.4,432.9
+ M1103.5,516.0 L1103.5,432.6 M1103.7,516.0 L1103.7,432.5 M1103.9,516.0 L1103.9,432.7 M1104.1,516.0 L1104.1,433.2
+ M1104.3,516.0 L1104.3,434.0 M1104.4,516.0 L1104.4,435.1 M1104.6,516.0 L1104.6,436.4 M1104.8,516.0 L1104.8,438.1
+ M1105.0,516.0 L1105.0,440.2 M1105.2,516.0 L1105.2,442.8 M1105.4,516.0 L1105.4,445.9 M1105.5,516.0 L1105.5,449.6
+ M1105.7,516.0 L1105.7,454.2 M1105.9,516.0 L1105.9,460.0 M1106.1,516.0 L1106.1,467.7 M1106.3,516.0 L1106.3,478.7
+ M1106.4,516.0 L1106.4,497.6 M1106.6,516.0 M1106.8,516.0 L1106.8,498.5 M1107.0,516.0 L1107.0,479.5 M1107.2,516.0
+ L1107.2,468.5 M1107.3,516.0 L1107.3,461.0 M1107.5,516.0 L1107.5,455.3 M1107.7,516.0 L1107.7,450.8 M1107.9,516.0
+ L1107.9,447.2 M1108.1,516.0 L1108.1,444.3 M1108.2,516.0 L1108.2,442.0 M1108.4,516.0 L1108.4,440.0 M1108.6,516.0
+ L1108.6,438.5 M1108.8,516.0 L1108.8,437.3 M1109.0,516.0 L1109.0,436.4 M1109.1,516.0 L1109.1,435.8 M1109.3,516.0
+ L1109.3,435.5 M1109.5,516.0 L1109.5,435.5 M1109.7,516.0 L1109.7,435.7 M1109.9,516.0 L1109.9,436.2 M1110.0,516.0
+ L1110.0,436.9 M1110.2,516.0 L1110.2,438.0 M1110.4,516.0 L1110.4,439.4 M1110.6,516.0 L1110.6,441.1 M1110.8,516.0
+ L1110.8,443.2 M1110.9,516.0 L1110.9,445.7 M1111.1,516.0 L1111.1,448.8 M1111.3,516.0 L1111.3,452.5 M1111.5,516.0
+ L1111.5,457.1 M1111.7,516.0 L1111.7,462.9 M1111.8,516.0 L1111.8,470.6 M1112.0,516.0 L1112.0,481.6 M1112.2,516.0
+ L1112.2,500.5 M1112.4,516.0 M1112.6,516.0 L1112.6,501.4 M1112.7,516.0 L1112.7,482.3 M1112.9,516.0 L1112.9,471.4
+ M1113.1,516.0 L1113.1,463.8 M1113.3,516.0 L1113.3,458.2 M1113.5,516.0 L1113.5,453.7 M1113.7,516.0 L1113.7,450.1
+ M1113.8,516.0 L1113.8,447.2 M1114.0,516.0 L1114.0,444.8 M1114.2,516.0 L1114.2,442.9 M1114.4,516.0 L1114.4,441.4
+ M1114.6,516.0 L1114.6,440.2 M1114.7,516.0 L1114.7,439.3 M1114.9,516.0 L1114.9,438.7 M1115.1,516.0 L1115.1,438.4
+ M1115.3,516.0 L1115.3,438.3 M1115.5,516.0 L1115.5,438.5 M1115.6,516.0 L1115.6,439.0 M1115.8,516.0 L1115.8,439.8
+ M1116.0,516.0 L1116.0,440.8 M1116.2,516.0 L1116.2,442.2 M1116.4,516.0 L1116.4,443.9 M1116.5,516.0 L1116.5,446.0
+ M1116.7,516.0 L1116.7,448.5 M1116.9,516.0 L1116.9,451.6 M1117.1,516.0 L1117.1,455.3 M1117.3,516.0 L1117.3,459.9
+ M1117.4,516.0 L1117.4,465.7 M1117.6,516.0 L1117.6,473.4 M1117.8,516.0 L1117.8,484.4 M1118.0,516.0 L1118.0,503.3
+ M1118.2,516.0 M1118.3,516.0 L1118.3,504.3 M1118.5,516.0 L1118.5,485.1 M1118.7,516.0 L1118.7,474.2 M1118.9,516.0
+ L1118.9,466.6 M1119.1,516.0 L1119.1,460.9 M1119.2,516.0 L1119.2,456.5 M1119.4,516.0 L1119.4,452.9 M1119.6,516.0
+ L1119.6,450.0 M1119.8,516.0 L1119.8,447.6 M1120.0,516.0 L1120.0,445.7 M1120.1,516.0 L1120.1,444.1 M1120.3,516.0
+ L1120.3,442.9 M1120.5,516.0 L1120.5,442.0 M1120.7,516.0 L1120.7,441.4 M1120.9,516.0 L1120.9,441.1 M1121.0,516.0
+ L1121.0,441.1 M1121.2,516.0 L1121.2,441.3 M1121.4,516.0 L1121.4,441.8 M1121.6,516.0 L1121.6,442.5 M1121.8,516.0
+ L1121.8,443.6 M1122.0,516.0 L1122.0,444.9 M1122.1,516.0 L1122.1,446.6 M1122.3,516.0 L1122.3,448.7 M1122.5,516.0
+ L1122.5,451.2 M1122.7,516.0 L1122.7,454.3 M1122.9,516.0 L1122.9,458.0 M1123.0,516.0 L1123.0,462.6 M1123.2,516.0
+ L1123.2,468.5 M1123.4,516.0 L1123.4,476.1 M1123.6,516.0 L1123.6,487.1 M1123.8,516.0 L1123.8,506.0 M1123.9,516.0
+ M1124.1,516.0 L1124.1,507.0 M1124.3,516.0 L1124.3,487.9 M1124.5,516.0 L1124.5,476.9 M1124.7,516.0 L1124.7,469.3
+ M1124.8,516.0 L1124.8,463.6 M1125.0,516.0 L1125.0,459.2 M1125.2,516.0 L1125.2,455.6 M1125.4,516.0 L1125.4,452.7
+ M1125.6,516.0 L1125.6,450.3 M1125.7,516.0 L1125.7,448.3 M1125.9,516.0 L1125.9,446.8 M1126.1,516.0 L1126.1,445.6
+ M1126.3,516.0 L1126.3,444.7 M1126.5,516.0 L1126.5,444.1 M1126.6,516.0 L1126.6,443.8 M1126.8,516.0 L1126.8,443.7
+ M1127.0,516.0 L1127.0,443.9 M1127.2,516.0 L1127.2,444.4 M1127.4,516.0 L1127.4,445.2 M1127.5,516.0 L1127.5,446.2
+ M1127.7,516.0 L1127.7,447.6 M1127.9,516.0 L1127.9,449.3 M1128.1,516.0 L1128.1,451.4 M1128.3,516.0 L1128.3,453.9
+ M1128.4,516.0 L1128.4,457.0 M1128.6,516.0 L1128.6,460.7 M1128.8,516.0 L1128.8,465.3 M1129.0,516.0 L1129.0,471.1
+ M1129.2,516.0 L1129.2,478.8 M1129.3,516.0 L1129.3,489.7 M1129.5,516.0 L1129.5,508.6 M1129.7,516.0 M1129.9,516.0
+ L1129.9,509.6 M1130.1,516.0 L1130.1,490.5 M1130.3,516.0 L1130.3,479.5 M1130.4,516.0 L1130.4,471.9 M1130.6,516.0
+ L1130.6,466.2 M1130.8,516.0 L1130.8,461.8 M1131.0,516.0 L1131.0,458.2 M1131.2,516.0 L1131.2,455.3 M1131.3,516.0
+ L1131.3,452.9 M1131.5,516.0 L1131.5,450.9 M1131.7,516.0 L1131.7,449.4 M1131.9,516.0 L1131.9,448.2 M1132.1,516.0
+ L1132.1,447.3 M1132.2,516.0 L1132.2,446.7 M1132.4,516.0 L1132.4,446.4 M1132.6,516.0 L1132.6,446.3 M1132.8,516.0
+ L1132.8,446.5 M1133.0,516.0 L1133.0,447.0 M1133.1,516.0 L1133.1,447.7 M1133.3,516.0 L1133.3,448.8 M1133.5,516.0
+ L1133.5,450.1 M1133.7,516.0 L1133.7,451.8 M1133.9,516.0 L1133.9,453.9 M1134.0,516.0 L1134.0,456.4 M1134.2,516.0
+ L1134.2,459.5 M1134.4,516.0 L1134.4,463.2 M1134.6,516.0 L1134.6,467.8 M1134.8,516.0 L1134.8,473.6 M1134.9,516.0
+ L1134.9,481.3 M1135.1,516.0 L1135.1,492.3 M1135.3,516.0 L1135.3,511.1 M1135.5,516.0 M1135.7,516.0 L1135.7,512.1
+ M1135.8,516.0 L1135.8,493.0 M1136.0,516.0 L1136.0,482.1 M1136.2,516.0 L1136.2,474.5 M1136.4,516.0 L1136.4,468.8
+ M1136.6,516.0 L1136.6,464.3 M1136.7,516.0 L1136.7,460.7 M1136.9,516.0 L1136.9,457.8 M1137.1,516.0 L1137.1,455.4
+ M1137.3,516.0 L1137.3,453.5 M1137.5,516.0 L1137.5,451.9 M1137.6,516.0 L1137.6,450.7 M1137.8,516.0 L1137.8,449.8
+ M1138.0,516.0 L1138.0,449.2 '/> <path stroke='rgb(222, 125, 0)' d='M1138.2,516.0 L1138.2,448.9 M1138.4,516.0 L1138.4,448.8 M1138.6,516.0 L1138.6,449.0 M1138.7,516.0 L1138.7,449.5
+ M1138.9,516.0 L1138.9,450.2 M1139.1,516.0 L1139.1,451.3 M1139.3,516.0 L1139.3,452.6 M1139.5,516.0 L1139.5,454.3
+ M1139.6,516.0 L1139.6,456.4 M1139.8,516.0 L1139.8,458.9 M1140.0,516.0 L1140.0,462.0 M1140.2,516.0 L1140.2,465.7
+ M1140.4,516.0 L1140.4,470.3 M1140.5,516.0 L1140.5,476.1 M1140.7,516.0 L1140.7,483.8 M1140.9,516.0 L1140.9,494.7
+ M1141.1,516.0 L1141.1,513.6 M1141.3,516.0 M1141.4,516.0 L1141.4,514.6 M1141.6,516.0 L1141.6,495.5 M1141.8,516.0
+ L1141.8,484.5 M1142.0,516.0 L1142.0,476.9 M1142.2,516.0 L1142.2,471.2 M1142.3,516.0 L1142.3,466.8 M1142.5,516.0
+ L1142.5,463.2 M1142.7,516.0 L1142.7,460.2 M1142.9,516.0 L1142.9,457.8 M1143.1,516.0 L1143.1,455.9 M1143.2,516.0
+ L1143.2,454.3 M1143.4,516.0 L1143.4,453.1 M1143.6,516.0 L1143.6,452.2 M1143.8,516.0 L1143.8,451.6 M1144.0,516.0
+ L1144.0,451.3 M1144.1,516.0 L1144.1,451.2 M1144.3,516.0 L1144.3,451.4 M1144.5,516.0 L1144.5,451.9 M1144.7,516.0
+ L1144.7,452.6 M1144.9,516.0 L1144.9,453.7 M1145.0,516.0 L1145.0,455.0 M1145.2,516.0 L1145.2,456.7 M1145.4,516.0
+ L1145.4,458.8 M1145.6,516.0 L1145.6,461.3 M1145.8,516.0 L1145.8,464.4 M1145.9,516.0 L1145.9,468.1 M1146.1,516.0
+ L1146.1,472.7 M1146.3,516.0 L1146.3,478.5 M1146.5,516.0 L1146.5,486.2 M1146.7,516.0 L1146.7,497.1 M1146.9,516.0
+ L1146.9,515.9 M1147.0,516.0 M1147.2,516.0 M1147.4,516.0 L1147.4,497.9 M1147.6,516.0 L1147.6,486.9 M1147.8,516.0
+ L1147.8,479.3 M1147.9,516.0 L1147.9,473.6 M1148.1,516.0 L1148.1,469.1 M1148.3,516.0 L1148.3,465.5 M1148.5,516.0
+ L1148.5,462.6 M1148.7,516.0 L1148.7,460.2 M1148.8,516.0 L1148.8,458.3 M1149.0,516.0 L1149.0,456.7 M1149.2,516.0
+ L1149.2,455.5 M1149.4,516.0 L1149.4,454.6 M1149.6,516.0 L1149.6,454.0 M1149.7,516.0 L1149.7,453.6 M1149.9,516.0
+ L1149.9,453.6 M1150.1,516.0 L1150.1,453.8 M1150.3,516.0 L1150.3,454.3 M1150.5,516.0 L1150.5,455.0 M1150.6,516.0
+ L1150.6,456.0 M1150.8,516.0 L1150.8,457.4 M1151.0,516.0 L1151.0,459.1 M1151.2,516.0 L1151.2,461.2 M1151.4,516.0
+ L1151.4,463.7 M1151.5,516.0 L1151.5,466.7 M1151.7,516.0 L1151.7,470.4 M1151.9,516.0 L1151.9,475.0 M1152.1,516.0
+ L1152.1,480.8 M1152.3,516.0 L1152.3,488.5 M1152.4,516.0 L1152.4,499.4 M1152.6,516.0 M1152.8,516.0 M1153.0,516.0
+ M1153.2,516.0 L1153.2,500.2 M1153.3,516.0 L1153.3,489.2 M1153.5,516.0 L1153.5,481.6 M1153.7,516.0 L1153.7,475.9
+ M1153.9,516.0 L1153.9,471.5 M1154.1,516.0 L1154.1,467.9 M1154.2,516.0 L1154.2,464.9 M1154.4,516.0 L1154.4,462.5
+ M1154.6,516.0 L1154.6,460.6 M1154.8,516.0 L1154.8,459.0 M1155.0,516.0 L1155.0,457.8 M1155.2,516.0 L1155.2,456.9
+ M1155.3,516.0 L1155.3,456.3 M1155.5,516.0 L1155.5,455.9 M1155.7,516.0 L1155.7,455.9 M1155.9,516.0 L1155.9,456.1
+ M1156.1,516.0 L1156.1,456.5 M1156.2,516.0 L1156.2,457.3 M1156.4,516.0 L1156.4,458.3 M1156.6,516.0 L1156.6,459.7
+ M1156.8,516.0 L1156.8,461.4 M1157.0,516.0 L1157.0,463.4 M1157.1,516.0 L1157.1,466.0 M1157.3,516.0 L1157.3,469.0
+ M1157.5,516.0 L1157.5,472.7 M1157.7,516.0 L1157.7,477.3 M1157.9,516.0 L1157.9,483.1 M1158.0,516.0 L1158.0,490.7
+ M1158.2,516.0 L1158.2,501.7 M1158.4,516.0 M1158.6,516.0 M1158.8,516.0 M1158.9,516.0 L1158.9,502.5 M1159.1,516.0
+ L1159.1,491.5 M1159.3,516.0 L1159.3,483.9 M1159.5,516.0 L1159.5,478.2 M1159.7,516.0 L1159.7,473.7 M1159.8,516.0
+ L1159.8,470.1 M1160.0,516.0 L1160.0,467.2 M1160.2,516.0 L1160.2,464.8 M1160.4,516.0 L1160.4,462.8 M1160.6,516.0
+ L1160.6,461.3 M1160.7,516.0 L1160.7,460.0 M1160.9,516.0 L1160.9,459.1 M1161.1,516.0 L1161.1,458.5 M1161.3,516.0
+ L1161.3,458.2 M1161.5,516.0 L1161.5,458.1 M1161.6,516.0 L1161.6,458.3 M1161.8,516.0 L1161.8,458.8 M1162.0,516.0
+ L1162.0,459.5 M1162.2,516.0 L1162.2,460.5 M1162.4,516.0 L1162.4,461.9 M1162.5,516.0 L1162.5,463.6 M1162.7,516.0
+ L1162.7,465.7 M1162.9,516.0 L1162.9,468.2 M1163.1,516.0 L1163.1,471.2 M1163.3,516.0 L1163.3,474.9 M1163.5,516.0
+ L1163.5,479.5 M1163.6,516.0 L1163.6,485.3 M1163.8,516.0 L1163.8,493.0 M1164.0,516.0 L1164.0,503.9 M1164.2,516.0
+ M1164.4,516.0 M1164.5,516.0 M1164.7,516.0 L1164.7,504.7 M1164.9,516.0 L1164.9,493.7 M1165.1,516.0 L1165.1,486.1
+ M1165.3,516.0 L1165.3,480.4 M1165.4,516.0 L1165.4,475.9 M1165.6,516.0 L1165.6,472.3 M1165.8,516.0 L1165.8,469.4
+ M1166.0,516.0 L1166.0,467.0 M1166.2,516.0 L1166.2,465.0 M1166.3,516.0 L1166.3,463.4 M1166.5,516.0 L1166.5,462.2
+ M1166.7,516.0 L1166.7,461.3 M1166.9,516.0 L1166.9,460.7 M1167.1,516.0 L1167.1,460.4 M1167.2,516.0 L1167.2,460.3
+ M1167.4,516.0 L1167.4,460.5 M1167.6,516.0 L1167.6,460.9 M1167.8,516.0 L1167.8,461.7 M1168.0,516.0 L1168.0,462.7
+ M1168.1,516.0 L1168.1,464.1 M1168.3,516.0 L1168.3,465.7 M1168.5,516.0 L1168.5,467.8 M1168.7,516.0 L1168.7,470.3
+ M1168.9,516.0 L1168.9,473.4 M1169.0,516.0 L1169.0,477.1 M1169.2,516.0 L1169.2,481.7 M1169.4,516.0 L1169.4,487.5
+ M1169.6,516.0 L1169.6,495.1 M1169.8,516.0 L1169.8,506.0 M1169.9,516.0 M1170.1,516.0 M1170.3,516.0 M1170.5,516.0
+ L1170.5,506.8 M1170.7,516.0 L1170.7,495.8 M1170.8,516.0 L1170.8,488.2 M1171.0,516.0 L1171.0,482.5 M1171.2,516.0
+ L1171.2,478.0 M1171.4,516.0 L1171.4,474.4 M1171.6,516.0 L1171.6,471.5 M1171.8,516.0 L1171.8,469.1 M1171.9,516.0
+ L1171.9,467.1 M1172.1,516.0 L1172.1,465.6 M1172.3,516.0 L1172.3,464.3 M1172.5,516.0 L1172.5,463.4 M1172.7,516.0
+ L1172.7,462.8 M1172.8,516.0 L1172.8,462.5 M1173.0,516.0 L1173.0,462.4 M1173.2,516.0 L1173.2,462.6 M1173.4,516.0
+ L1173.4,463.1 M1173.6,516.0 L1173.6,463.8 M1173.7,516.0 L1173.7,464.8 M1173.9,516.0 L1173.9,466.2 M1174.1,516.0
+ L1174.1,467.8 M1174.3,516.0 L1174.3,469.9 M1174.5,516.0 L1174.5,472.4 M1174.6,516.0 L1174.6,475.5 M1174.8,516.0
+ L1174.8,479.2 M1175.0,516.0 L1175.0,483.8 M1175.2,516.0 L1175.2,489.5 M1175.4,516.0 L1175.4,497.2 M1175.5,516.0
+ L1175.5,508.1 M1175.7,516.0 M1175.9,516.0 '/></g>
+ </g>
+ <g id="gnuplot_plot_2b" ><title>gnuplot_plot_2b</title>
+<g fill="none" color="black" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,516.0 L1175.9,516.0 '/></g>
+ </g>
+<g fill="none" color="#FFFFFF" stroke="rgb( 0, 0, 0)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(916.1,506.6)" stroke="none" fill="rgb(0,0,0)" font-family="Microsoft Sans Serif:Bold" font-size="10.00" text-anchor="start">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >B = 1.727</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 38, 38, 38)' d='M714.0,516.0 L1175.9,516.0 M714.0,84.1 L1175.9,84.1 M714.0,516.0 L714.0,84.1 M1175.9,516.0 L1175.9,84.1
+ '/></g>
+<g fill="none" color="black" stroke="rgb( 38, 38, 38)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+</g>
+</svg>
+
diff --git a/chapter04/win_gauss.svg b/chapter04/win_gauss.svg
new file mode 100644
index 0000000..dba104a
--- /dev/null
+++ b/chapter04/win_gauss.svg
@@ -0,0 +1,1604 @@
+<?xml version="1.0" encoding="windows-1252" standalone="no"?>
+<svg
+ viewBox="0 0 1200 600"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+>
+
+<title>Window function and its Fourier transform &#8211; Gaussian (sigma = 0.4)</title>
+<desc>Produced by GNUPLOT 5.2 patchlevel 6 </desc>
+
+<g id="gnuplot_canvas">
+
+<rect x="0" y="0" width="1200" height="600" fill="#ffffff"/>
+<defs>
+
+ <circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
+ <path id='gpPt0' stroke-width='0.179' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
+ <path id='gpPt1' stroke-width='0.179' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
+ <path id='gpPt2' stroke-width='0.179' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
+ <rect id='gpPt3' stroke-width='0.179' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
+ <rect id='gpPt4' stroke-width='0.179' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
+ <circle id='gpPt5' stroke-width='0.179' stroke='currentColor' cx='0' cy='0' r='1'/>
+ <use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
+ <path id='gpPt7' stroke-width='0.179' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
+ <use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
+ <use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
+ <use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
+ <use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
+ <use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
+ <path id='gpPt13' stroke-width='0.179' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
+ <use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
+ <filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
+ <feFlood flood-color='#FFFFFF' flood-opacity='1' result='bgnd'/>
+ <feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
+ </filter>
+ <filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
+ <feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
+ <feComposite in='SourceGraphic' in2='grey' operator='atop'/>
+ </filter>
+</defs>
+<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g stroke='none' shape-rendering='crispEdges'>
+ <polygon fill = 'rgb(255, 255, 255)' points = '96.0,516.0 557.8,516.0 557.8,84.2 96.0,84.2 '/>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,516.0 L557.9,516.0 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,516.0 L111.6,516.0 M557.9,516.0 L542.3,516.0 '/> <g transform="translate(85.5,522.5)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,474.9 L557.9,474.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,474.9 L111.6,474.9 M557.9,474.9 L542.3,474.9 '/> <g transform="translate(85.5,481.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.1</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,433.7 L557.9,433.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,433.7 L111.6,433.7 M557.9,433.7 L542.3,433.7 '/> <g transform="translate(85.5,440.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.2</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,392.6 L557.9,392.6 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,392.6 L111.6,392.6 M557.9,392.6 L542.3,392.6 '/> <g transform="translate(85.5,399.1)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.3</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,351.5 L557.9,351.5 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,351.5 L111.6,351.5 M557.9,351.5 L542.3,351.5 '/> <g transform="translate(85.5,358.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.4</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,310.3 L557.9,310.3 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,310.3 L111.6,310.3 M557.9,310.3 L542.3,310.3 '/> <g transform="translate(85.5,316.8)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.5</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,269.2 L557.9,269.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,269.2 L111.6,269.2 M557.9,269.2 L542.3,269.2 '/> <g transform="translate(85.5,275.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.6</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,228.1 L557.9,228.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,228.1 L111.6,228.1 M557.9,228.1 L542.3,228.1 '/> <g transform="translate(85.5,234.6)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.7</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,186.9 L557.9,186.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,186.9 L111.6,186.9 M557.9,186.9 L542.3,186.9 '/> <g transform="translate(85.5,193.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.8</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,145.8 L557.9,145.8 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,145.8 L111.6,145.8 M557.9,145.8 L542.3,145.8 '/> <g transform="translate(85.5,152.3)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.9</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,104.7 L557.9,104.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,104.7 L111.6,104.7 M557.9,104.7 L542.3,104.7 '/> <g transform="translate(85.5,111.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >1</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,516.0 L96.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,516.0 L96.0,500.4 M96.0,84.1 L96.0,99.7 '/> <g transform="translate(96.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" > 0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M153.7,516.0 L153.7,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M153.7,516.0 L153.7,500.4 M153.7,84.1 L153.7,99.7 '/> <g transform="translate(153.7,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M211.5,516.0 L211.5,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M211.5,516.0 L211.5,500.4 M211.5,84.1 L211.5,99.7 '/> <g transform="translate(211.5,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M269.2,516.0 L269.2,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M269.2,516.0 L269.2,500.4 M269.2,84.1 L269.2,99.7 '/> <g transform="translate(269.2,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M327.0,516.0 L327.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M327.0,516.0 L327.0,500.4 M327.0,84.1 L327.0,99.7 '/> <g transform="translate(327.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M384.7,516.0 L384.7,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M384.7,516.0 L384.7,500.4 M384.7,84.1 L384.7,99.7 '/> <g transform="translate(384.7,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M442.4,516.0 L442.4,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M442.4,516.0 L442.4,500.4 M442.4,84.1 L442.4,99.7 '/> <g transform="translate(442.4,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M500.2,516.0 L500.2,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M500.2,516.0 L500.2,500.4 M500.2,84.1 L500.2,99.7 '/> <g transform="translate(500.2,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M557.9,516.0 L557.9,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M557.9,516.0 L557.9,500.4 M557.9,84.1 L557.9,99.7 '/> <g transform="translate(557.9,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text xml:space="preserve"><tspan font-family="Microsoft Sans Serif" font-weight="bold" xml:space="preserve"> N</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(40.6,300.1) rotate(-90)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >amplitude</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(326.9,581.3)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >samples</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(326.9,39.9)" stroke="none" fill="rgb(0,0,0)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text>Gaussian window (&#963; = 0.4)</text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+ <g id="gnuplot_plot_1a" ><title>gnuplot_plot_1a</title>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g stroke='none' shape-rendering='crispEdges'>
+ <polygon fill = 'rgb( 0, 102, 153)' points = '96.0,516.0 96.0,497.9 96.9,497.5 97.8,497.0 98.7,496.6 99.6,496.1 100.5,495.6 101.4,495.1 102.3,494.6 103.2,494.1 104.1,493.6 105.0,493.0 105.9,492.5 106.8,491.9 107.7,491.4 108.6,490.8
+109.5,490.2 110.4,489.6 111.3,489.0 112.2,488.4 113.1,487.8 114.0,487.1 114.9,486.5 115.8,485.8 116.7,485.1 117.7,484.4 118.6,483.7 119.5,483.0 120.4,482.3 121.3,481.5 122.2,480.8 123.1,480.0
+124.0,479.2 124.9,478.4 125.8,477.6 126.7,476.8 127.6,475.9 128.5,475.1 129.4,474.2 130.3,473.3 131.2,472.4 132.1,471.5 133.0,470.6 133.9,469.7 134.8,468.7 135.7,467.8 136.6,466.8 137.5,465.8
+138.4,464.8 139.3,463.7 140.2,462.7 141.1,461.6 142.0,460.5 142.9,459.5 143.8,458.3 144.7,457.2 145.6,456.1 146.5,454.9 147.4,453.8 148.3,452.6 149.2,451.4 150.1,450.1 151.0,448.9 151.9,447.6
+152.8,446.4 153.7,445.1 154.6,443.8 155.5,442.4 156.4,441.1 157.3,439.7 158.2,438.4 159.2,437.0 160.1,435.6 161.0,434.1 161.9,432.7 162.8,431.2 163.7,429.8 164.6,428.3 165.5,426.7 166.4,425.2
+167.3,423.7 168.2,422.1 169.1,420.5 170.0,418.9 170.9,417.3 171.8,415.6 172.7,414.0 173.6,412.3 174.5,410.6 175.4,408.9 176.3,407.2 177.2,405.5 178.1,403.7 179.0,401.9 179.9,400.1 180.8,398.3
+181.7,396.5 182.6,394.6 183.5,392.8 184.4,390.9 185.3,389.0 186.2,387.1 187.1,385.2 188.0,383.2 188.9,381.3 189.8,379.3 190.7,377.3 191.6,375.3 192.5,373.3 193.4,371.3 194.3,369.2 195.2,367.1
+196.1,365.1 197.0,363.0 197.9,360.9 198.8,358.7 199.7,356.6 200.6,354.5 201.6,352.3 202.5,350.1 203.4,347.9 204.3,345.7 205.2,343.5 206.1,341.3 207.0,339.0 207.9,336.8 208.8,334.5 209.7,332.3
+210.6,330.0 211.5,327.7 212.4,325.4 213.3,323.1 214.2,320.7 215.1,318.4 216.0,316.1 216.9,313.7 217.8,311.4 218.7,309.0 219.6,306.6 220.5,304.2 221.4,301.9 222.3,299.5 223.2,297.1 224.1,294.7
+225.0,292.2 225.9,289.8 226.8,287.4 227.7,285.0 228.6,282.6 229.5,280.1 230.4,277.7 231.3,275.3 232.2,272.8 233.1,270.4 234.0,268.0 234.9,265.5 235.8,263.1 236.7,260.7 237.6,258.2 238.5,255.8
+239.4,253.4 240.3,250.9 241.2,248.5 242.1,246.1 243.1,243.7 244.0,241.3 244.9,238.9 245.8,236.5 246.7,234.1 247.6,231.7 248.5,229.3 249.4,226.9 250.3,224.5 251.2,222.2 252.1,219.8 253.0,217.5
+253.9,215.2 254.8,212.8 255.7,210.5 256.6,208.2 257.5,206.0 258.4,203.7 259.3,201.4 260.2,199.2 261.1,197.0 262.0,194.8 262.9,192.6 263.8,190.4 264.7,188.2 265.6,186.1 266.5,183.9 267.4,181.8
+268.3,179.7 269.2,177.6 270.1,175.6 271.0,173.6 271.9,171.5 272.8,169.5 273.7,167.6 274.6,165.6 275.5,163.7 276.4,161.8 277.3,159.9 278.2,158.1 279.1,156.2 280.0,154.4 280.9,152.6 281.8,150.9
+282.7,149.2 283.6,147.5 284.5,145.8 285.5,144.1 286.4,142.5 287.3,140.9 288.2,139.4 289.1,137.9 290.0,136.4 290.9,134.9 291.8,133.4 292.7,132.0 293.6,130.7 294.5,129.3 295.4,128.0 296.3,126.7
+297.2,125.5 298.1,124.3 299.0,123.1 299.9,121.9 300.8,120.8 301.7,119.8 302.6,118.7 303.5,117.7 304.4,116.7 305.3,115.8 306.2,114.9 307.1,114.1 308.0,113.2 308.9,112.4 309.8,111.7 310.7,111.0
+311.6,110.3 312.5,109.7 313.4,109.1 314.3,108.5 315.2,108.0 316.1,107.5 317.0,107.0 317.9,106.6 318.8,106.3 319.7,105.9 320.6,105.6 321.5,105.4 322.4,105.2 323.3,105.0 324.2,104.8 325.1,104.7
+326.0,104.7 327.0,104.7 327.9,104.7 328.8,104.7 329.7,104.8 330.6,105.0 331.5,105.2 332.4,105.4 333.3,105.6 334.2,105.9 335.1,106.3 336.0,106.6 336.9,107.0 337.8,107.5 338.7,108.0 339.6,108.5
+340.5,109.1 341.4,109.7 342.3,110.3 343.2,111.0 344.1,111.7 345.0,112.4 345.9,113.2 346.8,114.1 347.7,114.9 348.6,115.8 349.5,116.7 350.4,117.7 351.3,118.7 352.2,119.8 353.1,120.8 354.0,121.9
+354.9,123.1 355.8,124.3 356.7,125.5 357.6,126.7 358.5,128.0 359.4,129.3 360.3,130.7 361.2,132.0 362.1,133.4 363.0,134.9 363.9,136.4 364.8,137.9 365.7,139.4 366.6,140.9 367.5,142.5 368.4,144.1
+369.4,145.8 370.3,147.5 371.2,149.2 372.1,150.9 373.0,152.6 373.9,154.4 374.8,156.2 375.7,158.1 376.6,159.9 377.5,161.8 378.4,163.7 379.3,165.6 380.2,167.6 381.1,169.5 382.0,171.5 382.9,173.6
+383.8,175.6 384.7,177.6 385.6,179.7 386.5,181.8 387.4,183.9 388.3,186.1 389.2,188.2 390.1,190.4 391.0,192.6 391.9,194.8 392.8,197.0 393.7,199.2 394.6,201.4 395.5,203.7 396.4,206.0 397.3,208.2
+398.2,210.5 399.1,212.8 400.0,215.2 400.9,217.5 401.8,219.8 402.7,222.2 403.6,224.5 404.5,226.9 405.4,229.3 406.3,231.7 407.2,234.1 408.1,236.5 409.0,238.9 409.9,241.3 410.8,243.7 411.8,246.1
+412.7,248.5 413.6,250.9 414.5,253.4 415.4,255.8 416.3,258.2 417.2,260.7 418.1,263.1 419.0,265.5 419.9,268.0 420.8,270.4 421.7,272.8 422.6,275.3 423.5,277.7 424.4,280.1 425.3,282.6 426.2,285.0
+427.1,287.4 428.0,289.8 428.9,292.2 429.8,294.7 430.7,297.1 431.6,299.5 432.5,301.9 433.4,304.2 434.3,306.6 435.2,309.0 436.1,311.4 437.0,313.7 437.9,316.1 438.8,318.4 439.7,320.7 440.6,323.1
+441.5,325.4 442.4,327.7 443.3,330.0 444.2,332.3 445.1,334.5 446.0,336.8 446.9,339.0 447.8,341.3 448.7,343.5 449.6,345.7 450.5,347.9 451.4,350.1 452.3,352.3 453.3,354.5 454.2,356.6 455.1,358.7
+456.0,360.9 456.9,363.0 457.8,365.1 458.7,367.1 459.6,369.2 460.5,371.3 461.4,373.3 462.3,375.3 463.2,377.3 464.1,379.3 465.0,381.3 465.9,383.2 466.8,385.2 467.7,387.1 468.6,389.0 469.5,390.9
+470.4,392.8 471.3,394.6 472.2,396.5 473.1,398.3 474.0,400.1 474.9,401.9 475.8,403.7 476.7,405.5 477.6,407.2 478.5,408.9 479.4,410.6 480.3,412.3 481.2,414.0 482.1,415.6 483.0,417.3 483.9,418.9
+484.8,420.5 485.7,422.1 486.6,423.7 487.5,425.2 488.4,426.7 489.3,428.3 490.2,429.8 491.1,431.2 492.0,432.7 492.9,434.1 493.8,435.6 494.7,437.0 495.7,438.4 496.6,439.7 497.5,441.1 498.4,442.4
+499.3,443.8 500.2,445.1 501.1,446.4 502.0,447.6 502.9,448.9 503.8,450.1 504.7,451.4 505.6,452.6 506.5,453.8 507.4,454.9 508.3,456.1 509.2,457.2 510.1,458.3 511.0,459.5 511.9,460.5 512.8,461.6
+513.7,462.7 514.6,463.7 515.5,464.8 516.4,465.8 517.3,466.8 518.2,467.8 519.1,468.7 520.0,469.7 520.9,470.6 521.8,471.5 522.7,472.4 523.6,473.3 524.5,474.2 525.4,475.1 526.3,475.9 527.2,476.8
+528.1,477.6 529.0,478.4 529.9,479.2 530.8,480.0 531.7,480.8 532.6,481.5 533.5,482.3 534.4,483.0 535.3,483.7 536.2,484.4 537.2,485.1 538.1,485.8 539.0,486.5 539.9,487.1 540.8,487.8 541.7,488.4
+542.6,489.0 543.5,489.6 544.4,490.2 545.3,490.8 546.2,491.4 547.1,491.9 548.0,492.5 548.9,493.0 549.8,493.6 550.7,494.1 551.6,494.6 552.5,495.1 553.4,495.6 554.3,496.1 555.2,496.6 556.1,497.0
+557.0,497.5 557.9,497.9 557.9,516.0 557.0,516.0 556.1,516.0 555.2,516.0 554.3,516.0 553.4,516.0 552.5,516.0 551.6,516.0 550.7,516.0 549.8,516.0 548.9,516.0 548.0,516.0 547.1,516.0 546.2,516.0
+545.3,516.0 544.4,516.0 543.5,516.0 542.6,516.0 541.7,516.0 540.8,516.0 539.9,516.0 539.0,516.0 538.1,516.0 537.2,516.0 536.2,516.0 535.3,516.0 534.4,516.0 533.5,516.0 532.6,516.0 531.7,516.0
+530.8,516.0 529.9,516.0 529.0,516.0 528.1,516.0 527.2,516.0 526.3,516.0 525.4,516.0 524.5,516.0 523.6,516.0 522.7,516.0 521.8,516.0 520.9,516.0 520.0,516.0 519.1,516.0 518.2,516.0 517.3,516.0
+516.4,516.0 515.5,516.0 514.6,516.0 513.7,516.0 512.8,516.0 511.9,516.0 511.0,516.0 510.1,516.0 509.2,516.0 508.3,516.0 507.4,516.0 506.5,516.0 505.6,516.0 504.7,516.0 503.8,516.0 502.9,516.0
+502.0,516.0 501.1,516.0 500.2,516.0 499.3,516.0 498.4,516.0 497.5,516.0 496.6,516.0 495.7,516.0 494.7,516.0 493.8,516.0 492.9,516.0 492.0,516.0 491.1,516.0 490.2,516.0 489.3,516.0 488.4,516.0
+487.5,516.0 486.6,516.0 485.7,516.0 484.8,516.0 483.9,516.0 483.0,516.0 482.1,516.0 481.2,516.0 480.3,516.0 479.4,516.0 478.5,516.0 477.6,516.0 476.7,516.0 475.8,516.0 474.9,516.0 474.0,516.0
+473.1,516.0 472.2,516.0 471.3,516.0 470.4,516.0 469.5,516.0 468.6,516.0 467.7,516.0 466.8,516.0 465.9,516.0 465.0,516.0 464.1,516.0 463.2,516.0 462.3,516.0 461.4,516.0 460.5,516.0 459.6,516.0
+458.7,516.0 457.8,516.0 456.9,516.0 456.0,516.0 455.1,516.0 454.2,516.0 453.3,516.0 452.3,516.0 451.4,516.0 450.5,516.0 449.6,516.0 448.7,516.0 447.8,516.0 446.9,516.0 446.0,516.0 445.1,516.0
+444.2,516.0 443.3,516.0 442.4,516.0 441.5,516.0 440.6,516.0 439.7,516.0 438.8,516.0 437.9,516.0 437.0,516.0 436.1,516.0 435.2,516.0 434.3,516.0 433.4,516.0 432.5,516.0 431.6,516.0 430.7,516.0
+429.8,516.0 428.9,516.0 428.0,516.0 427.1,516.0 426.2,516.0 425.3,516.0 424.4,516.0 423.5,516.0 422.6,516.0 421.7,516.0 420.8,516.0 419.9,516.0 419.0,516.0 418.1,516.0 417.2,516.0 416.3,516.0
+415.4,516.0 414.5,516.0 413.6,516.0 412.7,516.0 411.8,516.0 410.8,516.0 409.9,516.0 409.0,516.0 408.1,516.0 407.2,516.0 406.3,516.0 405.4,516.0 404.5,516.0 403.6,516.0 402.7,516.0 401.8,516.0
+400.9,516.0 400.0,516.0 399.1,516.0 398.2,516.0 397.3,516.0 396.4,516.0 395.5,516.0 394.6,516.0 393.7,516.0 392.8,516.0 391.9,516.0 391.0,516.0 390.1,516.0 389.2,516.0 388.3,516.0 387.4,516.0
+386.5,516.0 385.6,516.0 384.7,516.0 383.8,516.0 382.9,516.0 382.0,516.0 381.1,516.0 380.2,516.0 379.3,516.0 378.4,516.0 377.5,516.0 376.6,516.0 375.7,516.0 374.8,516.0 373.9,516.0 373.0,516.0
+372.1,516.0 371.2,516.0 370.3,516.0 369.4,516.0 368.4,516.0 367.5,516.0 366.6,516.0 365.7,516.0 364.8,516.0 363.9,516.0 363.0,516.0 362.1,516.0 361.2,516.0 360.3,516.0 359.4,516.0 358.5,516.0
+357.6,516.0 356.7,516.0 355.8,516.0 354.9,516.0 354.0,516.0 353.1,516.0 352.2,516.0 351.3,516.0 350.4,516.0 349.5,516.0 348.6,516.0 347.7,516.0 346.8,516.0 345.9,516.0 345.0,516.0 344.1,516.0
+343.2,516.0 342.3,516.0 341.4,516.0 340.5,516.0 339.6,516.0 338.7,516.0 337.8,516.0 336.9,516.0 336.0,516.0 335.1,516.0 334.2,516.0 333.3,516.0 332.4,516.0 331.5,516.0 330.6,516.0 329.7,516.0
+328.8,516.0 327.9,516.0 327.0,516.0 326.0,516.0 325.1,516.0 324.2,516.0 323.3,516.0 322.4,516.0 321.5,516.0 320.6,516.0 319.7,516.0 318.8,516.0 317.9,516.0 317.0,516.0 316.1,516.0 315.2,516.0
+314.3,516.0 313.4,516.0 312.5,516.0 311.6,516.0 310.7,516.0 309.8,516.0 308.9,516.0 308.0,516.0 307.1,516.0 306.2,516.0 305.3,516.0 304.4,516.0 303.5,516.0 302.6,516.0 301.7,516.0 300.8,516.0
+299.9,516.0 299.0,516.0 298.1,516.0 297.2,516.0 296.3,516.0 295.4,516.0 294.5,516.0 293.6,516.0 292.7,516.0 291.8,516.0 290.9,516.0 290.0,516.0 289.1,516.0 288.2,516.0 287.3,516.0 286.4,516.0
+285.5,516.0 284.5,516.0 283.6,516.0 282.7,516.0 281.8,516.0 280.9,516.0 280.0,516.0 279.1,516.0 278.2,516.0 277.3,516.0 276.4,516.0 275.5,516.0 274.6,516.0 273.7,516.0 272.8,516.0 271.9,516.0
+271.0,516.0 270.1,516.0 269.2,516.0 268.3,516.0 267.4,516.0 266.5,516.0 265.6,516.0 264.7,516.0 263.8,516.0 262.9,516.0 262.0,516.0 261.1,516.0 260.2,516.0 259.3,516.0 258.4,516.0 257.5,516.0
+256.6,516.0 255.7,516.0 254.8,516.0 253.9,516.0 253.0,516.0 252.1,516.0 251.2,516.0 250.3,516.0 249.4,516.0 248.5,516.0 247.6,516.0 246.7,516.0 245.8,516.0 244.9,516.0 244.0,516.0 243.1,516.0
+242.1,516.0 241.2,516.0 240.3,516.0 239.4,516.0 238.5,516.0 237.6,516.0 236.7,516.0 235.8,516.0 234.9,516.0 234.0,516.0 233.1,516.0 232.2,516.0 231.3,516.0 230.4,516.0 229.5,516.0 228.6,516.0
+227.7,516.0 226.8,516.0 225.9,516.0 225.0,516.0 224.1,516.0 223.2,516.0 222.3,516.0 221.4,516.0 220.5,516.0 219.6,516.0 218.7,516.0 217.8,516.0 216.9,516.0 216.0,516.0 215.1,516.0 214.2,516.0
+213.3,516.0 212.4,516.0 211.5,516.0 210.6,516.0 209.7,516.0 208.8,516.0 207.9,516.0 207.0,516.0 206.1,516.0 205.2,516.0 204.3,516.0 203.4,516.0 202.5,516.0 201.6,516.0 200.6,516.0 199.7,516.0
+198.8,516.0 197.9,516.0 197.0,516.0 196.1,516.0 195.2,516.0 194.3,516.0 193.4,516.0 192.5,516.0 191.6,516.0 190.7,516.0 189.8,516.0 188.9,516.0 188.0,516.0 187.1,516.0 186.2,516.0 185.3,516.0
+184.4,516.0 183.5,516.0 182.6,516.0 181.7,516.0 180.8,516.0 179.9,516.0 179.0,516.0 178.1,516.0 177.2,516.0 176.3,516.0 175.4,516.0 174.5,516.0 173.6,516.0 172.7,516.0 171.8,516.0 170.9,516.0
+170.0,516.0 169.1,516.0 168.2,516.0 167.3,516.0 166.4,516.0 165.5,516.0 164.6,516.0 163.7,516.0 162.8,516.0 161.9,516.0 161.0,516.0 160.1,516.0 159.2,516.0 158.2,516.0 157.3,516.0 156.4,516.0
+155.5,516.0 154.6,516.0 153.7,516.0 152.8,516.0 151.9,516.0 151.0,516.0 150.1,516.0 149.2,516.0 148.3,516.0 147.4,516.0 146.5,516.0 145.6,516.0 144.7,516.0 143.8,516.0 142.9,516.0 142.0,516.0
+141.1,516.0 140.2,516.0 139.3,516.0 138.4,516.0 137.5,516.0 136.6,516.0 135.7,516.0 134.8,516.0 133.9,516.0 133.0,516.0 132.1,516.0 131.2,516.0 130.3,516.0 129.4,516.0 128.5,516.0 127.6,516.0
+126.7,516.0 125.8,516.0 124.9,516.0 124.0,516.0 123.1,516.0 122.2,516.0 121.3,516.0 120.4,516.0 119.5,516.0 118.6,516.0 117.7,516.0 116.7,516.0 115.8,516.0 114.9,516.0 114.0,516.0 113.1,516.0
+112.2,516.0 111.3,516.0 110.4,516.0 109.5,516.0 108.6,516.0 107.7,516.0 106.8,516.0 105.9,516.0 105.0,516.0 104.1,516.0 103.2,516.0 102.3,516.0 101.4,516.0 100.5,516.0 99.6,516.0 98.7,516.0
+97.8,516.0 96.9,516.0 96.0,516.0 96.0,516.0 '/>
+ </g>
+ <path stroke='rgb( 0, 102, 153)' d='M96.0,516.0 L96.0,497.9 L96.9,497.5 L97.8,497.0 L98.7,496.6 L99.6,496.1 L100.5,495.6 L101.4,495.1
+ L102.3,494.6 L103.2,494.1 L104.1,493.6 L105.0,493.0 L105.9,492.5 L106.8,491.9 L107.7,491.4 L108.6,490.8
+ L109.5,490.2 L110.4,489.6 L111.3,489.0 L112.2,488.4 L113.1,487.8 L114.0,487.1 L114.9,486.5 L115.8,485.8
+ L116.7,485.1 L117.7,484.4 L118.6,483.7 L119.5,483.0 L120.4,482.3 L121.3,481.5 L122.2,480.8 L123.1,480.0
+ L124.0,479.2 L124.9,478.4 L125.8,477.6 L126.7,476.8 L127.6,475.9 L128.5,475.1 L129.4,474.2 L130.3,473.3
+ L131.2,472.4 L132.1,471.5 L133.0,470.6 L133.9,469.7 L134.8,468.7 L135.7,467.8 L136.6,466.8 L137.5,465.8
+ L138.4,464.8 L139.3,463.7 L140.2,462.7 L141.1,461.6 L142.0,460.5 L142.9,459.5 L143.8,458.3 L144.7,457.2
+ L145.6,456.1 L146.5,454.9 L147.4,453.8 L148.3,452.6 L149.2,451.4 L150.1,450.1 L151.0,448.9 L151.9,447.6
+ L152.8,446.4 L153.7,445.1 L154.6,443.8 L155.5,442.4 L156.4,441.1 L157.3,439.7 L158.2,438.4 L159.2,437.0
+ L160.1,435.6 L161.0,434.1 L161.9,432.7 L162.8,431.2 L163.7,429.8 L164.6,428.3 L165.5,426.7 L166.4,425.2
+ L167.3,423.7 L168.2,422.1 L169.1,420.5 L170.0,418.9 L170.9,417.3 L171.8,415.6 L172.7,414.0 L173.6,412.3
+ L174.5,410.6 L175.4,408.9 L176.3,407.2 L177.2,405.5 L178.1,403.7 L179.0,401.9 L179.9,400.1 L180.8,398.3
+ L181.7,396.5 L182.6,394.6 L183.5,392.8 L184.4,390.9 L185.3,389.0 L186.2,387.1 L187.1,385.2 L188.0,383.2
+ L188.9,381.3 L189.8,379.3 L190.7,377.3 L191.6,375.3 L192.5,373.3 L193.4,371.3 L194.3,369.2 L195.2,367.1
+ L196.1,365.1 L197.0,363.0 L197.9,360.9 L198.8,358.7 L199.7,356.6 L200.6,354.5 L201.6,352.3 L202.5,350.1
+ L203.4,347.9 L204.3,345.7 L205.2,343.5 L206.1,341.3 L207.0,339.0 L207.9,336.8 L208.8,334.5 L209.7,332.3
+ L210.6,330.0 L211.5,327.7 L212.4,325.4 L213.3,323.1 L214.2,320.7 L215.1,318.4 L216.0,316.1 L216.9,313.7
+ L217.8,311.4 L218.7,309.0 L219.6,306.6 L220.5,304.2 L221.4,301.9 L222.3,299.5 L223.2,297.1 L224.1,294.7
+ L225.0,292.2 L225.9,289.8 L226.8,287.4 L227.7,285.0 L228.6,282.6 L229.5,280.1 L230.4,277.7 L231.3,275.3
+ L232.2,272.8 L233.1,270.4 L234.0,268.0 L234.9,265.5 L235.8,263.1 L236.7,260.7 L237.6,258.2 L238.5,255.8
+ L239.4,253.4 L240.3,250.9 L241.2,248.5 L242.1,246.1 L243.1,243.7 L244.0,241.3 L244.9,238.9 L245.8,236.5
+ L246.7,234.1 L247.6,231.7 L248.5,229.3 L249.4,226.9 L250.3,224.5 L251.2,222.2 L252.1,219.8 L253.0,217.5
+ L253.9,215.2 L254.8,212.8 L255.7,210.5 L256.6,208.2 L257.5,206.0 L258.4,203.7 L259.3,201.4 L260.2,199.2
+ L261.1,197.0 L262.0,194.8 L262.9,192.6 L263.8,190.4 L264.7,188.2 L265.6,186.1 L266.5,183.9 L267.4,181.8
+ L268.3,179.7 L269.2,177.6 L270.1,175.6 L271.0,173.6 L271.9,171.5 L272.8,169.5 L273.7,167.6 L274.6,165.6
+ L275.5,163.7 L276.4,161.8 L277.3,159.9 L278.2,158.1 L279.1,156.2 L280.0,154.4 L280.9,152.6 L281.8,150.9
+ L282.7,149.2 L283.6,147.5 L284.5,145.8 L285.5,144.1 L286.4,142.5 L287.3,140.9 L288.2,139.4 L289.1,137.9
+ L290.0,136.4 L290.9,134.9 L291.8,133.4 L292.7,132.0 L293.6,130.7 L294.5,129.3 L295.4,128.0 L296.3,126.7
+ L297.2,125.5 L298.1,124.3 L299.0,123.1 L299.9,121.9 L300.8,120.8 L301.7,119.8 L302.6,118.7 L303.5,117.7
+ L304.4,116.7 L305.3,115.8 L306.2,114.9 L307.1,114.1 L308.0,113.2 L308.9,112.4 L309.8,111.7 L310.7,111.0
+ L311.6,110.3 L312.5,109.7 L313.4,109.1 L314.3,108.5 L315.2,108.0 L316.1,107.5 L317.0,107.0 L317.9,106.6
+ L318.8,106.3 L319.7,105.9 L320.6,105.6 L321.5,105.4 L322.4,105.2 L323.3,105.0 L324.2,104.8 L325.1,104.7
+ L326.0,104.7 L327.0,104.7 L327.9,104.7 L328.8,104.7 L329.7,104.8 L330.6,105.0 L331.5,105.2 L332.4,105.4
+ L333.3,105.6 L334.2,105.9 L335.1,106.3 L336.0,106.6 L336.9,107.0 L337.8,107.5 L338.7,108.0 L339.6,108.5
+ L340.5,109.1 L341.4,109.7 L342.3,110.3 L343.2,111.0 L344.1,111.7 L345.0,112.4 L345.9,113.2 L346.8,114.1
+ L347.7,114.9 L348.6,115.8 L349.5,116.7 L350.4,117.7 L351.3,118.7 L352.2,119.8 L353.1,120.8 L354.0,121.9
+ L354.9,123.1 L355.8,124.3 L356.7,125.5 L357.6,126.7 L358.5,128.0 L359.4,129.3 L360.3,130.7 L361.2,132.0
+ L362.1,133.4 L363.0,134.9 L363.9,136.4 L364.8,137.9 L365.7,139.4 L366.6,140.9 L367.5,142.5 L368.4,144.1
+ L369.4,145.8 L370.3,147.5 L371.2,149.2 L372.1,150.9 L373.0,152.6 L373.9,154.4 L374.8,156.2 L375.7,158.1
+ L376.6,159.9 L377.5,161.8 L378.4,163.7 L379.3,165.6 L380.2,167.6 L381.1,169.5 L382.0,171.5 L382.9,173.6
+ L383.8,175.6 L384.7,177.6 L385.6,179.7 L386.5,181.8 L387.4,183.9 L388.3,186.1 L389.2,188.2 L390.1,190.4
+ L391.0,192.6 L391.9,194.8 L392.8,197.0 L393.7,199.2 L394.6,201.4 L395.5,203.7 L396.4,206.0 L397.3,208.2
+ L398.2,210.5 L399.1,212.8 L400.0,215.2 L400.9,217.5 L401.8,219.8 L402.7,222.2 L403.6,224.5 L404.5,226.9
+ L405.4,229.3 L406.3,231.7 L407.2,234.1 L408.1,236.5 L409.0,238.9 L409.9,241.3 L410.8,243.7 L411.8,246.1
+ L412.7,248.5 L413.6,250.9 L414.5,253.4 L415.4,255.8 L416.3,258.2 L417.2,260.7 L418.1,263.1 L419.0,265.5
+ L419.9,268.0 L420.8,270.4 L421.7,272.8 L422.6,275.3 L423.5,277.7 L424.4,280.1 L425.3,282.6 L426.2,285.0
+ L427.1,287.4 L428.0,289.8 L428.9,292.2 L429.8,294.7 L430.7,297.1 L431.6,299.5 L432.5,301.9 L433.4,304.2
+ L434.3,306.6 L435.2,309.0 L436.1,311.4 L437.0,313.7 L437.9,316.1 L438.8,318.4 L439.7,320.7 L440.6,323.1
+ L441.5,325.4 L442.4,327.7 L443.3,330.0 L444.2,332.3 L445.1,334.5 L446.0,336.8 L446.9,339.0 L447.8,341.3
+ L448.7,343.5 L449.6,345.7 L450.5,347.9 L451.4,350.1 L452.3,352.3 L453.3,354.5 L454.2,356.6 L455.1,358.7
+ L456.0,360.9 L456.9,363.0 L457.8,365.1 L458.7,367.1 L459.6,369.2 L460.5,371.3 L461.4,373.3 L462.3,375.3
+ L463.2,377.3 L464.1,379.3 L465.0,381.3 L465.9,383.2 L466.8,385.2 L467.7,387.1 L468.6,389.0 L469.5,390.9
+ L470.4,392.8 L471.3,394.6 L472.2,396.5 L473.1,398.3 L474.0,400.1 L474.9,401.9 L475.8,403.7 L476.7,405.5
+ L477.6,407.2 L478.5,408.9 L479.4,410.6 L480.3,412.3 L481.2,414.0 L482.1,415.6 L483.0,417.3 L483.9,418.9
+ L484.8,420.5 L485.7,422.1 L486.6,423.7 L487.5,425.2 L488.4,426.7 L489.3,428.3 L490.2,429.8 L491.1,431.2
+ L492.0,432.7 L492.9,434.1 L493.8,435.6 L494.7,437.0 L495.7,438.4 L496.6,439.7 L497.5,441.1 L498.4,442.4
+ L499.3,443.8 L500.2,445.1 L501.1,446.4 L502.0,447.6 L502.9,448.9 L503.8,450.1 L504.7,451.4 L505.6,452.6
+ L506.5,453.8 L507.4,454.9 L508.3,456.1 L509.2,457.2 L510.1,458.3 L511.0,459.5 L511.9,460.5 L512.8,461.6
+ L513.7,462.7 L514.6,463.7 L515.5,464.8 L516.4,465.8 L517.3,466.8 L518.2,467.8 L519.1,468.7 L520.0,469.7
+ L520.9,470.6 L521.8,471.5 L522.7,472.4 L523.6,473.3 L524.5,474.2 L525.4,475.1 L526.3,475.9 L527.2,476.8
+ L528.1,477.6 L529.0,478.4 L529.9,479.2 L530.8,480.0 L531.7,480.8 L532.6,481.5 L533.5,482.3 L534.4,483.0
+ L535.3,483.7 L536.2,484.4 L537.2,485.1 L538.1,485.8 L539.0,486.5 L539.9,487.1 L540.8,487.8 L541.7,488.4
+ L542.6,489.0 L543.5,489.6 L544.4,490.2 L545.3,490.8 L546.2,491.4 L547.1,491.9 L548.0,492.5 L548.9,493.0
+ L549.8,493.6 L550.7,494.1 L551.6,494.6 L552.5,495.1 L553.4,495.6 L554.3,496.1 L555.2,496.6 L556.1,497.0
+ L557.0,497.5 L557.9,497.9 L557.9,516.0 L557.0,516.0 L556.1,516.0 L555.2,516.0 L554.3,516.0 L553.4,516.0
+ L552.5,516.0 L551.6,516.0 L550.7,516.0 L549.8,516.0 L548.9,516.0 L548.0,516.0 L547.1,516.0 L546.2,516.0
+ L545.3,516.0 L544.4,516.0 L543.5,516.0 L542.6,516.0 L541.7,516.0 L540.8,516.0 L539.9,516.0 L539.0,516.0
+ L538.1,516.0 L537.2,516.0 L536.2,516.0 L535.3,516.0 L534.4,516.0 L533.5,516.0 L532.6,516.0 L531.7,516.0
+ L530.8,516.0 L529.9,516.0 L529.0,516.0 L528.1,516.0 L527.2,516.0 L526.3,516.0 L525.4,516.0 L524.5,516.0
+ L523.6,516.0 L522.7,516.0 L521.8,516.0 L520.9,516.0 L520.0,516.0 L519.1,516.0 L518.2,516.0 L517.3,516.0
+ L516.4,516.0 L515.5,516.0 L514.6,516.0 L513.7,516.0 L512.8,516.0 L511.9,516.0 L511.0,516.0 L510.1,516.0
+ L509.2,516.0 L508.3,516.0 L507.4,516.0 L506.5,516.0 L505.6,516.0 L504.7,516.0 L503.8,516.0 L502.9,516.0
+ L502.0,516.0 L501.1,516.0 L500.2,516.0 L499.3,516.0 L498.4,516.0 L497.5,516.0 L496.6,516.0 L495.7,516.0
+ L494.7,516.0 L493.8,516.0 L492.9,516.0 L492.0,516.0 L491.1,516.0 L490.2,516.0 L489.3,516.0 L488.4,516.0
+ L487.5,516.0 L486.6,516.0 L485.7,516.0 L484.8,516.0 L483.9,516.0 L483.0,516.0 L482.1,516.0 L481.2,516.0
+ L480.3,516.0 L479.4,516.0 L478.5,516.0 L477.6,516.0 L476.7,516.0 L475.8,516.0 L474.9,516.0 L474.0,516.0
+ L473.1,516.0 L472.2,516.0 L471.3,516.0 L470.4,516.0 L469.5,516.0 L468.6,516.0 L467.7,516.0 L466.8,516.0
+ L465.9,516.0 L465.0,516.0 L464.1,516.0 L463.2,516.0 L462.3,516.0 L461.4,516.0 L460.5,516.0 L459.6,516.0
+ L458.7,516.0 L457.8,516.0 L456.9,516.0 L456.0,516.0 L455.1,516.0 L454.2,516.0 L453.3,516.0 L452.3,516.0
+ L451.4,516.0 L450.5,516.0 L449.6,516.0 L448.7,516.0 L447.8,516.0 L446.9,516.0 L446.0,516.0 L445.1,516.0
+ L444.2,516.0 L443.3,516.0 L442.4,516.0 L441.5,516.0 L440.6,516.0 L439.7,516.0 L438.8,516.0 L437.9,516.0
+ L437.0,516.0 L436.1,516.0 L435.2,516.0 L434.3,516.0 L433.4,516.0 L432.5,516.0 L431.6,516.0 L430.7,516.0
+ L429.8,516.0 L428.9,516.0 L428.0,516.0 L427.1,516.0 L426.2,516.0 L425.3,516.0 L424.4,516.0 L423.5,516.0
+ L422.6,516.0 L421.7,516.0 L420.8,516.0 L419.9,516.0 L419.0,516.0 L418.1,516.0 L417.2,516.0 L416.3,516.0
+ L415.4,516.0 L414.5,516.0 L413.6,516.0 L412.7,516.0 L411.8,516.0 L410.8,516.0 L409.9,516.0 L409.0,516.0
+ L408.1,516.0 L407.2,516.0 L406.3,516.0 L405.4,516.0 L404.5,516.0 L403.6,516.0 L402.7,516.0 L401.8,516.0
+ L400.9,516.0 L400.0,516.0 L399.1,516.0 L398.2,516.0 L397.3,516.0 L396.4,516.0 L395.5,516.0 L394.6,516.0
+ L393.7,516.0 L392.8,516.0 L391.9,516.0 L391.0,516.0 L390.1,516.0 L389.2,516.0 L388.3,516.0 L387.4,516.0
+ L386.5,516.0 L385.6,516.0 L384.7,516.0 L383.8,516.0 L382.9,516.0 L382.0,516.0 L381.1,516.0 L380.2,516.0
+ L379.3,516.0 L378.4,516.0 L377.5,516.0 L376.6,516.0 L375.7,516.0 L374.8,516.0 L373.9,516.0 L373.0,516.0
+ L372.1,516.0 L371.2,516.0 L370.3,516.0 L369.4,516.0 L368.4,516.0 L367.5,516.0 L366.6,516.0 L365.7,516.0
+ L364.8,516.0 L363.9,516.0 L363.0,516.0 L362.1,516.0 L361.2,516.0 L360.3,516.0 L359.4,516.0 L358.5,516.0
+ L357.6,516.0 L356.7,516.0 L355.8,516.0 L354.9,516.0 L354.0,516.0 L353.1,516.0 L352.2,516.0 L351.3,516.0
+ L350.4,516.0 L349.5,516.0 L348.6,516.0 L347.7,516.0 L346.8,516.0 L345.9,516.0 L345.0,516.0 L344.1,516.0
+ L343.2,516.0 L342.3,516.0 L341.4,516.0 L340.5,516.0 L339.6,516.0 L338.7,516.0 L337.8,516.0 L336.9,516.0
+ L336.0,516.0 L335.1,516.0 L334.2,516.0 L333.3,516.0 L332.4,516.0 L331.5,516.0 L330.6,516.0 L329.7,516.0
+ L328.8,516.0 L327.9,516.0 L327.0,516.0 L326.0,516.0 L325.1,516.0 L324.2,516.0 L323.3,516.0 L322.4,516.0
+ L321.5,516.0 L320.6,516.0 L319.7,516.0 L318.8,516.0 L317.9,516.0 L317.0,516.0 L316.1,516.0 L315.2,516.0
+ L314.3,516.0 L313.4,516.0 L312.5,516.0 L311.6,516.0 L310.7,516.0 L309.8,516.0 L308.9,516.0 L308.0,516.0
+ L307.1,516.0 L306.2,516.0 L305.3,516.0 L304.4,516.0 L303.5,516.0 L302.6,516.0 L301.7,516.0 L300.8,516.0
+ L299.9,516.0 L299.0,516.0 L298.1,516.0 L297.2,516.0 L296.3,516.0 L295.4,516.0 L294.5,516.0 L293.6,516.0
+ L292.7,516.0 L291.8,516.0 L290.9,516.0 L290.0,516.0 L289.1,516.0 L288.2,516.0 L287.3,516.0 L286.4,516.0
+ L285.5,516.0 L284.5,516.0 L283.6,516.0 L282.7,516.0 L281.8,516.0 L280.9,516.0 L280.0,516.0 L279.1,516.0
+ L278.2,516.0 L277.3,516.0 L276.4,516.0 L275.5,516.0 L274.6,516.0 L273.7,516.0 L272.8,516.0 L271.9,516.0
+ L271.0,516.0 L270.1,516.0 L269.2,516.0 L268.3,516.0 L267.4,516.0 L266.5,516.0 L265.6,516.0 L264.7,516.0
+ L263.8,516.0 L262.9,516.0 L262.0,516.0 L261.1,516.0 L260.2,516.0 L259.3,516.0 L258.4,516.0 L257.5,516.0
+ L256.6,516.0 L255.7,516.0 L254.8,516.0 L253.9,516.0 L253.0,516.0 L252.1,516.0 L251.2,516.0 L250.3,516.0
+ L249.4,516.0 L248.5,516.0 L247.6,516.0 L246.7,516.0 L245.8,516.0 L244.9,516.0 L244.0,516.0 L243.1,516.0
+ L242.1,516.0 L241.2,516.0 L240.3,516.0 L239.4,516.0 L238.5,516.0 L237.6,516.0 L236.7,516.0 L235.8,516.0
+ L234.9,516.0 L234.0,516.0 L233.1,516.0 L232.2,516.0 L231.3,516.0 L230.4,516.0 L229.5,516.0 L228.6,516.0
+ L227.7,516.0 L226.8,516.0 L225.9,516.0 L225.0,516.0 L224.1,516.0 L223.2,516.0 L222.3,516.0 L221.4,516.0
+ L220.5,516.0 L219.6,516.0 L218.7,516.0 L217.8,516.0 L216.9,516.0 L216.0,516.0 L215.1,516.0 L214.2,516.0
+ L213.3,516.0 L212.4,516.0 L211.5,516.0 L210.6,516.0 L209.7,516.0 L208.8,516.0 L207.9,516.0 L207.0,516.0
+ L206.1,516.0 L205.2,516.0 L204.3,516.0 L203.4,516.0 L202.5,516.0 L201.6,516.0 L200.6,516.0 L199.7,516.0
+ L198.8,516.0 L197.9,516.0 L197.0,516.0 L196.1,516.0 L195.2,516.0 L194.3,516.0 L193.4,516.0 L192.5,516.0
+ L191.6,516.0 L190.7,516.0 L189.8,516.0 L188.9,516.0 L188.0,516.0 L187.1,516.0 L186.2,516.0 L185.3,516.0
+ L184.4,516.0 L183.5,516.0 L182.6,516.0 L181.7,516.0 L180.8,516.0 L179.9,516.0 L179.0,516.0 L178.1,516.0
+ L177.2,516.0 L176.3,516.0 L175.4,516.0 L174.5,516.0 L173.6,516.0 L172.7,516.0 L171.8,516.0 L170.9,516.0
+ L170.0,516.0 L169.1,516.0 L168.2,516.0 L167.3,516.0 L166.4,516.0 L165.5,516.0 L164.6,516.0 L163.7,516.0
+ L162.8,516.0 L161.9,516.0 L161.0,516.0 L160.1,516.0 L159.2,516.0 L158.2,516.0 L157.3,516.0 L156.4,516.0
+ L155.5,516.0 L154.6,516.0 L153.7,516.0 L152.8,516.0 L151.9,516.0 L151.0,516.0 L150.1,516.0 L149.2,516.0
+ L148.3,516.0 L147.4,516.0 L146.5,516.0 L145.6,516.0 L144.7,516.0 L143.8,516.0 L142.9,516.0 L142.0,516.0
+ L141.1,516.0 L140.2,516.0 L139.3,516.0 L138.4,516.0 L137.5,516.0 L136.6,516.0 L135.7,516.0 L134.8,516.0
+ L133.9,516.0 L133.0,516.0 L132.1,516.0 L131.2,516.0 L130.3,516.0 L129.4,516.0 L128.5,516.0 L127.6,516.0
+ L126.7,516.0 L125.8,516.0 L124.9,516.0 L124.0,516.0 L123.1,516.0 L122.2,516.0 L121.3,516.0 L120.4,516.0
+ L119.5,516.0 L118.6,516.0 L117.7,516.0 L116.7,516.0 L115.8,516.0 L114.9,516.0 L114.0,516.0 L113.1,516.0
+ L112.2,516.0 L111.3,516.0 L110.4,516.0 L109.5,516.0 L108.6,516.0 L107.7,516.0 L106.8,516.0 L105.9,516.0
+ L105.0,516.0 L104.1,516.0 L103.2,516.0 L102.3,516.0 L101.4,516.0 L100.5,516.0 L99.6,516.0 L98.7,516.0
+ L97.8,516.0 L96.9,516.0 L96.0,516.0 '/></g>
+ </g>
+ <g id="gnuplot_plot_2a" ><title>gnuplot_plot_2a</title>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,516.0 L96.0,497.9 L96.9,497.5 L97.8,497.0 L98.7,496.6 L99.6,496.1 L100.5,495.6 L101.4,495.1
+ L102.3,494.6 L103.2,494.1 L104.1,493.6 L105.0,493.0 L105.9,492.5 L106.8,491.9 L107.7,491.4 L108.6,490.8
+ L109.5,490.2 L110.4,489.6 L111.3,489.0 L112.2,488.4 L113.1,487.8 L114.0,487.1 L114.9,486.5 L115.8,485.8
+ L116.7,485.1 L117.7,484.4 L118.6,483.7 L119.5,483.0 L120.4,482.3 L121.3,481.5 L122.2,480.8 L123.1,480.0
+ L124.0,479.2 L124.9,478.4 L125.8,477.6 L126.7,476.8 L127.6,475.9 L128.5,475.1 L129.4,474.2 L130.3,473.3
+ L131.2,472.4 L132.1,471.5 L133.0,470.6 L133.9,469.7 L134.8,468.7 L135.7,467.8 L136.6,466.8 L137.5,465.8
+ L138.4,464.8 L139.3,463.7 L140.2,462.7 L141.1,461.6 L142.0,460.5 L142.9,459.5 L143.8,458.3 L144.7,457.2
+ L145.6,456.1 L146.5,454.9 L147.4,453.8 L148.3,452.6 L149.2,451.4 L150.1,450.1 L151.0,448.9 L151.9,447.6
+ L152.8,446.4 L153.7,445.1 L154.6,443.8 L155.5,442.4 L156.4,441.1 L157.3,439.7 L158.2,438.4 L159.2,437.0
+ L160.1,435.6 L161.0,434.1 L161.9,432.7 L162.8,431.2 L163.7,429.8 L164.6,428.3 L165.5,426.7 L166.4,425.2
+ L167.3,423.7 L168.2,422.1 L169.1,420.5 L170.0,418.9 L170.9,417.3 L171.8,415.6 L172.7,414.0 L173.6,412.3
+ L174.5,410.6 L175.4,408.9 L176.3,407.2 L177.2,405.5 L178.1,403.7 L179.0,401.9 L179.9,400.1 L180.8,398.3
+ L181.7,396.5 L182.6,394.6 L183.5,392.8 L184.4,390.9 L185.3,389.0 L186.2,387.1 L187.1,385.2 L188.0,383.2
+ L188.9,381.3 L189.8,379.3 L190.7,377.3 L191.6,375.3 L192.5,373.3 L193.4,371.3 L194.3,369.2 L195.2,367.1
+ L196.1,365.1 L197.0,363.0 L197.9,360.9 L198.8,358.7 L199.7,356.6 L200.6,354.5 L201.6,352.3 L202.5,350.1
+ L203.4,347.9 L204.3,345.7 L205.2,343.5 L206.1,341.3 L207.0,339.0 L207.9,336.8 L208.8,334.5 L209.7,332.3
+ L210.6,330.0 L211.5,327.7 L212.4,325.4 L213.3,323.1 L214.2,320.7 L215.1,318.4 L216.0,316.1 L216.9,313.7
+ L217.8,311.4 L218.7,309.0 L219.6,306.6 L220.5,304.2 L221.4,301.9 L222.3,299.5 L223.2,297.1 L224.1,294.7
+ L225.0,292.2 L225.9,289.8 L226.8,287.4 L227.7,285.0 L228.6,282.6 L229.5,280.1 L230.4,277.7 L231.3,275.3
+ L232.2,272.8 L233.1,270.4 L234.0,268.0 L234.9,265.5 L235.8,263.1 L236.7,260.7 L237.6,258.2 L238.5,255.8
+ L239.4,253.4 L240.3,250.9 L241.2,248.5 L242.1,246.1 L243.1,243.7 L244.0,241.3 L244.9,238.9 L245.8,236.5
+ L246.7,234.1 L247.6,231.7 L248.5,229.3 L249.4,226.9 L250.3,224.5 L251.2,222.2 L252.1,219.8 L253.0,217.5
+ L253.9,215.2 L254.8,212.8 L255.7,210.5 L256.6,208.2 L257.5,206.0 L258.4,203.7 L259.3,201.4 L260.2,199.2
+ L261.1,197.0 L262.0,194.8 L262.9,192.6 L263.8,190.4 L264.7,188.2 L265.6,186.1 L266.5,183.9 L267.4,181.8
+ L268.3,179.7 L269.2,177.6 L270.1,175.6 L271.0,173.6 L271.9,171.5 L272.8,169.5 L273.7,167.6 L274.6,165.6
+ L275.5,163.7 L276.4,161.8 L277.3,159.9 L278.2,158.1 L279.1,156.2 L280.0,154.4 L280.9,152.6 L281.8,150.9
+ L282.7,149.2 L283.6,147.5 L284.5,145.8 L285.5,144.1 L286.4,142.5 L287.3,140.9 L288.2,139.4 L289.1,137.9
+ L290.0,136.4 L290.9,134.9 L291.8,133.4 L292.7,132.0 L293.6,130.7 L294.5,129.3 L295.4,128.0 L296.3,126.7
+ L297.2,125.5 L298.1,124.3 L299.0,123.1 L299.9,121.9 L300.8,120.8 L301.7,119.8 L302.6,118.7 L303.5,117.7
+ L304.4,116.7 L305.3,115.8 L306.2,114.9 L307.1,114.1 L308.0,113.2 L308.9,112.4 L309.8,111.7 L310.7,111.0
+ L311.6,110.3 L312.5,109.7 L313.4,109.1 L314.3,108.5 L315.2,108.0 L316.1,107.5 L317.0,107.0 L317.9,106.6
+ L318.8,106.3 L319.7,105.9 L320.6,105.6 L321.5,105.4 L322.4,105.2 L323.3,105.0 L324.2,104.8 L325.1,104.7
+ L326.0,104.7 L327.0,104.7 L327.9,104.7 L328.8,104.7 L329.7,104.8 L330.6,105.0 L331.5,105.2 L332.4,105.4
+ L333.3,105.6 L334.2,105.9 L335.1,106.3 L336.0,106.6 L336.9,107.0 L337.8,107.5 L338.7,108.0 L339.6,108.5
+ L340.5,109.1 L341.4,109.7 L342.3,110.3 L343.2,111.0 L344.1,111.7 L345.0,112.4 L345.9,113.2 L346.8,114.1
+ L347.7,114.9 L348.6,115.8 L349.5,116.7 L350.4,117.7 L351.3,118.7 L352.2,119.8 L353.1,120.8 L354.0,121.9
+ L354.9,123.1 L355.8,124.3 L356.7,125.5 L357.6,126.7 L358.5,128.0 L359.4,129.3 L360.3,130.7 L361.2,132.0
+ L362.1,133.4 L363.0,134.9 L363.9,136.4 L364.8,137.9 L365.7,139.4 L366.6,140.9 L367.5,142.5 L368.4,144.1
+ L369.4,145.8 L370.3,147.5 L371.2,149.2 L372.1,150.9 L373.0,152.6 L373.9,154.4 L374.8,156.2 L375.7,158.1
+ L376.6,159.9 L377.5,161.8 L378.4,163.7 L379.3,165.6 L380.2,167.6 L381.1,169.5 L382.0,171.5 L382.9,173.6
+ L383.8,175.6 L384.7,177.6 L385.6,179.7 L386.5,181.8 L387.4,183.9 L388.3,186.1 L389.2,188.2 L390.1,190.4
+ L391.0,192.6 L391.9,194.8 L392.8,197.0 L393.7,199.2 L394.6,201.4 L395.5,203.7 L396.4,206.0 L397.3,208.2
+ L398.2,210.5 L399.1,212.8 L400.0,215.2 L400.9,217.5 L401.8,219.8 L402.7,222.2 L403.6,224.5 L404.5,226.9
+ L405.4,229.3 L406.3,231.7 L407.2,234.1 L408.1,236.5 L409.0,238.9 L409.9,241.3 L410.8,243.7 L411.8,246.1
+ L412.7,248.5 L413.6,250.9 L414.5,253.4 L415.4,255.8 L416.3,258.2 L417.2,260.7 L418.1,263.1 L419.0,265.5
+ L419.9,268.0 L420.8,270.4 L421.7,272.8 L422.6,275.3 L423.5,277.7 L424.4,280.1 L425.3,282.6 L426.2,285.0
+ L427.1,287.4 L428.0,289.8 L428.9,292.2 L429.8,294.7 L430.7,297.1 L431.6,299.5 L432.5,301.9 L433.4,304.2
+ L434.3,306.6 L435.2,309.0 L436.1,311.4 L437.0,313.7 L437.9,316.1 L438.8,318.4 L439.7,320.7 L440.6,323.1
+ L441.5,325.4 L442.4,327.7 L443.3,330.0 L444.2,332.3 L445.1,334.5 L446.0,336.8 L446.9,339.0 L447.8,341.3
+ L448.7,343.5 L449.6,345.7 L450.5,347.9 L451.4,350.1 L452.3,352.3 L453.3,354.5 L454.2,356.6 L455.1,358.7
+ L456.0,360.9 L456.9,363.0 L457.8,365.1 L458.7,367.1 L459.6,369.2 L460.5,371.3 L461.4,373.3 L462.3,375.3
+ L463.2,377.3 L464.1,379.3 L465.0,381.3 L465.9,383.2 L466.8,385.2 L467.7,387.1 L468.6,389.0 L469.5,390.9
+ L470.4,392.8 L471.3,394.6 L472.2,396.5 L473.1,398.3 L474.0,400.1 L474.9,401.9 L475.8,403.7 L476.7,405.5
+ L477.6,407.2 L478.5,408.9 L479.4,410.6 L480.3,412.3 L481.2,414.0 L482.1,415.6 L483.0,417.3 L483.9,418.9
+ L484.8,420.5 L485.7,422.1 L486.6,423.7 L487.5,425.2 L488.4,426.7 L489.3,428.3 L490.2,429.8 L491.1,431.2
+ L492.0,432.7 L492.9,434.1 L493.8,435.6 L494.7,437.0 L495.7,438.4 L496.6,439.7 L497.5,441.1 L498.4,442.4
+ L499.3,443.8 L500.2,445.1 L501.1,446.4 L502.0,447.6 L502.9,448.9 L503.8,450.1 L504.7,451.4 L505.6,452.6
+ L506.5,453.8 L507.4,454.9 L508.3,456.1 L509.2,457.2 L510.1,458.3 L511.0,459.5 L511.9,460.5 L512.8,461.6
+ L513.7,462.7 L514.6,463.7 L515.5,464.8 L516.4,465.8 L517.3,466.8 L518.2,467.8 L519.1,468.7 L520.0,469.7
+ L520.9,470.6 L521.8,471.5 L522.7,472.4 L523.6,473.3 L524.5,474.2 L525.4,475.1 L526.3,475.9 L527.2,476.8
+ L528.1,477.6 L529.0,478.4 L529.9,479.2 L530.8,480.0 L531.7,480.8 L532.6,481.5 L533.5,482.3 L534.4,483.0
+ L535.3,483.7 L536.2,484.4 L537.2,485.1 L538.1,485.8 L539.0,486.5 L539.9,487.1 L540.8,487.8 L541.7,488.4
+ L542.6,489.0 L543.5,489.6 L544.4,490.2 L545.3,490.8 L546.2,491.4 L547.1,491.9 L548.0,492.5 L548.9,493.0
+ L549.8,493.6 L550.7,494.1 L551.6,494.6 L552.5,495.1 L553.4,495.6 L554.3,496.1 L555.2,496.6 L556.1,497.0
+ L557.0,497.5 L557.9,497.9 L557.9,516.0 L557.0,516.0 L556.1,516.0 L555.2,516.0 L554.3,516.0 L553.4,516.0
+ L552.5,516.0 L551.6,516.0 L550.7,516.0 L549.8,516.0 L548.9,516.0 L548.0,516.0 L547.1,516.0 L546.2,516.0
+ L545.3,516.0 L544.4,516.0 L543.5,516.0 L542.6,516.0 L541.7,516.0 L540.8,516.0 L539.9,516.0 L539.0,516.0
+ L538.1,516.0 L537.2,516.0 L536.2,516.0 L535.3,516.0 L534.4,516.0 L533.5,516.0 L532.6,516.0 L531.7,516.0
+ L530.8,516.0 L529.9,516.0 L529.0,516.0 L528.1,516.0 L527.2,516.0 L526.3,516.0 L525.4,516.0 L524.5,516.0
+ L523.6,516.0 L522.7,516.0 L521.8,516.0 L520.9,516.0 L520.0,516.0 L519.1,516.0 L518.2,516.0 L517.3,516.0
+ L516.4,516.0 L515.5,516.0 L514.6,516.0 L513.7,516.0 L512.8,516.0 L511.9,516.0 L511.0,516.0 L510.1,516.0
+ L509.2,516.0 L508.3,516.0 L507.4,516.0 L506.5,516.0 L505.6,516.0 L504.7,516.0 L503.8,516.0 L502.9,516.0
+ L502.0,516.0 L501.1,516.0 L500.2,516.0 L499.3,516.0 L498.4,516.0 L497.5,516.0 L496.6,516.0 L495.7,516.0
+ L494.7,516.0 L493.8,516.0 L492.9,516.0 L492.0,516.0 L491.1,516.0 L490.2,516.0 L489.3,516.0 L488.4,516.0
+ L487.5,516.0 L486.6,516.0 L485.7,516.0 L484.8,516.0 L483.9,516.0 L483.0,516.0 L482.1,516.0 L481.2,516.0
+ L480.3,516.0 L479.4,516.0 L478.5,516.0 L477.6,516.0 L476.7,516.0 L475.8,516.0 L474.9,516.0 L474.0,516.0
+ L473.1,516.0 L472.2,516.0 L471.3,516.0 L470.4,516.0 L469.5,516.0 L468.6,516.0 L467.7,516.0 L466.8,516.0
+ L465.9,516.0 L465.0,516.0 L464.1,516.0 L463.2,516.0 L462.3,516.0 L461.4,516.0 L460.5,516.0 L459.6,516.0
+ L458.7,516.0 L457.8,516.0 L456.9,516.0 L456.0,516.0 L455.1,516.0 L454.2,516.0 L453.3,516.0 L452.3,516.0
+ L451.4,516.0 L450.5,516.0 L449.6,516.0 L448.7,516.0 L447.8,516.0 L446.9,516.0 L446.0,516.0 L445.1,516.0
+ L444.2,516.0 L443.3,516.0 L442.4,516.0 L441.5,516.0 L440.6,516.0 L439.7,516.0 L438.8,516.0 L437.9,516.0
+ L437.0,516.0 L436.1,516.0 L435.2,516.0 L434.3,516.0 L433.4,516.0 L432.5,516.0 L431.6,516.0 L430.7,516.0
+ L429.8,516.0 L428.9,516.0 L428.0,516.0 L427.1,516.0 L426.2,516.0 L425.3,516.0 L424.4,516.0 L423.5,516.0
+ L422.6,516.0 L421.7,516.0 L420.8,516.0 L419.9,516.0 L419.0,516.0 L418.1,516.0 L417.2,516.0 L416.3,516.0
+ L415.4,516.0 L414.5,516.0 L413.6,516.0 L412.7,516.0 L411.8,516.0 L410.8,516.0 L409.9,516.0 L409.0,516.0
+ L408.1,516.0 L407.2,516.0 L406.3,516.0 L405.4,516.0 L404.5,516.0 L403.6,516.0 L402.7,516.0 L401.8,516.0
+ L400.9,516.0 L400.0,516.0 L399.1,516.0 L398.2,516.0 L397.3,516.0 L396.4,516.0 L395.5,516.0 L394.6,516.0
+ L393.7,516.0 L392.8,516.0 L391.9,516.0 L391.0,516.0 L390.1,516.0 L389.2,516.0 L388.3,516.0 L387.4,516.0
+ L386.5,516.0 L385.6,516.0 L384.7,516.0 L383.8,516.0 L382.9,516.0 L382.0,516.0 L381.1,516.0 L380.2,516.0
+ L379.3,516.0 L378.4,516.0 L377.5,516.0 L376.6,516.0 L375.7,516.0 L374.8,516.0 L373.9,516.0 L373.0,516.0
+ L372.1,516.0 L371.2,516.0 L370.3,516.0 L369.4,516.0 L368.4,516.0 L367.5,516.0 L366.6,516.0 L365.7,516.0
+ L364.8,516.0 L363.9,516.0 L363.0,516.0 L362.1,516.0 L361.2,516.0 L360.3,516.0 L359.4,516.0 L358.5,516.0
+ L357.6,516.0 L356.7,516.0 L355.8,516.0 L354.9,516.0 L354.0,516.0 L353.1,516.0 L352.2,516.0 L351.3,516.0
+ L350.4,516.0 L349.5,516.0 L348.6,516.0 L347.7,516.0 L346.8,516.0 L345.9,516.0 L345.0,516.0 L344.1,516.0
+ L343.2,516.0 L342.3,516.0 L341.4,516.0 L340.5,516.0 L339.6,516.0 L338.7,516.0 L337.8,516.0 L336.9,516.0
+ L336.0,516.0 L335.1,516.0 L334.2,516.0 L333.3,516.0 L332.4,516.0 L331.5,516.0 L330.6,516.0 L329.7,516.0
+ L328.8,516.0 L327.9,516.0 L327.0,516.0 L326.0,516.0 L325.1,516.0 L324.2,516.0 L323.3,516.0 L322.4,516.0
+ L321.5,516.0 L320.6,516.0 L319.7,516.0 L318.8,516.0 L317.9,516.0 L317.0,516.0 L316.1,516.0 L315.2,516.0
+ L314.3,516.0 L313.4,516.0 L312.5,516.0 L311.6,516.0 L310.7,516.0 L309.8,516.0 L308.9,516.0 L308.0,516.0
+ L307.1,516.0 L306.2,516.0 L305.3,516.0 L304.4,516.0 L303.5,516.0 L302.6,516.0 L301.7,516.0 L300.8,516.0
+ L299.9,516.0 L299.0,516.0 L298.1,516.0 L297.2,516.0 L296.3,516.0 L295.4,516.0 L294.5,516.0 L293.6,516.0
+ L292.7,516.0 L291.8,516.0 L290.9,516.0 L290.0,516.0 L289.1,516.0 L288.2,516.0 L287.3,516.0 L286.4,516.0
+ L285.5,516.0 L284.5,516.0 L283.6,516.0 L282.7,516.0 L281.8,516.0 L280.9,516.0 L280.0,516.0 L279.1,516.0
+ L278.2,516.0 L277.3,516.0 L276.4,516.0 L275.5,516.0 L274.6,516.0 L273.7,516.0 L272.8,516.0 L271.9,516.0
+ L271.0,516.0 L270.1,516.0 L269.2,516.0 L268.3,516.0 L267.4,516.0 L266.5,516.0 L265.6,516.0 L264.7,516.0
+ L263.8,516.0 L262.9,516.0 L262.0,516.0 L261.1,516.0 L260.2,516.0 L259.3,516.0 L258.4,516.0 L257.5,516.0
+ L256.6,516.0 L255.7,516.0 L254.8,516.0 L253.9,516.0 L253.0,516.0 L252.1,516.0 L251.2,516.0 L250.3,516.0
+ L249.4,516.0 L248.5,516.0 L247.6,516.0 L246.7,516.0 L245.8,516.0 L244.9,516.0 L244.0,516.0 L243.1,516.0
+ L242.1,516.0 L241.2,516.0 L240.3,516.0 L239.4,516.0 L238.5,516.0 L237.6,516.0 L236.7,516.0 L235.8,516.0
+ L234.9,516.0 L234.0,516.0 L233.1,516.0 L232.2,516.0 L231.3,516.0 L230.4,516.0 L229.5,516.0 L228.6,516.0
+ L227.7,516.0 L226.8,516.0 L225.9,516.0 L225.0,516.0 L224.1,516.0 L223.2,516.0 L222.3,516.0 L221.4,516.0
+ L220.5,516.0 L219.6,516.0 L218.7,516.0 L217.8,516.0 L216.9,516.0 L216.0,516.0 L215.1,516.0 L214.2,516.0
+ L213.3,516.0 L212.4,516.0 L211.5,516.0 L210.6,516.0 L209.7,516.0 L208.8,516.0 L207.9,516.0 L207.0,516.0
+ L206.1,516.0 L205.2,516.0 L204.3,516.0 L203.4,516.0 L202.5,516.0 L201.6,516.0 L200.6,516.0 L199.7,516.0
+ L198.8,516.0 L197.9,516.0 L197.0,516.0 L196.1,516.0 L195.2,516.0 L194.3,516.0 L193.4,516.0 L192.5,516.0
+ L191.6,516.0 L190.7,516.0 L189.8,516.0 L188.9,516.0 L188.0,516.0 L187.1,516.0 L186.2,516.0 L185.3,516.0
+ L184.4,516.0 L183.5,516.0 L182.6,516.0 L181.7,516.0 L180.8,516.0 L179.9,516.0 L179.0,516.0 L178.1,516.0
+ L177.2,516.0 L176.3,516.0 L175.4,516.0 L174.5,516.0 L173.6,516.0 L172.7,516.0 L171.8,516.0 L170.9,516.0
+ L170.0,516.0 L169.1,516.0 L168.2,516.0 L167.3,516.0 L166.4,516.0 L165.5,516.0 L164.6,516.0 L163.7,516.0
+ L162.8,516.0 L161.9,516.0 L161.0,516.0 L160.1,516.0 L159.2,516.0 L158.2,516.0 L157.3,516.0 L156.4,516.0
+ L155.5,516.0 L154.6,516.0 L153.7,516.0 L152.8,516.0 L151.9,516.0 L151.0,516.0 L150.1,516.0 L149.2,516.0
+ L148.3,516.0 L147.4,516.0 L146.5,516.0 L145.6,516.0 L144.7,516.0 L143.8,516.0 L142.9,516.0 L142.0,516.0
+ L141.1,516.0 L140.2,516.0 L139.3,516.0 L138.4,516.0 L137.5,516.0 L136.6,516.0 L135.7,516.0 L134.8,516.0
+ L133.9,516.0 L133.0,516.0 L132.1,516.0 L131.2,516.0 L130.3,516.0 L129.4,516.0 L128.5,516.0 L127.6,516.0
+ L126.7,516.0 L125.8,516.0 L124.9,516.0 L124.0,516.0 L123.1,516.0 L122.2,516.0 L121.3,516.0 L120.4,516.0
+ L119.5,516.0 L118.6,516.0 L117.7,516.0 L116.7,516.0 L115.8,516.0 L114.9,516.0 L114.0,516.0 L113.1,516.0
+ L112.2,516.0 L111.3,516.0 L110.4,516.0 L109.5,516.0 L108.6,516.0 L107.7,516.0 L106.8,516.0 L105.9,516.0
+ L105.0,516.0 L104.1,516.0 L103.2,516.0 L102.3,516.0 L101.4,516.0 L100.5,516.0 L99.6,516.0 L98.7,516.0
+ L97.8,516.0 L96.9,516.0 L96.0,516.0 '/></g>
+ </g>
+<g fill="none" color="#FFFFFF" stroke="rgb( 0, 0, 0)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 38, 38, 38)' d='M96.0,516.0 L557.9,516.0 M96.0,84.1 L557.9,84.1 M96.0,516.0 L96.0,84.1 M557.9,516.0 L557.9,84.1
+ '/></g>
+<g fill="none" color="black" stroke="rgb( 38, 38, 38)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g stroke='none' shape-rendering='crispEdges'>
+ <polygon fill = 'rgb(255, 255, 255)' points = '714.0,516.0 1175.8,516.0 1175.8,84.2 714.0,84.2 '/>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,516.0 L1175.9,516.0 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,516.0 L729.6,516.0 M1175.9,516.0 L1160.3,516.0 '/> <g transform="translate(703.5,522.5)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-130</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,484.2 L1175.9,484.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,484.2 L729.6,484.2 M1175.9,484.2 L1160.3,484.2 '/> <g transform="translate(703.5,490.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-120</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,452.5 L1175.9,452.5 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,452.5 L729.6,452.5 M1175.9,452.5 L1160.3,452.5 '/> <g transform="translate(703.5,459.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-110</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,420.7 L1175.9,420.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,420.7 L729.6,420.7 M1175.9,420.7 L1160.3,420.7 '/> <g transform="translate(703.5,427.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-100</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,389.0 L1175.9,389.0 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,389.0 L729.6,389.0 M1175.9,389.0 L1160.3,389.0 '/> <g transform="translate(703.5,395.5)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-90</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,357.2 L1175.9,357.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,357.2 L729.6,357.2 M1175.9,357.2 L1160.3,357.2 '/> <g transform="translate(703.5,363.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-80</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,325.5 L1175.9,325.5 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,325.5 L729.6,325.5 M1175.9,325.5 L1160.3,325.5 '/> <g transform="translate(703.5,332.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-70</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,293.7 L1175.9,293.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,293.7 L729.6,293.7 M1175.9,293.7 L1160.3,293.7 '/> <g transform="translate(703.5,300.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-60</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,261.9 L1175.9,261.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,261.9 L729.6,261.9 M1175.9,261.9 L1160.3,261.9 '/> <g transform="translate(703.5,268.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-50</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,230.2 L1175.9,230.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,230.2 L729.6,230.2 M1175.9,230.2 L1160.3,230.2 '/> <g transform="translate(703.5,236.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-40</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,198.4 L1175.9,198.4 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,198.4 L729.6,198.4 M1175.9,198.4 L1160.3,198.4 '/> <g transform="translate(703.5,204.9)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-30</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,166.7 L1175.9,166.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,166.7 L729.6,166.7 M1175.9,166.7 L1160.3,166.7 '/> <g transform="translate(703.5,173.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-20</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,134.9 L1175.9,134.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,134.9 L729.6,134.9 M1175.9,134.9 L1160.3,134.9 '/> <g transform="translate(703.5,141.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-10</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,103.2 L1175.9,103.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,103.2 L729.6,103.2 M1175.9,103.2 L1160.3,103.2 '/> <g transform="translate(703.5,109.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,516.0 L714.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,516.0 L714.0,500.4 M714.0,84.1 L714.0,99.7 '/> <g transform="translate(714.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-40</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M829.5,516.0 L829.5,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M829.5,516.0 L829.5,500.4 M829.5,84.1 L829.5,99.7 '/> <g transform="translate(829.5,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-20</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M945.0,516.0 L945.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M945.0,516.0 L945.0,500.4 M945.0,84.1 L945.0,99.7 '/> <g transform="translate(945.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M1060.4,516.0 L1060.4,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M1060.4,516.0 L1060.4,500.4 M1060.4,84.1 L1060.4,99.7 '/> <g transform="translate(1060.4,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >20</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M1175.9,516.0 L1175.9,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M1175.9,516.0 L1175.9,500.4 M1175.9,84.1 L1175.9,99.7 '/> <g transform="translate(1175.9,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >40</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(648.1,300.1) rotate(-90)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >decibels</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(944.9,581.3)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >bins</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(944.9,39.9)" stroke="none" fill="rgb(0,0,0)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >Fourier transform</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+ <g id="gnuplot_plot_1b" ><title>gnuplot_plot_1b</title>
+<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb(222, 125, 0)' d='M714.0,516.0 L714.0,386.1 M714.2,516.0 L714.2,356.1 M714.4,516.0 L714.4,342.2 M714.5,516.0 L714.5,333.2
+ M714.7,516.0 L714.7,326.6 M714.9,516.0 L714.9,321.5 M715.1,516.0 L715.1,317.4 M715.3,516.0 L715.3,314.1
+ M715.4,516.0 L715.4,311.4 M715.6,516.0 L715.6,309.1 M715.8,516.0 L715.8,307.3 M716.0,516.0 L716.0,305.9
+ M716.2,516.0 L716.2,304.7 M716.3,516.0 L716.3,303.9 M716.5,516.0 L716.5,303.3 M716.7,516.0 L716.7,303.0
+ M716.9,516.0 L716.9,303.0 M717.1,516.0 L717.1,303.3 M717.2,516.0 L717.2,303.8 M717.4,516.0 L717.4,304.6
+ M717.6,516.0 L717.6,305.7 M717.8,516.0 L717.8,307.1 M718.0,516.0 L718.0,308.9 M718.1,516.0 L718.1,311.1
+ M718.3,516.0 L718.3,313.8 M718.5,516.0 L718.5,317.1 M718.7,516.0 L718.7,321.2 M718.9,516.0 L718.9,326.3
+ M719.1,516.0 L719.1,332.9 M719.2,516.0 L719.2,341.9 M719.4,516.0 L719.4,355.9 M719.6,516.0 L719.6,386.9
+ M719.8,516.0 L719.8,384.7 M720.0,516.0 L720.0,355.2 M720.1,516.0 L720.1,341.4 M720.3,516.0 L720.3,332.4
+ M720.5,516.0 L720.5,325.8 M720.7,516.0 L720.7,320.8 M720.9,516.0 L720.9,316.7 M721.0,516.0 L721.0,313.4
+ M721.2,516.0 L721.2,310.7 M721.4,516.0 L721.4,308.4 M721.6,516.0 L721.6,306.6 M721.8,516.0 L721.8,305.1
+ M721.9,516.0 L721.9,304.0 M722.1,516.0 L722.1,303.2 M722.3,516.0 L722.3,302.6 M722.5,516.0 L722.5,302.3
+ M722.7,516.0 L722.7,302.3 M722.8,516.0 L722.8,302.6 M723.0,516.0 L723.0,303.1 M723.2,516.0 L723.2,303.9
+ M723.4,516.0 L723.4,305.0 M723.6,516.0 L723.6,306.4 M723.7,516.0 L723.7,308.2 M723.9,516.0 L723.9,310.5
+ M724.1,516.0 L724.1,313.2 M724.3,516.0 L724.3,316.5 M724.5,516.0 L724.5,320.5 M724.6,516.0 L724.6,325.6
+ M724.8,516.0 L724.8,332.2 M725.0,516.0 L725.0,341.3 M725.2,516.0 L725.2,355.5 M725.4,516.0 L725.4,387.0
+ M725.5,516.0 L725.5,383.3 M725.7,516.0 L725.7,354.2 M725.9,516.0 L725.9,340.5 M726.1,516.0 L726.1,331.6
+ M726.3,516.0 L726.3,325.1 M726.4,516.0 L726.4,320.0 M726.6,516.0 L726.6,315.9 M726.8,516.0 L726.8,312.6
+ M727.0,516.0 L727.0,309.9 M727.2,516.0 L727.2,307.7 M727.4,516.0 L727.4,305.9 M727.5,516.0 L727.5,304.4
+ M727.7,516.0 L727.7,303.3 M727.9,516.0 L727.9,302.4 M728.1,516.0 L728.1,301.9 M728.3,516.0 L728.3,301.6
+ M728.4,516.0 L728.4,301.6 M728.6,516.0 L728.6,301.8 M728.8,516.0 L728.8,302.4 M729.0,516.0 L729.0,303.2
+ M729.2,516.0 L729.2,304.3 M729.3,516.0 L729.3,305.7 M729.5,516.0 L729.5,307.5 M729.7,516.0 L729.7,309.8
+ M729.9,516.0 L729.9,312.5 M730.1,516.0 L730.1,315.8 M730.2,516.0 L730.2,319.9 M730.4,516.0 L730.4,325.0
+ M730.6,516.0 L730.6,331.6 M730.8,516.0 L730.8,340.8 M731.0,516.0 L731.0,355.0 M731.1,516.0 L731.1,387.1
+ M731.3,516.0 L731.3,381.8 M731.5,516.0 L731.5,353.2 M731.7,516.0 L731.7,339.6 M731.9,516.0 L731.9,330.7
+ M732.0,516.0 L732.0,324.2 M732.2,516.0 L732.2,319.2 M732.4,516.0 L732.4,315.1 M732.6,516.0 L732.6,311.8
+ M732.8,516.0 L732.8,309.1 M732.9,516.0 L732.9,306.9 M733.1,516.0 L733.1,305.1 M733.3,516.0 L733.3,303.6
+ M733.5,516.0 L733.5,302.5 M733.7,516.0 L733.7,301.7 M733.8,516.0 L733.8,301.1 M734.0,516.0 L734.0,300.8
+ M734.2,516.0 L734.2,300.8 M734.4,516.0 L734.4,301.1 M734.6,516.0 L734.6,301.6 M734.7,516.0 L734.7,302.4
+ M734.9,516.0 L734.9,303.6 M735.1,516.0 L735.1,305.0 M735.3,516.0 L735.3,306.8 M735.5,516.0 L735.5,309.0
+ M735.7,516.0 L735.7,311.8 M735.8,516.0 L735.8,315.1 M736.0,516.0 L736.0,319.2 M736.2,516.0 L736.2,324.3
+ M736.4,516.0 L736.4,331.0 M736.6,516.0 L736.6,340.2 M736.7,516.0 L736.7,354.6 M736.9,516.0 L736.9,387.3
+ M737.1,516.0 L737.1,380.3 M737.3,516.0 L737.3,352.2 M737.5,516.0 L737.5,338.7 M737.6,516.0 L737.6,329.9
+ M737.8,516.0 L737.8,323.4 M738.0,516.0 L738.0,318.4 M738.2,516.0 L738.2,314.3 M738.4,516.0 L738.4,311.0
+ M738.5,516.0 L738.5,308.3 M738.7,516.0 L738.7,306.1 M738.9,516.0 L738.9,304.3 M739.1,516.0 L739.1,302.9
+ M739.3,516.0 L739.3,301.7 M739.4,516.0 L739.4,300.9 M739.6,516.0 L739.6,300.4 M739.8,516.0 L739.8,300.1
+ M740.0,516.0 L740.0,300.1 M740.2,516.0 L740.2,300.3 M740.3,516.0 L740.3,300.9 M740.5,516.0 L740.5,301.7
+ M740.7,516.0 L740.7,302.8 M740.9,516.0 L740.9,304.3 M741.1,516.0 L741.1,306.1 M741.2,516.0 L741.2,308.3
+ M741.4,516.0 L741.4,311.0 M741.6,516.0 L741.6,314.4 M741.8,516.0 L741.8,318.5 M742.0,516.0 L742.0,323.6
+ M742.1,516.0 L742.1,330.3 M742.3,516.0 L742.3,339.6 M742.5,516.0 L742.5,354.1 M742.7,516.0 L742.7,387.5
+ M742.9,516.0 L742.9,378.8 M743.0,516.0 L743.0,351.1 M743.2,516.0 L743.2,337.8 M743.4,516.0 L743.4,329.0
+ M743.6,516.0 L743.6,322.5 M743.8,516.0 L743.8,317.5 M744.0,516.0 L744.0,313.5 M744.1,516.0 L744.1,310.2
+ M744.3,516.0 L744.3,307.5 M744.5,516.0 L744.5,305.3 M744.7,516.0 L744.7,303.5 M744.9,516.0 L744.9,302.0
+ M745.0,516.0 L745.0,300.9 M745.2,516.0 L745.2,300.1 M745.4,516.0 L745.4,299.6 M745.6,516.0 L745.6,299.3
+ M745.8,516.0 L745.8,299.3 M745.9,516.0 L745.9,299.6 M746.1,516.0 L746.1,300.1 M746.3,516.0 L746.3,300.9
+ M746.5,516.0 L746.5,302.0 M746.7,516.0 L746.7,303.5 M746.8,516.0 L746.8,305.3 M747.0,516.0 L747.0,307.6
+ M747.2,516.0 L747.2,310.3 M747.4,516.0 L747.4,313.7 M747.6,516.0 L747.6,317.8 M747.7,516.0 L747.7,322.9
+ M747.9,516.0 L747.9,329.7 M748.1,516.0 L748.1,339.0 M748.3,516.0 L748.3,353.6 M748.5,516.0 L748.5,387.9
+ M748.6,516.0 L748.6,377.2 M748.8,516.0 L748.8,350.1 M749.0,516.0 L749.0,336.8 M749.2,516.0 L749.2,328.1
+ M749.4,516.0 L749.4,321.6 M749.5,516.0 L749.5,316.6 M749.7,516.0 L749.7,312.6 M749.9,516.0 L749.9,309.4
+ M750.1,516.0 L750.1,306.7 M750.3,516.0 L750.3,304.5 M750.4,516.0 L750.4,302.7 M750.6,516.0 L750.6,301.2
+ M750.8,516.0 L750.8,300.1 M751.0,516.0 L751.0,299.3 M751.2,516.0 L751.2,298.7 M751.3,516.0 L751.3,298.5
+ M751.5,516.0 L751.5,298.5 M751.7,516.0 L751.7,298.8 M751.9,516.0 L751.9,299.3 M752.1,516.0 L752.1,300.1
+ M752.3,516.0 L752.3,301.3 M752.4,516.0 L752.4,302.7 M752.6,516.0 L752.6,304.5 M752.8,516.0 L752.8,306.8
+ M753.0,516.0 L753.0,309.5 M753.2,516.0 L753.2,312.9 M753.3,516.0 L753.3,317.0 M753.5,516.0 L753.5,322.2
+ M753.7,516.0 L753.7,329.0 M753.9,516.0 L753.9,338.4 M754.1,516.0 L754.1,353.2 M754.2,516.0 L754.2,388.3
+ M754.4,516.0 L754.4,375.5 M754.6,516.0 L754.6,348.9 M754.8,516.0 L754.8,335.8 M755.0,516.0 L755.0,327.1
+ M755.1,516.0 L755.1,320.7 M755.3,516.0 L755.3,315.7 M755.5,516.0 L755.5,311.7 M755.7,516.0 L755.7,308.5
+ M755.9,516.0 L755.9,305.8 M756.0,516.0 L756.0,303.6 M756.2,516.0 L756.2,301.8 M756.4,516.0 L756.4,300.4
+ M756.6,516.0 L756.6,299.3 M756.8,516.0 L756.8,298.4 M756.9,516.0 L756.9,297.9 M757.1,516.0 L757.1,297.6
+ M757.3,516.0 L757.3,297.7 M757.5,516.0 L757.5,297.9 M757.7,516.0 L757.7,298.5 M757.8,516.0 L757.8,299.3
+ M758.0,516.0 L758.0,300.4 M758.2,516.0 L758.2,301.9 M758.4,516.0 L758.4,303.7 M758.6,516.0 L758.6,306.0
+ M758.7,516.0 L758.7,308.8 M758.9,516.0 L758.9,312.1 M759.1,516.0 L759.1,316.3 M759.3,516.0 L759.3,321.5
+ M759.5,516.0 L759.5,328.3 M759.6,516.0 L759.6,337.7 M759.8,516.0 L759.8,352.7 M760.0,516.0 L760.0,388.9
+ M760.2,516.0 L760.2,373.8 '/> <path stroke='rgb(222, 125, 0)' d='M760.4,516.0 L760.4,347.7 M760.6,516.0 L760.6,334.7 M760.7,516.0 L760.7,326.1 M760.9,516.0 L760.9,319.7
+ M761.1,516.0 L761.1,314.8 M761.3,516.0 L761.3,310.8 M761.5,516.0 L761.5,307.6 M761.6,516.0 L761.6,304.9
+ M761.8,516.0 L761.8,302.7 M762.0,516.0 L762.0,300.9 M762.2,516.0 L762.2,299.5 M762.4,516.0 L762.4,298.4
+ M762.5,516.0 L762.5,297.6 M762.7,516.0 L762.7,297.0 M762.9,516.0 L762.9,296.8 M763.1,516.0 L763.1,296.8
+ M763.3,516.0 L763.3,297.1 M763.4,516.0 L763.4,297.6 M763.6,516.0 L763.6,298.5 M763.8,516.0 L763.8,299.6
+ M764.0,516.0 L764.0,301.1 M764.2,516.0 L764.2,302.9 M764.3,516.0 L764.3,305.2 M764.5,516.0 L764.5,308.0
+ M764.7,516.0 L764.7,311.3 M764.9,516.0 L764.9,315.5 M765.1,516.0 L765.1,320.8 M765.2,516.0 L765.2,327.6
+ M765.4,516.0 L765.4,337.1 M765.6,516.0 L765.6,352.2 M765.8,516.0 L765.8,389.6 M766.0,516.0 L766.0,372.1
+ M766.1,516.0 L766.1,346.5 M766.3,516.0 L766.3,333.7 M766.5,516.0 L766.5,325.1 M766.7,516.0 L766.7,318.8
+ M766.9,516.0 L766.9,313.8 M767.0,516.0 L767.0,309.9 M767.2,516.0 L767.2,306.6 M767.4,516.0 L767.4,304.0
+ M767.6,516.0 L767.6,301.8 M767.8,516.0 L767.8,300.0 M767.9,516.0 L767.9,298.6 M768.1,516.0 L768.1,297.5
+ M768.3,516.0 L768.3,296.7 M768.5,516.0 L768.5,296.2 M768.7,516.0 L768.7,295.9 M768.9,516.0 L768.9,295.9
+ M769.0,516.0 L769.0,296.2 M769.2,516.0 L769.2,296.8 M769.4,516.0 L769.4,297.6 M769.6,516.0 L769.6,298.7
+ M769.8,516.0 L769.8,300.2 M769.9,516.0 L769.9,302.1 M770.1,516.0 L770.1,304.4 M770.3,516.0 L770.3,307.1
+ M770.5,516.0 L770.5,310.5 M770.7,516.0 L770.7,314.7 M770.8,516.0 L770.8,320.0 M771.0,516.0 L771.0,326.9
+ M771.2,516.0 L771.2,336.5 M771.4,516.0 L771.4,351.8 M771.6,516.0 L771.6,390.4 M771.7,516.0 L771.7,370.3
+ M771.9,516.0 L771.9,345.3 M772.1,516.0 L772.1,332.5 M772.3,516.0 L772.3,324.0 M772.5,516.0 L772.5,317.7
+ M772.6,516.0 L772.6,312.8 M772.8,516.0 L772.8,308.9 M773.0,516.0 L773.0,305.7 M773.2,516.0 L773.2,303.0
+ M773.4,516.0 L773.4,300.8 M773.5,516.0 L773.5,299.1 M773.7,516.0 L773.7,297.6 M773.9,516.0 L773.9,296.5
+ M774.1,516.0 L774.1,295.7 M774.3,516.0 L774.3,295.2 M774.4,516.0 L774.4,295.0 M774.6,516.0 L774.6,295.0
+ M774.8,516.0 L774.8,295.3 M775.0,516.0 L775.0,295.9 M775.2,516.0 L775.2,296.7 M775.3,516.0 L775.3,297.9
+ M775.5,516.0 L775.5,299.3 M775.7,516.0 L775.7,301.2 M775.9,516.0 L775.9,303.5 M776.1,516.0 L776.1,306.3
+ M776.2,516.0 L776.2,309.7 M776.4,516.0 L776.4,313.9 M776.6,516.0 L776.6,319.2 M776.8,516.0 L776.8,326.1
+ M777.0,516.0 L777.0,335.8 M777.2,516.0 L777.2,351.3 M777.3,516.0 L777.3,391.6 M777.5,516.0 L777.5,368.4
+ M777.7,516.0 L777.7,344.0 M777.9,516.0 L777.9,331.4 M778.1,516.0 L778.1,322.9 M778.2,516.0 L778.2,316.7
+ M778.4,516.0 L778.4,311.8 M778.6,516.0 L778.6,307.9 M778.8,516.0 L778.8,304.6 M779.0,516.0 L779.0,302.0
+ M779.1,516.0 L779.1,299.8 M779.3,516.0 L779.3,298.1 M779.5,516.0 L779.5,296.7 M779.7,516.0 L779.7,295.6
+ M779.9,516.0 L779.9,294.8 M780.0,516.0 L780.0,294.3 M780.2,516.0 L780.2,294.0 M780.4,516.0 L780.4,294.1
+ M780.6,516.0 L780.6,294.4 M780.8,516.0 L780.8,294.9 M780.9,516.0 L780.9,295.8 M781.1,516.0 L781.1,296.9
+ M781.3,516.0 L781.3,298.4 M781.5,516.0 L781.5,300.3 M781.7,516.0 L781.7,302.6 M781.8,516.0 L781.8,305.4
+ M782.0,516.0 L782.0,308.8 M782.2,516.0 L782.2,313.1 M782.4,516.0 L782.4,318.4 M782.6,516.0 L782.6,325.4
+ M782.7,516.0 L782.7,335.1 M782.9,516.0 L782.9,350.9 M783.1,516.0 L783.1,393.0 M783.3,516.0 L783.3,366.5
+ M783.5,516.0 L783.5,342.6 M783.6,516.0 L783.6,330.1 M783.8,516.0 L783.8,321.8 M784.0,516.0 L784.0,315.6
+ M784.2,516.0 L784.2,310.7 M784.4,516.0 L784.4,306.8 M784.5,516.0 L784.5,303.6 M784.7,516.0 L784.7,301.0
+ M784.9,516.0 L784.9,298.8 M785.1,516.0 L785.1,297.1 M785.3,516.0 L785.3,295.7 M785.5,516.0 L785.5,294.6
+ M785.6,516.0 L785.6,293.8 M785.8,516.0 L785.8,293.3 M786.0,516.0 L786.0,293.1 M786.2,516.0 L786.2,293.1
+ M786.4,516.0 L786.4,293.4 M786.5,516.0 L786.5,294.0 M786.7,516.0 L786.7,294.8 M786.9,516.0 L786.9,296.0
+ M787.1,516.0 L787.1,297.5 M787.3,516.0 L787.3,299.4 M787.4,516.0 L787.4,301.7 M787.6,516.0 L787.6,304.5
+ M787.8,516.0 L787.8,307.9 M788.0,516.0 L788.0,312.2 M788.2,516.0 L788.2,317.6 M788.3,516.0 L788.3,324.6
+ M788.5,516.0 L788.5,334.5 M788.7,516.0 L788.7,350.5 M788.9,516.0 L788.9,394.8 M789.1,516.0 L789.1,364.5
+ M789.2,516.0 L789.2,341.2 M789.4,516.0 L789.4,328.9 M789.6,516.0 L789.6,320.6 M789.8,516.0 L789.8,314.4
+ M790.0,516.0 L790.0,309.6 M790.1,516.0 L790.1,305.7 M790.3,516.0 L790.3,302.5 M790.5,516.0 L790.5,299.9
+ M790.7,516.0 L790.7,297.8 M790.9,516.0 L790.9,296.0 M791.0,516.0 L791.0,294.6 M791.2,516.0 L791.2,293.5
+ M791.4,516.0 L791.4,292.8 M791.6,516.0 L791.6,292.3 M791.8,516.0 L791.8,292.0 M791.9,516.0 L791.9,292.1
+ M792.1,516.0 L792.1,292.4 M792.3,516.0 L792.3,293.0 M792.5,516.0 L792.5,293.8 M792.7,516.0 L792.7,295.0
+ M792.8,516.0 L792.8,296.5 M793.0,516.0 L793.0,298.4 M793.2,516.0 L793.2,300.7 M793.4,516.0 L793.4,303.5
+ M793.6,516.0 L793.6,307.0 M793.7,516.0 L793.7,311.3 M793.9,516.0 L793.9,316.7 M794.1,516.0 L794.1,323.8
+ M794.3,516.0 L794.3,333.8 M794.5,516.0 L794.5,350.1 M794.7,516.0 L794.7,397.1 M794.8,516.0 L794.8,362.4
+ M795.0,516.0 L795.0,339.7 M795.2,516.0 L795.2,327.6 M795.4,516.0 L795.4,319.3 M795.6,516.0 L795.6,313.2
+ M795.7,516.0 L795.7,308.4 M795.9,516.0 L795.9,304.5 M796.1,516.0 L796.1,301.4 M796.3,516.0 L796.3,298.8
+ M796.5,516.0 L796.5,296.7 M796.6,516.0 L796.6,294.9 M796.8,516.0 L796.8,293.5 M797.0,516.0 L797.0,292.5
+ M797.2,516.0 L797.2,291.7 M797.4,516.0 L797.4,291.2 M797.5,516.0 L797.5,291.0 M797.7,516.0 L797.7,291.0
+ M797.9,516.0 L797.9,291.3 M798.1,516.0 L798.1,291.9 M798.3,516.0 L798.3,292.8 M798.4,516.0 L798.4,294.0
+ M798.6,516.0 L798.6,295.5 M798.8,516.0 L798.8,297.4 M799.0,516.0 L799.0,299.7 M799.2,516.0 L799.2,302.6
+ M799.3,516.0 L799.3,306.1 M799.5,516.0 L799.5,310.4 M799.7,516.0 L799.7,315.8 M799.9,516.0 L799.9,323.0
+ M800.1,516.0 L800.1,333.1 M800.2,516.0 L800.2,349.7 M800.4,516.0 L800.4,400.2 M800.6,516.0 L800.6,360.2
+ M800.8,516.0 L800.8,338.1 M801.0,516.0 L801.0,326.2 M801.1,516.0 L801.1,318.0 M801.3,516.0 L801.3,312.0
+ M801.5,516.0 L801.5,307.2 M801.7,516.0 L801.7,303.4 M801.9,516.0 L801.9,300.2 M802.0,516.0 L802.0,297.6
+ M802.2,516.0 L802.2,295.5 M802.4,516.0 L802.4,293.8 M802.6,516.0 L802.6,292.4 M802.8,516.0 L802.8,291.3
+ M803.0,516.0 L803.0,290.6 M803.1,516.0 L803.1,290.1 M803.3,516.0 L803.3,289.9 M803.5,516.0 L803.5,289.9
+ M803.7,516.0 L803.7,290.2 M803.9,516.0 L803.9,290.8 M804.0,516.0 L804.0,291.7 M804.2,516.0 L804.2,292.9
+ M804.4,516.0 L804.4,294.5 M804.6,516.0 L804.6,296.4 M804.8,516.0 L804.8,298.7 M804.9,516.0 L804.9,301.6
+ M805.1,516.0 L805.1,305.1 M805.3,516.0 L805.3,309.4 M805.5,516.0 L805.5,314.9 M805.7,516.0 L805.7,322.1
+ M805.8,516.0 L805.8,332.4 M806.0,516.0 L806.0,349.4 M806.2,516.0 L806.2,404.4 M806.4,516.0 L806.4,358.0
+ M806.6,516.0 L806.6,336.5 '/> <path stroke='rgb(222, 125, 0)' d='M806.7,516.0 L806.7,324.7 M806.9,516.0 L806.9,316.7 M807.1,516.0 L807.1,310.7 M807.3,516.0 L807.3,305.9
+ M807.5,516.0 L807.5,302.1 M807.6,516.0 L807.6,299.0 M807.8,516.0 L807.8,296.4 M808.0,516.0 L808.0,294.3
+ M808.2,516.0 L808.2,292.6 M808.4,516.0 L808.4,291.2 M808.5,516.0 L808.5,290.2 M808.7,516.0 L808.7,289.4
+ M808.9,516.0 L808.9,288.9 M809.1,516.0 L809.1,288.7 M809.3,516.0 L809.3,288.8 M809.4,516.0 L809.4,289.1
+ M809.6,516.0 L809.6,289.7 M809.8,516.0 L809.8,290.6 M810.0,516.0 L810.0,291.8 M810.2,516.0 L810.2,293.4
+ M810.3,516.0 L810.3,295.3 M810.5,516.0 L810.5,297.6 M810.7,516.0 L810.7,300.5 M810.9,516.0 L810.9,304.1
+ M811.1,516.0 L811.1,308.4 M811.3,516.0 L811.3,314.0 M811.4,516.0 L811.4,321.3 M811.6,516.0 L811.6,331.7
+ M811.8,516.0 L811.8,349.1 M812.0,516.0 L812.0,410.6 M812.2,516.0 L812.2,355.7 M812.3,516.0 L812.3,334.8
+ M812.5,516.0 L812.5,323.2 M812.7,516.0 L812.7,315.3 M812.9,516.0 L812.9,309.3 M813.1,516.0 L813.1,304.6
+ M813.2,516.0 L813.2,300.8 M813.4,516.0 L813.4,297.7 M813.6,516.0 L813.6,295.1 M813.8,516.0 L813.8,293.1
+ M814.0,516.0 L814.0,291.3 M814.1,516.0 L814.1,290.0 M814.3,516.0 L814.3,289.0 M814.5,516.0 L814.5,288.2
+ M814.7,516.0 L814.7,287.7 M814.9,516.0 L814.9,287.5 M815.0,516.0 L815.0,287.6 M815.2,516.0 L815.2,287.9
+ M815.4,516.0 L815.4,288.6 M815.6,516.0 L815.6,289.5 M815.8,516.0 L815.8,290.7 M815.9,516.0 L815.9,292.2
+ M816.1,516.0 L816.1,294.2 M816.3,516.0 L816.3,296.5 M816.5,516.0 L816.5,299.5 M816.7,516.0 L816.7,303.0
+ M816.8,516.0 L816.8,307.4 M817.0,516.0 L817.0,313.0 M817.2,516.0 L817.2,320.4 M817.4,516.0 L817.4,331.0
+ M817.6,516.0 L817.6,348.9 M817.7,516.0 L817.7,420.5 M817.9,516.0 L817.9,353.2 M818.1,516.0 L818.1,333.0
+ M818.3,516.0 L818.3,321.6 M818.5,516.0 L818.5,313.8 M818.6,516.0 L818.6,307.8 M818.8,516.0 L818.8,303.2
+ M819.0,516.0 L819.0,299.4 M819.2,516.0 L819.2,296.4 M819.4,516.0 L819.4,293.8 M819.6,516.0 L819.6,291.7
+ M819.7,516.0 L819.7,290.1 M819.9,516.0 L819.9,288.7 M820.1,516.0 L820.1,287.7 M820.3,516.0 L820.3,286.9
+ M820.5,516.0 L820.5,286.5 M820.6,516.0 L820.6,286.3 M820.8,516.0 L820.8,286.4 M821.0,516.0 L821.0,286.7
+ M821.2,516.0 L821.2,287.3 M821.4,516.0 L821.4,288.3 M821.5,516.0 L821.5,289.5 M821.7,516.0 L821.7,291.1
+ M821.9,516.0 L821.9,293.0 M822.1,516.0 L822.1,295.4 M822.3,516.0 L822.3,298.3 M822.4,516.0 L822.4,301.9
+ M822.6,516.0 L822.6,306.4 M822.8,516.0 L822.8,312.0 M823.0,516.0 L823.0,319.5 M823.2,516.0 L823.2,330.3
+ M823.3,516.0 L823.3,348.7 M823.5,516.0 L823.5,440.9 M823.7,516.0 L823.7,350.7 M823.9,516.0 L823.9,331.1
+ M824.1,516.0 L824.1,319.9 M824.2,516.0 L824.2,312.2 M824.4,516.0 L824.4,306.3 M824.6,516.0 L824.6,301.7
+ M824.8,516.0 L824.8,298.0 M825.0,516.0 L825.0,294.9 M825.1,516.0 L825.1,292.4 M825.3,516.0 L825.3,290.4
+ M825.5,516.0 L825.5,288.7 M825.7,516.0 L825.7,287.4 M825.9,516.0 L825.9,286.3 M826.0,516.0 L826.0,285.6
+ M826.2,516.0 L826.2,285.2 M826.4,516.0 L826.4,285.0 M826.6,516.0 L826.6,285.1 M826.8,516.0 L826.8,285.4
+ M826.9,516.0 L826.9,286.1 M827.1,516.0 L827.1,287.0 M827.3,516.0 L827.3,288.2 M827.5,516.0 L827.5,289.8
+ M827.7,516.0 L827.7,291.8 M827.9,516.0 L827.9,294.2 M828.0,516.0 L828.0,297.2 M828.2,516.0 L828.2,300.8
+ M828.4,516.0 L828.4,305.3 M828.6,516.0 L828.6,311.0 M828.8,516.0 L828.8,318.6 M828.9,516.0 L828.9,329.6
+ M829.1,516.0 L829.1,348.7 M829.3,516.0 L829.3,471.5 M829.5,516.0 L829.5,348.0 M829.7,516.0 L829.7,329.1
+ M829.8,516.0 L829.8,318.2 M830.0,516.0 L830.0,310.5 M830.2,516.0 L830.2,304.7 M830.4,516.0 L830.4,300.2
+ M830.6,516.0 L830.6,296.5 M830.7,516.0 L830.7,293.5 M830.9,516.0 L830.9,291.0 M831.1,516.0 L831.1,288.9
+ M831.3,516.0 L831.3,287.3 M831.5,516.0 L831.5,285.9 M831.6,516.0 L831.6,284.9 M831.8,516.0 L831.8,284.2
+ M832.0,516.0 L832.0,283.8 M832.2,516.0 L832.2,283.6 M832.4,516.0 L832.4,283.7 M832.5,516.0 L832.5,284.1
+ M832.7,516.0 L832.7,284.7 M832.9,516.0 L832.9,285.7 M833.1,516.0 L833.1,286.9 M833.3,516.0 L833.3,288.5
+ M833.4,516.0 L833.4,290.5 M833.6,516.0 L833.6,293.0 M833.8,516.0 L833.8,296.0 M834.0,516.0 L834.0,299.6
+ M834.2,516.0 L834.2,304.2 M834.3,516.0 L834.3,310.0 M834.5,516.0 L834.5,317.7 M834.7,516.0 L834.7,328.9
+ M834.9,516.0 L834.9,348.8 M835.1,516.0 L835.1,422.5 M835.2,516.0 L835.2,345.2 M835.4,516.0 L835.4,327.0
+ M835.6,516.0 L835.6,316.3 M835.8,516.0 L835.8,308.8 M836.0,516.0 L836.0,303.1 M836.2,516.0 L836.2,298.5
+ M836.3,516.0 L836.3,294.9 M836.5,516.0 L836.5,291.9 M836.7,516.0 L836.7,289.4 M836.9,516.0 L836.9,287.4
+ M837.1,516.0 L837.1,285.8 M837.2,516.0 L837.2,284.5 M837.4,516.0 L837.4,283.5 M837.6,516.0 L837.6,282.8
+ M837.8,516.0 L837.8,282.3 M838.0,516.0 L838.0,282.2 M838.1,516.0 L838.1,282.3 M838.3,516.0 L838.3,282.7
+ M838.5,516.0 L838.5,283.3 M838.7,516.0 L838.7,284.3 M838.9,516.0 L838.9,285.6 M839.0,516.0 L839.0,287.2
+ M839.2,516.0 L839.2,289.2 M839.4,516.0 L839.4,291.7 M839.6,516.0 L839.6,294.7 M839.8,516.0 L839.8,298.4
+ M839.9,516.0 L839.9,303.0 M840.1,516.0 L840.1,308.9 M840.3,516.0 L840.3,316.8 M840.5,516.0 L840.5,328.3
+ M840.7,516.0 L840.7,349.1 M840.8,516.0 L840.8,403.1 M841.0,516.0 L841.0,342.2 M841.2,516.0 L841.2,324.7
+ M841.4,516.0 L841.4,314.3 M841.6,516.0 L841.6,306.9 M841.7,516.0 L841.7,301.3 M841.9,516.0 L841.9,296.8
+ M842.1,516.0 L842.1,293.2 M842.3,516.0 L842.3,290.2 M842.5,516.0 L842.5,287.8 M842.6,516.0 L842.6,285.8
+ M842.8,516.0 L842.8,284.2 M843.0,516.0 L843.0,282.9 M843.2,516.0 L843.2,281.9 M843.4,516.0 L843.4,281.2
+ M843.5,516.0 L843.5,280.8 M843.7,516.0 L843.7,280.7 M843.9,516.0 L843.9,280.8 M844.1,516.0 L844.1,281.2
+ M844.3,516.0 L844.3,281.9 M844.5,516.0 L844.5,282.8 M844.6,516.0 L844.6,284.1 M844.8,516.0 L844.8,285.8
+ M845.0,516.0 L845.0,287.8 M845.2,516.0 L845.2,290.3 M845.4,516.0 L845.4,293.4 M845.5,516.0 L845.5,297.1
+ M845.7,516.0 L845.7,301.8 M845.9,516.0 L845.9,307.8 M846.1,516.0 L846.1,315.8 M846.3,516.0 L846.3,327.7
+ M846.4,516.0 L846.4,349.7 M846.6,516.0 L846.6,389.8 M846.8,516.0 L846.8,339.1 M847.0,516.0 L847.0,322.3
+ M847.2,516.0 L847.2,312.1 M847.3,516.0 L847.3,304.9 M847.5,516.0 L847.5,299.4 M847.7,516.0 L847.7,295.0
+ M847.9,516.0 L847.9,291.4 M848.1,516.0 L848.1,288.5 M848.2,516.0 L848.2,286.1 M848.4,516.0 L848.4,284.1
+ M848.6,516.0 L848.6,282.5 M848.8,516.0 L848.8,281.2 M849.0,516.0 L849.0,280.3 M849.1,516.0 L849.1,279.6
+ M849.3,516.0 L849.3,279.2 M849.5,516.0 L849.5,279.1 M849.7,516.0 L849.7,279.2 M849.9,516.0 L849.9,279.6
+ M850.0,516.0 L850.0,280.3 M850.2,516.0 L850.2,281.3 M850.4,516.0 L850.4,282.6 M850.6,516.0 L850.6,284.3
+ M850.8,516.0 L850.8,286.3 M850.9,516.0 L850.9,288.9 M851.1,516.0 L851.1,292.0 M851.3,516.0 L851.3,295.8
+ M851.5,516.0 L851.5,300.5 M851.7,516.0 L851.7,306.6 M851.8,516.0 L851.8,314.9 M852.0,516.0 L852.0,327.2
+ M852.2,516.0 L852.2,350.7 M852.4,516.0 L852.4,379.0 M852.6,516.0 L852.6,335.7 M852.8,516.0 L852.8,319.8
+ M852.9,516.0 L852.9,309.9 '/> <path stroke='rgb(222, 125, 0)' d='M853.1,516.0 L853.1,302.8 M853.3,516.0 L853.3,297.3 M853.5,516.0 L853.5,293.0 M853.7,516.0 L853.7,289.5
+ M853.8,516.0 L853.8,286.6 M854.0,516.0 L854.0,284.2 M854.2,516.0 L854.2,282.3 M854.4,516.0 L854.4,280.7
+ M854.6,516.0 L854.6,279.4 M854.7,516.0 L854.7,278.5 M854.9,516.0 L854.9,277.9 M855.1,516.0 L855.1,277.5
+ M855.3,516.0 L855.3,277.4 M855.5,516.0 L855.5,277.5 M855.6,516.0 L855.6,278.0 M855.8,516.0 L855.8,278.7
+ M856.0,516.0 L856.0,279.7 M856.2,516.0 L856.2,281.0 M856.4,516.0 L856.4,282.7 M856.5,516.0 L856.5,284.8
+ M856.7,516.0 L856.7,287.4 M856.9,516.0 L856.9,290.5 M857.1,516.0 L857.1,294.4 M857.3,516.0 L857.3,299.3
+ M857.4,516.0 L857.4,305.5 M857.6,516.0 L857.6,314.0 M857.8,516.0 L857.8,326.8 M858.0,516.0 L858.0,352.2
+ M858.2,516.0 L858.2,369.6 M858.3,516.0 L858.3,332.2 M858.5,516.0 L858.5,317.0 M858.7,516.0 L858.7,307.4
+ M858.9,516.0 L858.9,300.5 M859.1,516.0 L859.1,295.2 M859.2,516.0 L859.2,290.9 M859.4,516.0 L859.4,287.4
+ M859.6,516.0 L859.6,284.6 M859.8,516.0 L859.8,282.3 M860.0,516.0 L860.0,280.3 M860.1,516.0 L860.1,278.8
+ M860.3,516.0 L860.3,277.6 M860.5,516.0 L860.5,276.6 M860.7,516.0 L860.7,276.0 M860.9,516.0 L860.9,275.7
+ M861.1,516.0 L861.1,275.6 M861.2,516.0 L861.2,275.7 M861.4,516.0 L861.4,276.2 M861.6,516.0 L861.6,276.9
+ M861.8,516.0 L861.8,278.0 M862.0,516.0 L862.0,279.3 M862.1,516.0 L862.1,281.1 M862.3,516.0 L862.3,283.2
+ M862.5,516.0 L862.5,285.8 M862.7,516.0 L862.7,289.0 M862.9,516.0 L862.9,293.0 M863.0,516.0 L863.0,297.9
+ M863.2,516.0 L863.2,304.3 M863.4,516.0 L863.4,313.1 M863.6,516.0 L863.6,326.5 M863.8,516.0 L863.8,354.7
+ M863.9,516.0 L863.9,361.0 M864.1,516.0 L864.1,328.5 M864.3,516.0 L864.3,314.0 M864.5,516.0 L864.5,304.8
+ M864.7,516.0 L864.7,298.0 M864.8,516.0 L864.8,292.8 M865.0,516.0 L865.0,288.6 M865.2,516.0 L865.2,285.2
+ M865.4,516.0 L865.4,282.4 M865.6,516.0 L865.6,280.1 M865.7,516.0 L865.7,278.2 M865.9,516.0 L865.9,276.7
+ M866.1,516.0 L866.1,275.5 M866.3,516.0 L866.3,274.6 M866.5,516.0 L866.5,274.0 M866.6,516.0 L866.6,273.7
+ M866.8,516.0 L866.8,273.6 M867.0,516.0 L867.0,273.8 M867.2,516.0 L867.2,274.3 M867.4,516.0 L867.4,275.1
+ M867.5,516.0 L867.5,276.1 M867.7,516.0 L867.7,277.5 M867.9,516.0 L867.9,279.3 M868.1,516.0 L868.1,281.5
+ M868.3,516.0 L868.3,284.2 M868.4,516.0 L868.4,287.4 M868.6,516.0 L868.6,291.5 M868.8,516.0 L868.8,296.5
+ M869.0,516.0 L869.0,303.2 M869.2,516.0 L869.2,312.3 M869.3,516.0 L869.3,326.5 M869.5,516.0 L869.5,358.7
+ M869.7,516.0 L869.7,352.9 M869.9,516.0 L869.9,324.4 M870.1,516.0 L870.1,310.8 M870.3,516.0 L870.3,301.9
+ M870.4,516.0 L870.4,295.4 M870.6,516.0 L870.6,290.3 M870.8,516.0 L870.8,286.2 M871.0,516.0 L871.0,282.9
+ M871.2,516.0 L871.2,280.1 M871.3,516.0 L871.3,277.9 M871.5,516.0 L871.5,276.0 M871.7,516.0 L871.7,274.5
+ M871.9,516.0 L871.9,273.4 M872.1,516.0 L872.1,272.5 M872.2,516.0 L872.2,271.9 M872.4,516.0 L872.4,271.6
+ M872.6,516.0 L872.6,271.6 M872.8,516.0 L872.8,271.8 M873.0,516.0 L873.0,272.3 M873.1,516.0 L873.1,273.1
+ M873.3,516.0 L873.3,274.2 M873.5,516.0 L873.5,275.6 M873.7,516.0 L873.7,277.4 M873.9,516.0 L873.9,279.7
+ M874.0,516.0 L874.0,282.4 M874.2,516.0 L874.2,285.8 M874.4,516.0 L874.4,289.9 M874.6,516.0 L874.6,295.2
+ M874.8,516.0 L874.8,302.0 M874.9,516.0 L874.9,311.6 M875.1,516.0 L875.1,326.9 M875.3,516.0 L875.3,365.9
+ M875.5,516.0 L875.5,345.0 M875.7,516.0 L875.7,320.1 M875.8,516.0 L875.8,307.3 M876.0,516.0 L876.0,298.8
+ M876.2,516.0 L876.2,292.4 M876.4,516.0 L876.4,287.5 M876.6,516.0 L876.6,283.5 M876.7,516.0 L876.7,280.3
+ M876.9,516.0 L876.9,277.6 M877.1,516.0 L877.1,275.4 M877.3,516.0 L877.3,273.6 M877.5,516.0 L877.5,272.1
+ M877.6,516.0 L877.6,271.0 M877.8,516.0 L877.8,270.2 M878.0,516.0 L878.0,269.6 M878.2,516.0 L878.2,269.4
+ M878.4,516.0 L878.4,269.3 M878.6,516.0 L878.6,269.6 M878.7,516.0 L878.7,270.2 M878.9,516.0 L878.9,271.0
+ M879.1,516.0 L879.1,272.1 M879.3,516.0 L879.3,273.6 M879.5,516.0 L879.5,275.5 M879.6,516.0 L879.6,277.8
+ M879.8,516.0 L879.8,280.6 M880.0,516.0 L880.0,284.0 M880.2,516.0 L880.2,288.3 M880.4,516.0 L880.4,293.7
+ M880.5,516.0 L880.5,300.9 M880.7,516.0 L880.7,311.0 M880.9,516.0 L880.9,327.9 M881.1,516.0 L881.1,381.2
+ M881.3,516.0 L881.3,337.1 M881.4,516.0 L881.4,315.3 M881.6,516.0 L881.6,303.4 M881.8,516.0 L881.8,295.3
+ M882.0,516.0 L882.0,289.2 M882.2,516.0 L882.2,284.5 M882.3,516.0 L882.3,280.6 M882.5,516.0 L882.5,277.4
+ M882.7,516.0 L882.7,274.8 M882.9,516.0 L882.9,272.7 M883.1,516.0 L883.1,270.9 M883.2,516.0 L883.2,269.5
+ M883.4,516.0 L883.4,268.4 M883.6,516.0 L883.6,267.7 M883.8,516.0 L883.8,267.1 M884.0,516.0 L884.0,266.9
+ M884.1,516.0 L884.1,266.9 M884.3,516.0 L884.3,267.2 M884.5,516.0 L884.5,267.8 M884.7,516.0 L884.7,268.7
+ M884.9,516.0 L884.9,269.9 M885.0,516.0 L885.0,271.4 M885.2,516.0 L885.2,273.4 M885.4,516.0 L885.4,275.7
+ M885.6,516.0 L885.6,278.6 M885.8,516.0 L885.8,282.2 M885.9,516.0 L885.9,286.7 M886.1,516.0 L886.1,292.3
+ M886.3,516.0 L886.3,299.9 M886.5,516.0 L886.5,310.8 M886.7,516.0 L886.7,329.9 M886.9,516.0 L886.9,451.0
+ M887.0,516.0 L887.0,329.1 M887.2,516.0 L887.2,310.2 M887.4,516.0 L887.4,299.2 M887.6,516.0 L887.6,291.5
+ M887.8,516.0 L887.8,285.7 M887.9,516.0 L887.9,281.1 M888.1,516.0 L888.1,277.4 M888.3,516.0 L888.3,274.3
+ M888.5,516.0 L888.5,271.8 M888.7,516.0 L888.7,269.7 M888.8,516.0 L888.8,268.0 M889.0,516.0 L889.0,266.7
+ M889.2,516.0 L889.2,265.6 M889.4,516.0 L889.4,264.9 M889.6,516.0 L889.6,264.4 M889.7,516.0 L889.7,264.2
+ M889.9,516.0 L889.9,264.3 M890.1,516.0 L890.1,264.7 M890.3,516.0 L890.3,265.3 M890.5,516.0 L890.5,266.2
+ M890.6,516.0 L890.6,267.5 M890.8,516.0 L890.8,269.1 M891.0,516.0 L891.0,271.1 M891.2,516.0 L891.2,273.6
+ M891.4,516.0 L891.4,276.6 M891.5,516.0 L891.5,280.3 M891.7,516.0 L891.7,285.0 M891.9,516.0 L891.9,291.0
+ M892.1,516.0 L892.1,299.2 M892.3,516.0 L892.3,311.2 M892.4,516.0 L892.4,334.0 M892.6,516.0 L892.6,366.9
+ M892.8,516.0 L892.8,320.8 M893.0,516.0 L893.0,304.5 M893.2,516.0 L893.2,294.4 M893.3,516.0 L893.3,287.3
+ M893.5,516.0 L893.5,281.7 M893.7,516.0 L893.7,277.4 M893.9,516.0 L893.9,273.8 M894.1,516.0 L894.1,270.8
+ M894.2,516.0 L894.2,268.4 M894.4,516.0 L894.4,266.4 M894.6,516.0 L894.6,264.8 M894.8,516.0 L894.8,263.5
+ M895.0,516.0 L895.0,262.5 M895.2,516.0 L895.2,261.9 M895.3,516.0 L895.3,261.4 M895.5,516.0 L895.5,261.3
+ M895.7,516.0 L895.7,261.4 M895.9,516.0 L895.9,261.9 M896.1,516.0 L896.1,262.6 M896.2,516.0 L896.2,263.6
+ M896.4,516.0 L896.4,264.9 M896.6,516.0 L896.6,266.6 M896.8,516.0 L896.8,268.7 M897.0,516.0 L897.0,271.3
+ M897.1,516.0 L897.1,274.5 M897.3,516.0 L897.3,278.5 M897.5,516.0 L897.5,283.4 M897.7,516.0 L897.7,289.9
+ M897.9,516.0 L897.9,298.8 M898.0,516.0 L898.0,312.7 M898.2,516.0 L898.2,343.0 M898.4,516.0 L898.4,342.3
+ M898.6,516.0 L898.6,312.2 M898.8,516.0 L898.8,298.2 M898.9,516.0 L898.9,289.1 M899.1,516.0 L899.1,282.5
+ M899.3,516.0 L899.3,277.3 '/> <path stroke='rgb(222, 125, 0)' d='M899.5,516.0 L899.5,273.1 M899.7,516.0 L899.7,269.7 M899.8,516.0 L899.8,266.9 M900.0,516.0 L900.0,264.6
+ M900.2,516.0 L900.2,262.7 M900.4,516.0 L900.4,261.2 M900.6,516.0 L900.6,260.0 M900.7,516.0 L900.7,259.1
+ M900.9,516.0 L900.9,258.5 M901.1,516.0 L901.1,258.1 M901.3,516.0 L901.3,258.1 M901.5,516.0 L901.5,258.3
+ M901.6,516.0 L901.6,258.8 M901.8,516.0 L901.8,259.6 M902.0,516.0 L902.0,260.7 M902.2,516.0 L902.2,262.1
+ M902.4,516.0 L902.4,263.9 M902.5,516.0 L902.5,266.2 M902.7,516.0 L902.7,268.9 M902.9,516.0 L902.9,272.4
+ M903.1,516.0 L903.1,276.6 M903.3,516.0 L903.3,282.0 M903.5,516.0 L903.5,289.2 M903.6,516.0 L903.6,299.4
+ M903.8,516.0 L903.8,316.4 M904.0,516.0 L904.0,372.8 M904.2,516.0 L904.2,324.4 M904.4,516.0 L904.4,303.0
+ M904.5,516.0 L904.5,291.1 M904.7,516.0 L904.7,283.0 M904.9,516.0 L904.9,277.0 M905.1,516.0 L905.1,272.2
+ M905.3,516.0 L905.3,268.3 M905.4,516.0 L905.4,265.1 M905.6,516.0 L905.6,262.5 M905.8,516.0 L905.8,260.3
+ M906.0,516.0 L906.0,258.5 M906.2,516.0 L906.2,257.1 M906.3,516.0 L906.3,256.0 M906.5,516.0 L906.5,255.2
+ M906.7,516.0 L906.7,254.7 M906.9,516.0 L906.9,254.5 M907.1,516.0 L907.1,254.5 M907.2,516.0 L907.2,254.8
+ M907.4,516.0 L907.4,255.4 M907.6,516.0 L907.6,256.3 M907.8,516.0 L907.8,257.5 M908.0,516.0 L908.0,259.1
+ M908.1,516.0 L908.1,261.1 M908.3,516.0 L908.3,263.5 M908.5,516.0 L908.5,266.6 M908.7,516.0 L908.7,270.3
+ M908.9,516.0 L908.9,275.0 M909.0,516.0 L909.0,281.1 M909.2,516.0 L909.2,289.4 M909.4,516.0 L909.4,301.9
+ M909.6,516.0 L909.6,326.3 M909.8,516.0 L909.8,348.5 M909.9,516.0 L909.9,308.5 M910.1,516.0 L910.1,292.9
+ M910.3,516.0 L910.3,283.1 M910.5,516.0 L910.5,276.0 M910.7,516.0 L910.7,270.6 M910.8,516.0 L910.8,266.2
+ M911.0,516.0 L911.0,262.7 M911.2,516.0 L911.2,259.8 M911.4,516.0 L911.4,257.4 M911.6,516.0 L911.6,255.4
+ M911.8,516.0 L911.8,253.7 M911.9,516.0 L911.9,252.5 M912.1,516.0 L912.1,251.5 M912.3,516.0 L912.3,250.8
+ M912.5,516.0 L912.5,250.4 M912.7,516.0 L912.7,250.3 M912.8,516.0 L912.8,250.5 M913.0,516.0 L913.0,250.9
+ M913.2,516.0 L913.2,251.7 M913.4,516.0 L913.4,252.8 M913.6,516.0 L913.6,254.2 M913.7,516.0 L913.7,256.0
+ M913.9,516.0 L913.9,258.2 M914.1,516.0 L914.1,261.0 M914.3,516.0 L914.3,264.4 M914.5,516.0 L914.5,268.7
+ M914.6,516.0 L914.6,274.2 M914.8,516.0 L914.8,281.5 M915.0,516.0 L915.0,291.9 M915.2,516.0 L915.2,309.8
+ M915.4,516.0 L915.4,384.6 M915.5,516.0 L915.5,313.4 M915.7,516.0 L915.7,293.2 M915.9,516.0 L915.9,281.8
+ M916.1,516.0 L916.1,273.9 M916.3,516.0 L916.3,267.9 M916.4,516.0 L916.4,263.1 M916.6,516.0 L916.6,259.3
+ M916.8,516.0 L916.8,256.1 M917.0,516.0 L917.0,253.5 M917.2,516.0 L917.2,251.4 M917.3,516.0 L917.3,249.6
+ M917.5,516.0 L917.5,248.2 M917.7,516.0 L917.7,247.1 M917.9,516.0 L917.9,246.4 M918.1,516.0 L918.1,245.9
+ M918.2,516.0 L918.2,245.7 M918.4,516.0 L918.4,245.8 M918.6,516.0 L918.6,246.1 M918.8,516.0 L918.8,246.8
+ M919.0,516.0 L919.0,247.7 M919.1,516.0 L919.1,249.1 M919.3,516.0 L919.3,250.8 M919.5,516.0 L919.5,252.9
+ M919.7,516.0 L919.7,255.6 M919.9,516.0 L919.9,258.9 M920.1,516.0 L920.1,263.0 M920.2,516.0 L920.2,268.3
+ M920.4,516.0 L920.4,275.3 M920.6,516.0 L920.6,285.3 M920.8,516.0 L920.8,301.8 M921.0,516.0 L921.0,352.3
+ M921.1,516.0 L921.1,311.9 M921.3,516.0 L921.3,289.7 M921.5,516.0 L921.5,277.6 M921.7,516.0 L921.7,269.4
+ M921.9,516.0 L921.9,263.2 M922.0,516.0 L922.0,258.3 M922.2,516.0 L922.2,254.4 M922.4,516.0 L922.4,251.1
+ M922.6,516.0 L922.6,248.5 M922.8,516.0 L922.8,246.3 M922.9,516.0 L922.9,244.5 M923.1,516.0 L923.1,243.1
+ M923.3,516.0 L923.3,242.0 M923.5,516.0 L923.5,241.2 M923.7,516.0 L923.7,240.7 M923.8,516.0 L923.8,240.5
+ M924.0,516.0 L924.0,240.6 M924.2,516.0 L924.2,241.0 M924.4,516.0 L924.4,241.7 M924.6,516.0 L924.6,242.8
+ M924.7,516.0 L924.7,244.2 M924.9,516.0 L924.9,246.1 M925.1,516.0 L925.1,248.4 M925.3,516.0 L925.3,251.4
+ M925.5,516.0 L925.5,255.1 M925.6,516.0 L925.6,259.9 M925.8,516.0 L925.8,266.1 M926.0,516.0 L926.0,274.8
+ M926.2,516.0 L926.2,288.5 M926.4,516.0 L926.4,318.8 M926.5,516.0 L926.5,317.1 M926.7,516.0 L926.7,286.9
+ M926.9,516.0 L926.9,272.7 M927.1,516.0 L927.1,263.4 M927.3,516.0 L927.3,256.4 M927.4,516.0 L927.4,250.9
+ M927.6,516.0 L927.6,246.5 M927.8,516.0 L927.8,242.7 M928.0,516.0 L928.0,239.5 M928.2,516.0 L928.2,236.8
+ M928.4,516.0 L928.4,234.4 M928.5,516.0 L928.5,232.4 M928.7,516.0 L928.7,230.6 M928.9,516.0 L928.9,229.0
+ M929.1,516.0 L929.1,227.7 M929.3,516.0 L929.3,226.5 M929.4,516.0 L929.4,225.5 M929.6,516.0 L929.6,224.6
+ M929.8,516.0 L929.8,223.8 M930.0,516.0 L930.0,223.1 M930.2,516.0 L930.2,222.4 M930.3,516.0 L930.3,221.8
+ M930.5,516.0 L930.5,221.1 M930.7,516.0 L930.7,220.5 M930.9,516.0 L930.9,219.8 M931.1,516.0 L931.1,219.0
+ M931.2,516.0 L931.2,218.2 M931.4,516.0 L931.4,217.1 M931.6,516.0 L931.6,216.0 M931.8,516.0 L931.8,214.7
+ M932.0,516.0 L932.0,213.2 M932.1,516.0 L932.1,211.5 M932.3,516.0 L932.3,209.6 M932.5,516.0 L932.5,207.6
+ M932.7,516.0 L932.7,205.3 M932.9,516.0 L932.9,203.0 M933.0,516.0 L933.0,200.5 M933.2,516.0 L933.2,197.9
+ M933.4,516.0 L933.4,195.2 M933.6,516.0 L933.6,192.4 M933.8,516.0 L933.8,189.6 M933.9,516.0 L933.9,186.8
+ M934.1,516.0 L934.1,184.0 M934.3,516.0 L934.3,181.2 M934.5,516.0 L934.5,178.4 M934.7,516.0 L934.7,175.6
+ M934.8,516.0 L934.8,172.8 M935.0,516.0 L935.0,170.1 M935.2,516.0 L935.2,167.5 M935.4,516.0 L935.4,164.9
+ M935.6,516.0 L935.6,162.3 M935.7,516.0 L935.7,159.9 M935.9,516.0 L935.9,157.4 M936.1,516.0 L936.1,155.1
+ M936.3,516.0 L936.3,152.8 M936.5,516.0 L936.5,150.5 M936.7,516.0 L936.7,148.3 M936.8,516.0 L936.8,146.2
+ M937.0,516.0 L937.0,144.2 M937.2,516.0 L937.2,142.2 M937.4,516.0 L937.4,140.2 M937.6,516.0 L937.6,138.3
+ M937.7,516.0 L937.7,136.5 M937.9,516.0 L937.9,134.8 M938.1,516.0 L938.1,133.1 M938.3,516.0 L938.3,131.4
+ M938.5,516.0 L938.5,129.8 M938.6,516.0 L938.6,128.3 M938.8,516.0 L938.8,126.8 M939.0,516.0 L939.0,125.3
+ M939.2,516.0 L939.2,123.9 M939.4,516.0 L939.4,122.6 M939.5,516.0 L939.5,121.3 M939.7,516.0 L939.7,120.1
+ M939.9,516.0 L939.9,118.9 M940.1,516.0 L940.1,117.8 M940.3,516.0 L940.3,116.7 M940.4,516.0 L940.4,115.6
+ M940.6,516.0 L940.6,114.6 M940.8,516.0 L940.8,113.7 M941.0,516.0 L941.0,112.7 M941.2,516.0 L941.2,111.9
+ M941.3,516.0 L941.3,111.0 M941.5,516.0 L941.5,110.3 M941.7,516.0 L941.7,109.5 M941.9,516.0 L941.9,108.8
+ M942.1,516.0 L942.1,108.2 M942.2,516.0 L942.2,107.6 M942.4,516.0 L942.4,107.0 M942.6,516.0 L942.6,106.5
+ M942.8,516.0 L942.8,106.0 M943.0,516.0 L943.0,105.5 M943.1,516.0 L943.1,105.1 M943.3,516.0 L943.3,104.7
+ M943.5,516.0 L943.5,104.4 M943.7,516.0 L943.7,104.1 M943.9,516.0 L943.9,103.9 M944.0,516.0 L944.0,103.6
+ M944.2,516.0 L944.2,103.5 M944.4,516.0 L944.4,103.3 M944.6,516.0 L944.6,103.2 M944.8,516.0 L944.8,103.2
+ M945.0,516.0 L945.0,103.2 M945.1,516.0 L945.1,103.2 M945.3,516.0 L945.3,103.2 M945.5,516.0 L945.5,103.3
+ M945.7,516.0 L945.7,103.5 '/> <path stroke='rgb(222, 125, 0)' d='M945.9,516.0 L945.9,103.6 M946.0,516.0 L946.0,103.9 M946.2,516.0 L946.2,104.1 M946.4,516.0 L946.4,104.4
+ M946.6,516.0 L946.6,104.7 M946.8,516.0 L946.8,105.1 M946.9,516.0 L946.9,105.5 M947.1,516.0 L947.1,106.0
+ M947.3,516.0 L947.3,106.5 M947.5,516.0 L947.5,107.0 M947.7,516.0 L947.7,107.6 M947.8,516.0 L947.8,108.2
+ M948.0,516.0 L948.0,108.8 M948.2,516.0 L948.2,109.5 M948.4,516.0 L948.4,110.3 M948.6,516.0 L948.6,111.0
+ M948.7,516.0 L948.7,111.9 M948.9,516.0 L948.9,112.7 M949.1,516.0 L949.1,113.7 M949.3,516.0 L949.3,114.6
+ M949.5,516.0 L949.5,115.6 M949.6,516.0 L949.6,116.7 M949.8,516.0 L949.8,117.8 M950.0,516.0 L950.0,118.9
+ M950.2,516.0 L950.2,120.1 M950.4,516.0 L950.4,121.3 M950.5,516.0 L950.5,122.6 M950.7,516.0 L950.7,123.9
+ M950.9,516.0 L950.9,125.3 M951.1,516.0 L951.1,126.8 M951.3,516.0 L951.3,128.3 M951.4,516.0 L951.4,129.8
+ M951.6,516.0 L951.6,131.4 M951.8,516.0 L951.8,133.1 M952.0,516.0 L952.0,134.8 M952.2,516.0 L952.2,136.5
+ M952.3,516.0 L952.3,138.3 M952.5,516.0 L952.5,140.2 M952.7,516.0 L952.7,142.2 M952.9,516.0 L952.9,144.2
+ M953.1,516.0 L953.1,146.2 M953.2,516.0 L953.2,148.3 M953.4,516.0 L953.4,150.5 M953.6,516.0 L953.6,152.8
+ M953.8,516.0 L953.8,155.1 M954.0,516.0 L954.0,157.4 M954.2,516.0 L954.2,159.9 M954.3,516.0 L954.3,162.3
+ M954.5,516.0 L954.5,164.9 M954.7,516.0 L954.7,167.5 M954.9,516.0 L954.9,170.1 M955.1,516.0 L955.1,172.8
+ M955.2,516.0 L955.2,175.6 M955.4,516.0 L955.4,178.4 M955.6,516.0 L955.6,181.2 M955.8,516.0 L955.8,184.0
+ M956.0,516.0 L956.0,186.8 M956.1,516.0 L956.1,189.6 M956.3,516.0 L956.3,192.4 M956.5,516.0 L956.5,195.2
+ M956.7,516.0 L956.7,197.9 M956.9,516.0 L956.9,200.5 M957.0,516.0 L957.0,203.0 M957.2,516.0 L957.2,205.3
+ M957.4,516.0 L957.4,207.6 M957.6,516.0 L957.6,209.6 M957.8,516.0 L957.8,211.5 M957.9,516.0 L957.9,213.2
+ M958.1,516.0 L958.1,214.7 M958.3,516.0 L958.3,216.0 M958.5,516.0 L958.5,217.1 M958.7,516.0 L958.7,218.2
+ M958.8,516.0 L958.8,219.0 M959.0,516.0 L959.0,219.8 M959.2,516.0 L959.2,220.5 M959.4,516.0 L959.4,221.1
+ M959.6,516.0 L959.6,221.8 M959.7,516.0 L959.7,222.4 M959.9,516.0 L959.9,223.1 M960.1,516.0 L960.1,223.8
+ M960.3,516.0 L960.3,224.6 M960.5,516.0 L960.5,225.5 M960.6,516.0 L960.6,226.5 M960.8,516.0 L960.8,227.7
+ M961.0,516.0 L961.0,229.0 M961.2,516.0 L961.2,230.6 M961.4,516.0 L961.4,232.4 M961.5,516.0 L961.5,234.4
+ M961.7,516.0 L961.7,236.8 M961.9,516.0 L961.9,239.5 M962.1,516.0 L962.1,242.7 M962.3,516.0 L962.3,246.5
+ M962.5,516.0 L962.5,250.9 M962.6,516.0 L962.6,256.4 M962.8,516.0 L962.8,263.4 M963.0,516.0 L963.0,272.7
+ M963.2,516.0 L963.2,286.9 M963.4,516.0 L963.4,317.1 M963.5,516.0 L963.5,318.8 M963.7,516.0 L963.7,288.5
+ M963.9,516.0 L963.9,274.8 M964.1,516.0 L964.1,266.1 M964.3,516.0 L964.3,259.9 M964.4,516.0 L964.4,255.1
+ M964.6,516.0 L964.6,251.4 M964.8,516.0 L964.8,248.4 M965.0,516.0 L965.0,246.1 M965.2,516.0 L965.2,244.2
+ M965.3,516.0 L965.3,242.8 M965.5,516.0 L965.5,241.7 M965.7,516.0 L965.7,241.0 M965.9,516.0 L965.9,240.6
+ M966.1,516.0 L966.1,240.5 M966.2,516.0 L966.2,240.7 M966.4,516.0 L966.4,241.2 M966.6,516.0 L966.6,242.0
+ M966.8,516.0 L966.8,243.1 M967.0,516.0 L967.0,244.5 M967.1,516.0 L967.1,246.3 M967.3,516.0 L967.3,248.5
+ M967.5,516.0 L967.5,251.1 M967.7,516.0 L967.7,254.4 M967.9,516.0 L967.9,258.3 M968.0,516.0 L968.0,263.2
+ M968.2,516.0 L968.2,269.4 M968.4,516.0 L968.4,277.6 M968.6,516.0 L968.6,289.7 M968.8,516.0 L968.8,311.9
+ M968.9,516.0 L968.9,352.3 M969.1,516.0 L969.1,301.8 M969.3,516.0 L969.3,285.3 M969.5,516.0 L969.5,275.3
+ M969.7,516.0 L969.7,268.3 M969.8,516.0 L969.8,263.0 M970.0,516.0 L970.0,258.9 M970.2,516.0 L970.2,255.6
+ M970.4,516.0 L970.4,252.9 M970.6,516.0 L970.6,250.8 M970.8,516.0 L970.8,249.1 M970.9,516.0 L970.9,247.7
+ M971.1,516.0 L971.1,246.8 M971.3,516.0 L971.3,246.1 M971.5,516.0 L971.5,245.8 M971.7,516.0 L971.7,245.7
+ M971.8,516.0 L971.8,245.9 M972.0,516.0 L972.0,246.4 M972.2,516.0 L972.2,247.1 M972.4,516.0 L972.4,248.2
+ M972.6,516.0 L972.6,249.6 M972.7,516.0 L972.7,251.4 M972.9,516.0 L972.9,253.5 M973.1,516.0 L973.1,256.1
+ M973.3,516.0 L973.3,259.3 M973.5,516.0 L973.5,263.1 M973.6,516.0 L973.6,267.9 M973.8,516.0 L973.8,273.9
+ M974.0,516.0 L974.0,281.8 M974.2,516.0 L974.2,293.2 M974.4,516.0 L974.4,313.4 M974.5,516.0 L974.5,384.6
+ M974.7,516.0 L974.7,309.8 M974.9,516.0 L974.9,291.9 M975.1,516.0 L975.1,281.5 M975.3,516.0 L975.3,274.2
+ M975.4,516.0 L975.4,268.7 M975.6,516.0 L975.6,264.4 M975.8,516.0 L975.8,261.0 M976.0,516.0 L976.0,258.2
+ M976.2,516.0 L976.2,256.0 M976.3,516.0 L976.3,254.2 M976.5,516.0 L976.5,252.8 M976.7,516.0 L976.7,251.7
+ M976.9,516.0 L976.9,250.9 M977.1,516.0 L977.1,250.5 M977.2,516.0 L977.2,250.3 M977.4,516.0 L977.4,250.4
+ M977.6,516.0 L977.6,250.8 M977.8,516.0 L977.8,251.5 M978.0,516.0 L978.0,252.5 M978.1,516.0 L978.1,253.7
+ M978.3,516.0 L978.3,255.4 M978.5,516.0 L978.5,257.4 M978.7,516.0 L978.7,259.8 M978.9,516.0 L978.9,262.7
+ M979.1,516.0 L979.1,266.2 M979.2,516.0 L979.2,270.6 M979.4,516.0 L979.4,276.0 M979.6,516.0 L979.6,283.1
+ M979.8,516.0 L979.8,292.9 M980.0,516.0 L980.0,308.5 M980.1,516.0 L980.1,348.5 M980.3,516.0 L980.3,326.3
+ M980.5,516.0 L980.5,301.9 M980.7,516.0 L980.7,289.4 M980.9,516.0 L980.9,281.1 M981.0,516.0 L981.0,275.0
+ M981.2,516.0 L981.2,270.3 M981.4,516.0 L981.4,266.6 M981.6,516.0 L981.6,263.5 M981.8,516.0 L981.8,261.1
+ M981.9,516.0 L981.9,259.1 M982.1,516.0 L982.1,257.5 M982.3,516.0 L982.3,256.3 M982.5,516.0 L982.5,255.4
+ M982.7,516.0 L982.7,254.8 M982.8,516.0 L982.8,254.5 M983.0,516.0 L983.0,254.5 M983.2,516.0 L983.2,254.7
+ M983.4,516.0 L983.4,255.2 M983.6,516.0 L983.6,256.0 M983.7,516.0 L983.7,257.1 M983.9,516.0 L983.9,258.5
+ M984.1,516.0 L984.1,260.3 M984.3,516.0 L984.3,262.5 M984.5,516.0 L984.5,265.1 M984.6,516.0 L984.6,268.3
+ M984.8,516.0 L984.8,272.2 M985.0,516.0 L985.0,277.0 M985.2,516.0 L985.2,283.0 M985.4,516.0 L985.4,291.1
+ M985.5,516.0 L985.5,303.0 M985.7,516.0 L985.7,324.4 M985.9,516.0 L985.9,372.8 M986.1,516.0 L986.1,316.4
+ M986.3,516.0 L986.3,299.4 M986.4,516.0 L986.4,289.2 M986.6,516.0 L986.6,282.0 M986.8,516.0 L986.8,276.6
+ M987.0,516.0 L987.0,272.4 M987.2,516.0 L987.2,268.9 M987.4,516.0 L987.4,266.2 M987.5,516.0 L987.5,263.9
+ M987.7,516.0 L987.7,262.1 M987.9,516.0 L987.9,260.7 M988.1,516.0 L988.1,259.6 M988.3,516.0 L988.3,258.8
+ M988.4,516.0 L988.4,258.3 M988.6,516.0 L988.6,258.1 M988.8,516.0 L988.8,258.1 M989.0,516.0 L989.0,258.5
+ M989.2,516.0 L989.2,259.1 M989.3,516.0 L989.3,260.0 M989.5,516.0 L989.5,261.2 M989.7,516.0 L989.7,262.7
+ M989.9,516.0 L989.9,264.6 M990.1,516.0 L990.1,266.9 M990.2,516.0 L990.2,269.7 M990.4,516.0 L990.4,273.1
+ M990.6,516.0 L990.6,277.3 M990.8,516.0 L990.8,282.5 M991.0,516.0 L991.0,289.1 M991.1,516.0 L991.1,298.2
+ M991.3,516.0 L991.3,312.2 M991.5,516.0 L991.5,342.3 M991.7,516.0 L991.7,343.0 M991.9,516.0 L991.9,312.7
+ M992.0,516.0 L992.0,298.8 '/> <path stroke='rgb(222, 125, 0)' d='M992.2,516.0 L992.2,289.9 M992.4,516.0 L992.4,283.4 M992.6,516.0 L992.6,278.5 M992.8,516.0 L992.8,274.5
+ M992.9,516.0 L992.9,271.3 M993.1,516.0 L993.1,268.7 M993.3,516.0 L993.3,266.6 M993.5,516.0 L993.5,264.9
+ M993.7,516.0 L993.7,263.6 M993.8,516.0 L993.8,262.6 M994.0,516.0 L994.0,261.9 M994.2,516.0 L994.2,261.4
+ M994.4,516.0 L994.4,261.3 M994.6,516.0 L994.6,261.4 M994.7,516.0 L994.7,261.9 M994.9,516.0 L994.9,262.5
+ M995.1,516.0 L995.1,263.5 M995.3,516.0 L995.3,264.8 M995.5,516.0 L995.5,266.4 M995.7,516.0 L995.7,268.4
+ M995.8,516.0 L995.8,270.8 M996.0,516.0 L996.0,273.8 M996.2,516.0 L996.2,277.4 M996.4,516.0 L996.4,281.7
+ M996.6,516.0 L996.6,287.3 M996.7,516.0 L996.7,294.4 M996.9,516.0 L996.9,304.5 M997.1,516.0 L997.1,320.8
+ M997.3,516.0 L997.3,366.9 M997.5,516.0 L997.5,334.0 M997.6,516.0 L997.6,311.2 M997.8,516.0 L997.8,299.2
+ M998.0,516.0 L998.0,291.0 M998.2,516.0 L998.2,285.0 M998.4,516.0 L998.4,280.3 M998.5,516.0 L998.5,276.6
+ M998.7,516.0 L998.7,273.6 M998.9,516.0 L998.9,271.1 M999.1,516.0 L999.1,269.1 M999.3,516.0 L999.3,267.5
+ M999.4,516.0 L999.4,266.2 M999.6,516.0 L999.6,265.3 M999.8,516.0 L999.8,264.7 M1000.0,516.0 L1000.0,264.3
+ M1000.2,516.0 L1000.2,264.2 M1000.3,516.0 L1000.3,264.4 M1000.5,516.0 L1000.5,264.9 M1000.7,516.0 L1000.7,265.6
+ M1000.9,516.0 L1000.9,266.7 M1001.1,516.0 L1001.1,268.0 M1001.2,516.0 L1001.2,269.7 M1001.4,516.0 L1001.4,271.8
+ M1001.6,516.0 L1001.6,274.3 M1001.8,516.0 L1001.8,277.4 M1002.0,516.0 L1002.0,281.1 M1002.1,516.0 L1002.1,285.7
+ M1002.3,516.0 L1002.3,291.5 M1002.5,516.0 L1002.5,299.2 M1002.7,516.0 L1002.7,310.2 M1002.9,516.0 L1002.9,329.1
+ M1003.0,516.0 L1003.0,451.0 M1003.2,516.0 L1003.2,329.9 M1003.4,516.0 L1003.4,310.8 M1003.6,516.0 L1003.6,299.9
+ M1003.8,516.0 L1003.8,292.3 M1004.0,516.0 L1004.0,286.7 M1004.1,516.0 L1004.1,282.2 M1004.3,516.0 L1004.3,278.6
+ M1004.5,516.0 L1004.5,275.7 M1004.7,516.0 L1004.7,273.4 M1004.9,516.0 L1004.9,271.4 M1005.0,516.0 L1005.0,269.9
+ M1005.2,516.0 L1005.2,268.7 M1005.4,516.0 L1005.4,267.8 M1005.6,516.0 L1005.6,267.2 M1005.8,516.0 L1005.8,266.9
+ M1005.9,516.0 L1005.9,266.9 M1006.1,516.0 L1006.1,267.1 M1006.3,516.0 L1006.3,267.7 M1006.5,516.0 L1006.5,268.4
+ M1006.7,516.0 L1006.7,269.5 M1006.8,516.0 L1006.8,270.9 M1007.0,516.0 L1007.0,272.7 M1007.2,516.0 L1007.2,274.8
+ M1007.4,516.0 L1007.4,277.4 M1007.6,516.0 L1007.6,280.6 M1007.7,516.0 L1007.7,284.5 M1007.9,516.0 L1007.9,289.2
+ M1008.1,516.0 L1008.1,295.3 M1008.3,516.0 L1008.3,303.4 M1008.5,516.0 L1008.5,315.3 M1008.6,516.0 L1008.6,337.1
+ M1008.8,516.0 L1008.8,381.2 M1009.0,516.0 L1009.0,327.9 M1009.2,516.0 L1009.2,311.0 M1009.4,516.0 L1009.4,300.9
+ M1009.5,516.0 L1009.5,293.7 M1009.7,516.0 L1009.7,288.3 M1009.9,516.0 L1009.9,284.0 M1010.1,516.0 L1010.1,280.6
+ M1010.3,516.0 L1010.3,277.8 M1010.4,516.0 L1010.4,275.5 M1010.6,516.0 L1010.6,273.6 M1010.8,516.0 L1010.8,272.1
+ M1011.0,516.0 L1011.0,271.0 M1011.2,516.0 L1011.2,270.2 M1011.3,516.0 L1011.3,269.6 M1011.5,516.0 L1011.5,269.3
+ M1011.7,516.0 L1011.7,269.4 M1011.9,516.0 L1011.9,269.6 M1012.1,516.0 L1012.1,270.2 M1012.3,516.0 L1012.3,271.0
+ M1012.4,516.0 L1012.4,272.1 M1012.6,516.0 L1012.6,273.6 M1012.8,516.0 L1012.8,275.4 M1013.0,516.0 L1013.0,277.6
+ M1013.2,516.0 L1013.2,280.3 M1013.3,516.0 L1013.3,283.5 M1013.5,516.0 L1013.5,287.5 M1013.7,516.0 L1013.7,292.4
+ M1013.9,516.0 L1013.9,298.8 M1014.1,516.0 L1014.1,307.3 M1014.2,516.0 L1014.2,320.1 M1014.4,516.0 L1014.4,345.0
+ M1014.6,516.0 L1014.6,365.9 M1014.8,516.0 L1014.8,326.9 M1015.0,516.0 L1015.0,311.6 M1015.1,516.0 L1015.1,302.0
+ M1015.3,516.0 L1015.3,295.2 M1015.5,516.0 L1015.5,289.9 M1015.7,516.0 L1015.7,285.8 M1015.9,516.0 L1015.9,282.4
+ M1016.0,516.0 L1016.0,279.7 M1016.2,516.0 L1016.2,277.4 M1016.4,516.0 L1016.4,275.6 M1016.6,516.0 L1016.6,274.2
+ M1016.8,516.0 L1016.8,273.1 M1016.9,516.0 L1016.9,272.3 M1017.1,516.0 L1017.1,271.8 M1017.3,516.0 L1017.3,271.6
+ M1017.5,516.0 L1017.5,271.6 M1017.7,516.0 L1017.7,271.9 M1017.8,516.0 L1017.8,272.5 M1018.0,516.0 L1018.0,273.4
+ M1018.2,516.0 L1018.2,274.5 M1018.4,516.0 L1018.4,276.0 M1018.6,516.0 L1018.6,277.9 M1018.7,516.0 L1018.7,280.1
+ M1018.9,516.0 L1018.9,282.9 M1019.1,516.0 L1019.1,286.2 M1019.3,516.0 L1019.3,290.3 M1019.5,516.0 L1019.5,295.4
+ M1019.6,516.0 L1019.6,301.9 M1019.8,516.0 L1019.8,310.8 M1020.0,516.0 L1020.0,324.4 M1020.2,516.0 L1020.2,352.9
+ M1020.4,516.0 L1020.4,358.7 M1020.6,516.0 L1020.6,326.5 M1020.7,516.0 L1020.7,312.3 M1020.9,516.0 L1020.9,303.2
+ M1021.1,516.0 L1021.1,296.5 M1021.3,516.0 L1021.3,291.5 M1021.5,516.0 L1021.5,287.4 M1021.6,516.0 L1021.6,284.2
+ M1021.8,516.0 L1021.8,281.5 M1022.0,516.0 L1022.0,279.3 M1022.2,516.0 L1022.2,277.5 M1022.4,516.0 L1022.4,276.1
+ M1022.5,516.0 L1022.5,275.1 M1022.7,516.0 L1022.7,274.3 M1022.9,516.0 L1022.9,273.8 M1023.1,516.0 L1023.1,273.6
+ M1023.3,516.0 L1023.3,273.7 M1023.4,516.0 L1023.4,274.0 M1023.6,516.0 L1023.6,274.6 M1023.8,516.0 L1023.8,275.5
+ M1024.0,516.0 L1024.0,276.7 M1024.2,516.0 L1024.2,278.2 M1024.3,516.0 L1024.3,280.1 M1024.5,516.0 L1024.5,282.4
+ M1024.7,516.0 L1024.7,285.2 M1024.9,516.0 L1024.9,288.6 M1025.1,516.0 L1025.1,292.8 M1025.2,516.0 L1025.2,298.0
+ M1025.4,516.0 L1025.4,304.8 M1025.6,516.0 L1025.6,314.0 M1025.8,516.0 L1025.8,328.5 M1026.0,516.0 L1026.0,361.0
+ M1026.1,516.0 L1026.1,354.7 M1026.3,516.0 L1026.3,326.5 M1026.5,516.0 L1026.5,313.1 M1026.7,516.0 L1026.7,304.3
+ M1026.9,516.0 L1026.9,297.9 M1027.0,516.0 L1027.0,293.0 M1027.2,516.0 L1027.2,289.0 M1027.4,516.0 L1027.4,285.8
+ M1027.6,516.0 L1027.6,283.2 M1027.8,516.0 L1027.8,281.1 M1027.9,516.0 L1027.9,279.3 M1028.1,516.0 L1028.1,278.0
+ M1028.3,516.0 L1028.3,276.9 M1028.5,516.0 L1028.5,276.2 M1028.7,516.0 L1028.7,275.7 M1028.8,516.0 L1028.8,275.6
+ M1029.0,516.0 L1029.0,275.7 M1029.2,516.0 L1029.2,276.0 M1029.4,516.0 L1029.4,276.6 M1029.6,516.0 L1029.6,277.6
+ M1029.8,516.0 L1029.8,278.8 M1029.9,516.0 L1029.9,280.3 M1030.1,516.0 L1030.1,282.3 M1030.3,516.0 L1030.3,284.6
+ M1030.5,516.0 L1030.5,287.4 M1030.7,516.0 L1030.7,290.9 M1030.8,516.0 L1030.8,295.2 M1031.0,516.0 L1031.0,300.5
+ M1031.2,516.0 L1031.2,307.4 M1031.4,516.0 L1031.4,317.0 M1031.6,516.0 L1031.6,332.2 M1031.7,516.0 L1031.7,369.6
+ M1031.9,516.0 L1031.9,352.2 M1032.1,516.0 L1032.1,326.8 M1032.3,516.0 L1032.3,314.0 M1032.5,516.0 L1032.5,305.5
+ M1032.6,516.0 L1032.6,299.3 M1032.8,516.0 L1032.8,294.4 M1033.0,516.0 L1033.0,290.5 M1033.2,516.0 L1033.2,287.4
+ M1033.4,516.0 L1033.4,284.8 M1033.5,516.0 L1033.5,282.7 M1033.7,516.0 L1033.7,281.0 M1033.9,516.0 L1033.9,279.7
+ M1034.1,516.0 L1034.1,278.7 M1034.3,516.0 L1034.3,278.0 M1034.4,516.0 L1034.4,277.5 M1034.6,516.0 L1034.6,277.4
+ M1034.8,516.0 L1034.8,277.5 M1035.0,516.0 L1035.0,277.9 M1035.2,516.0 L1035.2,278.5 M1035.3,516.0 L1035.3,279.4
+ M1035.5,516.0 L1035.5,280.7 M1035.7,516.0 L1035.7,282.3 M1035.9,516.0 L1035.9,284.2 M1036.1,516.0 L1036.1,286.6
+ M1036.2,516.0 L1036.2,289.5 M1036.4,516.0 L1036.4,293.0 M1036.6,516.0 L1036.6,297.3 M1036.8,516.0 L1036.8,302.8
+ M1037.0,516.0 L1037.0,309.9 M1037.1,516.0 L1037.1,319.8 M1037.3,516.0 L1037.3,335.7 M1037.5,516.0 L1037.5,379.0
+ M1037.7,516.0 L1037.7,350.7 M1037.9,516.0 L1037.9,327.2 M1038.1,516.0 L1038.1,314.9 M1038.2,516.0 L1038.2,306.6
+ M1038.4,516.0 L1038.4,300.5 '/> <path stroke='rgb(222, 125, 0)' d='M1038.6,516.0 L1038.6,295.8 M1038.8,516.0 L1038.8,292.0 M1039.0,516.0 L1039.0,288.9 M1039.1,516.0 L1039.1,286.3
+ M1039.3,516.0 L1039.3,284.3 M1039.5,516.0 L1039.5,282.6 M1039.7,516.0 L1039.7,281.3 M1039.9,516.0 L1039.9,280.3
+ M1040.0,516.0 L1040.0,279.6 M1040.2,516.0 L1040.2,279.2 M1040.4,516.0 L1040.4,279.1 M1040.6,516.0 L1040.6,279.2
+ M1040.8,516.0 L1040.8,279.6 M1040.9,516.0 L1040.9,280.3 M1041.1,516.0 L1041.1,281.2 M1041.3,516.0 L1041.3,282.5
+ M1041.5,516.0 L1041.5,284.1 M1041.7,516.0 L1041.7,286.1 M1041.8,516.0 L1041.8,288.5 M1042.0,516.0 L1042.0,291.4
+ M1042.2,516.0 L1042.2,295.0 M1042.4,516.0 L1042.4,299.4 M1042.6,516.0 L1042.6,304.9 M1042.7,516.0 L1042.7,312.1
+ M1042.9,516.0 L1042.9,322.3 M1043.1,516.0 L1043.1,339.1 M1043.3,516.0 L1043.3,389.8 M1043.5,516.0 L1043.5,349.7
+ M1043.6,516.0 L1043.6,327.7 M1043.8,516.0 L1043.8,315.8 M1044.0,516.0 L1044.0,307.8 M1044.2,516.0 L1044.2,301.8
+ M1044.4,516.0 L1044.4,297.1 M1044.5,516.0 L1044.5,293.4 M1044.7,516.0 L1044.7,290.3 M1044.9,516.0 L1044.9,287.8
+ M1045.1,516.0 L1045.1,285.8 M1045.3,516.0 L1045.3,284.1 M1045.4,516.0 L1045.4,282.8 M1045.6,516.0 L1045.6,281.9
+ M1045.8,516.0 L1045.8,281.2 M1046.0,516.0 L1046.0,280.8 M1046.2,516.0 L1046.2,280.7 M1046.4,516.0 L1046.4,280.8
+ M1046.5,516.0 L1046.5,281.2 M1046.7,516.0 L1046.7,281.9 M1046.9,516.0 L1046.9,282.9 M1047.1,516.0 L1047.1,284.2
+ M1047.3,516.0 L1047.3,285.8 M1047.4,516.0 L1047.4,287.8 M1047.6,516.0 L1047.6,290.2 M1047.8,516.0 L1047.8,293.2
+ M1048.0,516.0 L1048.0,296.8 M1048.2,516.0 L1048.2,301.3 M1048.3,516.0 L1048.3,306.9 M1048.5,516.0 L1048.5,314.3
+ M1048.7,516.0 L1048.7,324.7 M1048.9,516.0 L1048.9,342.2 M1049.1,516.0 L1049.1,403.1 M1049.2,516.0 L1049.2,349.1
+ M1049.4,516.0 L1049.4,328.3 M1049.6,516.0 L1049.6,316.8 M1049.8,516.0 L1049.8,308.9 M1050.0,516.0 L1050.0,303.0
+ M1050.1,516.0 L1050.1,298.4 M1050.3,516.0 L1050.3,294.7 M1050.5,516.0 L1050.5,291.7 M1050.7,516.0 L1050.7,289.2
+ M1050.9,516.0 L1050.9,287.2 M1051.0,516.0 L1051.0,285.6 M1051.2,516.0 L1051.2,284.3 M1051.4,516.0 L1051.4,283.3
+ M1051.6,516.0 L1051.6,282.7 M1051.8,516.0 L1051.8,282.3 M1051.9,516.0 L1051.9,282.2 M1052.1,516.0 L1052.1,282.3
+ M1052.3,516.0 L1052.3,282.8 M1052.5,516.0 L1052.5,283.5 M1052.7,516.0 L1052.7,284.5 M1052.8,516.0 L1052.8,285.8
+ M1053.0,516.0 L1053.0,287.4 M1053.2,516.0 L1053.2,289.4 M1053.4,516.0 L1053.4,291.9 M1053.6,516.0 L1053.6,294.9
+ M1053.7,516.0 L1053.7,298.5 M1053.9,516.0 L1053.9,303.1 M1054.1,516.0 L1054.1,308.8 M1054.3,516.0 L1054.3,316.3
+ M1054.5,516.0 L1054.5,327.0 M1054.7,516.0 L1054.7,345.2 M1054.8,516.0 L1054.8,422.5 M1055.0,516.0 L1055.0,348.8
+ M1055.2,516.0 L1055.2,328.9 M1055.4,516.0 L1055.4,317.7 M1055.6,516.0 L1055.6,310.0 M1055.7,516.0 L1055.7,304.2
+ M1055.9,516.0 L1055.9,299.6 M1056.1,516.0 L1056.1,296.0 M1056.3,516.0 L1056.3,293.0 M1056.5,516.0 L1056.5,290.5
+ M1056.6,516.0 L1056.6,288.5 M1056.8,516.0 L1056.8,286.9 M1057.0,516.0 L1057.0,285.7 M1057.2,516.0 L1057.2,284.7
+ M1057.4,516.0 L1057.4,284.1 M1057.5,516.0 L1057.5,283.7 M1057.7,516.0 L1057.7,283.6 M1057.9,516.0 L1057.9,283.8
+ M1058.1,516.0 L1058.1,284.2 M1058.3,516.0 L1058.3,284.9 M1058.4,516.0 L1058.4,285.9 M1058.6,516.0 L1058.6,287.3
+ M1058.8,516.0 L1058.8,288.9 M1059.0,516.0 L1059.0,291.0 M1059.2,516.0 L1059.2,293.5 M1059.3,516.0 L1059.3,296.5
+ M1059.5,516.0 L1059.5,300.2 M1059.7,516.0 L1059.7,304.7 M1059.9,516.0 L1059.9,310.5 M1060.1,516.0 L1060.1,318.2
+ M1060.2,516.0 L1060.2,329.1 M1060.4,516.0 L1060.4,348.0 M1060.6,516.0 L1060.6,471.5 M1060.8,516.0 L1060.8,348.7
+ M1061.0,516.0 L1061.0,329.6 M1061.1,516.0 L1061.1,318.6 M1061.3,516.0 L1061.3,311.0 M1061.5,516.0 L1061.5,305.3
+ M1061.7,516.0 L1061.7,300.8 M1061.9,516.0 L1061.9,297.2 M1062.0,516.0 L1062.0,294.2 M1062.2,516.0 L1062.2,291.8
+ M1062.4,516.0 L1062.4,289.8 M1062.6,516.0 L1062.6,288.2 M1062.8,516.0 L1062.8,287.0 M1063.0,516.0 L1063.0,286.1
+ M1063.1,516.0 L1063.1,285.4 M1063.3,516.0 L1063.3,285.1 M1063.5,516.0 L1063.5,285.0 M1063.7,516.0 L1063.7,285.2
+ M1063.9,516.0 L1063.9,285.6 M1064.0,516.0 L1064.0,286.3 M1064.2,516.0 L1064.2,287.4 M1064.4,516.0 L1064.4,288.7
+ M1064.6,516.0 L1064.6,290.4 M1064.8,516.0 L1064.8,292.4 M1064.9,516.0 L1064.9,294.9 M1065.1,516.0 L1065.1,298.0
+ M1065.3,516.0 L1065.3,301.7 M1065.5,516.0 L1065.5,306.3 M1065.7,516.0 L1065.7,312.2 M1065.8,516.0 L1065.8,319.9
+ M1066.0,516.0 L1066.0,331.1 M1066.2,516.0 L1066.2,350.7 M1066.4,516.0 L1066.4,440.9 M1066.6,516.0 L1066.6,348.7
+ M1066.7,516.0 L1066.7,330.3 M1066.9,516.0 L1066.9,319.5 M1067.1,516.0 L1067.1,312.0 M1067.3,516.0 L1067.3,306.4
+ M1067.5,516.0 L1067.5,301.9 M1067.6,516.0 L1067.6,298.3 M1067.8,516.0 L1067.8,295.4 M1068.0,516.0 L1068.0,293.0
+ M1068.2,516.0 L1068.2,291.1 M1068.4,516.0 L1068.4,289.5 M1068.5,516.0 L1068.5,288.3 M1068.7,516.0 L1068.7,287.3
+ M1068.9,516.0 L1068.9,286.7 M1069.1,516.0 L1069.1,286.4 M1069.3,516.0 L1069.3,286.3 M1069.4,516.0 L1069.4,286.5
+ M1069.6,516.0 L1069.6,286.9 M1069.8,516.0 L1069.8,287.7 M1070.0,516.0 L1070.0,288.7 M1070.2,516.0 L1070.2,290.1
+ M1070.3,516.0 L1070.3,291.7 M1070.5,516.0 L1070.5,293.8 M1070.7,516.0 L1070.7,296.4 M1070.9,516.0 L1070.9,299.4
+ M1071.1,516.0 L1071.1,303.2 M1071.3,516.0 L1071.3,307.8 M1071.4,516.0 L1071.4,313.8 M1071.6,516.0 L1071.6,321.6
+ M1071.8,516.0 L1071.8,333.0 M1072.0,516.0 L1072.0,353.2 M1072.2,516.0 L1072.2,420.5 M1072.3,516.0 L1072.3,348.9
+ M1072.5,516.0 L1072.5,331.0 M1072.7,516.0 L1072.7,320.4 M1072.9,516.0 L1072.9,313.0 M1073.1,516.0 L1073.1,307.4
+ M1073.2,516.0 L1073.2,303.0 M1073.4,516.0 L1073.4,299.5 M1073.6,516.0 L1073.6,296.5 M1073.8,516.0 L1073.8,294.2
+ M1074.0,516.0 L1074.0,292.2 M1074.1,516.0 L1074.1,290.7 M1074.3,516.0 L1074.3,289.5 M1074.5,516.0 L1074.5,288.6
+ M1074.7,516.0 L1074.7,287.9 M1074.9,516.0 L1074.9,287.6 M1075.0,516.0 L1075.0,287.5 M1075.2,516.0 L1075.2,287.7
+ M1075.4,516.0 L1075.4,288.2 M1075.6,516.0 L1075.6,289.0 M1075.8,516.0 L1075.8,290.0 M1075.9,516.0 L1075.9,291.3
+ M1076.1,516.0 L1076.1,293.1 M1076.3,516.0 L1076.3,295.1 M1076.5,516.0 L1076.5,297.7 M1076.7,516.0 L1076.7,300.8
+ M1076.8,516.0 L1076.8,304.6 M1077.0,516.0 L1077.0,309.3 M1077.2,516.0 L1077.2,315.3 M1077.4,516.0 L1077.4,323.2
+ M1077.6,516.0 L1077.6,334.8 M1077.7,516.0 L1077.7,355.7 M1077.9,516.0 L1077.9,410.6 M1078.1,516.0 L1078.1,349.1
+ M1078.3,516.0 L1078.3,331.7 M1078.5,516.0 L1078.5,321.3 M1078.6,516.0 L1078.6,314.0 M1078.8,516.0 L1078.8,308.4
+ M1079.0,516.0 L1079.0,304.1 M1079.2,516.0 L1079.2,300.5 M1079.4,516.0 L1079.4,297.6 M1079.6,516.0 L1079.6,295.3
+ M1079.7,516.0 L1079.7,293.4 M1079.9,516.0 L1079.9,291.8 M1080.1,516.0 L1080.1,290.6 M1080.3,516.0 L1080.3,289.7
+ M1080.5,516.0 L1080.5,289.1 M1080.6,516.0 L1080.6,288.8 M1080.8,516.0 L1080.8,288.7 M1081.0,516.0 L1081.0,288.9
+ M1081.2,516.0 L1081.2,289.4 M1081.4,516.0 L1081.4,290.2 M1081.5,516.0 L1081.5,291.2 M1081.7,516.0 L1081.7,292.6
+ M1081.9,516.0 L1081.9,294.3 M1082.1,516.0 L1082.1,296.4 M1082.3,516.0 L1082.3,299.0 M1082.4,516.0 L1082.4,302.1
+ M1082.6,516.0 L1082.6,305.9 M1082.8,516.0 L1082.8,310.7 M1083.0,516.0 L1083.0,316.7 M1083.2,516.0 L1083.2,324.7
+ M1083.3,516.0 L1083.3,336.5 M1083.5,516.0 L1083.5,358.0 M1083.7,516.0 L1083.7,404.4 M1083.9,516.0 L1083.9,349.4
+ M1084.1,516.0 L1084.1,332.4 M1084.2,516.0 L1084.2,322.1 M1084.4,516.0 L1084.4,314.9 M1084.6,516.0 L1084.6,309.4
+ M1084.8,516.0 L1084.8,305.1 '/> <path stroke='rgb(222, 125, 0)' d='M1085.0,516.0 L1085.0,301.6 M1085.1,516.0 L1085.1,298.7 M1085.3,516.0 L1085.3,296.4 M1085.5,516.0 L1085.5,294.5
+ M1085.7,516.0 L1085.7,292.9 M1085.9,516.0 L1085.9,291.7 M1086.0,516.0 L1086.0,290.8 M1086.2,516.0 L1086.2,290.2
+ M1086.4,516.0 L1086.4,289.9 M1086.6,516.0 L1086.6,289.9 M1086.8,516.0 L1086.8,290.1 M1086.9,516.0 L1086.9,290.6
+ M1087.1,516.0 L1087.1,291.3 M1087.3,516.0 L1087.3,292.4 M1087.5,516.0 L1087.5,293.8 M1087.7,516.0 L1087.7,295.5
+ M1087.9,516.0 L1087.9,297.6 M1088.0,516.0 L1088.0,300.2 M1088.2,516.0 L1088.2,303.4 M1088.4,516.0 L1088.4,307.2
+ M1088.6,516.0 L1088.6,312.0 M1088.8,516.0 L1088.8,318.0 M1088.9,516.0 L1088.9,326.2 M1089.1,516.0 L1089.1,338.1
+ M1089.3,516.0 L1089.3,360.2 M1089.5,516.0 L1089.5,400.2 M1089.7,516.0 L1089.7,349.7 M1089.8,516.0 L1089.8,333.1
+ M1090.0,516.0 L1090.0,323.0 M1090.2,516.0 L1090.2,315.8 M1090.4,516.0 L1090.4,310.4 M1090.6,516.0 L1090.6,306.1
+ M1090.7,516.0 L1090.7,302.6 M1090.9,516.0 L1090.9,299.7 M1091.1,516.0 L1091.1,297.4 M1091.3,516.0 L1091.3,295.5
+ M1091.5,516.0 L1091.5,294.0 M1091.6,516.0 L1091.6,292.8 M1091.8,516.0 L1091.8,291.9 M1092.0,516.0 L1092.0,291.3
+ M1092.2,516.0 L1092.2,291.0 M1092.4,516.0 L1092.4,291.0 M1092.5,516.0 L1092.5,291.2 M1092.7,516.0 L1092.7,291.7
+ M1092.9,516.0 L1092.9,292.5 M1093.1,516.0 L1093.1,293.5 M1093.3,516.0 L1093.3,294.9 M1093.4,516.0 L1093.4,296.7
+ M1093.6,516.0 L1093.6,298.8 M1093.8,516.0 L1093.8,301.4 M1094.0,516.0 L1094.0,304.5 M1094.2,516.0 L1094.2,308.4
+ M1094.3,516.0 L1094.3,313.2 M1094.5,516.0 L1094.5,319.3 M1094.7,516.0 L1094.7,327.6 M1094.9,516.0 L1094.9,339.7
+ M1095.1,516.0 L1095.1,362.4 M1095.2,516.0 L1095.2,397.1 M1095.4,516.0 L1095.4,350.1 M1095.6,516.0 L1095.6,333.8
+ M1095.8,516.0 L1095.8,323.8 M1096.0,516.0 L1096.0,316.7 M1096.2,516.0 L1096.2,311.3 M1096.3,516.0 L1096.3,307.0
+ M1096.5,516.0 L1096.5,303.5 M1096.7,516.0 L1096.7,300.7 M1096.9,516.0 L1096.9,298.4 M1097.1,516.0 L1097.1,296.5
+ M1097.2,516.0 L1097.2,295.0 M1097.4,516.0 L1097.4,293.8 M1097.6,516.0 L1097.6,293.0 M1097.8,516.0 L1097.8,292.4
+ M1098.0,516.0 L1098.0,292.1 M1098.1,516.0 L1098.1,292.0 M1098.3,516.0 L1098.3,292.3 M1098.5,516.0 L1098.5,292.8
+ M1098.7,516.0 L1098.7,293.5 M1098.9,516.0 L1098.9,294.6 M1099.0,516.0 L1099.0,296.0 M1099.2,516.0 L1099.2,297.8
+ M1099.4,516.0 L1099.4,299.9 M1099.6,516.0 L1099.6,302.5 M1099.8,516.0 L1099.8,305.7 M1099.9,516.0 L1099.9,309.6
+ M1100.1,516.0 L1100.1,314.4 M1100.3,516.0 L1100.3,320.6 M1100.5,516.0 L1100.5,328.9 M1100.7,516.0 L1100.7,341.2
+ M1100.8,516.0 L1100.8,364.5 M1101.0,516.0 L1101.0,394.8 M1101.2,516.0 L1101.2,350.5 M1101.4,516.0 L1101.4,334.5
+ M1101.6,516.0 L1101.6,324.6 M1101.7,516.0 L1101.7,317.6 M1101.9,516.0 L1101.9,312.2 M1102.1,516.0 L1102.1,307.9
+ M1102.3,516.0 L1102.3,304.5 M1102.5,516.0 L1102.5,301.7 M1102.6,516.0 L1102.6,299.4 M1102.8,516.0 L1102.8,297.5
+ M1103.0,516.0 L1103.0,296.0 M1103.2,516.0 L1103.2,294.8 M1103.4,516.0 L1103.4,294.0 M1103.5,516.0 L1103.5,293.4
+ M1103.7,516.0 L1103.7,293.1 M1103.9,516.0 L1103.9,293.1 M1104.1,516.0 L1104.1,293.3 M1104.3,516.0 L1104.3,293.8
+ M1104.4,516.0 L1104.4,294.6 M1104.6,516.0 L1104.6,295.7 M1104.8,516.0 L1104.8,297.1 M1105.0,516.0 L1105.0,298.8
+ M1105.2,516.0 L1105.2,301.0 M1105.4,516.0 L1105.4,303.6 M1105.5,516.0 L1105.5,306.8 M1105.7,516.0 L1105.7,310.7
+ M1105.9,516.0 L1105.9,315.6 M1106.1,516.0 L1106.1,321.8 M1106.3,516.0 L1106.3,330.1 M1106.4,516.0 L1106.4,342.6
+ M1106.6,516.0 L1106.6,366.5 M1106.8,516.0 L1106.8,393.0 M1107.0,516.0 L1107.0,350.9 M1107.2,516.0 L1107.2,335.1
+ M1107.3,516.0 L1107.3,325.4 M1107.5,516.0 L1107.5,318.4 M1107.7,516.0 L1107.7,313.1 M1107.9,516.0 L1107.9,308.8
+ M1108.1,516.0 L1108.1,305.4 M1108.2,516.0 L1108.2,302.6 M1108.4,516.0 L1108.4,300.3 M1108.6,516.0 L1108.6,298.4
+ M1108.8,516.0 L1108.8,296.9 M1109.0,516.0 L1109.0,295.8 M1109.1,516.0 L1109.1,294.9 M1109.3,516.0 L1109.3,294.4
+ M1109.5,516.0 L1109.5,294.1 M1109.7,516.0 L1109.7,294.0 M1109.9,516.0 L1109.9,294.3 M1110.0,516.0 L1110.0,294.8
+ M1110.2,516.0 L1110.2,295.6 M1110.4,516.0 L1110.4,296.7 M1110.6,516.0 L1110.6,298.1 M1110.8,516.0 L1110.8,299.8
+ M1110.9,516.0 L1110.9,302.0 M1111.1,516.0 L1111.1,304.6 M1111.3,516.0 L1111.3,307.9 M1111.5,516.0 L1111.5,311.8
+ M1111.7,516.0 L1111.7,316.7 M1111.8,516.0 L1111.8,322.9 M1112.0,516.0 L1112.0,331.4 M1112.2,516.0 L1112.2,344.0
+ M1112.4,516.0 L1112.4,368.4 M1112.6,516.0 L1112.6,391.6 M1112.7,516.0 L1112.7,351.3 M1112.9,516.0 L1112.9,335.8
+ M1113.1,516.0 L1113.1,326.1 M1113.3,516.0 L1113.3,319.2 M1113.5,516.0 L1113.5,313.9 M1113.7,516.0 L1113.7,309.7
+ M1113.8,516.0 L1113.8,306.3 M1114.0,516.0 L1114.0,303.5 M1114.2,516.0 L1114.2,301.2 M1114.4,516.0 L1114.4,299.3
+ M1114.6,516.0 L1114.6,297.9 M1114.7,516.0 L1114.7,296.7 M1114.9,516.0 L1114.9,295.9 M1115.1,516.0 L1115.1,295.3
+ M1115.3,516.0 L1115.3,295.0 M1115.5,516.0 L1115.5,295.0 M1115.6,516.0 L1115.6,295.2 M1115.8,516.0 L1115.8,295.7
+ M1116.0,516.0 L1116.0,296.5 M1116.2,516.0 L1116.2,297.6 M1116.4,516.0 L1116.4,299.1 M1116.5,516.0 L1116.5,300.8
+ M1116.7,516.0 L1116.7,303.0 M1116.9,516.0 L1116.9,305.7 M1117.1,516.0 L1117.1,308.9 M1117.3,516.0 L1117.3,312.8
+ M1117.4,516.0 L1117.4,317.7 M1117.6,516.0 L1117.6,324.0 M1117.8,516.0 L1117.8,332.5 M1118.0,516.0 L1118.0,345.3
+ M1118.2,516.0 L1118.2,370.3 M1118.3,516.0 L1118.3,390.4 M1118.5,516.0 L1118.5,351.8 M1118.7,516.0 L1118.7,336.5
+ M1118.9,516.0 L1118.9,326.9 M1119.1,516.0 L1119.1,320.0 M1119.2,516.0 L1119.2,314.7 M1119.4,516.0 L1119.4,310.5
+ M1119.6,516.0 L1119.6,307.1 M1119.8,516.0 L1119.8,304.4 M1120.0,516.0 L1120.0,302.1 M1120.1,516.0 L1120.1,300.2
+ M1120.3,516.0 L1120.3,298.7 M1120.5,516.0 L1120.5,297.6 M1120.7,516.0 L1120.7,296.8 M1120.9,516.0 L1120.9,296.2
+ M1121.0,516.0 L1121.0,295.9 M1121.2,516.0 L1121.2,295.9 M1121.4,516.0 L1121.4,296.2 M1121.6,516.0 L1121.6,296.7
+ M1121.8,516.0 L1121.8,297.5 M1122.0,516.0 L1122.0,298.6 M1122.1,516.0 L1122.1,300.0 M1122.3,516.0 L1122.3,301.8
+ M1122.5,516.0 L1122.5,304.0 M1122.7,516.0 L1122.7,306.6 M1122.9,516.0 L1122.9,309.9 M1123.0,516.0 L1123.0,313.8
+ M1123.2,516.0 L1123.2,318.8 M1123.4,516.0 L1123.4,325.1 M1123.6,516.0 L1123.6,333.7 M1123.8,516.0 L1123.8,346.5
+ M1123.9,516.0 L1123.9,372.1 M1124.1,516.0 L1124.1,389.6 M1124.3,516.0 L1124.3,352.2 M1124.5,516.0 L1124.5,337.1
+ M1124.7,516.0 L1124.7,327.6 M1124.8,516.0 L1124.8,320.8 M1125.0,516.0 L1125.0,315.5 M1125.2,516.0 L1125.2,311.3
+ M1125.4,516.0 L1125.4,308.0 M1125.6,516.0 L1125.6,305.2 M1125.7,516.0 L1125.7,302.9 M1125.9,516.0 L1125.9,301.1
+ M1126.1,516.0 L1126.1,299.6 M1126.3,516.0 L1126.3,298.5 M1126.5,516.0 L1126.5,297.6 M1126.6,516.0 L1126.6,297.1
+ M1126.8,516.0 L1126.8,296.8 M1127.0,516.0 L1127.0,296.8 M1127.2,516.0 L1127.2,297.0 M1127.4,516.0 L1127.4,297.6
+ M1127.5,516.0 L1127.5,298.4 M1127.7,516.0 L1127.7,299.5 M1127.9,516.0 L1127.9,300.9 M1128.1,516.0 L1128.1,302.7
+ M1128.3,516.0 L1128.3,304.9 M1128.4,516.0 L1128.4,307.6 M1128.6,516.0 L1128.6,310.8 M1128.8,516.0 L1128.8,314.8
+ M1129.0,516.0 L1129.0,319.7 M1129.2,516.0 L1129.2,326.1 M1129.3,516.0 L1129.3,334.7 M1129.5,516.0 L1129.5,347.7
+ M1129.7,516.0 L1129.7,373.8 M1129.9,516.0 L1129.9,388.9 M1130.1,516.0 L1130.1,352.7 M1130.3,516.0 L1130.3,337.7
+ M1130.4,516.0 L1130.4,328.3 M1130.6,516.0 L1130.6,321.5 M1130.8,516.0 L1130.8,316.3 M1131.0,516.0 L1131.0,312.1
+ M1131.2,516.0 L1131.2,308.8 '/> <path stroke='rgb(222, 125, 0)' d='M1131.3,516.0 L1131.3,306.0 M1131.5,516.0 L1131.5,303.7 M1131.7,516.0 L1131.7,301.9 M1131.9,516.0 L1131.9,300.4
+ M1132.1,516.0 L1132.1,299.3 M1132.2,516.0 L1132.2,298.5 M1132.4,516.0 L1132.4,297.9 M1132.6,516.0 L1132.6,297.7
+ M1132.8,516.0 L1132.8,297.6 M1133.0,516.0 L1133.0,297.9 M1133.1,516.0 L1133.1,298.4 M1133.3,516.0 L1133.3,299.3
+ M1133.5,516.0 L1133.5,300.4 M1133.7,516.0 L1133.7,301.8 M1133.9,516.0 L1133.9,303.6 M1134.0,516.0 L1134.0,305.8
+ M1134.2,516.0 L1134.2,308.5 M1134.4,516.0 L1134.4,311.7 M1134.6,516.0 L1134.6,315.7 M1134.8,516.0 L1134.8,320.7
+ M1134.9,516.0 L1134.9,327.1 M1135.1,516.0 L1135.1,335.8 M1135.3,516.0 L1135.3,348.9 M1135.5,516.0 L1135.5,375.5
+ M1135.7,516.0 L1135.7,388.3 M1135.8,516.0 L1135.8,353.2 M1136.0,516.0 L1136.0,338.4 M1136.2,516.0 L1136.2,329.0
+ M1136.4,516.0 L1136.4,322.2 M1136.6,516.0 L1136.6,317.0 M1136.7,516.0 L1136.7,312.9 M1136.9,516.0 L1136.9,309.5
+ M1137.1,516.0 L1137.1,306.8 M1137.3,516.0 L1137.3,304.5 M1137.5,516.0 L1137.5,302.7 M1137.6,516.0 L1137.6,301.3
+ M1137.8,516.0 L1137.8,300.1 M1138.0,516.0 L1138.0,299.3 M1138.2,516.0 L1138.2,298.8 M1138.4,516.0 L1138.4,298.5
+ M1138.6,516.0 L1138.6,298.5 M1138.7,516.0 L1138.7,298.7 M1138.9,516.0 L1138.9,299.3 M1139.1,516.0 L1139.1,300.1
+ M1139.3,516.0 L1139.3,301.2 M1139.5,516.0 L1139.5,302.7 M1139.6,516.0 L1139.6,304.5 M1139.8,516.0 L1139.8,306.7
+ M1140.0,516.0 L1140.0,309.4 M1140.2,516.0 L1140.2,312.6 M1140.4,516.0 L1140.4,316.6 M1140.5,516.0 L1140.5,321.6
+ M1140.7,516.0 L1140.7,328.1 M1140.9,516.0 L1140.9,336.8 M1141.1,516.0 L1141.1,350.1 M1141.3,516.0 L1141.3,377.2
+ M1141.4,516.0 L1141.4,387.9 M1141.6,516.0 L1141.6,353.6 M1141.8,516.0 L1141.8,339.0 M1142.0,516.0 L1142.0,329.7
+ M1142.2,516.0 L1142.2,322.9 M1142.3,516.0 L1142.3,317.8 M1142.5,516.0 L1142.5,313.7 M1142.7,516.0 L1142.7,310.3
+ M1142.9,516.0 L1142.9,307.6 M1143.1,516.0 L1143.1,305.3 M1143.2,516.0 L1143.2,303.5 M1143.4,516.0 L1143.4,302.0
+ M1143.6,516.0 L1143.6,300.9 M1143.8,516.0 L1143.8,300.1 M1144.0,516.0 L1144.0,299.6 M1144.1,516.0 L1144.1,299.3
+ M1144.3,516.0 L1144.3,299.3 M1144.5,516.0 L1144.5,299.6 M1144.7,516.0 L1144.7,300.1 M1144.9,516.0 L1144.9,300.9
+ M1145.0,516.0 L1145.0,302.0 M1145.2,516.0 L1145.2,303.5 M1145.4,516.0 L1145.4,305.3 M1145.6,516.0 L1145.6,307.5
+ M1145.8,516.0 L1145.8,310.2 M1145.9,516.0 L1145.9,313.5 M1146.1,516.0 L1146.1,317.5 M1146.3,516.0 L1146.3,322.5
+ M1146.5,516.0 L1146.5,329.0 M1146.7,516.0 L1146.7,337.8 M1146.9,516.0 L1146.9,351.1 M1147.0,516.0 L1147.0,378.8
+ M1147.2,516.0 L1147.2,387.5 M1147.4,516.0 L1147.4,354.1 M1147.6,516.0 L1147.6,339.6 M1147.8,516.0 L1147.8,330.3
+ M1147.9,516.0 L1147.9,323.6 M1148.1,516.0 L1148.1,318.5 M1148.3,516.0 L1148.3,314.4 M1148.5,516.0 L1148.5,311.0
+ M1148.7,516.0 L1148.7,308.3 M1148.8,516.0 L1148.8,306.1 M1149.0,516.0 L1149.0,304.3 M1149.2,516.0 L1149.2,302.8
+ M1149.4,516.0 L1149.4,301.7 M1149.6,516.0 L1149.6,300.9 M1149.7,516.0 L1149.7,300.3 M1149.9,516.0 L1149.9,300.1
+ M1150.1,516.0 L1150.1,300.1 M1150.3,516.0 L1150.3,300.4 M1150.5,516.0 L1150.5,300.9 M1150.6,516.0 L1150.6,301.7
+ M1150.8,516.0 L1150.8,302.9 M1151.0,516.0 L1151.0,304.3 M1151.2,516.0 L1151.2,306.1 M1151.4,516.0 L1151.4,308.3
+ M1151.5,516.0 L1151.5,311.0 M1151.7,516.0 L1151.7,314.3 M1151.9,516.0 L1151.9,318.4 M1152.1,516.0 L1152.1,323.4
+ M1152.3,516.0 L1152.3,329.9 M1152.4,516.0 L1152.4,338.7 M1152.6,516.0 L1152.6,352.2 M1152.8,516.0 L1152.8,380.3
+ M1153.0,516.0 L1153.0,387.3 M1153.2,516.0 L1153.2,354.6 M1153.3,516.0 L1153.3,340.2 M1153.5,516.0 L1153.5,331.0
+ M1153.7,516.0 L1153.7,324.3 M1153.9,516.0 L1153.9,319.2 M1154.1,516.0 L1154.1,315.1 M1154.2,516.0 L1154.2,311.8
+ M1154.4,516.0 L1154.4,309.0 M1154.6,516.0 L1154.6,306.8 M1154.8,516.0 L1154.8,305.0 M1155.0,516.0 L1155.0,303.6
+ M1155.2,516.0 L1155.2,302.4 M1155.3,516.0 L1155.3,301.6 M1155.5,516.0 L1155.5,301.1 M1155.7,516.0 L1155.7,300.8
+ M1155.9,516.0 L1155.9,300.8 M1156.1,516.0 L1156.1,301.1 M1156.2,516.0 L1156.2,301.7 M1156.4,516.0 L1156.4,302.5
+ M1156.6,516.0 L1156.6,303.6 M1156.8,516.0 L1156.8,305.1 M1157.0,516.0 L1157.0,306.9 M1157.1,516.0 L1157.1,309.1
+ M1157.3,516.0 L1157.3,311.8 M1157.5,516.0 L1157.5,315.1 M1157.7,516.0 L1157.7,319.2 M1157.9,516.0 L1157.9,324.2
+ M1158.0,516.0 L1158.0,330.7 M1158.2,516.0 L1158.2,339.6 M1158.4,516.0 L1158.4,353.2 M1158.6,516.0 L1158.6,381.8
+ M1158.8,516.0 L1158.8,387.1 M1158.9,516.0 L1158.9,355.0 M1159.1,516.0 L1159.1,340.8 M1159.3,516.0 L1159.3,331.6
+ M1159.5,516.0 L1159.5,325.0 M1159.7,516.0 L1159.7,319.9 M1159.8,516.0 L1159.8,315.8 M1160.0,516.0 L1160.0,312.5
+ M1160.2,516.0 L1160.2,309.8 M1160.4,516.0 L1160.4,307.5 M1160.6,516.0 L1160.6,305.7 M1160.7,516.0 L1160.7,304.3
+ M1160.9,516.0 L1160.9,303.2 M1161.1,516.0 L1161.1,302.4 M1161.3,516.0 L1161.3,301.8 M1161.5,516.0 L1161.5,301.6
+ M1161.6,516.0 L1161.6,301.6 M1161.8,516.0 L1161.8,301.9 M1162.0,516.0 L1162.0,302.4 M1162.2,516.0 L1162.2,303.3
+ M1162.4,516.0 L1162.4,304.4 M1162.5,516.0 L1162.5,305.9 M1162.7,516.0 L1162.7,307.7 M1162.9,516.0 L1162.9,309.9
+ M1163.1,516.0 L1163.1,312.6 M1163.3,516.0 L1163.3,315.9 M1163.5,516.0 L1163.5,320.0 M1163.6,516.0 L1163.6,325.1
+ M1163.8,516.0 L1163.8,331.6 M1164.0,516.0 L1164.0,340.5 M1164.2,516.0 L1164.2,354.2 M1164.4,516.0 L1164.4,383.3
+ M1164.5,516.0 L1164.5,387.0 M1164.7,516.0 L1164.7,355.5 M1164.9,516.0 L1164.9,341.3 M1165.1,516.0 L1165.1,332.2
+ M1165.3,516.0 L1165.3,325.6 M1165.4,516.0 L1165.4,320.5 M1165.6,516.0 L1165.6,316.5 M1165.8,516.0 L1165.8,313.2
+ M1166.0,516.0 L1166.0,310.5 M1166.2,516.0 L1166.2,308.2 M1166.3,516.0 L1166.3,306.4 M1166.5,516.0 L1166.5,305.0
+ M1166.7,516.0 L1166.7,303.9 M1166.9,516.0 L1166.9,303.1 M1167.1,516.0 L1167.1,302.6 M1167.2,516.0 L1167.2,302.3
+ M1167.4,516.0 L1167.4,302.3 M1167.6,516.0 L1167.6,302.6 M1167.8,516.0 L1167.8,303.2 M1168.0,516.0 L1168.0,304.0
+ M1168.1,516.0 L1168.1,305.1 M1168.3,516.0 L1168.3,306.6 M1168.5,516.0 L1168.5,308.4 M1168.7,516.0 L1168.7,310.7
+ M1168.9,516.0 L1168.9,313.4 M1169.0,516.0 L1169.0,316.7 M1169.2,516.0 L1169.2,320.8 M1169.4,516.0 L1169.4,325.8
+ M1169.6,516.0 L1169.6,332.4 M1169.8,516.0 L1169.8,341.4 M1169.9,516.0 L1169.9,355.2 M1170.1,516.0 L1170.1,384.7
+ M1170.3,516.0 L1170.3,386.9 M1170.5,516.0 L1170.5,355.9 M1170.7,516.0 L1170.7,341.9 M1170.8,516.0 L1170.8,332.9
+ M1171.0,516.0 L1171.0,326.3 M1171.2,516.0 L1171.2,321.2 M1171.4,516.0 L1171.4,317.1 M1171.6,516.0 L1171.6,313.8
+ M1171.8,516.0 L1171.8,311.1 M1171.9,516.0 L1171.9,308.9 M1172.1,516.0 L1172.1,307.1 M1172.3,516.0 L1172.3,305.7
+ M1172.5,516.0 L1172.5,304.6 M1172.7,516.0 L1172.7,303.8 M1172.8,516.0 L1172.8,303.3 M1173.0,516.0 L1173.0,303.0
+ M1173.2,516.0 L1173.2,303.0 M1173.4,516.0 L1173.4,303.3 M1173.6,516.0 L1173.6,303.9 M1173.7,516.0 L1173.7,304.7
+ M1173.9,516.0 L1173.9,305.9 M1174.1,516.0 L1174.1,307.3 M1174.3,516.0 L1174.3,309.1 M1174.5,516.0 L1174.5,311.4
+ M1174.6,516.0 L1174.6,314.1 M1174.8,516.0 L1174.8,317.4 M1175.0,516.0 L1175.0,321.5 M1175.2,516.0 L1175.2,326.6
+ M1175.4,516.0 L1175.4,333.2 M1175.5,516.0 L1175.5,342.2 M1175.7,516.0 L1175.7,356.1 M1175.9,516.0 L1175.9,386.1
+ '/></g>
+ </g>
+ <g id="gnuplot_plot_2b" ><title>gnuplot_plot_2b</title>
+<g fill="none" color="black" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,516.0 L1175.9,516.0 '/></g>
+ </g>
+<g fill="none" color="#FFFFFF" stroke="rgb( 0, 0, 0)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(916.1,506.6)" stroke="none" fill="rgb(0,0,0)" font-family="Microsoft Sans Serif:Bold" font-size="10.00" text-anchor="start">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >B = 1.446</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 38, 38, 38)' d='M714.0,516.0 L1175.9,516.0 M714.0,84.1 L1175.9,84.1 M714.0,516.0 L714.0,84.1 M1175.9,516.0 L1175.9,84.1
+ '/></g>
+<g fill="none" color="black" stroke="rgb( 38, 38, 38)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+</g>
+</svg>
+
diff --git a/chapter04/win_hamming.svg b/chapter04/win_hamming.svg
new file mode 100644
index 0000000..a4a12b4
--- /dev/null
+++ b/chapter04/win_hamming.svg
@@ -0,0 +1,1595 @@
+<?xml version="1.0" encoding="windows-1252" standalone="no"?>
+<svg
+ viewBox="0 0 1200 600"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+>
+
+<title>Window function and its Fourier transform &#8211; Hamming (alpha = 0.53836)</title>
+<desc>Produced by GNUPLOT 5.2 patchlevel 6 </desc>
+
+<g id="gnuplot_canvas">
+
+<rect x="0" y="0" width="1200" height="600" fill="#ffffff"/>
+<defs>
+
+ <circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
+ <path id='gpPt0' stroke-width='0.179' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
+ <path id='gpPt1' stroke-width='0.179' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
+ <path id='gpPt2' stroke-width='0.179' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
+ <rect id='gpPt3' stroke-width='0.179' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
+ <rect id='gpPt4' stroke-width='0.179' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
+ <circle id='gpPt5' stroke-width='0.179' stroke='currentColor' cx='0' cy='0' r='1'/>
+ <use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
+ <path id='gpPt7' stroke-width='0.179' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
+ <use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
+ <use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
+ <use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
+ <use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
+ <use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
+ <path id='gpPt13' stroke-width='0.179' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
+ <use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
+ <filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
+ <feFlood flood-color='#FFFFFF' flood-opacity='1' result='bgnd'/>
+ <feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
+ </filter>
+ <filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
+ <feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
+ <feComposite in='SourceGraphic' in2='grey' operator='atop'/>
+ </filter>
+</defs>
+<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g stroke='none' shape-rendering='crispEdges'>
+ <polygon fill = 'rgb(255, 255, 255)' points = '96.0,516.0 557.8,516.0 557.8,84.2 96.0,84.2 '/>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,516.0 L557.9,516.0 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,516.0 L111.6,516.0 M557.9,516.0 L542.3,516.0 '/> <g transform="translate(85.5,522.5)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,474.9 L557.9,474.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,474.9 L111.6,474.9 M557.9,474.9 L542.3,474.9 '/> <g transform="translate(85.5,481.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.1</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,433.7 L557.9,433.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,433.7 L111.6,433.7 M557.9,433.7 L542.3,433.7 '/> <g transform="translate(85.5,440.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.2</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,392.6 L557.9,392.6 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,392.6 L111.6,392.6 M557.9,392.6 L542.3,392.6 '/> <g transform="translate(85.5,399.1)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.3</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,351.5 L557.9,351.5 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,351.5 L111.6,351.5 M557.9,351.5 L542.3,351.5 '/> <g transform="translate(85.5,358.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.4</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,310.3 L557.9,310.3 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,310.3 L111.6,310.3 M557.9,310.3 L542.3,310.3 '/> <g transform="translate(85.5,316.8)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.5</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,269.2 L557.9,269.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,269.2 L111.6,269.2 M557.9,269.2 L542.3,269.2 '/> <g transform="translate(85.5,275.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.6</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,228.1 L557.9,228.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,228.1 L111.6,228.1 M557.9,228.1 L542.3,228.1 '/> <g transform="translate(85.5,234.6)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.7</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,186.9 L557.9,186.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,186.9 L111.6,186.9 M557.9,186.9 L542.3,186.9 '/> <g transform="translate(85.5,193.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.8</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,145.8 L557.9,145.8 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,145.8 L111.6,145.8 M557.9,145.8 L542.3,145.8 '/> <g transform="translate(85.5,152.3)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.9</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,104.7 L557.9,104.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,104.7 L111.6,104.7 M557.9,104.7 L542.3,104.7 '/> <g transform="translate(85.5,111.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >1</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,516.0 L96.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,516.0 L96.0,500.4 M96.0,84.1 L96.0,99.7 '/> <g transform="translate(96.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" > 0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M153.7,516.0 L153.7,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M153.7,516.0 L153.7,500.4 M153.7,84.1 L153.7,99.7 '/> <g transform="translate(153.7,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M211.5,516.0 L211.5,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M211.5,516.0 L211.5,500.4 M211.5,84.1 L211.5,99.7 '/> <g transform="translate(211.5,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M269.2,516.0 L269.2,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M269.2,516.0 L269.2,500.4 M269.2,84.1 L269.2,99.7 '/> <g transform="translate(269.2,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M327.0,516.0 L327.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M327.0,516.0 L327.0,500.4 M327.0,84.1 L327.0,99.7 '/> <g transform="translate(327.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M384.7,516.0 L384.7,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M384.7,516.0 L384.7,500.4 M384.7,84.1 L384.7,99.7 '/> <g transform="translate(384.7,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M442.4,516.0 L442.4,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M442.4,516.0 L442.4,500.4 M442.4,84.1 L442.4,99.7 '/> <g transform="translate(442.4,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M500.2,516.0 L500.2,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M500.2,516.0 L500.2,500.4 M500.2,84.1 L500.2,99.7 '/> <g transform="translate(500.2,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M557.9,516.0 L557.9,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M557.9,516.0 L557.9,500.4 M557.9,84.1 L557.9,99.7 '/> <g transform="translate(557.9,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text xml:space="preserve"><tspan font-family="Microsoft Sans Serif" font-weight="bold" xml:space="preserve"> N</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(40.6,300.1) rotate(-90)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >amplitude</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(326.9,581.3)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >samples</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(326.9,39.9)" stroke="none" fill="rgb(0,0,0)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >Hamming window (a</tspan><tspan font-family="Microsoft Sans Serif" font-weight="bold" font-size="22.4" dy="8.40px">0</tspan><tspan font-family="Microsoft Sans Serif" font-weight="bold" font-size="28.0" dy="-8.40px"> = 0.53836)</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+ <g id="gnuplot_plot_1a" ><title>gnuplot_plot_1a</title>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g stroke='none' shape-rendering='crispEdges'>
+ <polygon fill = 'rgb( 0, 102, 153)' points = '96.0,516.0 96.0,484.4 96.9,484.4 97.8,484.4 98.7,484.3 99.6,484.2 100.5,484.1 101.4,483.9 102.3,483.7 103.2,483.5 104.1,483.3 105.0,483.0 105.9,482.7 106.8,482.4 107.7,482.0 108.6,481.6
+109.5,481.2 110.4,480.8 111.3,480.3 112.2,479.8 113.1,479.3 114.0,478.8 114.9,478.2 115.8,477.6 116.7,476.9 117.7,476.3 118.6,475.6 119.5,474.9 120.4,474.1 121.3,473.3 122.2,472.5 123.1,471.7
+124.0,470.9 124.9,470.0 125.8,469.1 126.7,468.2 127.6,467.2 128.5,466.2 129.4,465.2 130.3,464.2 131.2,463.1 132.1,462.0 133.0,460.9 133.9,459.8 134.8,458.6 135.7,457.4 136.6,456.2 137.5,455.0
+138.4,453.7 139.3,452.4 140.2,451.1 141.1,449.8 142.0,448.5 142.9,447.1 143.8,445.7 144.7,444.3 145.6,442.8 146.5,441.3 147.4,439.9 148.3,438.3 149.2,436.8 150.1,435.3 151.0,433.7 151.9,432.1
+152.8,430.5 153.7,428.8 154.6,427.2 155.5,425.5 156.4,423.8 157.3,422.1 158.2,420.3 159.2,418.6 160.1,416.8 161.0,415.0 161.9,413.2 162.8,411.4 163.7,409.5 164.6,407.7 165.5,405.8 166.4,403.9
+167.3,402.0 168.2,400.1 169.1,398.1 170.0,396.1 170.9,394.2 171.8,392.2 172.7,390.2 173.6,388.1 174.5,386.1 175.4,384.1 176.3,382.0 177.2,379.9 178.1,377.8 179.0,375.7 179.9,373.6 180.8,371.5
+181.7,369.4 182.6,367.2 183.5,365.1 184.4,362.9 185.3,360.7 186.2,358.5 187.1,356.3 188.0,354.1 188.9,351.9 189.8,349.7 190.7,347.4 191.6,345.2 192.5,343.0 193.4,340.7 194.3,338.4 195.2,336.2
+196.1,333.9 197.0,331.6 197.9,329.3 198.8,327.0 199.7,324.7 200.6,322.4 201.6,320.1 202.5,317.8 203.4,315.5 204.3,313.2 205.2,310.8 206.1,308.5 207.0,306.2 207.9,303.9 208.8,301.5 209.7,299.2
+210.6,296.9 211.5,294.6 212.4,292.2 213.3,289.9 214.2,287.6 215.1,285.2 216.0,282.9 216.9,280.6 217.8,278.3 218.7,275.9 219.6,273.6 220.5,271.3 221.4,269.0 222.3,266.7 223.2,264.4 224.1,262.1
+225.0,259.8 225.9,257.5 226.8,255.2 227.7,252.9 228.6,250.7 229.5,248.4 230.4,246.2 231.3,243.9 232.2,241.7 233.1,239.4 234.0,237.2 234.9,235.0 235.8,232.8 236.7,230.6 237.6,228.4 238.5,226.2
+239.4,224.0 240.3,221.9 241.2,219.7 242.1,217.6 243.1,215.5 244.0,213.4 244.9,211.3 245.8,209.2 246.7,207.1 247.6,205.0 248.5,203.0 249.4,201.0 250.3,198.9 251.2,196.9 252.1,194.9 253.0,193.0
+253.9,191.0 254.8,189.1 255.7,187.1 256.6,185.2 257.5,183.3 258.4,181.4 259.3,179.6 260.2,177.7 261.1,175.9 262.0,174.1 262.9,172.3 263.8,170.5 264.7,168.8 265.6,167.0 266.5,165.3 267.4,163.6
+268.3,161.9 269.2,160.3 270.1,158.6 271.0,157.0 271.9,155.4 272.8,153.9 273.7,152.3 274.6,150.8 275.5,149.3 276.4,147.8 277.3,146.3 278.2,144.9 279.1,143.4 280.0,142.0 280.9,140.7 281.8,139.3
+282.7,138.0 283.6,136.7 284.5,135.4 285.5,134.1 286.4,132.9 287.3,131.7 288.2,130.5 289.1,129.3 290.0,128.2 290.9,127.1 291.8,126.0 292.7,124.9 293.6,123.9 294.5,122.9 295.4,121.9 296.3,121.0
+297.2,120.0 298.1,119.1 299.0,118.2 299.9,117.4 300.8,116.6 301.7,115.8 302.6,115.0 303.5,114.3 304.4,113.5 305.3,112.8 306.2,112.2 307.1,111.5 308.0,110.9 308.9,110.4 309.8,109.8 310.7,109.3
+311.6,108.8 312.5,108.3 313.4,107.9 314.3,107.5 315.2,107.1 316.1,106.7 317.0,106.4 317.9,106.1 318.8,105.8 319.7,105.6 320.6,105.4 321.5,105.2 322.4,105.0 323.3,104.9 324.2,104.8 325.1,104.7
+326.0,104.7 327.0,104.7 327.9,104.7 328.8,104.7 329.7,104.8 330.6,104.9 331.5,105.0 332.4,105.2 333.3,105.4 334.2,105.6 335.1,105.8 336.0,106.1 336.9,106.4 337.8,106.7 338.7,107.1 339.6,107.5
+340.5,107.9 341.4,108.3 342.3,108.8 343.2,109.3 344.1,109.8 345.0,110.4 345.9,110.9 346.8,111.5 347.7,112.2 348.6,112.8 349.5,113.5 350.4,114.3 351.3,115.0 352.2,115.8 353.1,116.6 354.0,117.4
+354.9,118.2 355.8,119.1 356.7,120.0 357.6,121.0 358.5,121.9 359.4,122.9 360.3,123.9 361.2,124.9 362.1,126.0 363.0,127.1 363.9,128.2 364.8,129.3 365.7,130.5 366.6,131.7 367.5,132.9 368.4,134.1
+369.4,135.4 370.3,136.7 371.2,138.0 372.1,139.3 373.0,140.7 373.9,142.0 374.8,143.4 375.7,144.9 376.6,146.3 377.5,147.8 378.4,149.3 379.3,150.8 380.2,152.3 381.1,153.9 382.0,155.4 382.9,157.0
+383.8,158.6 384.7,160.3 385.6,161.9 386.5,163.6 387.4,165.3 388.3,167.0 389.2,168.8 390.1,170.5 391.0,172.3 391.9,174.1 392.8,175.9 393.7,177.7 394.6,179.6 395.5,181.4 396.4,183.3 397.3,185.2
+398.2,187.1 399.1,189.1 400.0,191.0 400.9,193.0 401.8,194.9 402.7,196.9 403.6,198.9 404.5,201.0 405.4,203.0 406.3,205.0 407.2,207.1 408.1,209.2 409.0,211.3 409.9,213.4 410.8,215.5 411.8,217.6
+412.7,219.7 413.6,221.9 414.5,224.0 415.4,226.2 416.3,228.4 417.2,230.6 418.1,232.8 419.0,235.0 419.9,237.2 420.8,239.4 421.7,241.7 422.6,243.9 423.5,246.2 424.4,248.4 425.3,250.7 426.2,252.9
+427.1,255.2 428.0,257.5 428.9,259.8 429.8,262.1 430.7,264.4 431.6,266.7 432.5,269.0 433.4,271.3 434.3,273.6 435.2,275.9 436.1,278.3 437.0,280.6 437.9,282.9 438.8,285.2 439.7,287.6 440.6,289.9
+441.5,292.2 442.4,294.6 443.3,296.9 444.2,299.2 445.1,301.5 446.0,303.9 446.9,306.2 447.8,308.5 448.7,310.8 449.6,313.2 450.5,315.5 451.4,317.8 452.3,320.1 453.3,322.4 454.2,324.7 455.1,327.0
+456.0,329.3 456.9,331.6 457.8,333.9 458.7,336.2 459.6,338.4 460.5,340.7 461.4,343.0 462.3,345.2 463.2,347.4 464.1,349.7 465.0,351.9 465.9,354.1 466.8,356.3 467.7,358.5 468.6,360.7 469.5,362.9
+470.4,365.1 471.3,367.2 472.2,369.4 473.1,371.5 474.0,373.6 474.9,375.7 475.8,377.8 476.7,379.9 477.6,382.0 478.5,384.1 479.4,386.1 480.3,388.1 481.2,390.2 482.1,392.2 483.0,394.2 483.9,396.1
+484.8,398.1 485.7,400.1 486.6,402.0 487.5,403.9 488.4,405.8 489.3,407.7 490.2,409.5 491.1,411.4 492.0,413.2 492.9,415.0 493.8,416.8 494.7,418.6 495.7,420.3 496.6,422.1 497.5,423.8 498.4,425.5
+499.3,427.2 500.2,428.8 501.1,430.5 502.0,432.1 502.9,433.7 503.8,435.3 504.7,436.8 505.6,438.3 506.5,439.9 507.4,441.3 508.3,442.8 509.2,444.3 510.1,445.7 511.0,447.1 511.9,448.5 512.8,449.8
+513.7,451.1 514.6,452.4 515.5,453.7 516.4,455.0 517.3,456.2 518.2,457.4 519.1,458.6 520.0,459.8 520.9,460.9 521.8,462.0 522.7,463.1 523.6,464.2 524.5,465.2 525.4,466.2 526.3,467.2 527.2,468.2
+528.1,469.1 529.0,470.0 529.9,470.9 530.8,471.7 531.7,472.5 532.6,473.3 533.5,474.1 534.4,474.9 535.3,475.6 536.2,476.3 537.2,476.9 538.1,477.6 539.0,478.2 539.9,478.8 540.8,479.3 541.7,479.8
+542.6,480.3 543.5,480.8 544.4,481.2 545.3,481.6 546.2,482.0 547.1,482.4 548.0,482.7 548.9,483.0 549.8,483.3 550.7,483.5 551.6,483.7 552.5,483.9 553.4,484.1 554.3,484.2 555.2,484.3 556.1,484.4
+557.0,484.4 557.9,484.4 557.9,516.0 557.0,516.0 556.1,516.0 555.2,516.0 554.3,516.0 553.4,516.0 552.5,516.0 551.6,516.0 550.7,516.0 549.8,516.0 548.9,516.0 548.0,516.0 547.1,516.0 546.2,516.0
+545.3,516.0 544.4,516.0 543.5,516.0 542.6,516.0 541.7,516.0 540.8,516.0 539.9,516.0 539.0,516.0 538.1,516.0 537.2,516.0 536.2,516.0 535.3,516.0 534.4,516.0 533.5,516.0 532.6,516.0 531.7,516.0
+530.8,516.0 529.9,516.0 529.0,516.0 528.1,516.0 527.2,516.0 526.3,516.0 525.4,516.0 524.5,516.0 523.6,516.0 522.7,516.0 521.8,516.0 520.9,516.0 520.0,516.0 519.1,516.0 518.2,516.0 517.3,516.0
+516.4,516.0 515.5,516.0 514.6,516.0 513.7,516.0 512.8,516.0 511.9,516.0 511.0,516.0 510.1,516.0 509.2,516.0 508.3,516.0 507.4,516.0 506.5,516.0 505.6,516.0 504.7,516.0 503.8,516.0 502.9,516.0
+502.0,516.0 501.1,516.0 500.2,516.0 499.3,516.0 498.4,516.0 497.5,516.0 496.6,516.0 495.7,516.0 494.7,516.0 493.8,516.0 492.9,516.0 492.0,516.0 491.1,516.0 490.2,516.0 489.3,516.0 488.4,516.0
+487.5,516.0 486.6,516.0 485.7,516.0 484.8,516.0 483.9,516.0 483.0,516.0 482.1,516.0 481.2,516.0 480.3,516.0 479.4,516.0 478.5,516.0 477.6,516.0 476.7,516.0 475.8,516.0 474.9,516.0 474.0,516.0
+473.1,516.0 472.2,516.0 471.3,516.0 470.4,516.0 469.5,516.0 468.6,516.0 467.7,516.0 466.8,516.0 465.9,516.0 465.0,516.0 464.1,516.0 463.2,516.0 462.3,516.0 461.4,516.0 460.5,516.0 459.6,516.0
+458.7,516.0 457.8,516.0 456.9,516.0 456.0,516.0 455.1,516.0 454.2,516.0 453.3,516.0 452.3,516.0 451.4,516.0 450.5,516.0 449.6,516.0 448.7,516.0 447.8,516.0 446.9,516.0 446.0,516.0 445.1,516.0
+444.2,516.0 443.3,516.0 442.4,516.0 441.5,516.0 440.6,516.0 439.7,516.0 438.8,516.0 437.9,516.0 437.0,516.0 436.1,516.0 435.2,516.0 434.3,516.0 433.4,516.0 432.5,516.0 431.6,516.0 430.7,516.0
+429.8,516.0 428.9,516.0 428.0,516.0 427.1,516.0 426.2,516.0 425.3,516.0 424.4,516.0 423.5,516.0 422.6,516.0 421.7,516.0 420.8,516.0 419.9,516.0 419.0,516.0 418.1,516.0 417.2,516.0 416.3,516.0
+415.4,516.0 414.5,516.0 413.6,516.0 412.7,516.0 411.8,516.0 410.8,516.0 409.9,516.0 409.0,516.0 408.1,516.0 407.2,516.0 406.3,516.0 405.4,516.0 404.5,516.0 403.6,516.0 402.7,516.0 401.8,516.0
+400.9,516.0 400.0,516.0 399.1,516.0 398.2,516.0 397.3,516.0 396.4,516.0 395.5,516.0 394.6,516.0 393.7,516.0 392.8,516.0 391.9,516.0 391.0,516.0 390.1,516.0 389.2,516.0 388.3,516.0 387.4,516.0
+386.5,516.0 385.6,516.0 384.7,516.0 383.8,516.0 382.9,516.0 382.0,516.0 381.1,516.0 380.2,516.0 379.3,516.0 378.4,516.0 377.5,516.0 376.6,516.0 375.7,516.0 374.8,516.0 373.9,516.0 373.0,516.0
+372.1,516.0 371.2,516.0 370.3,516.0 369.4,516.0 368.4,516.0 367.5,516.0 366.6,516.0 365.7,516.0 364.8,516.0 363.9,516.0 363.0,516.0 362.1,516.0 361.2,516.0 360.3,516.0 359.4,516.0 358.5,516.0
+357.6,516.0 356.7,516.0 355.8,516.0 354.9,516.0 354.0,516.0 353.1,516.0 352.2,516.0 351.3,516.0 350.4,516.0 349.5,516.0 348.6,516.0 347.7,516.0 346.8,516.0 345.9,516.0 345.0,516.0 344.1,516.0
+343.2,516.0 342.3,516.0 341.4,516.0 340.5,516.0 339.6,516.0 338.7,516.0 337.8,516.0 336.9,516.0 336.0,516.0 335.1,516.0 334.2,516.0 333.3,516.0 332.4,516.0 331.5,516.0 330.6,516.0 329.7,516.0
+328.8,516.0 327.9,516.0 327.0,516.0 326.0,516.0 325.1,516.0 324.2,516.0 323.3,516.0 322.4,516.0 321.5,516.0 320.6,516.0 319.7,516.0 318.8,516.0 317.9,516.0 317.0,516.0 316.1,516.0 315.2,516.0
+314.3,516.0 313.4,516.0 312.5,516.0 311.6,516.0 310.7,516.0 309.8,516.0 308.9,516.0 308.0,516.0 307.1,516.0 306.2,516.0 305.3,516.0 304.4,516.0 303.5,516.0 302.6,516.0 301.7,516.0 300.8,516.0
+299.9,516.0 299.0,516.0 298.1,516.0 297.2,516.0 296.3,516.0 295.4,516.0 294.5,516.0 293.6,516.0 292.7,516.0 291.8,516.0 290.9,516.0 290.0,516.0 289.1,516.0 288.2,516.0 287.3,516.0 286.4,516.0
+285.5,516.0 284.5,516.0 283.6,516.0 282.7,516.0 281.8,516.0 280.9,516.0 280.0,516.0 279.1,516.0 278.2,516.0 277.3,516.0 276.4,516.0 275.5,516.0 274.6,516.0 273.7,516.0 272.8,516.0 271.9,516.0
+271.0,516.0 270.1,516.0 269.2,516.0 268.3,516.0 267.4,516.0 266.5,516.0 265.6,516.0 264.7,516.0 263.8,516.0 262.9,516.0 262.0,516.0 261.1,516.0 260.2,516.0 259.3,516.0 258.4,516.0 257.5,516.0
+256.6,516.0 255.7,516.0 254.8,516.0 253.9,516.0 253.0,516.0 252.1,516.0 251.2,516.0 250.3,516.0 249.4,516.0 248.5,516.0 247.6,516.0 246.7,516.0 245.8,516.0 244.9,516.0 244.0,516.0 243.1,516.0
+242.1,516.0 241.2,516.0 240.3,516.0 239.4,516.0 238.5,516.0 237.6,516.0 236.7,516.0 235.8,516.0 234.9,516.0 234.0,516.0 233.1,516.0 232.2,516.0 231.3,516.0 230.4,516.0 229.5,516.0 228.6,516.0
+227.7,516.0 226.8,516.0 225.9,516.0 225.0,516.0 224.1,516.0 223.2,516.0 222.3,516.0 221.4,516.0 220.5,516.0 219.6,516.0 218.7,516.0 217.8,516.0 216.9,516.0 216.0,516.0 215.1,516.0 214.2,516.0
+213.3,516.0 212.4,516.0 211.5,516.0 210.6,516.0 209.7,516.0 208.8,516.0 207.9,516.0 207.0,516.0 206.1,516.0 205.2,516.0 204.3,516.0 203.4,516.0 202.5,516.0 201.6,516.0 200.6,516.0 199.7,516.0
+198.8,516.0 197.9,516.0 197.0,516.0 196.1,516.0 195.2,516.0 194.3,516.0 193.4,516.0 192.5,516.0 191.6,516.0 190.7,516.0 189.8,516.0 188.9,516.0 188.0,516.0 187.1,516.0 186.2,516.0 185.3,516.0
+184.4,516.0 183.5,516.0 182.6,516.0 181.7,516.0 180.8,516.0 179.9,516.0 179.0,516.0 178.1,516.0 177.2,516.0 176.3,516.0 175.4,516.0 174.5,516.0 173.6,516.0 172.7,516.0 171.8,516.0 170.9,516.0
+170.0,516.0 169.1,516.0 168.2,516.0 167.3,516.0 166.4,516.0 165.5,516.0 164.6,516.0 163.7,516.0 162.8,516.0 161.9,516.0 161.0,516.0 160.1,516.0 159.2,516.0 158.2,516.0 157.3,516.0 156.4,516.0
+155.5,516.0 154.6,516.0 153.7,516.0 152.8,516.0 151.9,516.0 151.0,516.0 150.1,516.0 149.2,516.0 148.3,516.0 147.4,516.0 146.5,516.0 145.6,516.0 144.7,516.0 143.8,516.0 142.9,516.0 142.0,516.0
+141.1,516.0 140.2,516.0 139.3,516.0 138.4,516.0 137.5,516.0 136.6,516.0 135.7,516.0 134.8,516.0 133.9,516.0 133.0,516.0 132.1,516.0 131.2,516.0 130.3,516.0 129.4,516.0 128.5,516.0 127.6,516.0
+126.7,516.0 125.8,516.0 124.9,516.0 124.0,516.0 123.1,516.0 122.2,516.0 121.3,516.0 120.4,516.0 119.5,516.0 118.6,516.0 117.7,516.0 116.7,516.0 115.8,516.0 114.9,516.0 114.0,516.0 113.1,516.0
+112.2,516.0 111.3,516.0 110.4,516.0 109.5,516.0 108.6,516.0 107.7,516.0 106.8,516.0 105.9,516.0 105.0,516.0 104.1,516.0 103.2,516.0 102.3,516.0 101.4,516.0 100.5,516.0 99.6,516.0 98.7,516.0
+97.8,516.0 96.9,516.0 96.0,516.0 96.0,516.0 '/>
+ </g>
+ <path stroke='rgb( 0, 102, 153)' d='M96.0,516.0 L96.0,484.4 L96.9,484.4 L97.8,484.4 L98.7,484.3 L99.6,484.2 L100.5,484.1 L101.4,483.9
+ L102.3,483.7 L103.2,483.5 L104.1,483.3 L105.0,483.0 L105.9,482.7 L106.8,482.4 L107.7,482.0 L108.6,481.6
+ L109.5,481.2 L110.4,480.8 L111.3,480.3 L112.2,479.8 L113.1,479.3 L114.0,478.8 L114.9,478.2 L115.8,477.6
+ L116.7,476.9 L117.7,476.3 L118.6,475.6 L119.5,474.9 L120.4,474.1 L121.3,473.3 L122.2,472.5 L123.1,471.7
+ L124.0,470.9 L124.9,470.0 L125.8,469.1 L126.7,468.2 L127.6,467.2 L128.5,466.2 L129.4,465.2 L130.3,464.2
+ L131.2,463.1 L132.1,462.0 L133.0,460.9 L133.9,459.8 L134.8,458.6 L135.7,457.4 L136.6,456.2 L137.5,455.0
+ L138.4,453.7 L139.3,452.4 L140.2,451.1 L141.1,449.8 L142.0,448.5 L142.9,447.1 L143.8,445.7 L144.7,444.3
+ L145.6,442.8 L146.5,441.3 L147.4,439.9 L148.3,438.3 L149.2,436.8 L150.1,435.3 L151.0,433.7 L151.9,432.1
+ L152.8,430.5 L153.7,428.8 L154.6,427.2 L155.5,425.5 L156.4,423.8 L157.3,422.1 L158.2,420.3 L159.2,418.6
+ L160.1,416.8 L161.0,415.0 L161.9,413.2 L162.8,411.4 L163.7,409.5 L164.6,407.7 L165.5,405.8 L166.4,403.9
+ L167.3,402.0 L168.2,400.1 L169.1,398.1 L170.0,396.1 L170.9,394.2 L171.8,392.2 L172.7,390.2 L173.6,388.1
+ L174.5,386.1 L175.4,384.1 L176.3,382.0 L177.2,379.9 L178.1,377.8 L179.0,375.7 L179.9,373.6 L180.8,371.5
+ L181.7,369.4 L182.6,367.2 L183.5,365.1 L184.4,362.9 L185.3,360.7 L186.2,358.5 L187.1,356.3 L188.0,354.1
+ L188.9,351.9 L189.8,349.7 L190.7,347.4 L191.6,345.2 L192.5,343.0 L193.4,340.7 L194.3,338.4 L195.2,336.2
+ L196.1,333.9 L197.0,331.6 L197.9,329.3 L198.8,327.0 L199.7,324.7 L200.6,322.4 L201.6,320.1 L202.5,317.8
+ L203.4,315.5 L204.3,313.2 L205.2,310.8 L206.1,308.5 L207.0,306.2 L207.9,303.9 L208.8,301.5 L209.7,299.2
+ L210.6,296.9 L211.5,294.6 L212.4,292.2 L213.3,289.9 L214.2,287.6 L215.1,285.2 L216.0,282.9 L216.9,280.6
+ L217.8,278.3 L218.7,275.9 L219.6,273.6 L220.5,271.3 L221.4,269.0 L222.3,266.7 L223.2,264.4 L224.1,262.1
+ L225.0,259.8 L225.9,257.5 L226.8,255.2 L227.7,252.9 L228.6,250.7 L229.5,248.4 L230.4,246.2 L231.3,243.9
+ L232.2,241.7 L233.1,239.4 L234.0,237.2 L234.9,235.0 L235.8,232.8 L236.7,230.6 L237.6,228.4 L238.5,226.2
+ L239.4,224.0 L240.3,221.9 L241.2,219.7 L242.1,217.6 L243.1,215.5 L244.0,213.4 L244.9,211.3 L245.8,209.2
+ L246.7,207.1 L247.6,205.0 L248.5,203.0 L249.4,201.0 L250.3,198.9 L251.2,196.9 L252.1,194.9 L253.0,193.0
+ L253.9,191.0 L254.8,189.1 L255.7,187.1 L256.6,185.2 L257.5,183.3 L258.4,181.4 L259.3,179.6 L260.2,177.7
+ L261.1,175.9 L262.0,174.1 L262.9,172.3 L263.8,170.5 L264.7,168.8 L265.6,167.0 L266.5,165.3 L267.4,163.6
+ L268.3,161.9 L269.2,160.3 L270.1,158.6 L271.0,157.0 L271.9,155.4 L272.8,153.9 L273.7,152.3 L274.6,150.8
+ L275.5,149.3 L276.4,147.8 L277.3,146.3 L278.2,144.9 L279.1,143.4 L280.0,142.0 L280.9,140.7 L281.8,139.3
+ L282.7,138.0 L283.6,136.7 L284.5,135.4 L285.5,134.1 L286.4,132.9 L287.3,131.7 L288.2,130.5 L289.1,129.3
+ L290.0,128.2 L290.9,127.1 L291.8,126.0 L292.7,124.9 L293.6,123.9 L294.5,122.9 L295.4,121.9 L296.3,121.0
+ L297.2,120.0 L298.1,119.1 L299.0,118.2 L299.9,117.4 L300.8,116.6 L301.7,115.8 L302.6,115.0 L303.5,114.3
+ L304.4,113.5 L305.3,112.8 L306.2,112.2 L307.1,111.5 L308.0,110.9 L308.9,110.4 L309.8,109.8 L310.7,109.3
+ L311.6,108.8 L312.5,108.3 L313.4,107.9 L314.3,107.5 L315.2,107.1 L316.1,106.7 L317.0,106.4 L317.9,106.1
+ L318.8,105.8 L319.7,105.6 L320.6,105.4 L321.5,105.2 L322.4,105.0 L323.3,104.9 L324.2,104.8 L325.1,104.7
+ L326.0,104.7 L327.0,104.7 L327.9,104.7 L328.8,104.7 L329.7,104.8 L330.6,104.9 L331.5,105.0 L332.4,105.2
+ L333.3,105.4 L334.2,105.6 L335.1,105.8 L336.0,106.1 L336.9,106.4 L337.8,106.7 L338.7,107.1 L339.6,107.5
+ L340.5,107.9 L341.4,108.3 L342.3,108.8 L343.2,109.3 L344.1,109.8 L345.0,110.4 L345.9,110.9 L346.8,111.5
+ L347.7,112.2 L348.6,112.8 L349.5,113.5 L350.4,114.3 L351.3,115.0 L352.2,115.8 L353.1,116.6 L354.0,117.4
+ L354.9,118.2 L355.8,119.1 L356.7,120.0 L357.6,121.0 L358.5,121.9 L359.4,122.9 L360.3,123.9 L361.2,124.9
+ L362.1,126.0 L363.0,127.1 L363.9,128.2 L364.8,129.3 L365.7,130.5 L366.6,131.7 L367.5,132.9 L368.4,134.1
+ L369.4,135.4 L370.3,136.7 L371.2,138.0 L372.1,139.3 L373.0,140.7 L373.9,142.0 L374.8,143.4 L375.7,144.9
+ L376.6,146.3 L377.5,147.8 L378.4,149.3 L379.3,150.8 L380.2,152.3 L381.1,153.9 L382.0,155.4 L382.9,157.0
+ L383.8,158.6 L384.7,160.3 L385.6,161.9 L386.5,163.6 L387.4,165.3 L388.3,167.0 L389.2,168.8 L390.1,170.5
+ L391.0,172.3 L391.9,174.1 L392.8,175.9 L393.7,177.7 L394.6,179.6 L395.5,181.4 L396.4,183.3 L397.3,185.2
+ L398.2,187.1 L399.1,189.1 L400.0,191.0 L400.9,193.0 L401.8,194.9 L402.7,196.9 L403.6,198.9 L404.5,201.0
+ L405.4,203.0 L406.3,205.0 L407.2,207.1 L408.1,209.2 L409.0,211.3 L409.9,213.4 L410.8,215.5 L411.8,217.6
+ L412.7,219.7 L413.6,221.9 L414.5,224.0 L415.4,226.2 L416.3,228.4 L417.2,230.6 L418.1,232.8 L419.0,235.0
+ L419.9,237.2 L420.8,239.4 L421.7,241.7 L422.6,243.9 L423.5,246.2 L424.4,248.4 L425.3,250.7 L426.2,252.9
+ L427.1,255.2 L428.0,257.5 L428.9,259.8 L429.8,262.1 L430.7,264.4 L431.6,266.7 L432.5,269.0 L433.4,271.3
+ L434.3,273.6 L435.2,275.9 L436.1,278.3 L437.0,280.6 L437.9,282.9 L438.8,285.2 L439.7,287.6 L440.6,289.9
+ L441.5,292.2 L442.4,294.6 L443.3,296.9 L444.2,299.2 L445.1,301.5 L446.0,303.9 L446.9,306.2 L447.8,308.5
+ L448.7,310.8 L449.6,313.2 L450.5,315.5 L451.4,317.8 L452.3,320.1 L453.3,322.4 L454.2,324.7 L455.1,327.0
+ L456.0,329.3 L456.9,331.6 L457.8,333.9 L458.7,336.2 L459.6,338.4 L460.5,340.7 L461.4,343.0 L462.3,345.2
+ L463.2,347.4 L464.1,349.7 L465.0,351.9 L465.9,354.1 L466.8,356.3 L467.7,358.5 L468.6,360.7 L469.5,362.9
+ L470.4,365.1 L471.3,367.2 L472.2,369.4 L473.1,371.5 L474.0,373.6 L474.9,375.7 L475.8,377.8 L476.7,379.9
+ L477.6,382.0 L478.5,384.1 L479.4,386.1 L480.3,388.1 L481.2,390.2 L482.1,392.2 L483.0,394.2 L483.9,396.1
+ L484.8,398.1 L485.7,400.1 L486.6,402.0 L487.5,403.9 L488.4,405.8 L489.3,407.7 L490.2,409.5 L491.1,411.4
+ L492.0,413.2 L492.9,415.0 L493.8,416.8 L494.7,418.6 L495.7,420.3 L496.6,422.1 L497.5,423.8 L498.4,425.5
+ L499.3,427.2 L500.2,428.8 L501.1,430.5 L502.0,432.1 L502.9,433.7 L503.8,435.3 L504.7,436.8 L505.6,438.3
+ L506.5,439.9 L507.4,441.3 L508.3,442.8 L509.2,444.3 L510.1,445.7 L511.0,447.1 L511.9,448.5 L512.8,449.8
+ L513.7,451.1 L514.6,452.4 L515.5,453.7 L516.4,455.0 L517.3,456.2 L518.2,457.4 L519.1,458.6 L520.0,459.8
+ L520.9,460.9 L521.8,462.0 L522.7,463.1 L523.6,464.2 L524.5,465.2 L525.4,466.2 L526.3,467.2 L527.2,468.2
+ L528.1,469.1 L529.0,470.0 L529.9,470.9 L530.8,471.7 L531.7,472.5 L532.6,473.3 L533.5,474.1 L534.4,474.9
+ L535.3,475.6 L536.2,476.3 L537.2,476.9 L538.1,477.6 L539.0,478.2 L539.9,478.8 L540.8,479.3 L541.7,479.8
+ L542.6,480.3 L543.5,480.8 L544.4,481.2 L545.3,481.6 L546.2,482.0 L547.1,482.4 L548.0,482.7 L548.9,483.0
+ L549.8,483.3 L550.7,483.5 L551.6,483.7 L552.5,483.9 L553.4,484.1 L554.3,484.2 L555.2,484.3 L556.1,484.4
+ L557.0,484.4 L557.9,484.4 L557.9,516.0 L557.0,516.0 L556.1,516.0 L555.2,516.0 L554.3,516.0 L553.4,516.0
+ L552.5,516.0 L551.6,516.0 L550.7,516.0 L549.8,516.0 L548.9,516.0 L548.0,516.0 L547.1,516.0 L546.2,516.0
+ L545.3,516.0 L544.4,516.0 L543.5,516.0 L542.6,516.0 L541.7,516.0 L540.8,516.0 L539.9,516.0 L539.0,516.0
+ L538.1,516.0 L537.2,516.0 L536.2,516.0 L535.3,516.0 L534.4,516.0 L533.5,516.0 L532.6,516.0 L531.7,516.0
+ L530.8,516.0 L529.9,516.0 L529.0,516.0 L528.1,516.0 L527.2,516.0 L526.3,516.0 L525.4,516.0 L524.5,516.0
+ L523.6,516.0 L522.7,516.0 L521.8,516.0 L520.9,516.0 L520.0,516.0 L519.1,516.0 L518.2,516.0 L517.3,516.0
+ L516.4,516.0 L515.5,516.0 L514.6,516.0 L513.7,516.0 L512.8,516.0 L511.9,516.0 L511.0,516.0 L510.1,516.0
+ L509.2,516.0 L508.3,516.0 L507.4,516.0 L506.5,516.0 L505.6,516.0 L504.7,516.0 L503.8,516.0 L502.9,516.0
+ L502.0,516.0 L501.1,516.0 L500.2,516.0 L499.3,516.0 L498.4,516.0 L497.5,516.0 L496.6,516.0 L495.7,516.0
+ L494.7,516.0 L493.8,516.0 L492.9,516.0 L492.0,516.0 L491.1,516.0 L490.2,516.0 L489.3,516.0 L488.4,516.0
+ L487.5,516.0 L486.6,516.0 L485.7,516.0 L484.8,516.0 L483.9,516.0 L483.0,516.0 L482.1,516.0 L481.2,516.0
+ L480.3,516.0 L479.4,516.0 L478.5,516.0 L477.6,516.0 L476.7,516.0 L475.8,516.0 L474.9,516.0 L474.0,516.0
+ L473.1,516.0 L472.2,516.0 L471.3,516.0 L470.4,516.0 L469.5,516.0 L468.6,516.0 L467.7,516.0 L466.8,516.0
+ L465.9,516.0 L465.0,516.0 L464.1,516.0 L463.2,516.0 L462.3,516.0 L461.4,516.0 L460.5,516.0 L459.6,516.0
+ L458.7,516.0 L457.8,516.0 L456.9,516.0 L456.0,516.0 L455.1,516.0 L454.2,516.0 L453.3,516.0 L452.3,516.0
+ L451.4,516.0 L450.5,516.0 L449.6,516.0 L448.7,516.0 L447.8,516.0 L446.9,516.0 L446.0,516.0 L445.1,516.0
+ L444.2,516.0 L443.3,516.0 L442.4,516.0 L441.5,516.0 L440.6,516.0 L439.7,516.0 L438.8,516.0 L437.9,516.0
+ L437.0,516.0 L436.1,516.0 L435.2,516.0 L434.3,516.0 L433.4,516.0 L432.5,516.0 L431.6,516.0 L430.7,516.0
+ L429.8,516.0 L428.9,516.0 L428.0,516.0 L427.1,516.0 L426.2,516.0 L425.3,516.0 L424.4,516.0 L423.5,516.0
+ L422.6,516.0 L421.7,516.0 L420.8,516.0 L419.9,516.0 L419.0,516.0 L418.1,516.0 L417.2,516.0 L416.3,516.0
+ L415.4,516.0 L414.5,516.0 L413.6,516.0 L412.7,516.0 L411.8,516.0 L410.8,516.0 L409.9,516.0 L409.0,516.0
+ L408.1,516.0 L407.2,516.0 L406.3,516.0 L405.4,516.0 L404.5,516.0 L403.6,516.0 L402.7,516.0 L401.8,516.0
+ L400.9,516.0 L400.0,516.0 L399.1,516.0 L398.2,516.0 L397.3,516.0 L396.4,516.0 L395.5,516.0 L394.6,516.0
+ L393.7,516.0 L392.8,516.0 L391.9,516.0 L391.0,516.0 L390.1,516.0 L389.2,516.0 L388.3,516.0 L387.4,516.0
+ L386.5,516.0 L385.6,516.0 L384.7,516.0 L383.8,516.0 L382.9,516.0 L382.0,516.0 L381.1,516.0 L380.2,516.0
+ L379.3,516.0 L378.4,516.0 L377.5,516.0 L376.6,516.0 L375.7,516.0 L374.8,516.0 L373.9,516.0 L373.0,516.0
+ L372.1,516.0 L371.2,516.0 L370.3,516.0 L369.4,516.0 L368.4,516.0 L367.5,516.0 L366.6,516.0 L365.7,516.0
+ L364.8,516.0 L363.9,516.0 L363.0,516.0 L362.1,516.0 L361.2,516.0 L360.3,516.0 L359.4,516.0 L358.5,516.0
+ L357.6,516.0 L356.7,516.0 L355.8,516.0 L354.9,516.0 L354.0,516.0 L353.1,516.0 L352.2,516.0 L351.3,516.0
+ L350.4,516.0 L349.5,516.0 L348.6,516.0 L347.7,516.0 L346.8,516.0 L345.9,516.0 L345.0,516.0 L344.1,516.0
+ L343.2,516.0 L342.3,516.0 L341.4,516.0 L340.5,516.0 L339.6,516.0 L338.7,516.0 L337.8,516.0 L336.9,516.0
+ L336.0,516.0 L335.1,516.0 L334.2,516.0 L333.3,516.0 L332.4,516.0 L331.5,516.0 L330.6,516.0 L329.7,516.0
+ L328.8,516.0 L327.9,516.0 L327.0,516.0 L326.0,516.0 L325.1,516.0 L324.2,516.0 L323.3,516.0 L322.4,516.0
+ L321.5,516.0 L320.6,516.0 L319.7,516.0 L318.8,516.0 L317.9,516.0 L317.0,516.0 L316.1,516.0 L315.2,516.0
+ L314.3,516.0 L313.4,516.0 L312.5,516.0 L311.6,516.0 L310.7,516.0 L309.8,516.0 L308.9,516.0 L308.0,516.0
+ L307.1,516.0 L306.2,516.0 L305.3,516.0 L304.4,516.0 L303.5,516.0 L302.6,516.0 L301.7,516.0 L300.8,516.0
+ L299.9,516.0 L299.0,516.0 L298.1,516.0 L297.2,516.0 L296.3,516.0 L295.4,516.0 L294.5,516.0 L293.6,516.0
+ L292.7,516.0 L291.8,516.0 L290.9,516.0 L290.0,516.0 L289.1,516.0 L288.2,516.0 L287.3,516.0 L286.4,516.0
+ L285.5,516.0 L284.5,516.0 L283.6,516.0 L282.7,516.0 L281.8,516.0 L280.9,516.0 L280.0,516.0 L279.1,516.0
+ L278.2,516.0 L277.3,516.0 L276.4,516.0 L275.5,516.0 L274.6,516.0 L273.7,516.0 L272.8,516.0 L271.9,516.0
+ L271.0,516.0 L270.1,516.0 L269.2,516.0 L268.3,516.0 L267.4,516.0 L266.5,516.0 L265.6,516.0 L264.7,516.0
+ L263.8,516.0 L262.9,516.0 L262.0,516.0 L261.1,516.0 L260.2,516.0 L259.3,516.0 L258.4,516.0 L257.5,516.0
+ L256.6,516.0 L255.7,516.0 L254.8,516.0 L253.9,516.0 L253.0,516.0 L252.1,516.0 L251.2,516.0 L250.3,516.0
+ L249.4,516.0 L248.5,516.0 L247.6,516.0 L246.7,516.0 L245.8,516.0 L244.9,516.0 L244.0,516.0 L243.1,516.0
+ L242.1,516.0 L241.2,516.0 L240.3,516.0 L239.4,516.0 L238.5,516.0 L237.6,516.0 L236.7,516.0 L235.8,516.0
+ L234.9,516.0 L234.0,516.0 L233.1,516.0 L232.2,516.0 L231.3,516.0 L230.4,516.0 L229.5,516.0 L228.6,516.0
+ L227.7,516.0 L226.8,516.0 L225.9,516.0 L225.0,516.0 L224.1,516.0 L223.2,516.0 L222.3,516.0 L221.4,516.0
+ L220.5,516.0 L219.6,516.0 L218.7,516.0 L217.8,516.0 L216.9,516.0 L216.0,516.0 L215.1,516.0 L214.2,516.0
+ L213.3,516.0 L212.4,516.0 L211.5,516.0 L210.6,516.0 L209.7,516.0 L208.8,516.0 L207.9,516.0 L207.0,516.0
+ L206.1,516.0 L205.2,516.0 L204.3,516.0 L203.4,516.0 L202.5,516.0 L201.6,516.0 L200.6,516.0 L199.7,516.0
+ L198.8,516.0 L197.9,516.0 L197.0,516.0 L196.1,516.0 L195.2,516.0 L194.3,516.0 L193.4,516.0 L192.5,516.0
+ L191.6,516.0 L190.7,516.0 L189.8,516.0 L188.9,516.0 L188.0,516.0 L187.1,516.0 L186.2,516.0 L185.3,516.0
+ L184.4,516.0 L183.5,516.0 L182.6,516.0 L181.7,516.0 L180.8,516.0 L179.9,516.0 L179.0,516.0 L178.1,516.0
+ L177.2,516.0 L176.3,516.0 L175.4,516.0 L174.5,516.0 L173.6,516.0 L172.7,516.0 L171.8,516.0 L170.9,516.0
+ L170.0,516.0 L169.1,516.0 L168.2,516.0 L167.3,516.0 L166.4,516.0 L165.5,516.0 L164.6,516.0 L163.7,516.0
+ L162.8,516.0 L161.9,516.0 L161.0,516.0 L160.1,516.0 L159.2,516.0 L158.2,516.0 L157.3,516.0 L156.4,516.0
+ L155.5,516.0 L154.6,516.0 L153.7,516.0 L152.8,516.0 L151.9,516.0 L151.0,516.0 L150.1,516.0 L149.2,516.0
+ L148.3,516.0 L147.4,516.0 L146.5,516.0 L145.6,516.0 L144.7,516.0 L143.8,516.0 L142.9,516.0 L142.0,516.0
+ L141.1,516.0 L140.2,516.0 L139.3,516.0 L138.4,516.0 L137.5,516.0 L136.6,516.0 L135.7,516.0 L134.8,516.0
+ L133.9,516.0 L133.0,516.0 L132.1,516.0 L131.2,516.0 L130.3,516.0 L129.4,516.0 L128.5,516.0 L127.6,516.0
+ L126.7,516.0 L125.8,516.0 L124.9,516.0 L124.0,516.0 L123.1,516.0 L122.2,516.0 L121.3,516.0 L120.4,516.0
+ L119.5,516.0 L118.6,516.0 L117.7,516.0 L116.7,516.0 L115.8,516.0 L114.9,516.0 L114.0,516.0 L113.1,516.0
+ L112.2,516.0 L111.3,516.0 L110.4,516.0 L109.5,516.0 L108.6,516.0 L107.7,516.0 L106.8,516.0 L105.9,516.0
+ L105.0,516.0 L104.1,516.0 L103.2,516.0 L102.3,516.0 L101.4,516.0 L100.5,516.0 L99.6,516.0 L98.7,516.0
+ L97.8,516.0 L96.9,516.0 L96.0,516.0 '/></g>
+ </g>
+ <g id="gnuplot_plot_2a" ><title>gnuplot_plot_2a</title>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,516.0 L96.0,484.4 L96.9,484.4 L97.8,484.4 L98.7,484.3 L99.6,484.2 L100.5,484.1 L101.4,483.9
+ L102.3,483.7 L103.2,483.5 L104.1,483.3 L105.0,483.0 L105.9,482.7 L106.8,482.4 L107.7,482.0 L108.6,481.6
+ L109.5,481.2 L110.4,480.8 L111.3,480.3 L112.2,479.8 L113.1,479.3 L114.0,478.8 L114.9,478.2 L115.8,477.6
+ L116.7,476.9 L117.7,476.3 L118.6,475.6 L119.5,474.9 L120.4,474.1 L121.3,473.3 L122.2,472.5 L123.1,471.7
+ L124.0,470.9 L124.9,470.0 L125.8,469.1 L126.7,468.2 L127.6,467.2 L128.5,466.2 L129.4,465.2 L130.3,464.2
+ L131.2,463.1 L132.1,462.0 L133.0,460.9 L133.9,459.8 L134.8,458.6 L135.7,457.4 L136.6,456.2 L137.5,455.0
+ L138.4,453.7 L139.3,452.4 L140.2,451.1 L141.1,449.8 L142.0,448.5 L142.9,447.1 L143.8,445.7 L144.7,444.3
+ L145.6,442.8 L146.5,441.3 L147.4,439.9 L148.3,438.3 L149.2,436.8 L150.1,435.3 L151.0,433.7 L151.9,432.1
+ L152.8,430.5 L153.7,428.8 L154.6,427.2 L155.5,425.5 L156.4,423.8 L157.3,422.1 L158.2,420.3 L159.2,418.6
+ L160.1,416.8 L161.0,415.0 L161.9,413.2 L162.8,411.4 L163.7,409.5 L164.6,407.7 L165.5,405.8 L166.4,403.9
+ L167.3,402.0 L168.2,400.1 L169.1,398.1 L170.0,396.1 L170.9,394.2 L171.8,392.2 L172.7,390.2 L173.6,388.1
+ L174.5,386.1 L175.4,384.1 L176.3,382.0 L177.2,379.9 L178.1,377.8 L179.0,375.7 L179.9,373.6 L180.8,371.5
+ L181.7,369.4 L182.6,367.2 L183.5,365.1 L184.4,362.9 L185.3,360.7 L186.2,358.5 L187.1,356.3 L188.0,354.1
+ L188.9,351.9 L189.8,349.7 L190.7,347.4 L191.6,345.2 L192.5,343.0 L193.4,340.7 L194.3,338.4 L195.2,336.2
+ L196.1,333.9 L197.0,331.6 L197.9,329.3 L198.8,327.0 L199.7,324.7 L200.6,322.4 L201.6,320.1 L202.5,317.8
+ L203.4,315.5 L204.3,313.2 L205.2,310.8 L206.1,308.5 L207.0,306.2 L207.9,303.9 L208.8,301.5 L209.7,299.2
+ L210.6,296.9 L211.5,294.6 L212.4,292.2 L213.3,289.9 L214.2,287.6 L215.1,285.2 L216.0,282.9 L216.9,280.6
+ L217.8,278.3 L218.7,275.9 L219.6,273.6 L220.5,271.3 L221.4,269.0 L222.3,266.7 L223.2,264.4 L224.1,262.1
+ L225.0,259.8 L225.9,257.5 L226.8,255.2 L227.7,252.9 L228.6,250.7 L229.5,248.4 L230.4,246.2 L231.3,243.9
+ L232.2,241.7 L233.1,239.4 L234.0,237.2 L234.9,235.0 L235.8,232.8 L236.7,230.6 L237.6,228.4 L238.5,226.2
+ L239.4,224.0 L240.3,221.9 L241.2,219.7 L242.1,217.6 L243.1,215.5 L244.0,213.4 L244.9,211.3 L245.8,209.2
+ L246.7,207.1 L247.6,205.0 L248.5,203.0 L249.4,201.0 L250.3,198.9 L251.2,196.9 L252.1,194.9 L253.0,193.0
+ L253.9,191.0 L254.8,189.1 L255.7,187.1 L256.6,185.2 L257.5,183.3 L258.4,181.4 L259.3,179.6 L260.2,177.7
+ L261.1,175.9 L262.0,174.1 L262.9,172.3 L263.8,170.5 L264.7,168.8 L265.6,167.0 L266.5,165.3 L267.4,163.6
+ L268.3,161.9 L269.2,160.3 L270.1,158.6 L271.0,157.0 L271.9,155.4 L272.8,153.9 L273.7,152.3 L274.6,150.8
+ L275.5,149.3 L276.4,147.8 L277.3,146.3 L278.2,144.9 L279.1,143.4 L280.0,142.0 L280.9,140.7 L281.8,139.3
+ L282.7,138.0 L283.6,136.7 L284.5,135.4 L285.5,134.1 L286.4,132.9 L287.3,131.7 L288.2,130.5 L289.1,129.3
+ L290.0,128.2 L290.9,127.1 L291.8,126.0 L292.7,124.9 L293.6,123.9 L294.5,122.9 L295.4,121.9 L296.3,121.0
+ L297.2,120.0 L298.1,119.1 L299.0,118.2 L299.9,117.4 L300.8,116.6 L301.7,115.8 L302.6,115.0 L303.5,114.3
+ L304.4,113.5 L305.3,112.8 L306.2,112.2 L307.1,111.5 L308.0,110.9 L308.9,110.4 L309.8,109.8 L310.7,109.3
+ L311.6,108.8 L312.5,108.3 L313.4,107.9 L314.3,107.5 L315.2,107.1 L316.1,106.7 L317.0,106.4 L317.9,106.1
+ L318.8,105.8 L319.7,105.6 L320.6,105.4 L321.5,105.2 L322.4,105.0 L323.3,104.9 L324.2,104.8 L325.1,104.7
+ L326.0,104.7 L327.0,104.7 L327.9,104.7 L328.8,104.7 L329.7,104.8 L330.6,104.9 L331.5,105.0 L332.4,105.2
+ L333.3,105.4 L334.2,105.6 L335.1,105.8 L336.0,106.1 L336.9,106.4 L337.8,106.7 L338.7,107.1 L339.6,107.5
+ L340.5,107.9 L341.4,108.3 L342.3,108.8 L343.2,109.3 L344.1,109.8 L345.0,110.4 L345.9,110.9 L346.8,111.5
+ L347.7,112.2 L348.6,112.8 L349.5,113.5 L350.4,114.3 L351.3,115.0 L352.2,115.8 L353.1,116.6 L354.0,117.4
+ L354.9,118.2 L355.8,119.1 L356.7,120.0 L357.6,121.0 L358.5,121.9 L359.4,122.9 L360.3,123.9 L361.2,124.9
+ L362.1,126.0 L363.0,127.1 L363.9,128.2 L364.8,129.3 L365.7,130.5 L366.6,131.7 L367.5,132.9 L368.4,134.1
+ L369.4,135.4 L370.3,136.7 L371.2,138.0 L372.1,139.3 L373.0,140.7 L373.9,142.0 L374.8,143.4 L375.7,144.9
+ L376.6,146.3 L377.5,147.8 L378.4,149.3 L379.3,150.8 L380.2,152.3 L381.1,153.9 L382.0,155.4 L382.9,157.0
+ L383.8,158.6 L384.7,160.3 L385.6,161.9 L386.5,163.6 L387.4,165.3 L388.3,167.0 L389.2,168.8 L390.1,170.5
+ L391.0,172.3 L391.9,174.1 L392.8,175.9 L393.7,177.7 L394.6,179.6 L395.5,181.4 L396.4,183.3 L397.3,185.2
+ L398.2,187.1 L399.1,189.1 L400.0,191.0 L400.9,193.0 L401.8,194.9 L402.7,196.9 L403.6,198.9 L404.5,201.0
+ L405.4,203.0 L406.3,205.0 L407.2,207.1 L408.1,209.2 L409.0,211.3 L409.9,213.4 L410.8,215.5 L411.8,217.6
+ L412.7,219.7 L413.6,221.9 L414.5,224.0 L415.4,226.2 L416.3,228.4 L417.2,230.6 L418.1,232.8 L419.0,235.0
+ L419.9,237.2 L420.8,239.4 L421.7,241.7 L422.6,243.9 L423.5,246.2 L424.4,248.4 L425.3,250.7 L426.2,252.9
+ L427.1,255.2 L428.0,257.5 L428.9,259.8 L429.8,262.1 L430.7,264.4 L431.6,266.7 L432.5,269.0 L433.4,271.3
+ L434.3,273.6 L435.2,275.9 L436.1,278.3 L437.0,280.6 L437.9,282.9 L438.8,285.2 L439.7,287.6 L440.6,289.9
+ L441.5,292.2 L442.4,294.6 L443.3,296.9 L444.2,299.2 L445.1,301.5 L446.0,303.9 L446.9,306.2 L447.8,308.5
+ L448.7,310.8 L449.6,313.2 L450.5,315.5 L451.4,317.8 L452.3,320.1 L453.3,322.4 L454.2,324.7 L455.1,327.0
+ L456.0,329.3 L456.9,331.6 L457.8,333.9 L458.7,336.2 L459.6,338.4 L460.5,340.7 L461.4,343.0 L462.3,345.2
+ L463.2,347.4 L464.1,349.7 L465.0,351.9 L465.9,354.1 L466.8,356.3 L467.7,358.5 L468.6,360.7 L469.5,362.9
+ L470.4,365.1 L471.3,367.2 L472.2,369.4 L473.1,371.5 L474.0,373.6 L474.9,375.7 L475.8,377.8 L476.7,379.9
+ L477.6,382.0 L478.5,384.1 L479.4,386.1 L480.3,388.1 L481.2,390.2 L482.1,392.2 L483.0,394.2 L483.9,396.1
+ L484.8,398.1 L485.7,400.1 L486.6,402.0 L487.5,403.9 L488.4,405.8 L489.3,407.7 L490.2,409.5 L491.1,411.4
+ L492.0,413.2 L492.9,415.0 L493.8,416.8 L494.7,418.6 L495.7,420.3 L496.6,422.1 L497.5,423.8 L498.4,425.5
+ L499.3,427.2 L500.2,428.8 L501.1,430.5 L502.0,432.1 L502.9,433.7 L503.8,435.3 L504.7,436.8 L505.6,438.3
+ L506.5,439.9 L507.4,441.3 L508.3,442.8 L509.2,444.3 L510.1,445.7 L511.0,447.1 L511.9,448.5 L512.8,449.8
+ L513.7,451.1 L514.6,452.4 L515.5,453.7 L516.4,455.0 L517.3,456.2 L518.2,457.4 L519.1,458.6 L520.0,459.8
+ L520.9,460.9 L521.8,462.0 L522.7,463.1 L523.6,464.2 L524.5,465.2 L525.4,466.2 L526.3,467.2 L527.2,468.2
+ L528.1,469.1 L529.0,470.0 L529.9,470.9 L530.8,471.7 L531.7,472.5 L532.6,473.3 L533.5,474.1 L534.4,474.9
+ L535.3,475.6 L536.2,476.3 L537.2,476.9 L538.1,477.6 L539.0,478.2 L539.9,478.8 L540.8,479.3 L541.7,479.8
+ L542.6,480.3 L543.5,480.8 L544.4,481.2 L545.3,481.6 L546.2,482.0 L547.1,482.4 L548.0,482.7 L548.9,483.0
+ L549.8,483.3 L550.7,483.5 L551.6,483.7 L552.5,483.9 L553.4,484.1 L554.3,484.2 L555.2,484.3 L556.1,484.4
+ L557.0,484.4 L557.9,484.4 L557.9,516.0 L557.0,516.0 L556.1,516.0 L555.2,516.0 L554.3,516.0 L553.4,516.0
+ L552.5,516.0 L551.6,516.0 L550.7,516.0 L549.8,516.0 L548.9,516.0 L548.0,516.0 L547.1,516.0 L546.2,516.0
+ L545.3,516.0 L544.4,516.0 L543.5,516.0 L542.6,516.0 L541.7,516.0 L540.8,516.0 L539.9,516.0 L539.0,516.0
+ L538.1,516.0 L537.2,516.0 L536.2,516.0 L535.3,516.0 L534.4,516.0 L533.5,516.0 L532.6,516.0 L531.7,516.0
+ L530.8,516.0 L529.9,516.0 L529.0,516.0 L528.1,516.0 L527.2,516.0 L526.3,516.0 L525.4,516.0 L524.5,516.0
+ L523.6,516.0 L522.7,516.0 L521.8,516.0 L520.9,516.0 L520.0,516.0 L519.1,516.0 L518.2,516.0 L517.3,516.0
+ L516.4,516.0 L515.5,516.0 L514.6,516.0 L513.7,516.0 L512.8,516.0 L511.9,516.0 L511.0,516.0 L510.1,516.0
+ L509.2,516.0 L508.3,516.0 L507.4,516.0 L506.5,516.0 L505.6,516.0 L504.7,516.0 L503.8,516.0 L502.9,516.0
+ L502.0,516.0 L501.1,516.0 L500.2,516.0 L499.3,516.0 L498.4,516.0 L497.5,516.0 L496.6,516.0 L495.7,516.0
+ L494.7,516.0 L493.8,516.0 L492.9,516.0 L492.0,516.0 L491.1,516.0 L490.2,516.0 L489.3,516.0 L488.4,516.0
+ L487.5,516.0 L486.6,516.0 L485.7,516.0 L484.8,516.0 L483.9,516.0 L483.0,516.0 L482.1,516.0 L481.2,516.0
+ L480.3,516.0 L479.4,516.0 L478.5,516.0 L477.6,516.0 L476.7,516.0 L475.8,516.0 L474.9,516.0 L474.0,516.0
+ L473.1,516.0 L472.2,516.0 L471.3,516.0 L470.4,516.0 L469.5,516.0 L468.6,516.0 L467.7,516.0 L466.8,516.0
+ L465.9,516.0 L465.0,516.0 L464.1,516.0 L463.2,516.0 L462.3,516.0 L461.4,516.0 L460.5,516.0 L459.6,516.0
+ L458.7,516.0 L457.8,516.0 L456.9,516.0 L456.0,516.0 L455.1,516.0 L454.2,516.0 L453.3,516.0 L452.3,516.0
+ L451.4,516.0 L450.5,516.0 L449.6,516.0 L448.7,516.0 L447.8,516.0 L446.9,516.0 L446.0,516.0 L445.1,516.0
+ L444.2,516.0 L443.3,516.0 L442.4,516.0 L441.5,516.0 L440.6,516.0 L439.7,516.0 L438.8,516.0 L437.9,516.0
+ L437.0,516.0 L436.1,516.0 L435.2,516.0 L434.3,516.0 L433.4,516.0 L432.5,516.0 L431.6,516.0 L430.7,516.0
+ L429.8,516.0 L428.9,516.0 L428.0,516.0 L427.1,516.0 L426.2,516.0 L425.3,516.0 L424.4,516.0 L423.5,516.0
+ L422.6,516.0 L421.7,516.0 L420.8,516.0 L419.9,516.0 L419.0,516.0 L418.1,516.0 L417.2,516.0 L416.3,516.0
+ L415.4,516.0 L414.5,516.0 L413.6,516.0 L412.7,516.0 L411.8,516.0 L410.8,516.0 L409.9,516.0 L409.0,516.0
+ L408.1,516.0 L407.2,516.0 L406.3,516.0 L405.4,516.0 L404.5,516.0 L403.6,516.0 L402.7,516.0 L401.8,516.0
+ L400.9,516.0 L400.0,516.0 L399.1,516.0 L398.2,516.0 L397.3,516.0 L396.4,516.0 L395.5,516.0 L394.6,516.0
+ L393.7,516.0 L392.8,516.0 L391.9,516.0 L391.0,516.0 L390.1,516.0 L389.2,516.0 L388.3,516.0 L387.4,516.0
+ L386.5,516.0 L385.6,516.0 L384.7,516.0 L383.8,516.0 L382.9,516.0 L382.0,516.0 L381.1,516.0 L380.2,516.0
+ L379.3,516.0 L378.4,516.0 L377.5,516.0 L376.6,516.0 L375.7,516.0 L374.8,516.0 L373.9,516.0 L373.0,516.0
+ L372.1,516.0 L371.2,516.0 L370.3,516.0 L369.4,516.0 L368.4,516.0 L367.5,516.0 L366.6,516.0 L365.7,516.0
+ L364.8,516.0 L363.9,516.0 L363.0,516.0 L362.1,516.0 L361.2,516.0 L360.3,516.0 L359.4,516.0 L358.5,516.0
+ L357.6,516.0 L356.7,516.0 L355.8,516.0 L354.9,516.0 L354.0,516.0 L353.1,516.0 L352.2,516.0 L351.3,516.0
+ L350.4,516.0 L349.5,516.0 L348.6,516.0 L347.7,516.0 L346.8,516.0 L345.9,516.0 L345.0,516.0 L344.1,516.0
+ L343.2,516.0 L342.3,516.0 L341.4,516.0 L340.5,516.0 L339.6,516.0 L338.7,516.0 L337.8,516.0 L336.9,516.0
+ L336.0,516.0 L335.1,516.0 L334.2,516.0 L333.3,516.0 L332.4,516.0 L331.5,516.0 L330.6,516.0 L329.7,516.0
+ L328.8,516.0 L327.9,516.0 L327.0,516.0 L326.0,516.0 L325.1,516.0 L324.2,516.0 L323.3,516.0 L322.4,516.0
+ L321.5,516.0 L320.6,516.0 L319.7,516.0 L318.8,516.0 L317.9,516.0 L317.0,516.0 L316.1,516.0 L315.2,516.0
+ L314.3,516.0 L313.4,516.0 L312.5,516.0 L311.6,516.0 L310.7,516.0 L309.8,516.0 L308.9,516.0 L308.0,516.0
+ L307.1,516.0 L306.2,516.0 L305.3,516.0 L304.4,516.0 L303.5,516.0 L302.6,516.0 L301.7,516.0 L300.8,516.0
+ L299.9,516.0 L299.0,516.0 L298.1,516.0 L297.2,516.0 L296.3,516.0 L295.4,516.0 L294.5,516.0 L293.6,516.0
+ L292.7,516.0 L291.8,516.0 L290.9,516.0 L290.0,516.0 L289.1,516.0 L288.2,516.0 L287.3,516.0 L286.4,516.0
+ L285.5,516.0 L284.5,516.0 L283.6,516.0 L282.7,516.0 L281.8,516.0 L280.9,516.0 L280.0,516.0 L279.1,516.0
+ L278.2,516.0 L277.3,516.0 L276.4,516.0 L275.5,516.0 L274.6,516.0 L273.7,516.0 L272.8,516.0 L271.9,516.0
+ L271.0,516.0 L270.1,516.0 L269.2,516.0 L268.3,516.0 L267.4,516.0 L266.5,516.0 L265.6,516.0 L264.7,516.0
+ L263.8,516.0 L262.9,516.0 L262.0,516.0 L261.1,516.0 L260.2,516.0 L259.3,516.0 L258.4,516.0 L257.5,516.0
+ L256.6,516.0 L255.7,516.0 L254.8,516.0 L253.9,516.0 L253.0,516.0 L252.1,516.0 L251.2,516.0 L250.3,516.0
+ L249.4,516.0 L248.5,516.0 L247.6,516.0 L246.7,516.0 L245.8,516.0 L244.9,516.0 L244.0,516.0 L243.1,516.0
+ L242.1,516.0 L241.2,516.0 L240.3,516.0 L239.4,516.0 L238.5,516.0 L237.6,516.0 L236.7,516.0 L235.8,516.0
+ L234.9,516.0 L234.0,516.0 L233.1,516.0 L232.2,516.0 L231.3,516.0 L230.4,516.0 L229.5,516.0 L228.6,516.0
+ L227.7,516.0 L226.8,516.0 L225.9,516.0 L225.0,516.0 L224.1,516.0 L223.2,516.0 L222.3,516.0 L221.4,516.0
+ L220.5,516.0 L219.6,516.0 L218.7,516.0 L217.8,516.0 L216.9,516.0 L216.0,516.0 L215.1,516.0 L214.2,516.0
+ L213.3,516.0 L212.4,516.0 L211.5,516.0 L210.6,516.0 L209.7,516.0 L208.8,516.0 L207.9,516.0 L207.0,516.0
+ L206.1,516.0 L205.2,516.0 L204.3,516.0 L203.4,516.0 L202.5,516.0 L201.6,516.0 L200.6,516.0 L199.7,516.0
+ L198.8,516.0 L197.9,516.0 L197.0,516.0 L196.1,516.0 L195.2,516.0 L194.3,516.0 L193.4,516.0 L192.5,516.0
+ L191.6,516.0 L190.7,516.0 L189.8,516.0 L188.9,516.0 L188.0,516.0 L187.1,516.0 L186.2,516.0 L185.3,516.0
+ L184.4,516.0 L183.5,516.0 L182.6,516.0 L181.7,516.0 L180.8,516.0 L179.9,516.0 L179.0,516.0 L178.1,516.0
+ L177.2,516.0 L176.3,516.0 L175.4,516.0 L174.5,516.0 L173.6,516.0 L172.7,516.0 L171.8,516.0 L170.9,516.0
+ L170.0,516.0 L169.1,516.0 L168.2,516.0 L167.3,516.0 L166.4,516.0 L165.5,516.0 L164.6,516.0 L163.7,516.0
+ L162.8,516.0 L161.9,516.0 L161.0,516.0 L160.1,516.0 L159.2,516.0 L158.2,516.0 L157.3,516.0 L156.4,516.0
+ L155.5,516.0 L154.6,516.0 L153.7,516.0 L152.8,516.0 L151.9,516.0 L151.0,516.0 L150.1,516.0 L149.2,516.0
+ L148.3,516.0 L147.4,516.0 L146.5,516.0 L145.6,516.0 L144.7,516.0 L143.8,516.0 L142.9,516.0 L142.0,516.0
+ L141.1,516.0 L140.2,516.0 L139.3,516.0 L138.4,516.0 L137.5,516.0 L136.6,516.0 L135.7,516.0 L134.8,516.0
+ L133.9,516.0 L133.0,516.0 L132.1,516.0 L131.2,516.0 L130.3,516.0 L129.4,516.0 L128.5,516.0 L127.6,516.0
+ L126.7,516.0 L125.8,516.0 L124.9,516.0 L124.0,516.0 L123.1,516.0 L122.2,516.0 L121.3,516.0 L120.4,516.0
+ L119.5,516.0 L118.6,516.0 L117.7,516.0 L116.7,516.0 L115.8,516.0 L114.9,516.0 L114.0,516.0 L113.1,516.0
+ L112.2,516.0 L111.3,516.0 L110.4,516.0 L109.5,516.0 L108.6,516.0 L107.7,516.0 L106.8,516.0 L105.9,516.0
+ L105.0,516.0 L104.1,516.0 L103.2,516.0 L102.3,516.0 L101.4,516.0 L100.5,516.0 L99.6,516.0 L98.7,516.0
+ L97.8,516.0 L96.9,516.0 L96.0,516.0 '/></g>
+ </g>
+<g fill="none" color="#FFFFFF" stroke="rgb( 0, 0, 0)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 38, 38, 38)' d='M96.0,516.0 L557.9,516.0 M96.0,84.1 L557.9,84.1 M96.0,516.0 L96.0,84.1 M557.9,516.0 L557.9,84.1
+ '/></g>
+<g fill="none" color="black" stroke="rgb( 38, 38, 38)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g stroke='none' shape-rendering='crispEdges'>
+ <polygon fill = 'rgb(255, 255, 255)' points = '714.0,516.0 1175.8,516.0 1175.8,84.2 714.0,84.2 '/>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,516.0 L1175.9,516.0 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,516.0 L729.6,516.0 M1175.9,516.0 L1160.3,516.0 '/> <g transform="translate(703.5,522.5)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-130</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,484.2 L1175.9,484.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,484.2 L729.6,484.2 M1175.9,484.2 L1160.3,484.2 '/> <g transform="translate(703.5,490.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-120</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,452.5 L1175.9,452.5 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,452.5 L729.6,452.5 M1175.9,452.5 L1160.3,452.5 '/> <g transform="translate(703.5,459.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-110</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,420.7 L1175.9,420.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,420.7 L729.6,420.7 M1175.9,420.7 L1160.3,420.7 '/> <g transform="translate(703.5,427.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-100</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,389.0 L1175.9,389.0 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,389.0 L729.6,389.0 M1175.9,389.0 L1160.3,389.0 '/> <g transform="translate(703.5,395.5)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-90</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,357.2 L1175.9,357.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,357.2 L729.6,357.2 M1175.9,357.2 L1160.3,357.2 '/> <g transform="translate(703.5,363.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-80</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,325.5 L1175.9,325.5 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,325.5 L729.6,325.5 M1175.9,325.5 L1160.3,325.5 '/> <g transform="translate(703.5,332.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-70</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,293.7 L1175.9,293.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,293.7 L729.6,293.7 M1175.9,293.7 L1160.3,293.7 '/> <g transform="translate(703.5,300.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-60</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,261.9 L1175.9,261.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,261.9 L729.6,261.9 M1175.9,261.9 L1160.3,261.9 '/> <g transform="translate(703.5,268.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-50</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,230.2 L1175.9,230.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,230.2 L729.6,230.2 M1175.9,230.2 L1160.3,230.2 '/> <g transform="translate(703.5,236.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-40</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,198.4 L1175.9,198.4 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,198.4 L729.6,198.4 M1175.9,198.4 L1160.3,198.4 '/> <g transform="translate(703.5,204.9)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-30</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,166.7 L1175.9,166.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,166.7 L729.6,166.7 M1175.9,166.7 L1160.3,166.7 '/> <g transform="translate(703.5,173.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-20</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,134.9 L1175.9,134.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,134.9 L729.6,134.9 M1175.9,134.9 L1160.3,134.9 '/> <g transform="translate(703.5,141.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-10</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,103.2 L1175.9,103.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,103.2 L729.6,103.2 M1175.9,103.2 L1160.3,103.2 '/> <g transform="translate(703.5,109.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,516.0 L714.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,516.0 L714.0,500.4 M714.0,84.1 L714.0,99.7 '/> <g transform="translate(714.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-40</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M829.5,516.0 L829.5,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M829.5,516.0 L829.5,500.4 M829.5,84.1 L829.5,99.7 '/> <g transform="translate(829.5,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-20</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M945.0,516.0 L945.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M945.0,516.0 L945.0,500.4 M945.0,84.1 L945.0,99.7 '/> <g transform="translate(945.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M1060.4,516.0 L1060.4,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M1060.4,516.0 L1060.4,500.4 M1060.4,84.1 L1060.4,99.7 '/> <g transform="translate(1060.4,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >20</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M1175.9,516.0 L1175.9,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M1175.9,516.0 L1175.9,500.4 M1175.9,84.1 L1175.9,99.7 '/> <g transform="translate(1175.9,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >40</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(648.1,300.1) rotate(-90)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >decibels</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(944.9,581.3)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >bins</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(944.9,39.9)" stroke="none" fill="rgb(0,0,0)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >Fourier transform</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+ <g id="gnuplot_plot_1b" ><title>gnuplot_plot_1b</title>
+<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb(222, 125, 0)' d='M714.0,516.0 M714.2,516.0 L714.2,354.4 M714.4,516.0 L714.4,335.4 M714.5,516.0 L714.5,324.4 M714.7,516.0
+ L714.7,316.7 M714.9,516.0 L714.9,311.0 M715.1,516.0 L715.1,306.4 M715.3,516.0 L715.3,302.7 M715.4,516.0
+ L715.4,299.7 M715.6,516.0 L715.6,297.2 M715.8,516.0 L715.8,295.2 M716.0,516.0 L716.0,293.6 M716.2,516.0
+ L716.2,292.3 M716.3,516.0 L716.3,291.3 M716.5,516.0 L716.5,290.6 M716.7,516.0 L716.7,290.1 M716.9,516.0
+ L716.9,290.0 M717.1,516.0 L717.1,290.1 M717.2,516.0 L717.2,290.5 M717.4,516.0 L717.4,291.1 M717.6,516.0
+ L717.6,292.1 M717.8,516.0 L717.8,293.3 M718.0,516.0 L718.0,294.9 M718.1,516.0 L718.1,296.9 M718.3,516.0
+ L718.3,299.4 M718.5,516.0 L718.5,302.3 M718.7,516.0 L718.7,306.0 M718.9,516.0 L718.9,310.5 M719.1,516.0
+ L719.1,316.2 M719.2,516.0 L719.2,323.8 M719.4,516.0 L719.4,334.8 M719.6,516.0 L719.6,353.7 M719.8,516.0
+ M720.0,516.0 L720.0,353.7 M720.1,516.0 L720.1,334.7 M720.3,516.0 L720.3,323.7 M720.5,516.0 L720.5,316.0
+ M720.7,516.0 L720.7,310.3 M720.9,516.0 L720.9,305.7 M721.0,516.0 L721.0,302.0 M721.2,516.0 L721.2,299.0
+ M721.4,516.0 L721.4,296.5 M721.6,516.0 L721.6,294.5 M721.8,516.0 L721.8,292.9 M721.9,516.0 L721.9,291.6
+ M722.1,516.0 L722.1,290.6 M722.3,516.0 L722.3,289.9 M722.5,516.0 L722.5,289.4 M722.7,516.0 L722.7,289.3
+ M722.8,516.0 L722.8,289.4 M723.0,516.0 L723.0,289.8 M723.2,516.0 L723.2,290.4 M723.4,516.0 L723.4,291.4
+ M723.6,516.0 L723.6,292.6 M723.7,516.0 L723.7,294.2 M723.9,516.0 L723.9,296.2 M724.1,516.0 L724.1,298.7
+ M724.3,516.0 L724.3,301.6 M724.5,516.0 L724.5,305.3 M724.6,516.0 L724.6,309.8 M724.8,516.0 L724.8,315.5
+ M725.0,516.0 L725.0,323.1 M725.2,516.0 L725.2,334.1 M725.4,516.0 L725.4,353.0 M725.5,516.0 M725.7,516.0
+ L725.7,353.0 M725.9,516.0 L725.9,334.0 M726.1,516.0 L726.1,323.0 M726.3,516.0 L726.3,315.3 M726.4,516.0
+ L726.4,309.6 M726.6,516.0 L726.6,305.0 M726.8,516.0 L726.8,301.3 M727.0,516.0 L727.0,298.3 M727.2,516.0
+ L727.2,295.8 M727.4,516.0 L727.4,293.8 M727.5,516.0 L727.5,292.1 M727.7,516.0 L727.7,290.8 M727.9,516.0
+ L727.9,289.8 M728.1,516.0 L728.1,289.1 M728.3,516.0 L728.3,288.7 M728.4,516.0 L728.4,288.6 M728.6,516.0
+ L728.6,288.7 M728.8,516.0 L728.8,289.1 M729.0,516.0 L729.0,289.7 M729.2,516.0 L729.2,290.7 M729.3,516.0
+ L729.3,291.9 M729.5,516.0 L729.5,293.5 M729.7,516.0 L729.7,295.5 M729.9,516.0 L729.9,297.9 M730.1,516.0
+ L730.1,300.9 M730.2,516.0 L730.2,304.6 M730.4,516.0 L730.4,309.1 M730.6,516.0 L730.6,314.8 M730.8,516.0
+ L730.8,322.4 M731.0,516.0 L731.0,333.3 M731.1,516.0 L731.1,352.3 M731.3,516.0 M731.5,516.0 L731.5,352.2
+ M731.7,516.0 L731.7,333.2 M731.9,516.0 L731.9,322.2 M732.0,516.0 L732.0,314.6 M732.2,516.0 L732.2,308.8
+ M732.4,516.0 L732.4,304.3 M732.6,516.0 L732.6,300.6 M732.8,516.0 L732.8,297.6 M732.9,516.0 L732.9,295.1
+ M733.1,516.0 L733.1,293.1 M733.3,516.0 L733.3,291.4 M733.5,516.0 L733.5,290.1 M733.7,516.0 L733.7,289.1
+ M733.8,516.0 L733.8,288.4 M734.0,516.0 L734.0,288.0 M734.2,516.0 L734.2,287.8 M734.4,516.0 L734.4,287.9
+ M734.6,516.0 L734.6,288.3 M734.7,516.0 L734.7,289.0 M734.9,516.0 L734.9,289.9 M735.1,516.0 L735.1,291.2
+ M735.3,516.0 L735.3,292.8 M735.5,516.0 L735.5,294.8 M735.7,516.0 L735.7,297.2 M735.8,516.0 L735.8,300.2
+ M736.0,516.0 L736.0,303.8 M736.2,516.0 L736.2,308.3 M736.4,516.0 L736.4,314.0 M736.6,516.0 L736.6,321.6
+ M736.7,516.0 L736.7,332.6 M736.9,516.0 L736.9,351.5 M737.1,516.0 M737.3,516.0 L737.3,351.5 M737.5,516.0
+ L737.5,332.5 M737.6,516.0 L737.6,321.5 M737.8,516.0 L737.8,313.9 M738.0,516.0 L738.0,308.1 M738.2,516.0
+ L738.2,303.5 M738.4,516.0 L738.4,299.8 M738.5,516.0 L738.5,296.8 M738.7,516.0 L738.7,294.3 M738.9,516.0
+ L738.9,292.3 M739.1,516.0 L739.1,290.7 M739.3,516.0 L739.3,289.3 M739.4,516.0 L739.4,288.4 M739.6,516.0
+ L739.6,287.7 M739.8,516.0 L739.8,287.2 M740.0,516.0 L740.0,287.1 M740.2,516.0 L740.2,287.2 M740.3,516.0
+ L740.3,287.6 M740.5,516.0 L740.5,288.2 M740.7,516.0 L740.7,289.2 M740.9,516.0 L740.9,290.4 M741.1,516.0
+ L741.1,292.0 M741.2,516.0 L741.2,294.0 M741.4,516.0 L741.4,296.4 M741.6,516.0 L741.6,299.4 M741.8,516.0
+ L741.8,303.0 M742.0,516.0 L742.0,307.5 M742.1,516.0 L742.1,313.3 M742.3,516.0 L742.3,320.9 M742.5,516.0
+ L742.5,331.8 M742.7,516.0 L742.7,350.8 M742.9,516.0 M743.0,516.0 L743.0,350.7 M743.2,516.0 L743.2,331.7
+ M743.4,516.0 L743.4,320.7 M743.6,516.0 L743.6,313.1 M743.8,516.0 L743.8,307.3 M744.0,516.0 L744.0,302.7
+ M744.1,516.0 L744.1,299.1 M744.3,516.0 L744.3,296.0 M744.5,516.0 L744.5,293.6 M744.7,516.0 L744.7,291.5
+ M744.9,516.0 L744.9,289.9 M745.0,516.0 L745.0,288.6 M745.2,516.0 L745.2,287.6 M745.4,516.0 L745.4,286.9
+ M745.6,516.0 L745.6,286.4 M745.8,516.0 L745.8,286.3 M745.9,516.0 L745.9,286.4 M746.1,516.0 L746.1,286.8
+ M746.3,516.0 L746.3,287.4 M746.5,516.0 L746.5,288.4 M746.7,516.0 L746.7,289.6 M746.8,516.0 L746.8,291.2
+ M747.0,516.0 L747.0,293.2 M747.2,516.0 L747.2,295.6 M747.4,516.0 L747.4,298.6 M747.6,516.0 L747.6,302.3
+ M747.7,516.0 L747.7,306.8 M747.9,516.0 L747.9,312.5 M748.1,516.0 L748.1,320.1 M748.3,516.0 L748.3,331.0
+ M748.5,516.0 L748.5,350.0 M748.6,516.0 M748.8,516.0 L748.8,349.9 M749.0,516.0 L749.0,330.9 M749.2,516.0
+ L749.2,319.9 M749.4,516.0 L749.4,312.3 M749.5,516.0 L749.5,306.5 M749.7,516.0 L749.7,302.0 M749.9,516.0
+ L749.9,298.3 M750.1,516.0 L750.1,295.2 M750.3,516.0 L750.3,292.8 M750.4,516.0 L750.4,290.7 M750.6,516.0
+ L750.6,289.1 M750.8,516.0 L750.8,287.8 M751.0,516.0 L751.0,286.8 M751.2,516.0 L751.2,286.1 M751.3,516.0
+ L751.3,285.6 M751.5,516.0 L751.5,285.5 M751.7,516.0 L751.7,285.6 M751.9,516.0 L751.9,286.0 M752.1,516.0
+ L752.1,286.6 M752.3,516.0 L752.3,287.6 M752.4,516.0 L752.4,288.8 M752.6,516.0 L752.6,290.4 M752.8,516.0
+ L752.8,292.4 M753.0,516.0 L753.0,294.8 M753.2,516.0 L753.2,297.8 M753.3,516.0 L753.3,301.4 M753.5,516.0
+ L753.5,305.9 M753.7,516.0 L753.7,311.7 M753.9,516.0 L753.9,319.3 M754.1,516.0 L754.1,330.2 M754.2,516.0
+ L754.2,349.2 M754.4,516.0 M754.6,516.0 L754.6,349.1 M754.8,516.0 L754.8,330.1 M755.0,516.0 L755.0,319.1
+ M755.1,516.0 L755.1,311.5 M755.3,516.0 L755.3,305.7 M755.5,516.0 L755.5,301.1 M755.7,516.0 L755.7,297.4
+ M755.9,516.0 L755.9,294.4 M756.0,516.0 L756.0,291.9 M756.2,516.0 L756.2,289.9 M756.4,516.0 L756.4,288.3
+ M756.6,516.0 L756.6,286.9 M756.8,516.0 L756.8,286.0 M756.9,516.0 L756.9,285.2 M757.1,516.0 L757.1,284.8
+ M757.3,516.0 L757.3,284.7 M757.5,516.0 L757.5,284.8 M757.7,516.0 L757.7,285.1 M757.8,516.0 L757.8,285.8
+ M758.0,516.0 L758.0,286.7 M758.2,516.0 L758.2,288.0 M758.4,516.0 L758.4,289.6 M758.6,516.0 L758.6,291.6
+ M758.7,516.0 L758.7,294.0 M758.9,516.0 L758.9,297.0 M759.1,516.0 L759.1,300.6 M759.3,516.0 L759.3,305.1
+ M759.5,516.0 L759.5,310.8 M759.6,516.0 L759.6,318.4 M759.8,516.0 L759.8,329.4 M760.0,516.0 L760.0,348.3
+ M760.2,516.0 M760.4,516.0 L760.4,348.3 M760.6,516.0 L760.6,329.3 M760.7,516.0 L760.7,318.3 M760.9,516.0
+ L760.9,310.6 '/> <path stroke='rgb(222, 125, 0)' d='M761.1,516.0 L761.1,304.8 M761.3,516.0 L761.3,300.3 M761.5,516.0 L761.5,296.6 M761.6,516.0 L761.6,293.6
+ M761.8,516.0 L761.8,291.1 M762.0,516.0 L762.0,289.1 M762.2,516.0 L762.2,287.4 M762.4,516.0 L762.4,286.1
+ M762.5,516.0 L762.5,285.1 M762.7,516.0 L762.7,284.4 M762.9,516.0 L762.9,284.0 M763.1,516.0 L763.1,283.8
+ M763.3,516.0 L763.3,283.9 M763.4,516.0 L763.4,284.3 M763.6,516.0 L763.6,284.9 M763.8,516.0 L763.8,285.9
+ M764.0,516.0 L764.0,287.1 M764.2,516.0 L764.2,288.7 M764.3,516.0 L764.3,290.7 M764.5,516.0 L764.5,293.1
+ M764.7,516.0 L764.7,296.1 M764.9,516.0 L764.9,299.7 M765.1,516.0 L765.1,304.3 M765.2,516.0 L765.2,310.0
+ M765.4,516.0 L765.4,317.6 M765.6,516.0 L765.6,328.5 M765.8,516.0 L765.8,347.5 M766.0,516.0 M766.1,516.0
+ L766.1,347.4 M766.3,516.0 L766.3,328.4 M766.5,516.0 L766.5,317.4 M766.7,516.0 L766.7,309.8 M766.9,516.0
+ L766.9,304.0 M767.0,516.0 L767.0,299.4 M767.2,516.0 L767.2,295.7 M767.4,516.0 L767.4,292.7 M767.6,516.0
+ L767.6,290.2 M767.8,516.0 L767.8,288.2 M767.9,516.0 L767.9,286.5 M768.1,516.0 L768.1,285.2 M768.3,516.0
+ L768.3,284.2 M768.5,516.0 L768.5,283.5 M768.7,516.0 L768.7,283.1 M768.9,516.0 L768.9,282.9 M769.0,516.0
+ L769.0,283.0 M769.2,516.0 L769.2,283.4 M769.4,516.0 L769.4,284.1 M769.6,516.0 L769.6,285.0 M769.8,516.0
+ L769.8,286.3 M769.9,516.0 L769.9,287.9 M770.1,516.0 L770.1,289.8 M770.3,516.0 L770.3,292.3 M770.5,516.0
+ L770.5,295.2 M770.7,516.0 L770.7,298.9 M770.8,516.0 L770.8,303.4 M771.0,516.0 L771.0,309.1 M771.2,516.0
+ L771.2,316.7 M771.4,516.0 L771.4,327.6 M771.6,516.0 L771.6,346.6 M771.7,516.0 M771.9,516.0 L771.9,346.5
+ M772.1,516.0 L772.1,327.5 M772.3,516.0 L772.3,316.5 M772.5,516.0 L772.5,308.9 M772.6,516.0 L772.6,303.1
+ M772.8,516.0 L772.8,298.5 M773.0,516.0 L773.0,294.8 M773.2,516.0 L773.2,291.8 M773.4,516.0 L773.4,289.3
+ M773.5,516.0 L773.5,287.3 M773.7,516.0 L773.7,285.6 M773.9,516.0 L773.9,284.3 M774.1,516.0 L774.1,283.3
+ M774.3,516.0 L774.3,282.6 M774.4,516.0 L774.4,282.2 M774.6,516.0 L774.6,282.0 M774.8,516.0 L774.8,282.1
+ M775.0,516.0 L775.0,282.5 M775.2,516.0 L775.2,283.1 M775.3,516.0 L775.3,284.1 M775.5,516.0 L775.5,285.3
+ M775.7,516.0 L775.7,286.9 M775.9,516.0 L775.9,288.9 M776.1,516.0 L776.1,291.3 M776.2,516.0 L776.2,294.3
+ M776.4,516.0 L776.4,297.9 M776.6,516.0 L776.6,302.4 M776.8,516.0 L776.8,308.2 M777.0,516.0 L777.0,315.8
+ M777.2,516.0 L777.2,326.7 M777.3,516.0 L777.3,345.6 M777.5,516.0 M777.7,516.0 L777.7,345.6 M777.9,516.0
+ L777.9,326.6 M778.1,516.0 L778.1,315.6 M778.2,516.0 L778.2,307.9 M778.4,516.0 L778.4,302.2 M778.6,516.0
+ L778.6,297.6 M778.8,516.0 L778.8,293.9 M779.0,516.0 L779.0,290.9 M779.1,516.0 L779.1,288.4 M779.3,516.0
+ L779.3,286.4 M779.5,516.0 L779.5,284.7 M779.7,516.0 L779.7,283.4 M779.9,516.0 L779.9,282.4 M780.0,516.0
+ L780.0,281.7 M780.2,516.0 L780.2,281.2 M780.4,516.0 L780.4,281.1 M780.6,516.0 L780.6,281.2 M780.8,516.0
+ L780.8,281.6 M780.9,516.0 L780.9,282.2 M781.1,516.0 L781.1,283.1 M781.3,516.0 L781.3,284.4 M781.5,516.0
+ L781.5,286.0 M781.7,516.0 L781.7,288.0 M781.8,516.0 L781.8,290.4 M782.0,516.0 L782.0,293.4 M782.2,516.0
+ L782.2,297.0 M782.4,516.0 L782.4,301.5 M782.6,516.0 L782.6,307.2 M782.7,516.0 L782.7,314.8 M782.9,516.0
+ L782.9,325.7 M783.1,516.0 L783.1,344.7 M783.3,516.0 M783.5,516.0 L783.5,344.6 M783.6,516.0 L783.6,325.6
+ M783.8,516.0 L783.8,314.6 M784.0,516.0 L784.0,307.0 M784.2,516.0 L784.2,301.2 M784.4,516.0 L784.4,296.6
+ M784.5,516.0 L784.5,292.9 M784.7,516.0 L784.7,289.9 M784.9,516.0 L784.9,287.4 M785.1,516.0 L785.1,285.4
+ M785.3,516.0 L785.3,283.7 M785.5,516.0 L785.5,282.4 M785.6,516.0 L785.6,281.4 M785.8,516.0 L785.8,280.7
+ M786.0,516.0 L786.0,280.3 M786.2,516.0 L786.2,280.1 M786.4,516.0 L786.4,280.2 M786.5,516.0 L786.5,280.6
+ M786.7,516.0 L786.7,281.2 M786.9,516.0 L786.9,282.2 M787.1,516.0 L787.1,283.4 M787.3,516.0 L787.3,285.0
+ M787.4,516.0 L787.4,287.0 M787.6,516.0 L787.6,289.4 M787.8,516.0 L787.8,292.4 M788.0,516.0 L788.0,296.0
+ M788.2,516.0 L788.2,300.5 M788.3,516.0 L788.3,306.2 M788.5,516.0 L788.5,313.8 M788.7,516.0 L788.7,324.8
+ M788.9,516.0 L788.9,343.7 M789.1,516.0 M789.2,516.0 L789.2,343.7 M789.4,516.0 L789.4,324.6 M789.6,516.0
+ L789.6,313.6 M789.8,516.0 L789.8,306.0 M790.0,516.0 L790.0,300.2 M790.1,516.0 L790.1,295.6 M790.3,516.0
+ L790.3,291.9 M790.5,516.0 L790.5,288.9 M790.7,516.0 L790.7,286.4 M790.9,516.0 L790.9,284.4 M791.0,516.0
+ L791.0,282.7 M791.2,516.0 L791.2,281.4 M791.4,516.0 L791.4,280.4 M791.6,516.0 L791.6,279.7 M791.8,516.0
+ L791.8,279.3 M791.9,516.0 L791.9,279.1 M792.1,516.0 L792.1,279.2 M792.3,516.0 L792.3,279.6 M792.5,516.0
+ L792.5,280.2 M792.7,516.0 L792.7,281.2 M792.8,516.0 L792.8,282.4 M793.0,516.0 L793.0,284.0 M793.2,516.0
+ L793.2,286.0 M793.4,516.0 L793.4,288.4 M793.6,516.0 L793.6,291.4 M793.7,516.0 L793.7,295.0 M793.9,516.0
+ L793.9,299.5 M794.1,516.0 L794.1,305.2 M794.3,516.0 L794.3,312.8 M794.5,516.0 L794.5,323.7 M794.7,516.0
+ L794.7,342.7 M794.8,516.0 M795.0,516.0 L795.0,342.6 M795.2,516.0 L795.2,323.6 M795.4,516.0 L795.4,312.6
+ M795.6,516.0 L795.6,305.0 M795.7,516.0 L795.7,299.2 M795.9,516.0 L795.9,294.6 M796.1,516.0 L796.1,290.9
+ M796.3,516.0 L796.3,287.9 M796.5,516.0 L796.5,285.4 M796.6,516.0 L796.6,283.4 M796.8,516.0 L796.8,281.7
+ M797.0,516.0 L797.0,280.4 M797.2,516.0 L797.2,279.4 M797.4,516.0 L797.4,278.7 M797.5,516.0 L797.5,278.2
+ M797.7,516.0 L797.7,278.1 M797.9,516.0 L797.9,278.2 M798.1,516.0 L798.1,278.5 M798.3,516.0 L798.3,279.2
+ M798.4,516.0 L798.4,280.1 M798.6,516.0 L798.6,281.4 M798.8,516.0 L798.8,283.0 M799.0,516.0 L799.0,284.9
+ M799.2,516.0 L799.2,287.4 M799.3,516.0 L799.3,290.3 M799.5,516.0 L799.5,293.9 M799.7,516.0 L799.7,298.4
+ M799.9,516.0 L799.9,304.2 M800.1,516.0 L800.1,311.8 M800.2,516.0 L800.2,322.7 M800.4,516.0 L800.4,341.6
+ M800.6,516.0 M800.8,516.0 L800.8,341.6 M801.0,516.0 L801.0,322.5 M801.1,516.0 L801.1,311.5 M801.3,516.0
+ L801.3,303.9 M801.5,516.0 L801.5,298.1 M801.7,516.0 L801.7,293.5 M801.9,516.0 L801.9,289.8 M802.0,516.0
+ L802.0,286.8 M802.2,516.0 L802.2,284.3 M802.4,516.0 L802.4,282.3 M802.6,516.0 L802.6,280.6 M802.8,516.0
+ L802.8,279.3 M803.0,516.0 L803.0,278.3 M803.1,516.0 L803.1,277.6 M803.3,516.0 L803.3,277.2 M803.5,516.0
+ L803.5,277.0 M803.7,516.0 L803.7,277.1 M803.9,516.0 L803.9,277.5 M804.0,516.0 L804.0,278.1 M804.2,516.0
+ L804.2,279.0 M804.4,516.0 L804.4,280.3 M804.6,516.0 L804.6,281.9 M804.8,516.0 L804.8,283.8 M804.9,516.0
+ L804.9,286.3 M805.1,516.0 L805.1,289.2 M805.3,516.0 L805.3,292.9 M805.5,516.0 L805.5,297.3 M805.7,516.0
+ L805.7,303.1 M805.8,516.0 L805.8,310.7 M806.0,516.0 L806.0,321.6 M806.2,516.0 L806.2,340.5 M806.4,516.0
+ M806.6,516.0 L806.6,340.5 M806.7,516.0 L806.7,321.4 M806.9,516.0 L806.9,310.4 M807.1,516.0 L807.1,302.8
+ M807.3,516.0 L807.3,297.0 M807.5,516.0 L807.5,292.4 M807.6,516.0 L807.6,288.7 M807.8,516.0 L807.8,285.7
+ M808.0,516.0 L808.0,283.2 '/> <path stroke='rgb(222, 125, 0)' d='M808.2,516.0 L808.2,281.2 M808.4,516.0 L808.4,279.5 M808.5,516.0 L808.5,278.2 M808.7,516.0 L808.7,277.2
+ M808.9,516.0 L808.9,276.5 M809.1,516.0 L809.1,276.0 M809.3,516.0 L809.3,275.9 M809.4,516.0 L809.4,276.0
+ M809.6,516.0 L809.6,276.3 M809.8,516.0 L809.8,277.0 M810.0,516.0 L810.0,277.9 M810.2,516.0 L810.2,279.1
+ M810.3,516.0 L810.3,280.7 M810.5,516.0 L810.5,282.7 M810.7,516.0 L810.7,285.1 M810.9,516.0 L810.9,288.1
+ M811.1,516.0 L811.1,291.7 M811.3,516.0 L811.3,296.2 M811.4,516.0 L811.4,301.9 M811.6,516.0 L811.6,309.5
+ M811.8,516.0 L811.8,320.4 M812.0,516.0 L812.0,339.4 M812.2,516.0 M812.3,516.0 L812.3,339.3 M812.5,516.0
+ L812.5,320.3 M812.7,516.0 L812.7,309.3 M812.9,516.0 L812.9,301.6 M813.1,516.0 L813.1,295.8 M813.2,516.0
+ L813.2,291.3 M813.4,516.0 L813.4,287.6 M813.6,516.0 L813.6,284.5 M813.8,516.0 L813.8,282.1 M814.0,516.0
+ L814.0,280.0 M814.1,516.0 L814.1,278.3 M814.3,516.0 L814.3,277.0 M814.5,516.0 L814.5,276.0 M814.7,516.0
+ L814.7,275.3 M814.9,516.0 L814.9,274.9 M815.0,516.0 L815.0,274.7 M815.2,516.0 L815.2,274.8 M815.4,516.0
+ L815.4,275.1 M815.6,516.0 L815.6,275.8 M815.8,516.0 L815.8,276.7 M815.9,516.0 L815.9,278.0 M816.1,516.0
+ L816.1,279.6 M816.3,516.0 L816.3,281.5 M816.5,516.0 L816.5,283.9 M816.7,516.0 L816.7,286.9 M816.8,516.0
+ L816.8,290.5 M817.0,516.0 L817.0,295.0 M817.2,516.0 L817.2,300.7 M817.4,516.0 L817.4,308.3 M817.6,516.0
+ L817.6,319.2 M817.7,516.0 L817.7,338.2 M817.9,516.0 M818.1,516.0 L818.1,338.1 M818.3,516.0 L818.3,319.1
+ M818.5,516.0 L818.5,308.1 M818.6,516.0 L818.6,300.4 M818.8,516.0 L818.8,294.6 M819.0,516.0 L819.0,290.1
+ M819.2,516.0 L819.2,286.4 M819.4,516.0 L819.4,283.3 M819.6,516.0 L819.6,280.8 M819.7,516.0 L819.7,278.8
+ M819.9,516.0 L819.9,277.1 M820.1,516.0 L820.1,275.8 M820.3,516.0 L820.3,274.8 M820.5,516.0 L820.5,274.1
+ M820.6,516.0 L820.6,273.6 M820.8,516.0 L820.8,273.5 M821.0,516.0 L821.0,273.6 M821.2,516.0 L821.2,273.9
+ M821.4,516.0 L821.4,274.6 M821.5,516.0 L821.5,275.5 M821.7,516.0 L821.7,276.7 M821.9,516.0 L821.9,278.3
+ M822.1,516.0 L822.1,280.3 M822.3,516.0 L822.3,282.7 M822.4,516.0 L822.4,285.7 M822.6,516.0 L822.6,289.3
+ M822.8,516.0 L822.8,293.8 M823.0,516.0 L823.0,299.5 M823.2,516.0 L823.2,307.1 M823.3,516.0 L823.3,318.0
+ M823.5,516.0 L823.5,336.9 M823.7,516.0 M823.9,516.0 L823.9,336.9 M824.1,516.0 L824.1,317.8 M824.2,516.0
+ L824.2,306.8 M824.4,516.0 L824.4,299.2 M824.6,516.0 L824.6,293.4 M824.8,516.0 L824.8,288.8 M825.0,516.0
+ L825.0,285.1 M825.1,516.0 L825.1,282.1 M825.3,516.0 L825.3,279.6 M825.5,516.0 L825.5,277.5 M825.7,516.0
+ L825.7,275.9 M825.9,516.0 L825.9,274.5 M826.0,516.0 L826.0,273.5 M826.2,516.0 L826.2,272.8 M826.4,516.0
+ L826.4,272.4 M826.6,516.0 L826.6,272.2 M826.8,516.0 L826.8,272.3 M826.9,516.0 L826.9,272.6 M827.1,516.0
+ L827.1,273.3 M827.3,516.0 L827.3,274.2 M827.5,516.0 L827.5,275.4 M827.7,516.0 L827.7,277.0 M827.9,516.0
+ L827.9,279.0 M828.0,516.0 L828.0,281.4 M828.2,516.0 L828.2,284.4 M828.4,516.0 L828.4,288.0 M828.6,516.0
+ L828.6,292.5 M828.8,516.0 L828.8,298.2 M828.9,516.0 L828.9,305.8 M829.1,516.0 L829.1,316.7 M829.3,516.0
+ L829.3,335.6 M829.5,516.0 M829.7,516.0 L829.7,335.6 M829.8,516.0 L829.8,316.5 M830.0,516.0 L830.0,305.5
+ M830.2,516.0 L830.2,297.9 M830.4,516.0 L830.4,292.1 M830.6,516.0 L830.6,287.5 M830.7,516.0 L830.7,283.8
+ M830.9,516.0 L830.9,280.8 M831.1,516.0 L831.1,278.3 M831.3,516.0 L831.3,276.2 M831.5,516.0 L831.5,274.5
+ M831.6,516.0 L831.6,273.2 M831.8,516.0 L831.8,272.2 M832.0,516.0 L832.0,271.5 M832.2,516.0 L832.2,271.0
+ M832.4,516.0 L832.4,270.9 M832.5,516.0 L832.5,270.9 M832.7,516.0 L832.7,271.3 M832.9,516.0 L832.9,271.9
+ M833.1,516.0 L833.1,272.9 M833.3,516.0 L833.3,274.1 M833.4,516.0 L833.4,275.7 M833.6,516.0 L833.6,277.7
+ M833.8,516.0 L833.8,280.1 M834.0,516.0 L834.0,283.0 M834.2,516.0 L834.2,286.6 M834.3,516.0 L834.3,291.1
+ M834.5,516.0 L834.5,296.8 M834.7,516.0 L834.7,304.4 M834.9,516.0 L834.9,315.3 M835.1,516.0 L835.1,334.3
+ M835.2,516.0 M835.4,516.0 L835.4,334.2 M835.6,516.0 L835.6,315.2 M835.8,516.0 L835.8,304.1 M836.0,516.0
+ L836.0,296.5 M836.2,516.0 L836.2,290.7 M836.3,516.0 L836.3,286.1 M836.5,516.0 L836.5,282.4 M836.7,516.0
+ L836.7,279.4 M836.9,516.0 L836.9,276.9 M837.1,516.0 L837.1,274.8 M837.2,516.0 L837.2,273.1 M837.4,516.0
+ L837.4,271.8 M837.6,516.0 L837.6,270.8 M837.8,516.0 L837.8,270.1 M838.0,516.0 L838.0,269.6 M838.1,516.0
+ L838.1,269.4 M838.3,516.0 L838.3,269.5 M838.5,516.0 L838.5,269.9 M838.7,516.0 L838.7,270.5 M838.9,516.0
+ L838.9,271.5 M839.0,516.0 L839.0,272.7 M839.2,516.0 L839.2,274.3 M839.4,516.0 L839.4,276.2 M839.6,516.0
+ L839.6,278.6 M839.8,516.0 L839.8,281.6 M839.9,516.0 L839.9,285.2 M840.1,516.0 L840.1,289.7 M840.3,516.0
+ L840.3,295.4 M840.5,516.0 L840.5,303.0 M840.7,516.0 L840.7,313.9 M840.8,516.0 L840.8,332.8 M841.0,516.0
+ M841.2,516.0 L841.2,332.7 M841.4,516.0 L841.4,313.7 M841.6,516.0 L841.6,302.7 M841.7,516.0 L841.7,295.0
+ M841.9,516.0 L841.9,289.2 M842.1,516.0 L842.1,284.7 M842.3,516.0 L842.3,281.0 M842.5,516.0 L842.5,277.9
+ M842.6,516.0 L842.6,275.4 M842.8,516.0 L842.8,273.3 M843.0,516.0 L843.0,271.7 M843.2,516.0 L843.2,270.3
+ M843.4,516.0 L843.4,269.3 M843.5,516.0 L843.5,268.6 M843.7,516.0 L843.7,268.2 M843.9,516.0 L843.9,268.0
+ M844.1,516.0 L844.1,268.1 M844.3,516.0 L844.3,268.4 M844.5,516.0 L844.5,269.0 M844.6,516.0 L844.6,270.0
+ M844.8,516.0 L844.8,271.2 M845.0,516.0 L845.0,272.8 M845.2,516.0 L845.2,274.7 M845.4,516.0 L845.4,277.2
+ M845.5,516.0 L845.5,280.1 M845.7,516.0 L845.7,283.7 M845.9,516.0 L845.9,288.2 M846.1,516.0 L846.1,293.9
+ M846.3,516.0 L846.3,301.5 M846.4,516.0 L846.4,312.4 M846.6,516.0 L846.6,331.3 M846.8,516.0 M847.0,516.0
+ L847.0,331.2 M847.2,516.0 L847.2,312.2 M847.3,516.0 L847.3,301.2 M847.5,516.0 L847.5,293.5 M847.7,516.0
+ L847.7,287.7 M847.9,516.0 L847.9,283.1 M848.1,516.0 L848.1,279.4 M848.2,516.0 L848.2,276.4 M848.4,516.0
+ L848.4,273.9 M848.6,516.0 L848.6,271.8 M848.8,516.0 L848.8,270.1 M849.0,516.0 L849.0,268.8 M849.1,516.0
+ L849.1,267.8 M849.3,516.0 L849.3,267.1 M849.5,516.0 L849.5,266.6 M849.7,516.0 L849.7,266.4 M849.9,516.0
+ L849.9,266.5 M850.0,516.0 L850.0,266.9 M850.2,516.0 L850.2,267.5 M850.4,516.0 L850.4,268.4 M850.6,516.0
+ L850.6,269.6 M850.8,516.0 L850.8,271.2 M850.9,516.0 L850.9,273.2 M851.1,516.0 L851.1,275.6 M851.3,516.0
+ L851.3,278.5 M851.5,516.0 L851.5,282.1 M851.7,516.0 L851.7,286.6 M851.8,516.0 L851.8,292.3 M852.0,516.0
+ L852.0,299.9 M852.2,516.0 L852.2,310.8 M852.4,516.0 L852.4,329.7 M852.6,516.0 M852.8,516.0 L852.8,329.6
+ M852.9,516.0 L852.9,310.6 M853.1,516.0 L853.1,299.6 M853.3,516.0 L853.3,291.9 M853.5,516.0 L853.5,286.1
+ M853.7,516.0 L853.7,281.5 M853.8,516.0 L853.8,277.8 M854.0,516.0 L854.0,274.8 M854.2,516.0 L854.2,272.2
+ M854.4,516.0 L854.4,270.2 M854.6,516.0 L854.6,268.5 M854.7,516.0 L854.7,267.2 M854.9,516.0 L854.9,266.2
+ M855.1,516.0 L855.1,265.4 '/> <path stroke='rgb(222, 125, 0)' d='M855.3,516.0 L855.3,265.0 M855.5,516.0 L855.5,264.8 M855.6,516.0 L855.6,264.9 M855.8,516.0 L855.8,265.2
+ M856.0,516.0 L856.0,265.8 M856.2,516.0 L856.2,266.8 M856.4,516.0 L856.4,268.0 M856.5,516.0 L856.5,269.6
+ M856.7,516.0 L856.7,271.5 M856.9,516.0 L856.9,273.9 M857.1,516.0 L857.1,276.9 M857.3,516.0 L857.3,280.5
+ M857.4,516.0 L857.4,284.9 M857.6,516.0 L857.6,290.6 M857.8,516.0 L857.8,298.2 M858.0,516.0 L858.0,309.1
+ M858.2,516.0 L858.2,328.0 M858.3,516.0 M858.5,516.0 L858.5,327.9 M858.7,516.0 L858.7,308.9 M858.9,516.0
+ L858.9,297.9 M859.1,516.0 L859.1,290.2 M859.2,516.0 L859.2,284.4 M859.4,516.0 L859.4,279.8 M859.6,516.0
+ L859.6,276.1 M859.8,516.0 L859.8,273.0 M860.0,516.0 L860.0,270.5 M860.1,516.0 L860.1,268.5 M860.3,516.0
+ L860.3,266.8 M860.5,516.0 L860.5,265.5 M860.7,516.0 L860.7,264.4 M860.9,516.0 L860.9,263.7 M861.1,516.0
+ L861.1,263.2 M861.2,516.0 L861.2,263.0 M861.4,516.0 L861.4,263.1 M861.6,516.0 L861.6,263.5 M861.8,516.0
+ L861.8,264.1 M862.0,516.0 L862.0,265.0 M862.1,516.0 L862.1,266.2 M862.3,516.0 L862.3,267.8 M862.5,516.0
+ L862.5,269.8 M862.7,516.0 L862.7,272.2 M862.9,516.0 L862.9,275.1 M863.0,516.0 L863.0,278.7 M863.2,516.0
+ L863.2,283.2 M863.4,516.0 L863.4,288.9 M863.6,516.0 L863.6,296.4 M863.8,516.0 L863.8,307.3 M863.9,516.0
+ L863.9,326.3 M864.1,516.0 M864.3,516.0 L864.3,326.2 M864.5,516.0 L864.5,307.1 M864.7,516.0 L864.7,296.1
+ M864.8,516.0 L864.8,288.4 M865.0,516.0 L865.0,282.6 M865.2,516.0 L865.2,278.0 M865.4,516.0 L865.4,274.3
+ M865.6,516.0 L865.6,271.2 M865.7,516.0 L865.7,268.7 M865.9,516.0 L865.9,266.6 M866.1,516.0 L866.1,265.0
+ M866.3,516.0 L866.3,263.6 M866.5,516.0 L866.5,262.6 M866.6,516.0 L866.6,261.9 M866.8,516.0 L866.8,261.4
+ M867.0,516.0 L867.0,261.2 M867.2,516.0 L867.2,261.3 M867.4,516.0 L867.4,261.6 M867.5,516.0 L867.5,262.2
+ M867.7,516.0 L867.7,263.1 M867.9,516.0 L867.9,264.4 M868.1,516.0 L868.1,265.9 M868.3,516.0 L868.3,267.9
+ M868.4,516.0 L868.4,270.3 M868.6,516.0 L868.6,273.2 M868.8,516.0 L868.8,276.8 M869.0,516.0 L869.0,281.3
+ M869.2,516.0 L869.2,287.0 M869.3,516.0 L869.3,294.5 M869.5,516.0 L869.5,305.4 M869.7,516.0 L869.7,324.4
+ M869.9,516.0 M870.1,516.0 L870.1,324.2 M870.3,516.0 L870.3,305.2 M870.4,516.0 L870.4,294.2 M870.6,516.0
+ L870.6,286.5 M870.8,516.0 L870.8,280.7 M871.0,516.0 L871.0,276.1 M871.2,516.0 L871.2,272.4 M871.3,516.0
+ L871.3,269.3 M871.5,516.0 L871.5,266.8 M871.7,516.0 L871.7,264.7 M871.9,516.0 L871.9,263.0 M872.1,516.0
+ L872.1,261.7 M872.2,516.0 L872.2,260.6 M872.4,516.0 L872.4,259.9 M872.6,516.0 L872.6,259.4 M872.8,516.0
+ L872.8,259.2 M873.0,516.0 L873.0,259.3 M873.1,516.0 L873.1,259.6 M873.3,516.0 L873.3,260.3 M873.5,516.0
+ L873.5,261.2 M873.7,516.0 L873.7,262.4 M873.9,516.0 L873.9,263.9 M874.0,516.0 L874.0,265.9 M874.2,516.0
+ L874.2,268.3 M874.4,516.0 L874.4,271.2 M874.6,516.0 L874.6,274.8 M874.8,516.0 L874.8,279.3 M874.9,516.0
+ L874.9,285.0 M875.1,516.0 L875.1,292.5 M875.3,516.0 L875.3,303.4 M875.5,516.0 L875.5,322.3 M875.7,516.0
+ M875.8,516.0 L875.8,322.2 M876.0,516.0 L876.0,303.2 M876.2,516.0 L876.2,292.1 M876.4,516.0 L876.4,284.4
+ M876.6,516.0 L876.6,278.6 M876.7,516.0 L876.7,274.0 M876.9,516.0 L876.9,270.3 M877.1,516.0 L877.1,267.2
+ M877.3,516.0 L877.3,264.7 M877.5,516.0 L877.5,262.6 M877.6,516.0 L877.6,260.9 M877.8,516.0 L877.8,259.6
+ M878.0,516.0 L878.0,258.6 M878.2,516.0 L878.2,257.8 M878.4,516.0 L878.4,257.3 M878.6,516.0 L878.6,257.1
+ M878.7,516.0 L878.7,257.2 M878.9,516.0 L878.9,257.5 M879.1,516.0 L879.1,258.1 M879.3,516.0 L879.3,259.1
+ M879.5,516.0 L879.5,260.3 M879.6,516.0 L879.6,261.8 M879.8,516.0 L879.8,263.8 M880.0,516.0 L880.0,266.2
+ M880.2,516.0 L880.2,269.1 M880.4,516.0 L880.4,272.7 M880.5,516.0 L880.5,277.1 M880.7,516.0 L880.7,282.8
+ M880.9,516.0 L880.9,290.4 M881.1,516.0 L881.1,301.3 M881.3,516.0 L881.3,320.2 M881.4,516.0 M881.6,516.0
+ L881.6,320.0 M881.8,516.0 L881.8,301.0 M882.0,516.0 L882.0,289.9 M882.2,516.0 L882.2,282.3 M882.3,516.0
+ L882.3,276.4 M882.5,516.0 L882.5,271.8 M882.7,516.0 L882.7,268.1 M882.9,516.0 L882.9,265.0 M883.1,516.0
+ L883.1,262.5 M883.2,516.0 L883.2,260.4 M883.4,516.0 L883.4,258.7 M883.6,516.0 L883.6,257.4 M883.8,516.0
+ L883.8,256.3 M884.0,516.0 L884.0,255.6 M884.1,516.0 L884.1,255.1 M884.3,516.0 L884.3,254.9 M884.5,516.0
+ L884.5,255.0 M884.7,516.0 L884.7,255.3 M884.9,516.0 L884.9,255.9 M885.0,516.0 L885.0,256.8 M885.2,516.0
+ L885.2,258.0 M885.4,516.0 L885.4,259.6 M885.6,516.0 L885.6,261.5 M885.8,516.0 L885.8,263.9 M885.9,516.0
+ L885.9,266.8 M886.1,516.0 L886.1,270.4 M886.3,516.0 L886.3,274.8 M886.5,516.0 L886.5,280.5 M886.7,516.0
+ L886.7,288.1 M886.9,516.0 L886.9,298.9 M887.0,516.0 L887.0,317.9 M887.2,516.0 M887.4,516.0 L887.4,317.7
+ M887.6,516.0 L887.6,298.7 M887.8,516.0 L887.8,287.6 M887.9,516.0 L887.9,279.9 M888.1,516.0 L888.1,274.1
+ M888.3,516.0 L888.3,269.5 M888.5,516.0 L888.5,265.7 M888.7,516.0 L888.7,262.7 M888.8,516.0 L888.8,260.1
+ M889.0,516.0 L889.0,258.1 M889.2,516.0 L889.2,256.4 M889.4,516.0 L889.4,255.0 M889.6,516.0 L889.6,253.9
+ M889.7,516.0 L889.7,253.2 M889.9,516.0 L889.9,252.7 M890.1,516.0 L890.1,252.5 M890.3,516.0 L890.3,252.6
+ M890.5,516.0 L890.5,252.9 M890.6,516.0 L890.6,253.5 M890.8,516.0 L890.8,254.4 M891.0,516.0 L891.0,255.6
+ M891.2,516.0 L891.2,257.1 M891.4,516.0 L891.4,259.1 M891.5,516.0 L891.5,261.4 M891.7,516.0 L891.7,264.3
+ M891.9,516.0 L891.9,267.9 M892.1,516.0 L892.1,272.4 M892.3,516.0 L892.3,278.1 M892.4,516.0 L892.4,285.6
+ M892.6,516.0 L892.6,296.5 M892.8,516.0 L892.8,315.4 M893.0,516.0 M893.2,516.0 L893.2,315.2 M893.3,516.0
+ L893.3,296.2 M893.5,516.0 L893.5,285.1 M893.7,516.0 L893.7,277.4 M893.9,516.0 L893.9,271.6 M894.1,516.0
+ L894.1,267.0 M894.2,516.0 L894.2,263.2 M894.4,516.0 L894.4,260.2 M894.6,516.0 L894.6,257.6 M894.8,516.0
+ L894.8,255.5 M895.0,516.0 L895.0,253.8 M895.2,516.0 L895.2,252.5 M895.3,516.0 L895.3,251.4 M895.5,516.0
+ L895.5,250.6 M895.7,516.0 L895.7,250.2 M895.9,516.0 L895.9,249.9 M896.1,516.0 L896.1,250.0 M896.2,516.0
+ L896.2,250.3 M896.4,516.0 L896.4,250.9 M896.6,516.0 L896.6,251.8 M896.8,516.0 L896.8,253.0 M897.0,516.0
+ L897.0,254.5 M897.1,516.0 L897.1,256.5 M897.3,516.0 L897.3,258.8 M897.5,516.0 L897.5,261.7 M897.7,516.0
+ L897.7,265.3 M897.9,516.0 L897.9,269.8 M898.0,516.0 L898.0,275.4 M898.2,516.0 L898.2,283.0 M898.4,516.0
+ L898.4,293.8 M898.6,516.0 L898.6,312.7 M898.8,516.0 M898.9,516.0 L898.9,312.6 M899.1,516.0 L899.1,293.5
+ M899.3,516.0 L899.3,282.5 M899.5,516.0 L899.5,274.8 M899.7,516.0 L899.7,268.9 M899.8,516.0 L899.8,264.3
+ M900.0,516.0 L900.0,260.6 M900.2,516.0 L900.2,257.5 M900.4,516.0 L900.4,254.9 M900.6,516.0 L900.6,252.8
+ M900.7,516.0 L900.7,251.1 M900.9,516.0 L900.9,249.8 M901.1,516.0 L901.1,248.7 M901.3,516.0 L901.3,247.9
+ M901.5,516.0 L901.5,247.5 M901.6,516.0 L901.6,247.2 M901.8,516.0 L901.8,247.3 M902.0,516.0 L902.0,247.6
+ M902.2,516.0 L902.2,248.2 '/> <path stroke='rgb(222, 125, 0)' d='M902.4,516.0 L902.4,249.1 M902.5,516.0 L902.5,250.3 M902.7,516.0 L902.7,251.8 M902.9,516.0 L902.9,253.7
+ M903.1,516.0 L903.1,256.1 M903.3,516.0 L903.3,259.0 M903.5,516.0 L903.5,262.6 M903.6,516.0 L903.6,267.0
+ M903.8,516.0 L903.8,272.7 M904.0,516.0 L904.0,280.2 M904.2,516.0 L904.2,291.1 M904.4,516.0 L904.4,310.0
+ M904.5,516.0 M904.7,516.0 L904.7,309.8 M904.9,516.0 L904.9,290.8 M905.1,516.0 L905.1,279.7 M905.3,516.0
+ L905.3,272.0 M905.4,516.0 L905.4,266.2 M905.6,516.0 L905.6,261.5 M905.8,516.0 L905.8,257.8 M906.0,516.0
+ L906.0,254.7 M906.2,516.0 L906.2,252.2 M906.3,516.0 L906.3,250.1 M906.5,516.0 L906.5,248.4 M906.7,516.0
+ L906.7,247.0 M906.9,516.0 L906.9,245.9 M907.1,516.0 L907.1,245.2 M907.2,516.0 L907.2,244.7 M907.4,516.0
+ L907.4,244.5 M907.6,516.0 L907.6,244.5 M907.8,516.0 L907.8,244.8 M908.0,516.0 L908.0,245.4 M908.1,516.0
+ L908.1,246.3 M908.3,516.0 L908.3,247.5 M908.5,516.0 L908.5,249.0 M908.7,516.0 L908.7,251.0 M908.9,516.0
+ L908.9,253.3 M909.0,516.0 L909.0,256.2 M909.2,516.0 L909.2,259.8 M909.4,516.0 L909.4,264.3 M909.6,516.0
+ L909.6,269.9 M909.8,516.0 L909.8,277.5 M909.9,516.0 L909.9,288.3 M910.1,516.0 L910.1,307.2 M910.3,516.0
+ L910.3,511.4 M910.5,516.0 L910.5,307.1 M910.7,516.0 L910.7,288.0 M910.8,516.0 L910.8,277.0 M911.0,516.0
+ L911.0,269.3 M911.2,516.0 L911.2,263.4 M911.4,516.0 L911.4,258.8 M911.6,516.0 L911.6,255.1 M911.8,516.0
+ L911.8,252.0 M911.9,516.0 L911.9,249.5 M912.1,516.0 L912.1,247.4 M912.3,516.0 L912.3,245.7 M912.5,516.0
+ L912.5,244.3 M912.7,516.0 L912.7,243.3 M912.8,516.0 L912.8,242.5 M913.0,516.0 L913.0,242.1 M913.2,516.0
+ L913.2,241.9 M913.4,516.0 L913.4,241.9 M913.6,516.0 L913.6,242.2 M913.7,516.0 L913.7,242.9 M913.9,516.0
+ L913.9,243.8 M914.1,516.0 L914.1,245.0 M914.3,516.0 L914.3,246.5 M914.5,516.0 L914.5,248.5 M914.6,516.0
+ L914.6,250.9 M914.8,516.0 L914.8,253.8 M915.0,516.0 L915.0,257.4 M915.2,516.0 L915.2,261.9 M915.4,516.0
+ L915.4,267.5 M915.5,516.0 L915.5,275.1 M915.7,516.0 L915.7,286.0 M915.9,516.0 L915.9,304.9 M916.1,516.0
+ L916.1,501.0 M916.3,516.0 L916.3,304.9 M916.4,516.0 L916.4,285.8 M916.6,516.0 L916.6,274.8 M916.8,516.0
+ L916.8,267.1 M917.0,516.0 L917.0,261.3 M917.2,516.0 L917.2,256.8 M917.3,516.0 L917.3,253.1 M917.5,516.0
+ L917.5,250.0 M917.7,516.0 L917.7,247.6 M917.9,516.0 L917.9,245.5 M918.1,516.0 L918.1,243.9 M918.2,516.0
+ L918.2,242.5 M918.4,516.0 L918.4,241.6 M918.6,516.0 L918.6,240.9 M918.8,516.0 L918.8,240.4 M919.0,516.0
+ L919.0,240.3 M919.1,516.0 L919.1,240.4 M919.3,516.0 L919.3,240.8 M919.5,516.0 L919.5,241.5 M919.7,516.0
+ L919.7,242.5 M919.9,516.0 L919.9,243.8 M920.1,516.0 L920.1,245.4 M920.2,516.0 L920.2,247.5 M920.4,516.0
+ L920.4,249.9 M920.6,516.0 L920.6,253.0 M920.8,516.0 L920.8,256.7 M921.0,516.0 L921.0,261.2 M921.1,516.0
+ L921.1,267.0 M921.3,516.0 L921.3,274.7 M921.5,516.0 L921.5,285.8 M921.7,516.0 L921.7,304.8 M921.9,516.0
+ L921.9,488.0 M922.0,516.0 L922.0,305.1 M922.2,516.0 L922.2,286.2 M922.4,516.0 L922.4,275.3 M922.6,516.0
+ L922.6,267.8 M922.8,516.0 L922.8,262.2 M922.9,516.0 L922.9,257.8 M923.1,516.0 L923.1,254.3 M923.3,516.0
+ L923.3,251.5 M923.5,516.0 L923.5,249.3 M923.7,516.0 L923.7,247.5 M923.8,516.0 L923.8,246.1 M924.0,516.0
+ L924.0,245.1 M924.2,516.0 L924.2,244.4 M924.4,516.0 L924.4,244.0 M924.6,516.0 L924.6,243.9 M924.7,516.0
+ L924.7,244.1 M924.9,516.0 L924.9,244.7 M925.1,516.0 L925.1,245.5 M925.3,516.0 L925.3,246.6 M925.5,516.0
+ L925.5,248.1 M925.6,516.0 L925.6,249.9 M925.8,516.0 L925.8,252.1 M926.0,516.0 L926.0,254.8 M926.2,516.0
+ L926.2,257.9 M926.4,516.0 L926.4,261.7 M926.5,516.0 L926.5,266.2 M926.7,516.0 L926.7,271.6 M926.9,516.0
+ L926.9,278.4 M927.1,516.0 L927.1,287.1 M927.3,516.0 L927.3,299.3 M927.4,516.0 L927.4,319.6 M927.6,516.0
+ L927.6,470.7 M927.8,516.0 L927.8,323.2 M928.0,516.0 L928.0,306.2 M928.2,516.0 L928.2,297.6 M928.4,516.0
+ L928.4,292.7 M928.5,516.0 L928.5,290.3 M928.7,516.0 L928.7,289.7 M928.9,516.0 L928.9,291.0 M929.1,516.0
+ L929.1,294.6 M929.3,516.0 L929.3,301.5 M929.4,516.0 L929.4,315.0 M929.6,516.0 L929.6,358.9 M929.8,516.0
+ L929.8,323.1 M930.0,516.0 L930.0,298.3 M930.2,516.0 L930.2,284.3 M930.3,516.0 L930.3,274.4 M930.5,516.0
+ L930.5,266.8 M930.7,516.0 L930.7,260.7 M930.9,516.0 L930.9,255.6 M931.1,516.0 L931.1,251.5 M931.2,516.0
+ L931.2,248.0 M931.4,516.0 L931.4,245.3 M931.6,516.0 L931.6,243.1 M931.8,516.0 L931.8,241.5 M932.0,516.0
+ L932.0,240.6 M932.1,516.0 L932.1,240.3 M932.3,516.0 L932.3,240.9 M932.5,516.0 L932.5,242.4 M932.7,516.0
+ L932.7,245.2 M932.9,516.0 L932.9,249.9 M933.0,516.0 L933.0,258.1 M933.2,516.0 L933.2,274.3 M933.4,516.0
+ L933.4,443.6 M933.6,516.0 L933.6,268.7 M933.8,516.0 L933.8,247.1 M933.9,516.0 L933.9,233.5 M934.1,516.0
+ L934.1,223.2 M934.3,516.0 L934.3,214.8 M934.5,516.0 L934.5,207.6 M934.7,516.0 L934.7,201.2 M934.8,516.0
+ L934.8,195.5 M935.0,516.0 L935.0,190.3 M935.2,516.0 L935.2,185.5 M935.4,516.0 L935.4,181.1 M935.6,516.0
+ L935.6,177.0 M935.7,516.0 L935.7,173.1 M935.9,516.0 L935.9,169.5 M936.1,516.0 L936.1,166.0 M936.3,516.0
+ L936.3,162.7 M936.5,516.0 L936.5,159.6 M936.7,516.0 L936.7,156.7 M936.8,516.0 L936.8,153.9 M937.0,516.0
+ L937.0,151.2 M937.2,516.0 L937.2,148.6 M937.4,516.0 L937.4,146.1 M937.6,516.0 L937.6,143.8 M937.7,516.0
+ L937.7,141.5 M937.9,516.0 L937.9,139.4 M938.1,516.0 L938.1,137.3 M938.3,516.0 L938.3,135.3 M938.5,516.0
+ L938.5,133.4 M938.6,516.0 L938.6,131.6 M938.8,516.0 L938.8,129.8 M939.0,516.0 L939.0,128.1 M939.2,516.0
+ L939.2,126.5 M939.4,516.0 L939.4,125.0 M939.5,516.0 L939.5,123.5 M939.7,516.0 L939.7,122.1 M939.9,516.0
+ L939.9,120.7 M940.1,516.0 L940.1,119.4 M940.3,516.0 L940.3,118.2 M940.4,516.0 L940.4,117.0 M940.6,516.0
+ L940.6,115.9 M940.8,516.0 L940.8,114.8 M941.0,516.0 L941.0,113.8 M941.2,516.0 L941.2,112.8 M941.3,516.0
+ L941.3,111.9 M941.5,516.0 L941.5,111.0 M941.7,516.0 L941.7,110.2 M941.9,516.0 L941.9,109.4 M942.1,516.0
+ L942.1,108.7 M942.2,516.0 L942.2,108.0 M942.4,516.0 L942.4,107.4 M942.6,516.0 L942.6,106.8 M942.8,516.0
+ L942.8,106.2 M943.0,516.0 L943.0,105.7 M943.1,516.0 L943.1,105.3 M943.3,516.0 L943.3,104.9 M943.5,516.0
+ L943.5,104.5 M943.7,516.0 L943.7,104.2 M943.9,516.0 L943.9,103.9 M944.0,516.0 L944.0,103.7 M944.2,516.0
+ L944.2,103.5 M944.4,516.0 L944.4,103.3 M944.6,516.0 L944.6,103.2 M944.8,516.0 L944.8,103.2 M945.0,516.0
+ L945.0,103.2 M945.1,516.0 L945.1,103.2 M945.3,516.0 L945.3,103.2 M945.5,516.0 L945.5,103.3 M945.7,516.0
+ L945.7,103.5 M945.9,516.0 L945.9,103.7 M946.0,516.0 L946.0,103.9 M946.2,516.0 L946.2,104.2 M946.4,516.0
+ L946.4,104.5 M946.6,516.0 L946.6,104.9 M946.8,516.0 L946.8,105.3 M946.9,516.0 L946.9,105.7 M947.1,516.0
+ L947.1,106.2 M947.3,516.0 L947.3,106.8 M947.5,516.0 L947.5,107.4 M947.7,516.0 L947.7,108.0 M947.8,516.0
+ L947.8,108.7 M948.0,516.0 L948.0,109.4 M948.2,516.0 L948.2,110.2 M948.4,516.0 L948.4,111.0 M948.6,516.0
+ L948.6,111.9 '/> <path stroke='rgb(222, 125, 0)' d='M948.7,516.0 L948.7,112.8 M948.9,516.0 L948.9,113.8 M949.1,516.0 L949.1,114.8 M949.3,516.0 L949.3,115.9
+ M949.5,516.0 L949.5,117.0 M949.6,516.0 L949.6,118.2 M949.8,516.0 L949.8,119.4 M950.0,516.0 L950.0,120.7
+ M950.2,516.0 L950.2,122.1 M950.4,516.0 L950.4,123.5 M950.5,516.0 L950.5,125.0 M950.7,516.0 L950.7,126.5
+ M950.9,516.0 L950.9,128.1 M951.1,516.0 L951.1,129.8 M951.3,516.0 L951.3,131.6 M951.4,516.0 L951.4,133.4
+ M951.6,516.0 L951.6,135.3 M951.8,516.0 L951.8,137.3 M952.0,516.0 L952.0,139.4 M952.2,516.0 L952.2,141.5
+ M952.3,516.0 L952.3,143.8 M952.5,516.0 L952.5,146.1 M952.7,516.0 L952.7,148.6 M952.9,516.0 L952.9,151.2
+ M953.1,516.0 L953.1,153.9 M953.2,516.0 L953.2,156.7 M953.4,516.0 L953.4,159.6 M953.6,516.0 L953.6,162.7
+ M953.8,516.0 L953.8,166.0 M954.0,516.0 L954.0,169.5 M954.2,516.0 L954.2,173.1 M954.3,516.0 L954.3,177.0
+ M954.5,516.0 L954.5,181.1 M954.7,516.0 L954.7,185.5 M954.9,516.0 L954.9,190.3 M955.1,516.0 L955.1,195.5
+ M955.2,516.0 L955.2,201.2 M955.4,516.0 L955.4,207.6 M955.6,516.0 L955.6,214.8 M955.8,516.0 L955.8,223.2
+ M956.0,516.0 L956.0,233.5 M956.1,516.0 L956.1,247.1 M956.3,516.0 L956.3,268.7 M956.5,516.0 L956.5,443.6
+ M956.7,516.0 L956.7,274.3 M956.9,516.0 L956.9,258.1 M957.0,516.0 L957.0,249.9 M957.2,516.0 L957.2,245.2
+ M957.4,516.0 L957.4,242.4 M957.6,516.0 L957.6,240.9 M957.8,516.0 L957.8,240.3 M957.9,516.0 L957.9,240.6
+ M958.1,516.0 L958.1,241.5 M958.3,516.0 L958.3,243.1 M958.5,516.0 L958.5,245.3 M958.7,516.0 L958.7,248.0
+ M958.8,516.0 L958.8,251.5 M959.0,516.0 L959.0,255.6 M959.2,516.0 L959.2,260.7 M959.4,516.0 L959.4,266.8
+ M959.6,516.0 L959.6,274.4 M959.7,516.0 L959.7,284.3 M959.9,516.0 L959.9,298.3 M960.1,516.0 L960.1,323.1
+ M960.3,516.0 L960.3,358.9 M960.5,516.0 L960.5,315.0 M960.6,516.0 L960.6,301.5 M960.8,516.0 L960.8,294.6
+ M961.0,516.0 L961.0,291.0 M961.2,516.0 L961.2,289.7 M961.4,516.0 L961.4,290.3 M961.5,516.0 L961.5,292.7
+ M961.7,516.0 L961.7,297.6 M961.9,516.0 L961.9,306.2 M962.1,516.0 L962.1,323.2 M962.3,516.0 L962.3,470.7
+ M962.5,516.0 L962.5,319.6 M962.6,516.0 L962.6,299.3 M962.8,516.0 L962.8,287.1 M963.0,516.0 L963.0,278.4
+ M963.2,516.0 L963.2,271.6 M963.4,516.0 L963.4,266.2 M963.5,516.0 L963.5,261.7 M963.7,516.0 L963.7,257.9
+ M963.9,516.0 L963.9,254.8 M964.1,516.0 L964.1,252.1 M964.3,516.0 L964.3,249.9 M964.4,516.0 L964.4,248.1
+ M964.6,516.0 L964.6,246.6 M964.8,516.0 L964.8,245.5 M965.0,516.0 L965.0,244.7 M965.2,516.0 L965.2,244.1
+ M965.3,516.0 L965.3,243.9 M965.5,516.0 L965.5,244.0 M965.7,516.0 L965.7,244.4 M965.9,516.0 L965.9,245.1
+ M966.1,516.0 L966.1,246.1 M966.2,516.0 L966.2,247.5 M966.4,516.0 L966.4,249.3 M966.6,516.0 L966.6,251.5
+ M966.8,516.0 L966.8,254.3 M967.0,516.0 L967.0,257.8 M967.1,516.0 L967.1,262.2 M967.3,516.0 L967.3,267.8
+ M967.5,516.0 L967.5,275.3 M967.7,516.0 L967.7,286.2 M967.9,516.0 L967.9,305.1 M968.0,516.0 L968.0,488.0
+ M968.2,516.0 L968.2,304.8 M968.4,516.0 L968.4,285.8 M968.6,516.0 L968.6,274.7 M968.8,516.0 L968.8,267.0
+ M968.9,516.0 L968.9,261.2 M969.1,516.0 L969.1,256.7 M969.3,516.0 L969.3,253.0 M969.5,516.0 L969.5,249.9
+ M969.7,516.0 L969.7,247.5 M969.8,516.0 L969.8,245.4 M970.0,516.0 L970.0,243.8 M970.2,516.0 L970.2,242.5
+ M970.4,516.0 L970.4,241.5 M970.6,516.0 L970.6,240.8 M970.8,516.0 L970.8,240.4 M970.9,516.0 L970.9,240.3
+ M971.1,516.0 L971.1,240.4 M971.3,516.0 L971.3,240.9 M971.5,516.0 L971.5,241.6 M971.7,516.0 L971.7,242.5
+ M971.8,516.0 L971.8,243.9 M972.0,516.0 L972.0,245.5 M972.2,516.0 L972.2,247.6 M972.4,516.0 L972.4,250.0
+ M972.6,516.0 L972.6,253.1 M972.7,516.0 L972.7,256.8 M972.9,516.0 L972.9,261.3 M973.1,516.0 L973.1,267.1
+ M973.3,516.0 L973.3,274.8 M973.5,516.0 L973.5,285.8 M973.6,516.0 L973.6,304.9 M973.8,516.0 L973.8,501.0
+ M974.0,516.0 L974.0,304.9 M974.2,516.0 L974.2,286.0 M974.4,516.0 L974.4,275.1 M974.5,516.0 L974.5,267.5
+ M974.7,516.0 L974.7,261.9 M974.9,516.0 L974.9,257.4 M975.1,516.0 L975.1,253.8 M975.3,516.0 L975.3,250.9
+ M975.4,516.0 L975.4,248.5 M975.6,516.0 L975.6,246.5 M975.8,516.0 L975.8,245.0 M976.0,516.0 L976.0,243.8
+ M976.2,516.0 L976.2,242.9 M976.3,516.0 L976.3,242.2 M976.5,516.0 L976.5,241.9 M976.7,516.0 L976.7,241.9
+ M976.9,516.0 L976.9,242.1 M977.1,516.0 L977.1,242.5 M977.2,516.0 L977.2,243.3 M977.4,516.0 L977.4,244.3
+ M977.6,516.0 L977.6,245.7 M977.8,516.0 L977.8,247.4 M978.0,516.0 L978.0,249.5 M978.1,516.0 L978.1,252.0
+ M978.3,516.0 L978.3,255.1 M978.5,516.0 L978.5,258.8 M978.7,516.0 L978.7,263.4 M978.9,516.0 L978.9,269.3
+ M979.1,516.0 L979.1,277.0 M979.2,516.0 L979.2,288.0 M979.4,516.0 L979.4,307.1 M979.6,516.0 L979.6,511.4
+ M979.8,516.0 L979.8,307.2 M980.0,516.0 L980.0,288.3 M980.1,516.0 L980.1,277.5 M980.3,516.0 L980.3,269.9
+ M980.5,516.0 L980.5,264.3 M980.7,516.0 L980.7,259.8 M980.9,516.0 L980.9,256.2 M981.0,516.0 L981.0,253.3
+ M981.2,516.0 L981.2,251.0 M981.4,516.0 L981.4,249.0 M981.6,516.0 L981.6,247.5 M981.8,516.0 L981.8,246.3
+ M981.9,516.0 L981.9,245.4 M982.1,516.0 L982.1,244.8 M982.3,516.0 L982.3,244.5 M982.5,516.0 L982.5,244.5
+ M982.7,516.0 L982.7,244.7 M982.8,516.0 L982.8,245.2 M983.0,516.0 L983.0,245.9 M983.2,516.0 L983.2,247.0
+ M983.4,516.0 L983.4,248.4 M983.6,516.0 L983.6,250.1 M983.7,516.0 L983.7,252.2 M983.9,516.0 L983.9,254.7
+ M984.1,516.0 L984.1,257.8 M984.3,516.0 L984.3,261.5 M984.5,516.0 L984.5,266.2 M984.6,516.0 L984.6,272.0
+ M984.8,516.0 L984.8,279.7 M985.0,516.0 L985.0,290.8 M985.2,516.0 L985.2,309.8 M985.4,516.0 M985.5,516.0
+ L985.5,310.0 M985.7,516.0 L985.7,291.1 M985.9,516.0 L985.9,280.2 M986.1,516.0 L986.1,272.7 M986.3,516.0
+ L986.3,267.0 M986.4,516.0 L986.4,262.6 M986.6,516.0 L986.6,259.0 M986.8,516.0 L986.8,256.1 M987.0,516.0
+ L987.0,253.7 M987.2,516.0 L987.2,251.8 M987.4,516.0 L987.4,250.3 M987.5,516.0 L987.5,249.1 M987.7,516.0
+ L987.7,248.2 M987.9,516.0 L987.9,247.6 M988.1,516.0 L988.1,247.3 M988.3,516.0 L988.3,247.2 M988.4,516.0
+ L988.4,247.5 M988.6,516.0 L988.6,247.9 M988.8,516.0 L988.8,248.7 M989.0,516.0 L989.0,249.8 M989.2,516.0
+ L989.2,251.1 M989.3,516.0 L989.3,252.8 M989.5,516.0 L989.5,254.9 M989.7,516.0 L989.7,257.5 M989.9,516.0
+ L989.9,260.6 M990.1,516.0 L990.1,264.3 M990.2,516.0 L990.2,268.9 M990.4,516.0 L990.4,274.8 M990.6,516.0
+ L990.6,282.5 M990.8,516.0 L990.8,293.5 M991.0,516.0 L991.0,312.6 M991.1,516.0 M991.3,516.0 L991.3,312.7
+ M991.5,516.0 L991.5,293.8 M991.7,516.0 L991.7,283.0 M991.9,516.0 L991.9,275.4 M992.0,516.0 L992.0,269.8
+ M992.2,516.0 L992.2,265.3 M992.4,516.0 L992.4,261.7 M992.6,516.0 L992.6,258.8 M992.8,516.0 L992.8,256.5
+ M992.9,516.0 L992.9,254.5 M993.1,516.0 L993.1,253.0 M993.3,516.0 L993.3,251.8 M993.5,516.0 L993.5,250.9
+ M993.7,516.0 L993.7,250.3 M993.8,516.0 L993.8,250.0 M994.0,516.0 L994.0,249.9 M994.2,516.0 L994.2,250.2
+ M994.4,516.0 L994.4,250.6 M994.6,516.0 L994.6,251.4 M994.7,516.0 L994.7,252.5 M994.9,516.0 L994.9,253.8
+ M995.1,516.0 L995.1,255.5 '/> <path stroke='rgb(222, 125, 0)' d='M995.3,516.0 L995.3,257.6 M995.5,516.0 L995.5,260.2 M995.7,516.0 L995.7,263.2 M995.8,516.0 L995.8,267.0
+ M996.0,516.0 L996.0,271.6 M996.2,516.0 L996.2,277.4 M996.4,516.0 L996.4,285.1 M996.6,516.0 L996.6,296.2
+ M996.7,516.0 L996.7,315.2 M996.9,516.0 M997.1,516.0 L997.1,315.4 M997.3,516.0 L997.3,296.5 M997.5,516.0
+ L997.5,285.6 M997.6,516.0 L997.6,278.1 M997.8,516.0 L997.8,272.4 M998.0,516.0 L998.0,267.9 M998.2,516.0
+ L998.2,264.3 M998.4,516.0 L998.4,261.4 M998.5,516.0 L998.5,259.1 M998.7,516.0 L998.7,257.1 M998.9,516.0
+ L998.9,255.6 M999.1,516.0 L999.1,254.4 M999.3,516.0 L999.3,253.5 M999.4,516.0 L999.4,252.9 M999.6,516.0
+ L999.6,252.6 M999.8,516.0 L999.8,252.5 M1000.0,516.0 L1000.0,252.7 M1000.2,516.0 L1000.2,253.2 M1000.3,516.0
+ L1000.3,253.9 M1000.5,516.0 L1000.5,255.0 M1000.7,516.0 L1000.7,256.4 M1000.9,516.0 L1000.9,258.1 M1001.1,516.0
+ L1001.1,260.1 M1001.2,516.0 L1001.2,262.7 M1001.4,516.0 L1001.4,265.7 M1001.6,516.0 L1001.6,269.5 M1001.8,516.0
+ L1001.8,274.1 M1002.0,516.0 L1002.0,279.9 M1002.1,516.0 L1002.1,287.6 M1002.3,516.0 L1002.3,298.7 M1002.5,516.0
+ L1002.5,317.7 M1002.7,516.0 M1002.9,516.0 L1002.9,317.9 M1003.0,516.0 L1003.0,298.9 M1003.2,516.0 L1003.2,288.1
+ M1003.4,516.0 L1003.4,280.5 M1003.6,516.0 L1003.6,274.8 M1003.8,516.0 L1003.8,270.4 M1004.0,516.0 L1004.0,266.8
+ M1004.1,516.0 L1004.1,263.9 M1004.3,516.0 L1004.3,261.5 M1004.5,516.0 L1004.5,259.6 M1004.7,516.0 L1004.7,258.0
+ M1004.9,516.0 L1004.9,256.8 M1005.0,516.0 L1005.0,255.9 M1005.2,516.0 L1005.2,255.3 M1005.4,516.0 L1005.4,255.0
+ M1005.6,516.0 L1005.6,254.9 M1005.8,516.0 L1005.8,255.1 M1005.9,516.0 L1005.9,255.6 M1006.1,516.0 L1006.1,256.3
+ M1006.3,516.0 L1006.3,257.4 M1006.5,516.0 L1006.5,258.7 M1006.7,516.0 L1006.7,260.4 M1006.8,516.0 L1006.8,262.5
+ M1007.0,516.0 L1007.0,265.0 M1007.2,516.0 L1007.2,268.1 M1007.4,516.0 L1007.4,271.8 M1007.6,516.0 L1007.6,276.4
+ M1007.7,516.0 L1007.7,282.3 M1007.9,516.0 L1007.9,289.9 M1008.1,516.0 L1008.1,301.0 M1008.3,516.0 L1008.3,320.0
+ M1008.5,516.0 M1008.6,516.0 L1008.6,320.2 M1008.8,516.0 L1008.8,301.3 M1009.0,516.0 L1009.0,290.4 M1009.2,516.0
+ L1009.2,282.8 M1009.4,516.0 L1009.4,277.1 M1009.5,516.0 L1009.5,272.7 M1009.7,516.0 L1009.7,269.1 M1009.9,516.0
+ L1009.9,266.2 M1010.1,516.0 L1010.1,263.8 M1010.3,516.0 L1010.3,261.8 M1010.4,516.0 L1010.4,260.3 M1010.6,516.0
+ L1010.6,259.1 M1010.8,516.0 L1010.8,258.1 M1011.0,516.0 L1011.0,257.5 M1011.2,516.0 L1011.2,257.2 M1011.3,516.0
+ L1011.3,257.1 M1011.5,516.0 L1011.5,257.3 M1011.7,516.0 L1011.7,257.8 M1011.9,516.0 L1011.9,258.6 M1012.1,516.0
+ L1012.1,259.6 M1012.3,516.0 L1012.3,260.9 M1012.4,516.0 L1012.4,262.6 M1012.6,516.0 L1012.6,264.7 M1012.8,516.0
+ L1012.8,267.2 M1013.0,516.0 L1013.0,270.3 M1013.2,516.0 L1013.2,274.0 M1013.3,516.0 L1013.3,278.6 M1013.5,516.0
+ L1013.5,284.4 M1013.7,516.0 L1013.7,292.1 M1013.9,516.0 L1013.9,303.2 M1014.1,516.0 L1014.1,322.2 M1014.2,516.0
+ M1014.4,516.0 L1014.4,322.3 M1014.6,516.0 L1014.6,303.4 M1014.8,516.0 L1014.8,292.5 M1015.0,516.0 L1015.0,285.0
+ M1015.1,516.0 L1015.1,279.3 M1015.3,516.0 L1015.3,274.8 M1015.5,516.0 L1015.5,271.2 M1015.7,516.0 L1015.7,268.3
+ M1015.9,516.0 L1015.9,265.9 M1016.0,516.0 L1016.0,263.9 M1016.2,516.0 L1016.2,262.4 M1016.4,516.0 L1016.4,261.2
+ M1016.6,516.0 L1016.6,260.3 M1016.8,516.0 L1016.8,259.6 M1016.9,516.0 L1016.9,259.3 M1017.1,516.0 L1017.1,259.2
+ M1017.3,516.0 L1017.3,259.4 M1017.5,516.0 L1017.5,259.9 M1017.7,516.0 L1017.7,260.6 M1017.8,516.0 L1017.8,261.7
+ M1018.0,516.0 L1018.0,263.0 M1018.2,516.0 L1018.2,264.7 M1018.4,516.0 L1018.4,266.8 M1018.6,516.0 L1018.6,269.3
+ M1018.7,516.0 L1018.7,272.4 M1018.9,516.0 L1018.9,276.1 M1019.1,516.0 L1019.1,280.7 M1019.3,516.0 L1019.3,286.5
+ M1019.5,516.0 L1019.5,294.2 M1019.6,516.0 L1019.6,305.2 M1019.8,516.0 L1019.8,324.2 M1020.0,516.0 M1020.2,516.0
+ L1020.2,324.4 M1020.4,516.0 L1020.4,305.4 M1020.6,516.0 L1020.6,294.5 M1020.7,516.0 L1020.7,287.0 M1020.9,516.0
+ L1020.9,281.3 M1021.1,516.0 L1021.1,276.8 M1021.3,516.0 L1021.3,273.2 M1021.5,516.0 L1021.5,270.3 M1021.6,516.0
+ L1021.6,267.9 M1021.8,516.0 L1021.8,265.9 M1022.0,516.0 L1022.0,264.4 M1022.2,516.0 L1022.2,263.1 M1022.4,516.0
+ L1022.4,262.2 M1022.5,516.0 L1022.5,261.6 M1022.7,516.0 L1022.7,261.3 M1022.9,516.0 L1022.9,261.2 M1023.1,516.0
+ L1023.1,261.4 M1023.3,516.0 L1023.3,261.9 M1023.4,516.0 L1023.4,262.6 M1023.6,516.0 L1023.6,263.6 M1023.8,516.0
+ L1023.8,265.0 M1024.0,516.0 L1024.0,266.6 M1024.2,516.0 L1024.2,268.7 M1024.3,516.0 L1024.3,271.2 M1024.5,516.0
+ L1024.5,274.3 M1024.7,516.0 L1024.7,278.0 M1024.9,516.0 L1024.9,282.6 M1025.1,516.0 L1025.1,288.4 M1025.2,516.0
+ L1025.2,296.1 M1025.4,516.0 L1025.4,307.1 M1025.6,516.0 L1025.6,326.2 M1025.8,516.0 M1026.0,516.0 L1026.0,326.3
+ M1026.1,516.0 L1026.1,307.3 M1026.3,516.0 L1026.3,296.4 M1026.5,516.0 L1026.5,288.9 M1026.7,516.0 L1026.7,283.2
+ M1026.9,516.0 L1026.9,278.7 M1027.0,516.0 L1027.0,275.1 M1027.2,516.0 L1027.2,272.2 M1027.4,516.0 L1027.4,269.8
+ M1027.6,516.0 L1027.6,267.8 M1027.8,516.0 L1027.8,266.2 M1027.9,516.0 L1027.9,265.0 M1028.1,516.0 L1028.1,264.1
+ M1028.3,516.0 L1028.3,263.5 M1028.5,516.0 L1028.5,263.1 M1028.7,516.0 L1028.7,263.0 M1028.8,516.0 L1028.8,263.2
+ M1029.0,516.0 L1029.0,263.7 M1029.2,516.0 L1029.2,264.4 M1029.4,516.0 L1029.4,265.5 M1029.6,516.0 L1029.6,266.8
+ M1029.8,516.0 L1029.8,268.5 M1029.9,516.0 L1029.9,270.5 M1030.1,516.0 L1030.1,273.0 M1030.3,516.0 L1030.3,276.1
+ M1030.5,516.0 L1030.5,279.8 M1030.7,516.0 L1030.7,284.4 M1030.8,516.0 L1030.8,290.2 M1031.0,516.0 L1031.0,297.9
+ M1031.2,516.0 L1031.2,308.9 M1031.4,516.0 L1031.4,327.9 M1031.6,516.0 M1031.7,516.0 L1031.7,328.0 M1031.9,516.0
+ L1031.9,309.1 M1032.1,516.0 L1032.1,298.2 M1032.3,516.0 L1032.3,290.6 M1032.5,516.0 L1032.5,284.9 M1032.6,516.0
+ L1032.6,280.5 M1032.8,516.0 L1032.8,276.9 M1033.0,516.0 L1033.0,273.9 M1033.2,516.0 L1033.2,271.5 M1033.4,516.0
+ L1033.4,269.6 M1033.5,516.0 L1033.5,268.0 M1033.7,516.0 L1033.7,266.8 M1033.9,516.0 L1033.9,265.8 M1034.1,516.0
+ L1034.1,265.2 M1034.3,516.0 L1034.3,264.9 M1034.4,516.0 L1034.4,264.8 M1034.6,516.0 L1034.6,265.0 M1034.8,516.0
+ L1034.8,265.4 M1035.0,516.0 L1035.0,266.2 M1035.2,516.0 L1035.2,267.2 M1035.3,516.0 L1035.3,268.5 M1035.5,516.0
+ L1035.5,270.2 M1035.7,516.0 L1035.7,272.2 M1035.9,516.0 L1035.9,274.8 M1036.1,516.0 L1036.1,277.8 M1036.2,516.0
+ L1036.2,281.5 M1036.4,516.0 L1036.4,286.1 M1036.6,516.0 L1036.6,291.9 M1036.8,516.0 L1036.8,299.6 M1037.0,516.0
+ L1037.0,310.6 M1037.1,516.0 L1037.1,329.6 M1037.3,516.0 M1037.5,516.0 L1037.5,329.7 M1037.7,516.0 L1037.7,310.8
+ M1037.9,516.0 L1037.9,299.9 M1038.1,516.0 L1038.1,292.3 M1038.2,516.0 L1038.2,286.6 M1038.4,516.0 L1038.4,282.1
+ M1038.6,516.0 L1038.6,278.5 M1038.8,516.0 L1038.8,275.6 M1039.0,516.0 L1039.0,273.2 M1039.1,516.0 L1039.1,271.2
+ M1039.3,516.0 L1039.3,269.6 M1039.5,516.0 L1039.5,268.4 M1039.7,516.0 L1039.7,267.5 M1039.9,516.0 L1039.9,266.9
+ M1040.0,516.0 L1040.0,266.5 M1040.2,516.0 L1040.2,266.4 M1040.4,516.0 L1040.4,266.6 M1040.6,516.0 L1040.6,267.1
+ M1040.8,516.0 L1040.8,267.8 M1040.9,516.0 L1040.9,268.8 M1041.1,516.0 L1041.1,270.1 M1041.3,516.0 L1041.3,271.8
+ M1041.5,516.0 L1041.5,273.9 M1041.7,516.0 L1041.7,276.4 M1041.8,516.0 L1041.8,279.4 M1042.0,516.0 L1042.0,283.1
+ M1042.2,516.0 L1042.2,287.7 '/> <path stroke='rgb(222, 125, 0)' d='M1042.4,516.0 L1042.4,293.5 M1042.6,516.0 L1042.6,301.2 M1042.7,516.0 L1042.7,312.2 M1042.9,516.0 L1042.9,331.2
+ M1043.1,516.0 M1043.3,516.0 L1043.3,331.3 M1043.5,516.0 L1043.5,312.4 M1043.6,516.0 L1043.6,301.5 M1043.8,516.0
+ L1043.8,293.9 M1044.0,516.0 L1044.0,288.2 M1044.2,516.0 L1044.2,283.7 M1044.4,516.0 L1044.4,280.1 M1044.5,516.0
+ L1044.5,277.2 M1044.7,516.0 L1044.7,274.7 M1044.9,516.0 L1044.9,272.8 M1045.1,516.0 L1045.1,271.2 M1045.3,516.0
+ L1045.3,270.0 M1045.4,516.0 L1045.4,269.0 M1045.6,516.0 L1045.6,268.4 M1045.8,516.0 L1045.8,268.1 M1046.0,516.0
+ L1046.0,268.0 M1046.2,516.0 L1046.2,268.2 M1046.4,516.0 L1046.4,268.6 M1046.5,516.0 L1046.5,269.3 M1046.7,516.0
+ L1046.7,270.3 M1046.9,516.0 L1046.9,271.7 M1047.1,516.0 L1047.1,273.3 M1047.3,516.0 L1047.3,275.4 M1047.4,516.0
+ L1047.4,277.9 M1047.6,516.0 L1047.6,281.0 M1047.8,516.0 L1047.8,284.7 M1048.0,516.0 L1048.0,289.2 M1048.2,516.0
+ L1048.2,295.0 M1048.3,516.0 L1048.3,302.7 M1048.5,516.0 L1048.5,313.7 M1048.7,516.0 L1048.7,332.7 M1048.9,516.0
+ M1049.1,516.0 L1049.1,332.8 M1049.2,516.0 L1049.2,313.9 M1049.4,516.0 L1049.4,303.0 M1049.6,516.0 L1049.6,295.4
+ M1049.8,516.0 L1049.8,289.7 M1050.0,516.0 L1050.0,285.2 M1050.1,516.0 L1050.1,281.6 M1050.3,516.0 L1050.3,278.6
+ M1050.5,516.0 L1050.5,276.2 M1050.7,516.0 L1050.7,274.3 M1050.9,516.0 L1050.9,272.7 M1051.0,516.0 L1051.0,271.5
+ M1051.2,516.0 L1051.2,270.5 M1051.4,516.0 L1051.4,269.9 M1051.6,516.0 L1051.6,269.5 M1051.8,516.0 L1051.8,269.4
+ M1051.9,516.0 L1051.9,269.6 M1052.1,516.0 L1052.1,270.1 M1052.3,516.0 L1052.3,270.8 M1052.5,516.0 L1052.5,271.8
+ M1052.7,516.0 L1052.7,273.1 M1052.8,516.0 L1052.8,274.8 M1053.0,516.0 L1053.0,276.9 M1053.2,516.0 L1053.2,279.4
+ M1053.4,516.0 L1053.4,282.4 M1053.6,516.0 L1053.6,286.1 M1053.7,516.0 L1053.7,290.7 M1053.9,516.0 L1053.9,296.5
+ M1054.1,516.0 L1054.1,304.1 M1054.3,516.0 L1054.3,315.2 M1054.5,516.0 L1054.5,334.2 M1054.7,516.0 M1054.8,516.0
+ L1054.8,334.3 M1055.0,516.0 L1055.0,315.3 M1055.2,516.0 L1055.2,304.4 M1055.4,516.0 L1055.4,296.8 M1055.6,516.0
+ L1055.6,291.1 M1055.7,516.0 L1055.7,286.6 M1055.9,516.0 L1055.9,283.0 M1056.1,516.0 L1056.1,280.1 M1056.3,516.0
+ L1056.3,277.7 M1056.5,516.0 L1056.5,275.7 M1056.6,516.0 L1056.6,274.1 M1056.8,516.0 L1056.8,272.9 M1057.0,516.0
+ L1057.0,271.9 M1057.2,516.0 L1057.2,271.3 M1057.4,516.0 L1057.4,270.9 M1057.5,516.0 L1057.5,270.9 M1057.7,516.0
+ L1057.7,271.0 M1057.9,516.0 L1057.9,271.5 M1058.1,516.0 L1058.1,272.2 M1058.3,516.0 L1058.3,273.2 M1058.4,516.0
+ L1058.4,274.5 M1058.6,516.0 L1058.6,276.2 M1058.8,516.0 L1058.8,278.3 M1059.0,516.0 L1059.0,280.8 M1059.2,516.0
+ L1059.2,283.8 M1059.3,516.0 L1059.3,287.5 M1059.5,516.0 L1059.5,292.1 M1059.7,516.0 L1059.7,297.9 M1059.9,516.0
+ L1059.9,305.5 M1060.1,516.0 L1060.1,316.5 M1060.2,516.0 L1060.2,335.6 M1060.4,516.0 M1060.6,516.0 L1060.6,335.6
+ M1060.8,516.0 L1060.8,316.7 M1061.0,516.0 L1061.0,305.8 M1061.1,516.0 L1061.1,298.2 M1061.3,516.0 L1061.3,292.5
+ M1061.5,516.0 L1061.5,288.0 M1061.7,516.0 L1061.7,284.4 M1061.9,516.0 L1061.9,281.4 M1062.0,516.0 L1062.0,279.0
+ M1062.2,516.0 L1062.2,277.0 M1062.4,516.0 L1062.4,275.4 M1062.6,516.0 L1062.6,274.2 M1062.8,516.0 L1062.8,273.3
+ M1063.0,516.0 L1063.0,272.6 M1063.1,516.0 L1063.1,272.3 M1063.3,516.0 L1063.3,272.2 M1063.5,516.0 L1063.5,272.4
+ M1063.7,516.0 L1063.7,272.8 M1063.9,516.0 L1063.9,273.5 M1064.0,516.0 L1064.0,274.5 M1064.2,516.0 L1064.2,275.9
+ M1064.4,516.0 L1064.4,277.5 M1064.6,516.0 L1064.6,279.6 M1064.8,516.0 L1064.8,282.1 M1064.9,516.0 L1064.9,285.1
+ M1065.1,516.0 L1065.1,288.8 M1065.3,516.0 L1065.3,293.4 M1065.5,516.0 L1065.5,299.2 M1065.7,516.0 L1065.7,306.8
+ M1065.8,516.0 L1065.8,317.8 M1066.0,516.0 L1066.0,336.9 M1066.2,516.0 M1066.4,516.0 L1066.4,336.9 M1066.6,516.0
+ L1066.6,318.0 M1066.7,516.0 L1066.7,307.1 M1066.9,516.0 L1066.9,299.5 M1067.1,516.0 L1067.1,293.8 M1067.3,516.0
+ L1067.3,289.3 M1067.5,516.0 L1067.5,285.7 M1067.6,516.0 L1067.6,282.7 M1067.8,516.0 L1067.8,280.3 M1068.0,516.0
+ L1068.0,278.3 M1068.2,516.0 L1068.2,276.7 M1068.4,516.0 L1068.4,275.5 M1068.5,516.0 L1068.5,274.6 M1068.7,516.0
+ L1068.7,273.9 M1068.9,516.0 L1068.9,273.6 M1069.1,516.0 L1069.1,273.5 M1069.3,516.0 L1069.3,273.6 M1069.4,516.0
+ L1069.4,274.1 M1069.6,516.0 L1069.6,274.8 M1069.8,516.0 L1069.8,275.8 M1070.0,516.0 L1070.0,277.1 M1070.2,516.0
+ L1070.2,278.8 M1070.3,516.0 L1070.3,280.8 M1070.5,516.0 L1070.5,283.3 M1070.7,516.0 L1070.7,286.4 M1070.9,516.0
+ L1070.9,290.1 M1071.1,516.0 L1071.1,294.6 M1071.3,516.0 L1071.3,300.4 M1071.4,516.0 L1071.4,308.1 M1071.6,516.0
+ L1071.6,319.1 M1071.8,516.0 L1071.8,338.1 M1072.0,516.0 M1072.2,516.0 L1072.2,338.2 M1072.3,516.0 L1072.3,319.2
+ M1072.5,516.0 L1072.5,308.3 M1072.7,516.0 L1072.7,300.7 M1072.9,516.0 L1072.9,295.0 M1073.1,516.0 L1073.1,290.5
+ M1073.2,516.0 L1073.2,286.9 M1073.4,516.0 L1073.4,283.9 M1073.6,516.0 L1073.6,281.5 M1073.8,516.0 L1073.8,279.6
+ M1074.0,516.0 L1074.0,278.0 M1074.1,516.0 L1074.1,276.7 M1074.3,516.0 L1074.3,275.8 M1074.5,516.0 L1074.5,275.1
+ M1074.7,516.0 L1074.7,274.8 M1074.9,516.0 L1074.9,274.7 M1075.0,516.0 L1075.0,274.9 M1075.2,516.0 L1075.2,275.3
+ M1075.4,516.0 L1075.4,276.0 M1075.6,516.0 L1075.6,277.0 M1075.8,516.0 L1075.8,278.3 M1075.9,516.0 L1075.9,280.0
+ M1076.1,516.0 L1076.1,282.1 M1076.3,516.0 L1076.3,284.5 M1076.5,516.0 L1076.5,287.6 M1076.7,516.0 L1076.7,291.3
+ M1076.8,516.0 L1076.8,295.8 M1077.0,516.0 L1077.0,301.6 M1077.2,516.0 L1077.2,309.3 M1077.4,516.0 L1077.4,320.3
+ M1077.6,516.0 L1077.6,339.3 M1077.7,516.0 M1077.9,516.0 L1077.9,339.4 M1078.1,516.0 L1078.1,320.4 M1078.3,516.0
+ L1078.3,309.5 M1078.5,516.0 L1078.5,301.9 M1078.6,516.0 L1078.6,296.2 M1078.8,516.0 L1078.8,291.7 M1079.0,516.0
+ L1079.0,288.1 M1079.2,516.0 L1079.2,285.1 M1079.4,516.0 L1079.4,282.7 M1079.6,516.0 L1079.6,280.7 M1079.7,516.0
+ L1079.7,279.1 M1079.9,516.0 L1079.9,277.9 M1080.1,516.0 L1080.1,277.0 M1080.3,516.0 L1080.3,276.3 M1080.5,516.0
+ L1080.5,276.0 M1080.6,516.0 L1080.6,275.9 M1080.8,516.0 L1080.8,276.0 M1081.0,516.0 L1081.0,276.5 M1081.2,516.0
+ L1081.2,277.2 M1081.4,516.0 L1081.4,278.2 M1081.5,516.0 L1081.5,279.5 M1081.7,516.0 L1081.7,281.2 M1081.9,516.0
+ L1081.9,283.2 M1082.1,516.0 L1082.1,285.7 M1082.3,516.0 L1082.3,288.7 M1082.4,516.0 L1082.4,292.4 M1082.6,516.0
+ L1082.6,297.0 M1082.8,516.0 L1082.8,302.8 M1083.0,516.0 L1083.0,310.4 M1083.2,516.0 L1083.2,321.4 M1083.3,516.0
+ L1083.3,340.5 M1083.5,516.0 M1083.7,516.0 L1083.7,340.5 M1083.9,516.0 L1083.9,321.6 M1084.1,516.0 L1084.1,310.7
+ M1084.2,516.0 L1084.2,303.1 M1084.4,516.0 L1084.4,297.3 M1084.6,516.0 L1084.6,292.9 M1084.8,516.0 L1084.8,289.2
+ M1085.0,516.0 L1085.0,286.3 M1085.1,516.0 L1085.1,283.8 M1085.3,516.0 L1085.3,281.9 M1085.5,516.0 L1085.5,280.3
+ M1085.7,516.0 L1085.7,279.0 M1085.9,516.0 L1085.9,278.1 M1086.0,516.0 L1086.0,277.5 M1086.2,516.0 L1086.2,277.1
+ M1086.4,516.0 L1086.4,277.0 M1086.6,516.0 L1086.6,277.2 M1086.8,516.0 L1086.8,277.6 M1086.9,516.0 L1086.9,278.3
+ M1087.1,516.0 L1087.1,279.3 M1087.3,516.0 L1087.3,280.6 M1087.5,516.0 L1087.5,282.3 M1087.7,516.0 L1087.7,284.3
+ M1087.9,516.0 L1087.9,286.8 M1088.0,516.0 L1088.0,289.8 M1088.2,516.0 L1088.2,293.5 M1088.4,516.0 L1088.4,298.1
+ M1088.6,516.0 L1088.6,303.9 M1088.8,516.0 L1088.8,311.5 M1088.9,516.0 L1088.9,322.5 M1089.1,516.0 L1089.1,341.6
+ M1089.3,516.0 '/> <path stroke='rgb(222, 125, 0)' d='M1089.5,516.0 L1089.5,341.6 M1089.7,516.0 L1089.7,322.7 M1089.8,516.0 L1089.8,311.8 M1090.0,516.0 L1090.0,304.2
+ M1090.2,516.0 L1090.2,298.4 M1090.4,516.0 L1090.4,293.9 M1090.6,516.0 L1090.6,290.3 M1090.7,516.0 L1090.7,287.4
+ M1090.9,516.0 L1090.9,284.9 M1091.1,516.0 L1091.1,283.0 M1091.3,516.0 L1091.3,281.4 M1091.5,516.0 L1091.5,280.1
+ M1091.6,516.0 L1091.6,279.2 M1091.8,516.0 L1091.8,278.5 M1092.0,516.0 L1092.0,278.2 M1092.2,516.0 L1092.2,278.1
+ M1092.4,516.0 L1092.4,278.2 M1092.5,516.0 L1092.5,278.7 M1092.7,516.0 L1092.7,279.4 M1092.9,516.0 L1092.9,280.4
+ M1093.1,516.0 L1093.1,281.7 M1093.3,516.0 L1093.3,283.4 M1093.4,516.0 L1093.4,285.4 M1093.6,516.0 L1093.6,287.9
+ M1093.8,516.0 L1093.8,290.9 M1094.0,516.0 L1094.0,294.6 M1094.2,516.0 L1094.2,299.2 M1094.3,516.0 L1094.3,305.0
+ M1094.5,516.0 L1094.5,312.6 M1094.7,516.0 L1094.7,323.6 M1094.9,516.0 L1094.9,342.6 M1095.1,516.0 M1095.2,516.0
+ L1095.2,342.7 M1095.4,516.0 L1095.4,323.7 M1095.6,516.0 L1095.6,312.8 M1095.8,516.0 L1095.8,305.2 M1096.0,516.0
+ L1096.0,299.5 M1096.2,516.0 L1096.2,295.0 M1096.3,516.0 L1096.3,291.4 M1096.5,516.0 L1096.5,288.4 M1096.7,516.0
+ L1096.7,286.0 M1096.9,516.0 L1096.9,284.0 M1097.1,516.0 L1097.1,282.4 M1097.2,516.0 L1097.2,281.2 M1097.4,516.0
+ L1097.4,280.2 M1097.6,516.0 L1097.6,279.6 M1097.8,516.0 L1097.8,279.2 M1098.0,516.0 L1098.0,279.1 M1098.1,516.0
+ L1098.1,279.3 M1098.3,516.0 L1098.3,279.7 M1098.5,516.0 L1098.5,280.4 M1098.7,516.0 L1098.7,281.4 M1098.9,516.0
+ L1098.9,282.7 M1099.0,516.0 L1099.0,284.4 M1099.2,516.0 L1099.2,286.4 M1099.4,516.0 L1099.4,288.9 M1099.6,516.0
+ L1099.6,291.9 M1099.8,516.0 L1099.8,295.6 M1099.9,516.0 L1099.9,300.2 M1100.1,516.0 L1100.1,306.0 M1100.3,516.0
+ L1100.3,313.6 M1100.5,516.0 L1100.5,324.6 M1100.7,516.0 L1100.7,343.7 M1100.8,516.0 M1101.0,516.0 L1101.0,343.7
+ M1101.2,516.0 L1101.2,324.8 M1101.4,516.0 L1101.4,313.8 M1101.6,516.0 L1101.6,306.2 M1101.7,516.0 L1101.7,300.5
+ M1101.9,516.0 L1101.9,296.0 M1102.1,516.0 L1102.1,292.4 M1102.3,516.0 L1102.3,289.4 M1102.5,516.0 L1102.5,287.0
+ M1102.6,516.0 L1102.6,285.0 M1102.8,516.0 L1102.8,283.4 M1103.0,516.0 L1103.0,282.2 M1103.2,516.0 L1103.2,281.2
+ M1103.4,516.0 L1103.4,280.6 M1103.5,516.0 L1103.5,280.2 M1103.7,516.0 L1103.7,280.1 M1103.9,516.0 L1103.9,280.3
+ M1104.1,516.0 L1104.1,280.7 M1104.3,516.0 L1104.3,281.4 M1104.4,516.0 L1104.4,282.4 M1104.6,516.0 L1104.6,283.7
+ M1104.8,516.0 L1104.8,285.4 M1105.0,516.0 L1105.0,287.4 M1105.2,516.0 L1105.2,289.9 M1105.4,516.0 L1105.4,292.9
+ M1105.5,516.0 L1105.5,296.6 M1105.7,516.0 L1105.7,301.2 M1105.9,516.0 L1105.9,307.0 M1106.1,516.0 L1106.1,314.6
+ M1106.3,516.0 L1106.3,325.6 M1106.4,516.0 L1106.4,344.6 M1106.6,516.0 M1106.8,516.0 L1106.8,344.7 M1107.0,516.0
+ L1107.0,325.7 M1107.2,516.0 L1107.2,314.8 M1107.3,516.0 L1107.3,307.2 M1107.5,516.0 L1107.5,301.5 M1107.7,516.0
+ L1107.7,297.0 M1107.9,516.0 L1107.9,293.4 M1108.1,516.0 L1108.1,290.4 M1108.2,516.0 L1108.2,288.0 M1108.4,516.0
+ L1108.4,286.0 M1108.6,516.0 L1108.6,284.4 M1108.8,516.0 L1108.8,283.1 M1109.0,516.0 L1109.0,282.2 M1109.1,516.0
+ L1109.1,281.6 M1109.3,516.0 L1109.3,281.2 M1109.5,516.0 L1109.5,281.1 M1109.7,516.0 L1109.7,281.2 M1109.9,516.0
+ L1109.9,281.7 M1110.0,516.0 L1110.0,282.4 M1110.2,516.0 L1110.2,283.4 M1110.4,516.0 L1110.4,284.7 M1110.6,516.0
+ L1110.6,286.4 M1110.8,516.0 L1110.8,288.4 M1110.9,516.0 L1110.9,290.9 M1111.1,516.0 L1111.1,293.9 M1111.3,516.0
+ L1111.3,297.6 M1111.5,516.0 L1111.5,302.2 M1111.7,516.0 L1111.7,307.9 M1111.8,516.0 L1111.8,315.6 M1112.0,516.0
+ L1112.0,326.6 M1112.2,516.0 L1112.2,345.6 M1112.4,516.0 M1112.6,516.0 L1112.6,345.6 M1112.7,516.0 L1112.7,326.7
+ M1112.9,516.0 L1112.9,315.8 M1113.1,516.0 L1113.1,308.2 M1113.3,516.0 L1113.3,302.4 M1113.5,516.0 L1113.5,297.9
+ M1113.7,516.0 L1113.7,294.3 M1113.8,516.0 L1113.8,291.3 M1114.0,516.0 L1114.0,288.9 M1114.2,516.0 L1114.2,286.9
+ M1114.4,516.0 L1114.4,285.3 M1114.6,516.0 L1114.6,284.1 M1114.7,516.0 L1114.7,283.1 M1114.9,516.0 L1114.9,282.5
+ M1115.1,516.0 L1115.1,282.1 M1115.3,516.0 L1115.3,282.0 M1115.5,516.0 L1115.5,282.2 M1115.6,516.0 L1115.6,282.6
+ M1115.8,516.0 L1115.8,283.3 M1116.0,516.0 L1116.0,284.3 M1116.2,516.0 L1116.2,285.6 M1116.4,516.0 L1116.4,287.3
+ M1116.5,516.0 L1116.5,289.3 M1116.7,516.0 L1116.7,291.8 M1116.9,516.0 L1116.9,294.8 M1117.1,516.0 L1117.1,298.5
+ M1117.3,516.0 L1117.3,303.1 M1117.4,516.0 L1117.4,308.9 M1117.6,516.0 L1117.6,316.5 M1117.8,516.0 L1117.8,327.5
+ M1118.0,516.0 L1118.0,346.5 M1118.2,516.0 M1118.3,516.0 L1118.3,346.6 M1118.5,516.0 L1118.5,327.6 M1118.7,516.0
+ L1118.7,316.7 M1118.9,516.0 L1118.9,309.1 M1119.1,516.0 L1119.1,303.4 M1119.2,516.0 L1119.2,298.9 M1119.4,516.0
+ L1119.4,295.2 M1119.6,516.0 L1119.6,292.3 M1119.8,516.0 L1119.8,289.8 M1120.0,516.0 L1120.0,287.9 M1120.1,516.0
+ L1120.1,286.3 M1120.3,516.0 L1120.3,285.0 M1120.5,516.0 L1120.5,284.1 M1120.7,516.0 L1120.7,283.4 M1120.9,516.0
+ L1120.9,283.0 M1121.0,516.0 L1121.0,282.9 M1121.2,516.0 L1121.2,283.1 M1121.4,516.0 L1121.4,283.5 M1121.6,516.0
+ L1121.6,284.2 M1121.8,516.0 L1121.8,285.2 M1122.0,516.0 L1122.0,286.5 M1122.1,516.0 L1122.1,288.2 M1122.3,516.0
+ L1122.3,290.2 M1122.5,516.0 L1122.5,292.7 M1122.7,516.0 L1122.7,295.7 M1122.9,516.0 L1122.9,299.4 M1123.0,516.0
+ L1123.0,304.0 M1123.2,516.0 L1123.2,309.8 M1123.4,516.0 L1123.4,317.4 M1123.6,516.0 L1123.6,328.4 M1123.8,516.0
+ L1123.8,347.4 M1123.9,516.0 M1124.1,516.0 L1124.1,347.5 M1124.3,516.0 L1124.3,328.5 M1124.5,516.0 L1124.5,317.6
+ M1124.7,516.0 L1124.7,310.0 M1124.8,516.0 L1124.8,304.3 M1125.0,516.0 L1125.0,299.7 M1125.2,516.0 L1125.2,296.1
+ M1125.4,516.0 L1125.4,293.1 M1125.6,516.0 L1125.6,290.7 M1125.7,516.0 L1125.7,288.7 M1125.9,516.0 L1125.9,287.1
+ M1126.1,516.0 L1126.1,285.9 M1126.3,516.0 L1126.3,284.9 M1126.5,516.0 L1126.5,284.3 M1126.6,516.0 L1126.6,283.9
+ M1126.8,516.0 L1126.8,283.8 M1127.0,516.0 L1127.0,284.0 M1127.2,516.0 L1127.2,284.4 M1127.4,516.0 L1127.4,285.1
+ M1127.5,516.0 L1127.5,286.1 M1127.7,516.0 L1127.7,287.4 M1127.9,516.0 L1127.9,289.1 M1128.1,516.0 L1128.1,291.1
+ M1128.3,516.0 L1128.3,293.6 M1128.4,516.0 L1128.4,296.6 M1128.6,516.0 L1128.6,300.3 M1128.8,516.0 L1128.8,304.8
+ M1129.0,516.0 L1129.0,310.6 M1129.2,516.0 L1129.2,318.3 M1129.3,516.0 L1129.3,329.3 M1129.5,516.0 L1129.5,348.3
+ M1129.7,516.0 M1129.9,516.0 L1129.9,348.3 M1130.1,516.0 L1130.1,329.4 M1130.3,516.0 L1130.3,318.4 M1130.4,516.0
+ L1130.4,310.8 M1130.6,516.0 L1130.6,305.1 M1130.8,516.0 L1130.8,300.6 M1131.0,516.0 L1131.0,297.0 M1131.2,516.0
+ L1131.2,294.0 M1131.3,516.0 L1131.3,291.6 M1131.5,516.0 L1131.5,289.6 M1131.7,516.0 L1131.7,288.0 M1131.9,516.0
+ L1131.9,286.7 M1132.1,516.0 L1132.1,285.8 M1132.2,516.0 L1132.2,285.1 M1132.4,516.0 L1132.4,284.8 M1132.6,516.0
+ L1132.6,284.7 M1132.8,516.0 L1132.8,284.8 M1133.0,516.0 L1133.0,285.2 M1133.1,516.0 L1133.1,286.0 M1133.3,516.0
+ L1133.3,286.9 M1133.5,516.0 L1133.5,288.3 M1133.7,516.0 L1133.7,289.9 M1133.9,516.0 L1133.9,291.9 M1134.0,516.0
+ L1134.0,294.4 M1134.2,516.0 L1134.2,297.4 M1134.4,516.0 L1134.4,301.1 M1134.6,516.0 L1134.6,305.7 M1134.8,516.0
+ L1134.8,311.5 M1134.9,516.0 L1134.9,319.1 M1135.1,516.0 L1135.1,330.1 M1135.3,516.0 L1135.3,349.1 M1135.5,516.0
+ M1135.7,516.0 L1135.7,349.2 M1135.8,516.0 L1135.8,330.2 M1136.0,516.0 L1136.0,319.3 M1136.2,516.0 L1136.2,311.7
+ M1136.4,516.0 L1136.4,305.9 '/> <path stroke='rgb(222, 125, 0)' d='M1136.6,516.0 L1136.6,301.4 M1136.7,516.0 L1136.7,297.8 M1136.9,516.0 L1136.9,294.8 M1137.1,516.0 L1137.1,292.4
+ M1137.3,516.0 L1137.3,290.4 M1137.5,516.0 L1137.5,288.8 M1137.6,516.0 L1137.6,287.6 M1137.8,516.0 L1137.8,286.6
+ M1138.0,516.0 L1138.0,286.0 M1138.2,516.0 L1138.2,285.6 M1138.4,516.0 L1138.4,285.5 M1138.6,516.0 L1138.6,285.6
+ M1138.7,516.0 L1138.7,286.1 M1138.9,516.0 L1138.9,286.8 M1139.1,516.0 L1139.1,287.8 M1139.3,516.0 L1139.3,289.1
+ M1139.5,516.0 L1139.5,290.7 M1139.6,516.0 L1139.6,292.8 M1139.8,516.0 L1139.8,295.2 M1140.0,516.0 L1140.0,298.3
+ M1140.2,516.0 L1140.2,302.0 M1140.4,516.0 L1140.4,306.5 M1140.5,516.0 L1140.5,312.3 M1140.7,516.0 L1140.7,319.9
+ M1140.9,516.0 L1140.9,330.9 M1141.1,516.0 L1141.1,349.9 M1141.3,516.0 M1141.4,516.0 L1141.4,350.0 M1141.6,516.0
+ L1141.6,331.0 M1141.8,516.0 L1141.8,320.1 M1142.0,516.0 L1142.0,312.5 M1142.2,516.0 L1142.2,306.8 M1142.3,516.0
+ L1142.3,302.3 M1142.5,516.0 L1142.5,298.6 M1142.7,516.0 L1142.7,295.6 M1142.9,516.0 L1142.9,293.2 M1143.1,516.0
+ L1143.1,291.2 M1143.2,516.0 L1143.2,289.6 M1143.4,516.0 L1143.4,288.4 M1143.6,516.0 L1143.6,287.4 M1143.8,516.0
+ L1143.8,286.8 M1144.0,516.0 L1144.0,286.4 M1144.1,516.0 L1144.1,286.3 M1144.3,516.0 L1144.3,286.4 M1144.5,516.0
+ L1144.5,286.9 M1144.7,516.0 L1144.7,287.6 M1144.9,516.0 L1144.9,288.6 M1145.0,516.0 L1145.0,289.9 M1145.2,516.0
+ L1145.2,291.5 M1145.4,516.0 L1145.4,293.6 M1145.6,516.0 L1145.6,296.0 M1145.8,516.0 L1145.8,299.1 M1145.9,516.0
+ L1145.9,302.7 M1146.1,516.0 L1146.1,307.3 M1146.3,516.0 L1146.3,313.1 M1146.5,516.0 L1146.5,320.7 M1146.7,516.0
+ L1146.7,331.7 M1146.9,516.0 L1146.9,350.7 M1147.0,516.0 M1147.2,516.0 L1147.2,350.8 M1147.4,516.0 L1147.4,331.8
+ M1147.6,516.0 L1147.6,320.9 M1147.8,516.0 L1147.8,313.3 M1147.9,516.0 L1147.9,307.5 M1148.1,516.0 L1148.1,303.0
+ M1148.3,516.0 L1148.3,299.4 M1148.5,516.0 L1148.5,296.4 M1148.7,516.0 L1148.7,294.0 M1148.8,516.0 L1148.8,292.0
+ M1149.0,516.0 L1149.0,290.4 M1149.2,516.0 L1149.2,289.2 M1149.4,516.0 L1149.4,288.2 M1149.6,516.0 L1149.6,287.6
+ M1149.7,516.0 L1149.7,287.2 M1149.9,516.0 L1149.9,287.1 M1150.1,516.0 L1150.1,287.2 M1150.3,516.0 L1150.3,287.7
+ M1150.5,516.0 L1150.5,288.4 M1150.6,516.0 L1150.6,289.3 M1150.8,516.0 L1150.8,290.7 M1151.0,516.0 L1151.0,292.3
+ M1151.2,516.0 L1151.2,294.3 M1151.4,516.0 L1151.4,296.8 M1151.5,516.0 L1151.5,299.8 M1151.7,516.0 L1151.7,303.5
+ M1151.9,516.0 L1151.9,308.1 M1152.1,516.0 L1152.1,313.9 M1152.3,516.0 L1152.3,321.5 M1152.4,516.0 L1152.4,332.5
+ M1152.6,516.0 L1152.6,351.5 M1152.8,516.0 M1153.0,516.0 L1153.0,351.5 M1153.2,516.0 L1153.2,332.6 M1153.3,516.0
+ L1153.3,321.6 M1153.5,516.0 L1153.5,314.0 M1153.7,516.0 L1153.7,308.3 M1153.9,516.0 L1153.9,303.8 M1154.1,516.0
+ L1154.1,300.2 M1154.2,516.0 L1154.2,297.2 M1154.4,516.0 L1154.4,294.8 M1154.6,516.0 L1154.6,292.8 M1154.8,516.0
+ L1154.8,291.2 M1155.0,516.0 L1155.0,289.9 M1155.2,516.0 L1155.2,289.0 M1155.3,516.0 L1155.3,288.3 M1155.5,516.0
+ L1155.5,287.9 M1155.7,516.0 L1155.7,287.8 M1155.9,516.0 L1155.9,288.0 M1156.1,516.0 L1156.1,288.4 M1156.2,516.0
+ L1156.2,289.1 M1156.4,516.0 L1156.4,290.1 M1156.6,516.0 L1156.6,291.4 M1156.8,516.0 L1156.8,293.1 M1157.0,516.0
+ L1157.0,295.1 M1157.1,516.0 L1157.1,297.6 M1157.3,516.0 L1157.3,300.6 M1157.5,516.0 L1157.5,304.3 M1157.7,516.0
+ L1157.7,308.8 M1157.9,516.0 L1157.9,314.6 M1158.0,516.0 L1158.0,322.2 M1158.2,516.0 L1158.2,333.2 M1158.4,516.0
+ L1158.4,352.2 M1158.6,516.0 M1158.8,516.0 L1158.8,352.3 M1158.9,516.0 L1158.9,333.3 M1159.1,516.0 L1159.1,322.4
+ M1159.3,516.0 L1159.3,314.8 M1159.5,516.0 L1159.5,309.1 M1159.7,516.0 L1159.7,304.6 M1159.8,516.0 L1159.8,300.9
+ M1160.0,516.0 L1160.0,297.9 M1160.2,516.0 L1160.2,295.5 M1160.4,516.0 L1160.4,293.5 M1160.6,516.0 L1160.6,291.9
+ M1160.7,516.0 L1160.7,290.7 M1160.9,516.0 L1160.9,289.7 M1161.1,516.0 L1161.1,289.1 M1161.3,516.0 L1161.3,288.7
+ M1161.5,516.0 L1161.5,288.6 M1161.6,516.0 L1161.6,288.7 M1161.8,516.0 L1161.8,289.1 M1162.0,516.0 L1162.0,289.8
+ M1162.2,516.0 L1162.2,290.8 M1162.4,516.0 L1162.4,292.1 M1162.5,516.0 L1162.5,293.8 M1162.7,516.0 L1162.7,295.8
+ M1162.9,516.0 L1162.9,298.3 M1163.1,516.0 L1163.1,301.3 M1163.3,516.0 L1163.3,305.0 M1163.5,516.0 L1163.5,309.6
+ M1163.6,516.0 L1163.6,315.3 M1163.8,516.0 L1163.8,323.0 M1164.0,516.0 L1164.0,334.0 M1164.2,516.0 L1164.2,353.0
+ M1164.4,516.0 M1164.5,516.0 L1164.5,353.0 M1164.7,516.0 L1164.7,334.1 M1164.9,516.0 L1164.9,323.1 M1165.1,516.0
+ L1165.1,315.5 M1165.3,516.0 L1165.3,309.8 M1165.4,516.0 L1165.4,305.3 M1165.6,516.0 L1165.6,301.6 M1165.8,516.0
+ L1165.8,298.7 M1166.0,516.0 L1166.0,296.2 M1166.2,516.0 L1166.2,294.2 M1166.3,516.0 L1166.3,292.6 M1166.5,516.0
+ L1166.5,291.4 M1166.7,516.0 L1166.7,290.4 M1166.9,516.0 L1166.9,289.8 M1167.1,516.0 L1167.1,289.4 M1167.2,516.0
+ L1167.2,289.3 M1167.4,516.0 L1167.4,289.4 M1167.6,516.0 L1167.6,289.9 M1167.8,516.0 L1167.8,290.6 M1168.0,516.0
+ L1168.0,291.6 M1168.1,516.0 L1168.1,292.9 M1168.3,516.0 L1168.3,294.5 M1168.5,516.0 L1168.5,296.5 M1168.7,516.0
+ L1168.7,299.0 M1168.9,516.0 L1168.9,302.0 M1169.0,516.0 L1169.0,305.7 M1169.2,516.0 L1169.2,310.3 M1169.4,516.0
+ L1169.4,316.0 M1169.6,516.0 L1169.6,323.7 M1169.8,516.0 L1169.8,334.7 M1169.9,516.0 L1169.9,353.7 M1170.1,516.0
+ M1170.3,516.0 L1170.3,353.7 M1170.5,516.0 L1170.5,334.8 M1170.7,516.0 L1170.7,323.8 M1170.8,516.0 L1170.8,316.2
+ M1171.0,516.0 L1171.0,310.5 M1171.2,516.0 L1171.2,306.0 M1171.4,516.0 L1171.4,302.3 M1171.6,516.0 L1171.6,299.4
+ M1171.8,516.0 L1171.8,296.9 M1171.9,516.0 L1171.9,294.9 M1172.1,516.0 L1172.1,293.3 M1172.3,516.0 L1172.3,292.1
+ M1172.5,516.0 L1172.5,291.1 M1172.7,516.0 L1172.7,290.5 M1172.8,516.0 L1172.8,290.1 M1173.0,516.0 L1173.0,290.0
+ M1173.2,516.0 L1173.2,290.1 M1173.4,516.0 L1173.4,290.6 M1173.6,516.0 L1173.6,291.3 M1173.7,516.0 L1173.7,292.3
+ M1173.9,516.0 L1173.9,293.6 M1174.1,516.0 L1174.1,295.2 M1174.3,516.0 L1174.3,297.2 M1174.5,516.0 L1174.5,299.7
+ M1174.6,516.0 L1174.6,302.7 M1174.8,516.0 L1174.8,306.4 M1175.0,516.0 L1175.0,311.0 M1175.2,516.0 L1175.2,316.7
+ M1175.4,516.0 L1175.4,324.4 M1175.5,516.0 L1175.5,335.4 M1175.7,516.0 L1175.7,354.4 M1175.9,516.0 '/></g>
+ </g>
+ <g id="gnuplot_plot_2b" ><title>gnuplot_plot_2b</title>
+<g fill="none" color="black" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,516.0 L1175.9,516.0 '/></g>
+ </g>
+<g fill="none" color="#FFFFFF" stroke="rgb( 0, 0, 0)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(916.1,506.6)" stroke="none" fill="rgb(0,0,0)" font-family="Microsoft Sans Serif:Bold" font-size="10.00" text-anchor="start">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >B = 1.368</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 38, 38, 38)' d='M714.0,516.0 L1175.9,516.0 M714.0,84.1 L1175.9,84.1 M714.0,516.0 L714.0,84.1 M1175.9,516.0 L1175.9,84.1
+ '/></g>
+<g fill="none" color="black" stroke="rgb( 38, 38, 38)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+</g>
+</svg>
+
diff --git a/chapter04/win_hann.svg b/chapter04/win_hann.svg
new file mode 100644
index 0000000..e85deec
--- /dev/null
+++ b/chapter04/win_hann.svg
@@ -0,0 +1,1596 @@
+<?xml version="1.0" encoding="windows-1252" standalone="no"?>
+<svg
+ viewBox="0 0 1200 600"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+>
+
+<title>Window function and its Fourier transform &#8211; Hann</title>
+<desc>Produced by GNUPLOT 5.2 patchlevel 6 </desc>
+
+<g id="gnuplot_canvas">
+
+<rect x="0" y="0" width="1200" height="600" fill="#ffffff"/>
+<defs>
+
+ <circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
+ <path id='gpPt0' stroke-width='0.179' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
+ <path id='gpPt1' stroke-width='0.179' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
+ <path id='gpPt2' stroke-width='0.179' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
+ <rect id='gpPt3' stroke-width='0.179' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
+ <rect id='gpPt4' stroke-width='0.179' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
+ <circle id='gpPt5' stroke-width='0.179' stroke='currentColor' cx='0' cy='0' r='1'/>
+ <use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
+ <path id='gpPt7' stroke-width='0.179' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
+ <use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
+ <use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
+ <use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
+ <use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
+ <use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
+ <path id='gpPt13' stroke-width='0.179' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
+ <use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
+ <filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
+ <feFlood flood-color='#FFFFFF' flood-opacity='1' result='bgnd'/>
+ <feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
+ </filter>
+ <filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
+ <feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
+ <feComposite in='SourceGraphic' in2='grey' operator='atop'/>
+ </filter>
+</defs>
+<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g stroke='none' shape-rendering='crispEdges'>
+ <polygon fill = 'rgb(255, 255, 255)' points = '96.0,516.0 557.8,516.0 557.8,84.2 96.0,84.2 '/>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,516.0 L557.9,516.0 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,516.0 L111.6,516.0 M557.9,516.0 L542.3,516.0 '/> <g transform="translate(85.5,522.5)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,474.9 L557.9,474.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,474.9 L111.6,474.9 M557.9,474.9 L542.3,474.9 '/> <g transform="translate(85.5,481.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.1</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,433.7 L557.9,433.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,433.7 L111.6,433.7 M557.9,433.7 L542.3,433.7 '/> <g transform="translate(85.5,440.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.2</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,392.6 L557.9,392.6 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,392.6 L111.6,392.6 M557.9,392.6 L542.3,392.6 '/> <g transform="translate(85.5,399.1)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.3</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,351.5 L557.9,351.5 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,351.5 L111.6,351.5 M557.9,351.5 L542.3,351.5 '/> <g transform="translate(85.5,358.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.4</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,310.3 L557.9,310.3 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,310.3 L111.6,310.3 M557.9,310.3 L542.3,310.3 '/> <g transform="translate(85.5,316.8)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.5</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,269.2 L557.9,269.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,269.2 L111.6,269.2 M557.9,269.2 L542.3,269.2 '/> <g transform="translate(85.5,275.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.6</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,228.1 L557.9,228.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,228.1 L111.6,228.1 M557.9,228.1 L542.3,228.1 '/> <g transform="translate(85.5,234.6)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.7</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,186.9 L557.9,186.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,186.9 L111.6,186.9 M557.9,186.9 L542.3,186.9 '/> <g transform="translate(85.5,193.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.8</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,145.8 L557.9,145.8 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,145.8 L111.6,145.8 M557.9,145.8 L542.3,145.8 '/> <g transform="translate(85.5,152.3)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.9</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,104.7 L557.9,104.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,104.7 L111.6,104.7 M557.9,104.7 L542.3,104.7 '/> <g transform="translate(85.5,111.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >1</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,516.0 L96.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,516.0 L96.0,500.4 M96.0,84.1 L96.0,99.7 '/> <g transform="translate(96.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" > 0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M153.7,516.0 L153.7,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M153.7,516.0 L153.7,500.4 M153.7,84.1 L153.7,99.7 '/> <g transform="translate(153.7,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M211.5,516.0 L211.5,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M211.5,516.0 L211.5,500.4 M211.5,84.1 L211.5,99.7 '/> <g transform="translate(211.5,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M269.2,516.0 L269.2,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M269.2,516.0 L269.2,500.4 M269.2,84.1 L269.2,99.7 '/> <g transform="translate(269.2,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M327.0,516.0 L327.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M327.0,516.0 L327.0,500.4 M327.0,84.1 L327.0,99.7 '/> <g transform="translate(327.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M384.7,516.0 L384.7,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M384.7,516.0 L384.7,500.4 M384.7,84.1 L384.7,99.7 '/> <g transform="translate(384.7,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M442.4,516.0 L442.4,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M442.4,516.0 L442.4,500.4 M442.4,84.1 L442.4,99.7 '/> <g transform="translate(442.4,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M500.2,516.0 L500.2,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M500.2,516.0 L500.2,500.4 M500.2,84.1 L500.2,99.7 '/> <g transform="translate(500.2,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M557.9,516.0 L557.9,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M557.9,516.0 L557.9,500.4 M557.9,84.1 L557.9,99.7 '/> <g transform="translate(557.9,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text xml:space="preserve"><tspan font-family="Microsoft Sans Serif" font-weight="bold" xml:space="preserve"> N</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(40.6,300.1) rotate(-90)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >amplitude</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(326.9,581.3)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >samples</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(326.9,39.9)" stroke="none" fill="rgb(0,0,0)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >Hann window</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+ <g id="gnuplot_plot_1a" ><title>gnuplot_plot_1a</title>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g stroke='none' shape-rendering='crispEdges'>
+ <polygon fill = 'rgb( 0, 102, 153)' points = '96.0,516.0 96.0,516.0 96.9,516.0 97.8,515.9 98.7,515.9 99.6,515.8 100.5,515.6 101.4,515.4 102.3,515.2 103.2,515.0 104.1,514.7 105.0,514.5 105.9,514.1 106.8,513.8 107.7,513.4 108.6,513.0
+109.5,512.5 110.4,512.0 111.3,511.5 112.2,511.0 113.1,510.4 114.0,509.8 114.9,509.2 115.8,508.5 116.7,507.9 117.7,507.1 118.6,506.4 119.5,505.6 120.4,504.8 121.3,504.0 122.2,503.1 123.1,502.2
+124.0,501.3 124.9,500.3 125.8,499.4 126.7,498.4 127.6,497.3 128.5,496.3 129.4,495.2 130.3,494.0 131.2,492.9 132.1,491.7 133.0,490.5 133.9,489.3 134.8,488.0 135.7,486.7 136.6,485.4 137.5,484.1
+138.4,482.7 139.3,481.3 140.2,479.9 141.1,478.5 142.0,477.0 142.9,475.5 143.8,474.0 144.7,472.5 145.6,470.9 146.5,469.3 147.4,467.7 148.3,466.1 149.2,464.4 150.1,462.7 151.0,461.0 151.9,459.3
+152.8,457.5 153.7,455.8 154.6,454.0 155.5,452.1 156.4,450.3 157.3,448.5 158.2,446.6 159.2,444.7 160.1,442.7 161.0,440.8 161.9,438.8 162.8,436.9 163.7,434.9 164.6,432.8 165.5,430.8 166.4,428.8
+167.3,426.7 168.2,424.6 169.1,422.5 170.0,420.4 170.9,418.2 171.8,416.1 172.7,413.9 173.6,411.7 174.5,409.5 175.4,407.3 176.3,405.1 177.2,402.8 178.1,400.5 179.0,398.3 179.9,396.0 180.8,393.7
+181.7,391.4 182.6,389.0 183.5,386.7 184.4,384.4 185.3,382.0 186.2,379.6 187.1,377.2 188.0,374.8 188.9,372.4 189.8,370.0 190.7,367.6 191.6,365.2 192.5,362.8 193.4,360.3 194.3,357.9 195.2,355.4
+196.1,352.9 197.0,350.5 197.9,348.0 198.8,345.5 199.7,343.0 200.6,340.5 201.6,338.0 202.5,335.5 203.4,333.0 204.3,330.5 205.2,328.0 206.1,325.5 207.0,322.9 207.9,320.4 208.8,317.9 209.7,315.4
+210.6,312.9 211.5,310.3 212.4,307.8 213.3,305.3 214.2,302.8 215.1,300.2 216.0,297.7 216.9,295.2 217.8,292.7 218.7,290.2 219.6,287.7 220.5,285.2 221.4,282.7 222.3,280.2 223.2,277.7 224.1,275.2
+225.0,272.7 225.9,270.2 226.8,267.7 227.7,265.3 228.6,262.8 229.5,260.4 230.4,257.9 231.3,255.5 232.2,253.1 233.1,250.6 234.0,248.2 234.9,245.8 235.8,243.4 236.7,241.0 237.6,238.7 238.5,236.3
+239.4,234.0 240.3,231.6 241.2,229.3 242.1,227.0 243.1,224.7 244.0,222.4 244.9,220.1 245.8,217.9 246.7,215.6 247.6,213.4 248.5,211.2 249.4,209.0 250.3,206.8 251.2,204.6 252.1,202.4 253.0,200.3
+253.9,198.2 254.8,196.1 255.7,194.0 256.6,191.9 257.5,189.9 258.4,187.8 259.3,185.8 260.2,183.8 261.1,181.8 262.0,179.9 262.9,177.9 263.8,176.0 264.7,174.1 265.6,172.2 266.5,170.4 267.4,168.5
+268.3,166.7 269.2,164.9 270.1,163.1 271.0,161.4 271.9,159.7 272.8,157.9 273.7,156.3 274.6,154.6 275.5,153.0 276.4,151.4 277.3,149.8 278.2,148.2 279.1,146.7 280.0,145.1 280.9,143.6 281.8,142.2
+282.7,140.7 283.6,139.3 284.5,137.9 285.5,136.6 286.4,135.2 287.3,133.9 288.2,132.6 289.1,131.4 290.0,130.2 290.9,129.0 291.8,127.8 292.7,126.6 293.6,125.5 294.5,124.4 295.4,123.3 296.3,122.3
+297.2,121.3 298.1,120.3 299.0,119.4 299.9,118.4 300.8,117.6 301.7,116.7 302.6,115.9 303.5,115.0 304.4,114.3 305.3,113.5 306.2,112.8 307.1,112.1 308.0,111.5 308.9,110.8 309.8,110.2 310.7,109.7
+311.6,109.1 312.5,108.6 313.4,108.1 314.3,107.7 315.2,107.3 316.1,106.9 317.0,106.5 317.9,106.2 318.8,105.9 319.7,105.7 320.6,105.4 321.5,105.2 322.4,105.1 323.3,104.9 324.2,104.8 325.1,104.7
+326.0,104.7 327.0,104.7 327.9,104.7 328.8,104.7 329.7,104.8 330.6,104.9 331.5,105.1 332.4,105.2 333.3,105.4 334.2,105.7 335.1,105.9 336.0,106.2 336.9,106.5 337.8,106.9 338.7,107.3 339.6,107.7
+340.5,108.1 341.4,108.6 342.3,109.1 343.2,109.7 344.1,110.2 345.0,110.8 345.9,111.5 346.8,112.1 347.7,112.8 348.6,113.5 349.5,114.3 350.4,115.0 351.3,115.9 352.2,116.7 353.1,117.6 354.0,118.4
+354.9,119.4 355.8,120.3 356.7,121.3 357.6,122.3 358.5,123.3 359.4,124.4 360.3,125.5 361.2,126.6 362.1,127.8 363.0,129.0 363.9,130.2 364.8,131.4 365.7,132.6 366.6,133.9 367.5,135.2 368.4,136.6
+369.4,137.9 370.3,139.3 371.2,140.7 372.1,142.2 373.0,143.6 373.9,145.1 374.8,146.7 375.7,148.2 376.6,149.8 377.5,151.4 378.4,153.0 379.3,154.6 380.2,156.3 381.1,157.9 382.0,159.7 382.9,161.4
+383.8,163.1 384.7,164.9 385.6,166.7 386.5,168.5 387.4,170.4 388.3,172.2 389.2,174.1 390.1,176.0 391.0,177.9 391.9,179.9 392.8,181.8 393.7,183.8 394.6,185.8 395.5,187.8 396.4,189.9 397.3,191.9
+398.2,194.0 399.1,196.1 400.0,198.2 400.9,200.3 401.8,202.4 402.7,204.6 403.6,206.8 404.5,209.0 405.4,211.2 406.3,213.4 407.2,215.6 408.1,217.9 409.0,220.1 409.9,222.4 410.8,224.7 411.8,227.0
+412.7,229.3 413.6,231.6 414.5,234.0 415.4,236.3 416.3,238.7 417.2,241.0 418.1,243.4 419.0,245.8 419.9,248.2 420.8,250.6 421.7,253.1 422.6,255.5 423.5,257.9 424.4,260.4 425.3,262.8 426.2,265.3
+427.1,267.7 428.0,270.2 428.9,272.7 429.8,275.2 430.7,277.7 431.6,280.2 432.5,282.7 433.4,285.2 434.3,287.7 435.2,290.2 436.1,292.7 437.0,295.2 437.9,297.7 438.8,300.2 439.7,302.8 440.6,305.3
+441.5,307.8 442.4,310.3 443.3,312.9 444.2,315.4 445.1,317.9 446.0,320.4 446.9,322.9 447.8,325.5 448.7,328.0 449.6,330.5 450.5,333.0 451.4,335.5 452.3,338.0 453.3,340.5 454.2,343.0 455.1,345.5
+456.0,348.0 456.9,350.5 457.8,352.9 458.7,355.4 459.6,357.9 460.5,360.3 461.4,362.8 462.3,365.2 463.2,367.6 464.1,370.0 465.0,372.4 465.9,374.8 466.8,377.2 467.7,379.6 468.6,382.0 469.5,384.4
+470.4,386.7 471.3,389.0 472.2,391.4 473.1,393.7 474.0,396.0 474.9,398.3 475.8,400.5 476.7,402.8 477.6,405.1 478.5,407.3 479.4,409.5 480.3,411.7 481.2,413.9 482.1,416.1 483.0,418.2 483.9,420.4
+484.8,422.5 485.7,424.6 486.6,426.7 487.5,428.8 488.4,430.8 489.3,432.8 490.2,434.9 491.1,436.9 492.0,438.8 492.9,440.8 493.8,442.7 494.7,444.7 495.7,446.6 496.6,448.5 497.5,450.3 498.4,452.1
+499.3,454.0 500.2,455.8 501.1,457.5 502.0,459.3 502.9,461.0 503.8,462.7 504.7,464.4 505.6,466.1 506.5,467.7 507.4,469.3 508.3,470.9 509.2,472.5 510.1,474.0 511.0,475.5 511.9,477.0 512.8,478.5
+513.7,479.9 514.6,481.3 515.5,482.7 516.4,484.1 517.3,485.4 518.2,486.7 519.1,488.0 520.0,489.3 520.9,490.5 521.8,491.7 522.7,492.9 523.6,494.0 524.5,495.2 525.4,496.3 526.3,497.3 527.2,498.4
+528.1,499.4 529.0,500.3 529.9,501.3 530.8,502.2 531.7,503.1 532.6,504.0 533.5,504.8 534.4,505.6 535.3,506.4 536.2,507.1 537.2,507.9 538.1,508.5 539.0,509.2 539.9,509.8 540.8,510.4 541.7,511.0
+542.6,511.5 543.5,512.0 544.4,512.5 545.3,513.0 546.2,513.4 547.1,513.8 548.0,514.1 548.9,514.5 549.8,514.7 550.7,515.0 551.6,515.2 552.5,515.4 553.4,515.6 554.3,515.8 555.2,515.9 556.1,515.9
+557.0,516.0 557.9,516.0 557.9,516.0 557.0,516.0 556.1,516.0 555.2,516.0 554.3,516.0 553.4,516.0 552.5,516.0 551.6,516.0 550.7,516.0 549.8,516.0 548.9,516.0 548.0,516.0 547.1,516.0 546.2,516.0
+545.3,516.0 544.4,516.0 543.5,516.0 542.6,516.0 541.7,516.0 540.8,516.0 539.9,516.0 539.0,516.0 538.1,516.0 537.2,516.0 536.2,516.0 535.3,516.0 534.4,516.0 533.5,516.0 532.6,516.0 531.7,516.0
+530.8,516.0 529.9,516.0 529.0,516.0 528.1,516.0 527.2,516.0 526.3,516.0 525.4,516.0 524.5,516.0 523.6,516.0 522.7,516.0 521.8,516.0 520.9,516.0 520.0,516.0 519.1,516.0 518.2,516.0 517.3,516.0
+516.4,516.0 515.5,516.0 514.6,516.0 513.7,516.0 512.8,516.0 511.9,516.0 511.0,516.0 510.1,516.0 509.2,516.0 508.3,516.0 507.4,516.0 506.5,516.0 505.6,516.0 504.7,516.0 503.8,516.0 502.9,516.0
+502.0,516.0 501.1,516.0 500.2,516.0 499.3,516.0 498.4,516.0 497.5,516.0 496.6,516.0 495.7,516.0 494.7,516.0 493.8,516.0 492.9,516.0 492.0,516.0 491.1,516.0 490.2,516.0 489.3,516.0 488.4,516.0
+487.5,516.0 486.6,516.0 485.7,516.0 484.8,516.0 483.9,516.0 483.0,516.0 482.1,516.0 481.2,516.0 480.3,516.0 479.4,516.0 478.5,516.0 477.6,516.0 476.7,516.0 475.8,516.0 474.9,516.0 474.0,516.0
+473.1,516.0 472.2,516.0 471.3,516.0 470.4,516.0 469.5,516.0 468.6,516.0 467.7,516.0 466.8,516.0 465.9,516.0 465.0,516.0 464.1,516.0 463.2,516.0 462.3,516.0 461.4,516.0 460.5,516.0 459.6,516.0
+458.7,516.0 457.8,516.0 456.9,516.0 456.0,516.0 455.1,516.0 454.2,516.0 453.3,516.0 452.3,516.0 451.4,516.0 450.5,516.0 449.6,516.0 448.7,516.0 447.8,516.0 446.9,516.0 446.0,516.0 445.1,516.0
+444.2,516.0 443.3,516.0 442.4,516.0 441.5,516.0 440.6,516.0 439.7,516.0 438.8,516.0 437.9,516.0 437.0,516.0 436.1,516.0 435.2,516.0 434.3,516.0 433.4,516.0 432.5,516.0 431.6,516.0 430.7,516.0
+429.8,516.0 428.9,516.0 428.0,516.0 427.1,516.0 426.2,516.0 425.3,516.0 424.4,516.0 423.5,516.0 422.6,516.0 421.7,516.0 420.8,516.0 419.9,516.0 419.0,516.0 418.1,516.0 417.2,516.0 416.3,516.0
+415.4,516.0 414.5,516.0 413.6,516.0 412.7,516.0 411.8,516.0 410.8,516.0 409.9,516.0 409.0,516.0 408.1,516.0 407.2,516.0 406.3,516.0 405.4,516.0 404.5,516.0 403.6,516.0 402.7,516.0 401.8,516.0
+400.9,516.0 400.0,516.0 399.1,516.0 398.2,516.0 397.3,516.0 396.4,516.0 395.5,516.0 394.6,516.0 393.7,516.0 392.8,516.0 391.9,516.0 391.0,516.0 390.1,516.0 389.2,516.0 388.3,516.0 387.4,516.0
+386.5,516.0 385.6,516.0 384.7,516.0 383.8,516.0 382.9,516.0 382.0,516.0 381.1,516.0 380.2,516.0 379.3,516.0 378.4,516.0 377.5,516.0 376.6,516.0 375.7,516.0 374.8,516.0 373.9,516.0 373.0,516.0
+372.1,516.0 371.2,516.0 370.3,516.0 369.4,516.0 368.4,516.0 367.5,516.0 366.6,516.0 365.7,516.0 364.8,516.0 363.9,516.0 363.0,516.0 362.1,516.0 361.2,516.0 360.3,516.0 359.4,516.0 358.5,516.0
+357.6,516.0 356.7,516.0 355.8,516.0 354.9,516.0 354.0,516.0 353.1,516.0 352.2,516.0 351.3,516.0 350.4,516.0 349.5,516.0 348.6,516.0 347.7,516.0 346.8,516.0 345.9,516.0 345.0,516.0 344.1,516.0
+343.2,516.0 342.3,516.0 341.4,516.0 340.5,516.0 339.6,516.0 338.7,516.0 337.8,516.0 336.9,516.0 336.0,516.0 335.1,516.0 334.2,516.0 333.3,516.0 332.4,516.0 331.5,516.0 330.6,516.0 329.7,516.0
+328.8,516.0 327.9,516.0 327.0,516.0 326.0,516.0 325.1,516.0 324.2,516.0 323.3,516.0 322.4,516.0 321.5,516.0 320.6,516.0 319.7,516.0 318.8,516.0 317.9,516.0 317.0,516.0 316.1,516.0 315.2,516.0
+314.3,516.0 313.4,516.0 312.5,516.0 311.6,516.0 310.7,516.0 309.8,516.0 308.9,516.0 308.0,516.0 307.1,516.0 306.2,516.0 305.3,516.0 304.4,516.0 303.5,516.0 302.6,516.0 301.7,516.0 300.8,516.0
+299.9,516.0 299.0,516.0 298.1,516.0 297.2,516.0 296.3,516.0 295.4,516.0 294.5,516.0 293.6,516.0 292.7,516.0 291.8,516.0 290.9,516.0 290.0,516.0 289.1,516.0 288.2,516.0 287.3,516.0 286.4,516.0
+285.5,516.0 284.5,516.0 283.6,516.0 282.7,516.0 281.8,516.0 280.9,516.0 280.0,516.0 279.1,516.0 278.2,516.0 277.3,516.0 276.4,516.0 275.5,516.0 274.6,516.0 273.7,516.0 272.8,516.0 271.9,516.0
+271.0,516.0 270.1,516.0 269.2,516.0 268.3,516.0 267.4,516.0 266.5,516.0 265.6,516.0 264.7,516.0 263.8,516.0 262.9,516.0 262.0,516.0 261.1,516.0 260.2,516.0 259.3,516.0 258.4,516.0 257.5,516.0
+256.6,516.0 255.7,516.0 254.8,516.0 253.9,516.0 253.0,516.0 252.1,516.0 251.2,516.0 250.3,516.0 249.4,516.0 248.5,516.0 247.6,516.0 246.7,516.0 245.8,516.0 244.9,516.0 244.0,516.0 243.1,516.0
+242.1,516.0 241.2,516.0 240.3,516.0 239.4,516.0 238.5,516.0 237.6,516.0 236.7,516.0 235.8,516.0 234.9,516.0 234.0,516.0 233.1,516.0 232.2,516.0 231.3,516.0 230.4,516.0 229.5,516.0 228.6,516.0
+227.7,516.0 226.8,516.0 225.9,516.0 225.0,516.0 224.1,516.0 223.2,516.0 222.3,516.0 221.4,516.0 220.5,516.0 219.6,516.0 218.7,516.0 217.8,516.0 216.9,516.0 216.0,516.0 215.1,516.0 214.2,516.0
+213.3,516.0 212.4,516.0 211.5,516.0 210.6,516.0 209.7,516.0 208.8,516.0 207.9,516.0 207.0,516.0 206.1,516.0 205.2,516.0 204.3,516.0 203.4,516.0 202.5,516.0 201.6,516.0 200.6,516.0 199.7,516.0
+198.8,516.0 197.9,516.0 197.0,516.0 196.1,516.0 195.2,516.0 194.3,516.0 193.4,516.0 192.5,516.0 191.6,516.0 190.7,516.0 189.8,516.0 188.9,516.0 188.0,516.0 187.1,516.0 186.2,516.0 185.3,516.0
+184.4,516.0 183.5,516.0 182.6,516.0 181.7,516.0 180.8,516.0 179.9,516.0 179.0,516.0 178.1,516.0 177.2,516.0 176.3,516.0 175.4,516.0 174.5,516.0 173.6,516.0 172.7,516.0 171.8,516.0 170.9,516.0
+170.0,516.0 169.1,516.0 168.2,516.0 167.3,516.0 166.4,516.0 165.5,516.0 164.6,516.0 163.7,516.0 162.8,516.0 161.9,516.0 161.0,516.0 160.1,516.0 159.2,516.0 158.2,516.0 157.3,516.0 156.4,516.0
+155.5,516.0 154.6,516.0 153.7,516.0 152.8,516.0 151.9,516.0 151.0,516.0 150.1,516.0 149.2,516.0 148.3,516.0 147.4,516.0 146.5,516.0 145.6,516.0 144.7,516.0 143.8,516.0 142.9,516.0 142.0,516.0
+141.1,516.0 140.2,516.0 139.3,516.0 138.4,516.0 137.5,516.0 136.6,516.0 135.7,516.0 134.8,516.0 133.9,516.0 133.0,516.0 132.1,516.0 131.2,516.0 130.3,516.0 129.4,516.0 128.5,516.0 127.6,516.0
+126.7,516.0 125.8,516.0 124.9,516.0 124.0,516.0 123.1,516.0 122.2,516.0 121.3,516.0 120.4,516.0 119.5,516.0 118.6,516.0 117.7,516.0 116.7,516.0 115.8,516.0 114.9,516.0 114.0,516.0 113.1,516.0
+112.2,516.0 111.3,516.0 110.4,516.0 109.5,516.0 108.6,516.0 107.7,516.0 106.8,516.0 105.9,516.0 105.0,516.0 104.1,516.0 103.2,516.0 102.3,516.0 101.4,516.0 100.5,516.0 99.6,516.0 98.7,516.0
+97.8,516.0 96.9,516.0 96.0,516.0 96.0,516.0 '/>
+ </g>
+ <path stroke='rgb( 0, 102, 153)' d='M96.0,516.0 L96.9,516.0 L97.8,515.9 L98.7,515.9 L99.6,515.8 L100.5,515.6 L101.4,515.4 L102.3,515.2
+ L103.2,515.0 L104.1,514.7 L105.0,514.5 L105.9,514.1 L106.8,513.8 L107.7,513.4 L108.6,513.0 L109.5,512.5
+ L110.4,512.0 L111.3,511.5 L112.2,511.0 L113.1,510.4 L114.0,509.8 L114.9,509.2 L115.8,508.5 L116.7,507.9
+ L117.7,507.1 L118.6,506.4 L119.5,505.6 L120.4,504.8 L121.3,504.0 L122.2,503.1 L123.1,502.2 L124.0,501.3
+ L124.9,500.3 L125.8,499.4 L126.7,498.4 L127.6,497.3 L128.5,496.3 L129.4,495.2 L130.3,494.0 L131.2,492.9
+ L132.1,491.7 L133.0,490.5 L133.9,489.3 L134.8,488.0 L135.7,486.7 L136.6,485.4 L137.5,484.1 L138.4,482.7
+ L139.3,481.3 L140.2,479.9 L141.1,478.5 L142.0,477.0 L142.9,475.5 L143.8,474.0 L144.7,472.5 L145.6,470.9
+ L146.5,469.3 L147.4,467.7 L148.3,466.1 L149.2,464.4 L150.1,462.7 L151.0,461.0 L151.9,459.3 L152.8,457.5
+ L153.7,455.8 L154.6,454.0 L155.5,452.1 L156.4,450.3 L157.3,448.5 L158.2,446.6 L159.2,444.7 L160.1,442.7
+ L161.0,440.8 L161.9,438.8 L162.8,436.9 L163.7,434.9 L164.6,432.8 L165.5,430.8 L166.4,428.8 L167.3,426.7
+ L168.2,424.6 L169.1,422.5 L170.0,420.4 L170.9,418.2 L171.8,416.1 L172.7,413.9 L173.6,411.7 L174.5,409.5
+ L175.4,407.3 L176.3,405.1 L177.2,402.8 L178.1,400.5 L179.0,398.3 L179.9,396.0 L180.8,393.7 L181.7,391.4
+ L182.6,389.0 L183.5,386.7 L184.4,384.4 L185.3,382.0 L186.2,379.6 L187.1,377.2 L188.0,374.8 L188.9,372.4
+ L189.8,370.0 L190.7,367.6 L191.6,365.2 L192.5,362.8 L193.4,360.3 L194.3,357.9 L195.2,355.4 L196.1,352.9
+ L197.0,350.5 L197.9,348.0 L198.8,345.5 L199.7,343.0 L200.6,340.5 L201.6,338.0 L202.5,335.5 L203.4,333.0
+ L204.3,330.5 L205.2,328.0 L206.1,325.5 L207.0,322.9 L207.9,320.4 L208.8,317.9 L209.7,315.4 L210.6,312.9
+ L211.5,310.3 L212.4,307.8 L213.3,305.3 L214.2,302.8 L215.1,300.2 L216.0,297.7 L216.9,295.2 L217.8,292.7
+ L218.7,290.2 L219.6,287.7 L220.5,285.2 L221.4,282.7 L222.3,280.2 L223.2,277.7 L224.1,275.2 L225.0,272.7
+ L225.9,270.2 L226.8,267.7 L227.7,265.3 L228.6,262.8 L229.5,260.4 L230.4,257.9 L231.3,255.5 L232.2,253.1
+ L233.1,250.6 L234.0,248.2 L234.9,245.8 L235.8,243.4 L236.7,241.0 L237.6,238.7 L238.5,236.3 L239.4,234.0
+ L240.3,231.6 L241.2,229.3 L242.1,227.0 L243.1,224.7 L244.0,222.4 L244.9,220.1 L245.8,217.9 L246.7,215.6
+ L247.6,213.4 L248.5,211.2 L249.4,209.0 L250.3,206.8 L251.2,204.6 L252.1,202.4 L253.0,200.3 L253.9,198.2
+ L254.8,196.1 L255.7,194.0 L256.6,191.9 L257.5,189.9 L258.4,187.8 L259.3,185.8 L260.2,183.8 L261.1,181.8
+ L262.0,179.9 L262.9,177.9 L263.8,176.0 L264.7,174.1 L265.6,172.2 L266.5,170.4 L267.4,168.5 L268.3,166.7
+ L269.2,164.9 L270.1,163.1 L271.0,161.4 L271.9,159.7 L272.8,157.9 L273.7,156.3 L274.6,154.6 L275.5,153.0
+ L276.4,151.4 L277.3,149.8 L278.2,148.2 L279.1,146.7 L280.0,145.1 L280.9,143.6 L281.8,142.2 L282.7,140.7
+ L283.6,139.3 L284.5,137.9 L285.5,136.6 L286.4,135.2 L287.3,133.9 L288.2,132.6 L289.1,131.4 L290.0,130.2
+ L290.9,129.0 L291.8,127.8 L292.7,126.6 L293.6,125.5 L294.5,124.4 L295.4,123.3 L296.3,122.3 L297.2,121.3
+ L298.1,120.3 L299.0,119.4 L299.9,118.4 L300.8,117.6 L301.7,116.7 L302.6,115.9 L303.5,115.0 L304.4,114.3
+ L305.3,113.5 L306.2,112.8 L307.1,112.1 L308.0,111.5 L308.9,110.8 L309.8,110.2 L310.7,109.7 L311.6,109.1
+ L312.5,108.6 L313.4,108.1 L314.3,107.7 L315.2,107.3 L316.1,106.9 L317.0,106.5 L317.9,106.2 L318.8,105.9
+ L319.7,105.7 L320.6,105.4 L321.5,105.2 L322.4,105.1 L323.3,104.9 L324.2,104.8 L325.1,104.7 L326.0,104.7
+ L327.0,104.7 L327.9,104.7 L328.8,104.7 L329.7,104.8 L330.6,104.9 L331.5,105.1 L332.4,105.2 L333.3,105.4
+ L334.2,105.7 L335.1,105.9 L336.0,106.2 L336.9,106.5 L337.8,106.9 L338.7,107.3 L339.6,107.7 L340.5,108.1
+ L341.4,108.6 L342.3,109.1 L343.2,109.7 L344.1,110.2 L345.0,110.8 L345.9,111.5 L346.8,112.1 L347.7,112.8
+ L348.6,113.5 L349.5,114.3 L350.4,115.0 L351.3,115.9 L352.2,116.7 L353.1,117.6 L354.0,118.4 L354.9,119.4
+ L355.8,120.3 L356.7,121.3 L357.6,122.3 L358.5,123.3 L359.4,124.4 L360.3,125.5 L361.2,126.6 L362.1,127.8
+ L363.0,129.0 L363.9,130.2 L364.8,131.4 L365.7,132.6 L366.6,133.9 L367.5,135.2 L368.4,136.6 L369.4,137.9
+ L370.3,139.3 L371.2,140.7 L372.1,142.2 L373.0,143.6 L373.9,145.1 L374.8,146.7 L375.7,148.2 L376.6,149.8
+ L377.5,151.4 L378.4,153.0 L379.3,154.6 L380.2,156.3 L381.1,157.9 L382.0,159.7 L382.9,161.4 L383.8,163.1
+ L384.7,164.9 L385.6,166.7 L386.5,168.5 L387.4,170.4 L388.3,172.2 L389.2,174.1 L390.1,176.0 L391.0,177.9
+ L391.9,179.9 L392.8,181.8 L393.7,183.8 L394.6,185.8 L395.5,187.8 L396.4,189.9 L397.3,191.9 L398.2,194.0
+ L399.1,196.1 L400.0,198.2 L400.9,200.3 L401.8,202.4 L402.7,204.6 L403.6,206.8 L404.5,209.0 L405.4,211.2
+ L406.3,213.4 L407.2,215.6 L408.1,217.9 L409.0,220.1 L409.9,222.4 L410.8,224.7 L411.8,227.0 L412.7,229.3
+ L413.6,231.6 L414.5,234.0 L415.4,236.3 L416.3,238.7 L417.2,241.0 L418.1,243.4 L419.0,245.8 L419.9,248.2
+ L420.8,250.6 L421.7,253.1 L422.6,255.5 L423.5,257.9 L424.4,260.4 L425.3,262.8 L426.2,265.3 L427.1,267.7
+ L428.0,270.2 L428.9,272.7 L429.8,275.2 L430.7,277.7 L431.6,280.2 L432.5,282.7 L433.4,285.2 L434.3,287.7
+ L435.2,290.2 L436.1,292.7 L437.0,295.2 L437.9,297.7 L438.8,300.2 L439.7,302.8 L440.6,305.3 L441.5,307.8
+ L442.4,310.3 L443.3,312.9 L444.2,315.4 L445.1,317.9 L446.0,320.4 L446.9,322.9 L447.8,325.5 L448.7,328.0
+ L449.6,330.5 L450.5,333.0 L451.4,335.5 L452.3,338.0 L453.3,340.5 L454.2,343.0 L455.1,345.5 L456.0,348.0
+ L456.9,350.5 L457.8,352.9 L458.7,355.4 L459.6,357.9 L460.5,360.3 L461.4,362.8 L462.3,365.2 L463.2,367.6
+ L464.1,370.0 L465.0,372.4 L465.9,374.8 L466.8,377.2 L467.7,379.6 L468.6,382.0 L469.5,384.4 L470.4,386.7
+ L471.3,389.0 L472.2,391.4 L473.1,393.7 L474.0,396.0 L474.9,398.3 L475.8,400.5 L476.7,402.8 L477.6,405.1
+ L478.5,407.3 L479.4,409.5 L480.3,411.7 L481.2,413.9 L482.1,416.1 L483.0,418.2 L483.9,420.4 L484.8,422.5
+ L485.7,424.6 L486.6,426.7 L487.5,428.8 L488.4,430.8 L489.3,432.8 L490.2,434.9 L491.1,436.9 L492.0,438.8
+ L492.9,440.8 L493.8,442.7 L494.7,444.7 L495.7,446.6 L496.6,448.5 L497.5,450.3 L498.4,452.1 L499.3,454.0
+ L500.2,455.8 L501.1,457.5 L502.0,459.3 L502.9,461.0 L503.8,462.7 L504.7,464.4 L505.6,466.1 L506.5,467.7
+ L507.4,469.3 L508.3,470.9 L509.2,472.5 L510.1,474.0 L511.0,475.5 L511.9,477.0 L512.8,478.5 L513.7,479.9
+ L514.6,481.3 L515.5,482.7 L516.4,484.1 L517.3,485.4 L518.2,486.7 L519.1,488.0 L520.0,489.3 L520.9,490.5
+ L521.8,491.7 L522.7,492.9 L523.6,494.0 L524.5,495.2 L525.4,496.3 L526.3,497.3 L527.2,498.4 L528.1,499.4
+ L529.0,500.3 L529.9,501.3 L530.8,502.2 L531.7,503.1 L532.6,504.0 L533.5,504.8 L534.4,505.6 L535.3,506.4
+ L536.2,507.1 L537.2,507.9 L538.1,508.5 L539.0,509.2 L539.9,509.8 L540.8,510.4 L541.7,511.0 L542.6,511.5
+ L543.5,512.0 L544.4,512.5 L545.3,513.0 L546.2,513.4 L547.1,513.8 L548.0,514.1 L548.9,514.5 L549.8,514.7
+ L550.7,515.0 L551.6,515.2 L552.5,515.4 L553.4,515.6 L554.3,515.8 L555.2,515.9 L556.1,515.9 L557.0,516.0
+ L557.9,516.0 L557.0,516.0 L556.1,516.0 L555.2,516.0 L554.3,516.0 L553.4,516.0 L552.5,516.0 L551.6,516.0
+ L550.7,516.0 L549.8,516.0 L548.9,516.0 L548.0,516.0 L547.1,516.0 L546.2,516.0 L545.3,516.0 L544.4,516.0
+ L543.5,516.0 L542.6,516.0 L541.7,516.0 L540.8,516.0 L539.9,516.0 L539.0,516.0 L538.1,516.0 L537.2,516.0
+ L536.2,516.0 L535.3,516.0 L534.4,516.0 L533.5,516.0 L532.6,516.0 L531.7,516.0 L530.8,516.0 L529.9,516.0
+ L529.0,516.0 L528.1,516.0 L527.2,516.0 L526.3,516.0 L525.4,516.0 L524.5,516.0 L523.6,516.0 L522.7,516.0
+ L521.8,516.0 L520.9,516.0 L520.0,516.0 L519.1,516.0 L518.2,516.0 L517.3,516.0 L516.4,516.0 L515.5,516.0
+ L514.6,516.0 L513.7,516.0 L512.8,516.0 L511.9,516.0 L511.0,516.0 L510.1,516.0 L509.2,516.0 L508.3,516.0
+ L507.4,516.0 L506.5,516.0 L505.6,516.0 L504.7,516.0 L503.8,516.0 L502.9,516.0 L502.0,516.0 L501.1,516.0
+ L500.2,516.0 L499.3,516.0 L498.4,516.0 L497.5,516.0 L496.6,516.0 L495.7,516.0 L494.7,516.0 L493.8,516.0
+ L492.9,516.0 L492.0,516.0 L491.1,516.0 L490.2,516.0 L489.3,516.0 L488.4,516.0 L487.5,516.0 L486.6,516.0
+ L485.7,516.0 L484.8,516.0 L483.9,516.0 L483.0,516.0 L482.1,516.0 L481.2,516.0 L480.3,516.0 L479.4,516.0
+ L478.5,516.0 L477.6,516.0 L476.7,516.0 L475.8,516.0 L474.9,516.0 L474.0,516.0 L473.1,516.0 L472.2,516.0
+ L471.3,516.0 L470.4,516.0 L469.5,516.0 L468.6,516.0 L467.7,516.0 L466.8,516.0 L465.9,516.0 L465.0,516.0
+ L464.1,516.0 L463.2,516.0 L462.3,516.0 L461.4,516.0 L460.5,516.0 L459.6,516.0 L458.7,516.0 L457.8,516.0
+ L456.9,516.0 L456.0,516.0 L455.1,516.0 L454.2,516.0 L453.3,516.0 L452.3,516.0 L451.4,516.0 L450.5,516.0
+ L449.6,516.0 L448.7,516.0 L447.8,516.0 L446.9,516.0 L446.0,516.0 L445.1,516.0 L444.2,516.0 L443.3,516.0
+ L442.4,516.0 L441.5,516.0 L440.6,516.0 L439.7,516.0 L438.8,516.0 L437.9,516.0 L437.0,516.0 L436.1,516.0
+ L435.2,516.0 L434.3,516.0 L433.4,516.0 L432.5,516.0 L431.6,516.0 L430.7,516.0 L429.8,516.0 L428.9,516.0
+ L428.0,516.0 L427.1,516.0 L426.2,516.0 L425.3,516.0 L424.4,516.0 L423.5,516.0 L422.6,516.0 L421.7,516.0
+ L420.8,516.0 L419.9,516.0 L419.0,516.0 L418.1,516.0 L417.2,516.0 L416.3,516.0 L415.4,516.0 L414.5,516.0
+ L413.6,516.0 L412.7,516.0 L411.8,516.0 L410.8,516.0 L409.9,516.0 L409.0,516.0 L408.1,516.0 L407.2,516.0
+ L406.3,516.0 L405.4,516.0 L404.5,516.0 L403.6,516.0 L402.7,516.0 L401.8,516.0 L400.9,516.0 L400.0,516.0
+ L399.1,516.0 L398.2,516.0 L397.3,516.0 L396.4,516.0 L395.5,516.0 L394.6,516.0 L393.7,516.0 L392.8,516.0
+ L391.9,516.0 L391.0,516.0 L390.1,516.0 L389.2,516.0 L388.3,516.0 L387.4,516.0 L386.5,516.0 L385.6,516.0
+ L384.7,516.0 L383.8,516.0 L382.9,516.0 L382.0,516.0 L381.1,516.0 L380.2,516.0 L379.3,516.0 L378.4,516.0
+ L377.5,516.0 L376.6,516.0 L375.7,516.0 L374.8,516.0 L373.9,516.0 L373.0,516.0 L372.1,516.0 L371.2,516.0
+ L370.3,516.0 L369.4,516.0 L368.4,516.0 L367.5,516.0 L366.6,516.0 L365.7,516.0 L364.8,516.0 L363.9,516.0
+ L363.0,516.0 L362.1,516.0 L361.2,516.0 L360.3,516.0 L359.4,516.0 L358.5,516.0 L357.6,516.0 L356.7,516.0
+ L355.8,516.0 L354.9,516.0 L354.0,516.0 L353.1,516.0 L352.2,516.0 L351.3,516.0 L350.4,516.0 L349.5,516.0
+ L348.6,516.0 L347.7,516.0 L346.8,516.0 L345.9,516.0 L345.0,516.0 L344.1,516.0 L343.2,516.0 L342.3,516.0
+ L341.4,516.0 L340.5,516.0 L339.6,516.0 L338.7,516.0 L337.8,516.0 L336.9,516.0 L336.0,516.0 L335.1,516.0
+ L334.2,516.0 L333.3,516.0 L332.4,516.0 L331.5,516.0 L330.6,516.0 L329.7,516.0 L328.8,516.0 L327.9,516.0
+ L327.0,516.0 L326.0,516.0 L325.1,516.0 L324.2,516.0 L323.3,516.0 L322.4,516.0 L321.5,516.0 L320.6,516.0
+ L319.7,516.0 L318.8,516.0 L317.9,516.0 L317.0,516.0 L316.1,516.0 L315.2,516.0 L314.3,516.0 L313.4,516.0
+ L312.5,516.0 L311.6,516.0 L310.7,516.0 L309.8,516.0 L308.9,516.0 L308.0,516.0 L307.1,516.0 L306.2,516.0
+ L305.3,516.0 L304.4,516.0 L303.5,516.0 L302.6,516.0 L301.7,516.0 L300.8,516.0 L299.9,516.0 L299.0,516.0
+ L298.1,516.0 L297.2,516.0 L296.3,516.0 L295.4,516.0 L294.5,516.0 L293.6,516.0 L292.7,516.0 L291.8,516.0
+ L290.9,516.0 L290.0,516.0 L289.1,516.0 L288.2,516.0 L287.3,516.0 L286.4,516.0 L285.5,516.0 L284.5,516.0
+ L283.6,516.0 L282.7,516.0 L281.8,516.0 L280.9,516.0 L280.0,516.0 L279.1,516.0 L278.2,516.0 L277.3,516.0
+ L276.4,516.0 L275.5,516.0 L274.6,516.0 L273.7,516.0 L272.8,516.0 L271.9,516.0 L271.0,516.0 L270.1,516.0
+ L269.2,516.0 L268.3,516.0 L267.4,516.0 L266.5,516.0 L265.6,516.0 L264.7,516.0 L263.8,516.0 L262.9,516.0
+ L262.0,516.0 L261.1,516.0 L260.2,516.0 L259.3,516.0 L258.4,516.0 L257.5,516.0 L256.6,516.0 L255.7,516.0
+ L254.8,516.0 L253.9,516.0 L253.0,516.0 L252.1,516.0 L251.2,516.0 L250.3,516.0 L249.4,516.0 L248.5,516.0
+ L247.6,516.0 L246.7,516.0 L245.8,516.0 L244.9,516.0 L244.0,516.0 L243.1,516.0 L242.1,516.0 L241.2,516.0
+ L240.3,516.0 L239.4,516.0 L238.5,516.0 L237.6,516.0 L236.7,516.0 L235.8,516.0 L234.9,516.0 L234.0,516.0
+ L233.1,516.0 L232.2,516.0 L231.3,516.0 L230.4,516.0 L229.5,516.0 L228.6,516.0 L227.7,516.0 L226.8,516.0
+ L225.9,516.0 L225.0,516.0 L224.1,516.0 L223.2,516.0 L222.3,516.0 L221.4,516.0 L220.5,516.0 L219.6,516.0
+ L218.7,516.0 L217.8,516.0 L216.9,516.0 L216.0,516.0 L215.1,516.0 L214.2,516.0 L213.3,516.0 L212.4,516.0
+ L211.5,516.0 L210.6,516.0 L209.7,516.0 L208.8,516.0 L207.9,516.0 L207.0,516.0 L206.1,516.0 L205.2,516.0
+ L204.3,516.0 L203.4,516.0 L202.5,516.0 L201.6,516.0 L200.6,516.0 L199.7,516.0 L198.8,516.0 L197.9,516.0
+ L197.0,516.0 L196.1,516.0 L195.2,516.0 L194.3,516.0 L193.4,516.0 L192.5,516.0 L191.6,516.0 L190.7,516.0
+ L189.8,516.0 L188.9,516.0 L188.0,516.0 L187.1,516.0 L186.2,516.0 L185.3,516.0 L184.4,516.0 L183.5,516.0
+ L182.6,516.0 L181.7,516.0 L180.8,516.0 L179.9,516.0 L179.0,516.0 L178.1,516.0 L177.2,516.0 L176.3,516.0
+ L175.4,516.0 L174.5,516.0 L173.6,516.0 L172.7,516.0 L171.8,516.0 L170.9,516.0 L170.0,516.0 L169.1,516.0
+ L168.2,516.0 L167.3,516.0 L166.4,516.0 L165.5,516.0 L164.6,516.0 L163.7,516.0 L162.8,516.0 L161.9,516.0
+ L161.0,516.0 L160.1,516.0 L159.2,516.0 L158.2,516.0 L157.3,516.0 L156.4,516.0 L155.5,516.0 L154.6,516.0
+ L153.7,516.0 L152.8,516.0 L151.9,516.0 L151.0,516.0 L150.1,516.0 L149.2,516.0 L148.3,516.0 L147.4,516.0
+ L146.5,516.0 L145.6,516.0 L144.7,516.0 L143.8,516.0 L142.9,516.0 L142.0,516.0 L141.1,516.0 L140.2,516.0
+ L139.3,516.0 L138.4,516.0 L137.5,516.0 L136.6,516.0 L135.7,516.0 L134.8,516.0 L133.9,516.0 L133.0,516.0
+ L132.1,516.0 L131.2,516.0 L130.3,516.0 L129.4,516.0 L128.5,516.0 L127.6,516.0 L126.7,516.0 L125.8,516.0
+ L124.9,516.0 L124.0,516.0 L123.1,516.0 L122.2,516.0 L121.3,516.0 L120.4,516.0 L119.5,516.0 L118.6,516.0
+ L117.7,516.0 L116.7,516.0 L115.8,516.0 L114.9,516.0 L114.0,516.0 L113.1,516.0 L112.2,516.0 L111.3,516.0
+ L110.4,516.0 L109.5,516.0 L108.6,516.0 L107.7,516.0 L106.8,516.0 L105.9,516.0 L105.0,516.0 L104.1,516.0
+ L103.2,516.0 L102.3,516.0 L101.4,516.0 L100.5,516.0 L99.6,516.0 L98.7,516.0 L97.8,516.0 L96.9,516.0
+ L96.0,516.0 '/></g>
+ </g>
+ <g id="gnuplot_plot_2a" ><title>gnuplot_plot_2a</title>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,516.0 L96.9,516.0 L97.8,515.9 L98.7,515.9 L99.6,515.8 L100.5,515.6 L101.4,515.4 L102.3,515.2
+ L103.2,515.0 L104.1,514.7 L105.0,514.5 L105.9,514.1 L106.8,513.8 L107.7,513.4 L108.6,513.0 L109.5,512.5
+ L110.4,512.0 L111.3,511.5 L112.2,511.0 L113.1,510.4 L114.0,509.8 L114.9,509.2 L115.8,508.5 L116.7,507.9
+ L117.7,507.1 L118.6,506.4 L119.5,505.6 L120.4,504.8 L121.3,504.0 L122.2,503.1 L123.1,502.2 L124.0,501.3
+ L124.9,500.3 L125.8,499.4 L126.7,498.4 L127.6,497.3 L128.5,496.3 L129.4,495.2 L130.3,494.0 L131.2,492.9
+ L132.1,491.7 L133.0,490.5 L133.9,489.3 L134.8,488.0 L135.7,486.7 L136.6,485.4 L137.5,484.1 L138.4,482.7
+ L139.3,481.3 L140.2,479.9 L141.1,478.5 L142.0,477.0 L142.9,475.5 L143.8,474.0 L144.7,472.5 L145.6,470.9
+ L146.5,469.3 L147.4,467.7 L148.3,466.1 L149.2,464.4 L150.1,462.7 L151.0,461.0 L151.9,459.3 L152.8,457.5
+ L153.7,455.8 L154.6,454.0 L155.5,452.1 L156.4,450.3 L157.3,448.5 L158.2,446.6 L159.2,444.7 L160.1,442.7
+ L161.0,440.8 L161.9,438.8 L162.8,436.9 L163.7,434.9 L164.6,432.8 L165.5,430.8 L166.4,428.8 L167.3,426.7
+ L168.2,424.6 L169.1,422.5 L170.0,420.4 L170.9,418.2 L171.8,416.1 L172.7,413.9 L173.6,411.7 L174.5,409.5
+ L175.4,407.3 L176.3,405.1 L177.2,402.8 L178.1,400.5 L179.0,398.3 L179.9,396.0 L180.8,393.7 L181.7,391.4
+ L182.6,389.0 L183.5,386.7 L184.4,384.4 L185.3,382.0 L186.2,379.6 L187.1,377.2 L188.0,374.8 L188.9,372.4
+ L189.8,370.0 L190.7,367.6 L191.6,365.2 L192.5,362.8 L193.4,360.3 L194.3,357.9 L195.2,355.4 L196.1,352.9
+ L197.0,350.5 L197.9,348.0 L198.8,345.5 L199.7,343.0 L200.6,340.5 L201.6,338.0 L202.5,335.5 L203.4,333.0
+ L204.3,330.5 L205.2,328.0 L206.1,325.5 L207.0,322.9 L207.9,320.4 L208.8,317.9 L209.7,315.4 L210.6,312.9
+ L211.5,310.3 L212.4,307.8 L213.3,305.3 L214.2,302.8 L215.1,300.2 L216.0,297.7 L216.9,295.2 L217.8,292.7
+ L218.7,290.2 L219.6,287.7 L220.5,285.2 L221.4,282.7 L222.3,280.2 L223.2,277.7 L224.1,275.2 L225.0,272.7
+ L225.9,270.2 L226.8,267.7 L227.7,265.3 L228.6,262.8 L229.5,260.4 L230.4,257.9 L231.3,255.5 L232.2,253.1
+ L233.1,250.6 L234.0,248.2 L234.9,245.8 L235.8,243.4 L236.7,241.0 L237.6,238.7 L238.5,236.3 L239.4,234.0
+ L240.3,231.6 L241.2,229.3 L242.1,227.0 L243.1,224.7 L244.0,222.4 L244.9,220.1 L245.8,217.9 L246.7,215.6
+ L247.6,213.4 L248.5,211.2 L249.4,209.0 L250.3,206.8 L251.2,204.6 L252.1,202.4 L253.0,200.3 L253.9,198.2
+ L254.8,196.1 L255.7,194.0 L256.6,191.9 L257.5,189.9 L258.4,187.8 L259.3,185.8 L260.2,183.8 L261.1,181.8
+ L262.0,179.9 L262.9,177.9 L263.8,176.0 L264.7,174.1 L265.6,172.2 L266.5,170.4 L267.4,168.5 L268.3,166.7
+ L269.2,164.9 L270.1,163.1 L271.0,161.4 L271.9,159.7 L272.8,157.9 L273.7,156.3 L274.6,154.6 L275.5,153.0
+ L276.4,151.4 L277.3,149.8 L278.2,148.2 L279.1,146.7 L280.0,145.1 L280.9,143.6 L281.8,142.2 L282.7,140.7
+ L283.6,139.3 L284.5,137.9 L285.5,136.6 L286.4,135.2 L287.3,133.9 L288.2,132.6 L289.1,131.4 L290.0,130.2
+ L290.9,129.0 L291.8,127.8 L292.7,126.6 L293.6,125.5 L294.5,124.4 L295.4,123.3 L296.3,122.3 L297.2,121.3
+ L298.1,120.3 L299.0,119.4 L299.9,118.4 L300.8,117.6 L301.7,116.7 L302.6,115.9 L303.5,115.0 L304.4,114.3
+ L305.3,113.5 L306.2,112.8 L307.1,112.1 L308.0,111.5 L308.9,110.8 L309.8,110.2 L310.7,109.7 L311.6,109.1
+ L312.5,108.6 L313.4,108.1 L314.3,107.7 L315.2,107.3 L316.1,106.9 L317.0,106.5 L317.9,106.2 L318.8,105.9
+ L319.7,105.7 L320.6,105.4 L321.5,105.2 L322.4,105.1 L323.3,104.9 L324.2,104.8 L325.1,104.7 L326.0,104.7
+ L327.0,104.7 L327.9,104.7 L328.8,104.7 L329.7,104.8 L330.6,104.9 L331.5,105.1 L332.4,105.2 L333.3,105.4
+ L334.2,105.7 L335.1,105.9 L336.0,106.2 L336.9,106.5 L337.8,106.9 L338.7,107.3 L339.6,107.7 L340.5,108.1
+ L341.4,108.6 L342.3,109.1 L343.2,109.7 L344.1,110.2 L345.0,110.8 L345.9,111.5 L346.8,112.1 L347.7,112.8
+ L348.6,113.5 L349.5,114.3 L350.4,115.0 L351.3,115.9 L352.2,116.7 L353.1,117.6 L354.0,118.4 L354.9,119.4
+ L355.8,120.3 L356.7,121.3 L357.6,122.3 L358.5,123.3 L359.4,124.4 L360.3,125.5 L361.2,126.6 L362.1,127.8
+ L363.0,129.0 L363.9,130.2 L364.8,131.4 L365.7,132.6 L366.6,133.9 L367.5,135.2 L368.4,136.6 L369.4,137.9
+ L370.3,139.3 L371.2,140.7 L372.1,142.2 L373.0,143.6 L373.9,145.1 L374.8,146.7 L375.7,148.2 L376.6,149.8
+ L377.5,151.4 L378.4,153.0 L379.3,154.6 L380.2,156.3 L381.1,157.9 L382.0,159.7 L382.9,161.4 L383.8,163.1
+ L384.7,164.9 L385.6,166.7 L386.5,168.5 L387.4,170.4 L388.3,172.2 L389.2,174.1 L390.1,176.0 L391.0,177.9
+ L391.9,179.9 L392.8,181.8 L393.7,183.8 L394.6,185.8 L395.5,187.8 L396.4,189.9 L397.3,191.9 L398.2,194.0
+ L399.1,196.1 L400.0,198.2 L400.9,200.3 L401.8,202.4 L402.7,204.6 L403.6,206.8 L404.5,209.0 L405.4,211.2
+ L406.3,213.4 L407.2,215.6 L408.1,217.9 L409.0,220.1 L409.9,222.4 L410.8,224.7 L411.8,227.0 L412.7,229.3
+ L413.6,231.6 L414.5,234.0 L415.4,236.3 L416.3,238.7 L417.2,241.0 L418.1,243.4 L419.0,245.8 L419.9,248.2
+ L420.8,250.6 L421.7,253.1 L422.6,255.5 L423.5,257.9 L424.4,260.4 L425.3,262.8 L426.2,265.3 L427.1,267.7
+ L428.0,270.2 L428.9,272.7 L429.8,275.2 L430.7,277.7 L431.6,280.2 L432.5,282.7 L433.4,285.2 L434.3,287.7
+ L435.2,290.2 L436.1,292.7 L437.0,295.2 L437.9,297.7 L438.8,300.2 L439.7,302.8 L440.6,305.3 L441.5,307.8
+ L442.4,310.3 L443.3,312.9 L444.2,315.4 L445.1,317.9 L446.0,320.4 L446.9,322.9 L447.8,325.5 L448.7,328.0
+ L449.6,330.5 L450.5,333.0 L451.4,335.5 L452.3,338.0 L453.3,340.5 L454.2,343.0 L455.1,345.5 L456.0,348.0
+ L456.9,350.5 L457.8,352.9 L458.7,355.4 L459.6,357.9 L460.5,360.3 L461.4,362.8 L462.3,365.2 L463.2,367.6
+ L464.1,370.0 L465.0,372.4 L465.9,374.8 L466.8,377.2 L467.7,379.6 L468.6,382.0 L469.5,384.4 L470.4,386.7
+ L471.3,389.0 L472.2,391.4 L473.1,393.7 L474.0,396.0 L474.9,398.3 L475.8,400.5 L476.7,402.8 L477.6,405.1
+ L478.5,407.3 L479.4,409.5 L480.3,411.7 L481.2,413.9 L482.1,416.1 L483.0,418.2 L483.9,420.4 L484.8,422.5
+ L485.7,424.6 L486.6,426.7 L487.5,428.8 L488.4,430.8 L489.3,432.8 L490.2,434.9 L491.1,436.9 L492.0,438.8
+ L492.9,440.8 L493.8,442.7 L494.7,444.7 L495.7,446.6 L496.6,448.5 L497.5,450.3 L498.4,452.1 L499.3,454.0
+ L500.2,455.8 L501.1,457.5 L502.0,459.3 L502.9,461.0 L503.8,462.7 L504.7,464.4 L505.6,466.1 L506.5,467.7
+ L507.4,469.3 L508.3,470.9 L509.2,472.5 L510.1,474.0 L511.0,475.5 L511.9,477.0 L512.8,478.5 L513.7,479.9
+ L514.6,481.3 L515.5,482.7 L516.4,484.1 L517.3,485.4 L518.2,486.7 L519.1,488.0 L520.0,489.3 L520.9,490.5
+ L521.8,491.7 L522.7,492.9 L523.6,494.0 L524.5,495.2 L525.4,496.3 L526.3,497.3 L527.2,498.4 L528.1,499.4
+ L529.0,500.3 L529.9,501.3 L530.8,502.2 L531.7,503.1 L532.6,504.0 L533.5,504.8 L534.4,505.6 L535.3,506.4
+ L536.2,507.1 L537.2,507.9 L538.1,508.5 L539.0,509.2 L539.9,509.8 L540.8,510.4 L541.7,511.0 L542.6,511.5
+ L543.5,512.0 L544.4,512.5 L545.3,513.0 L546.2,513.4 L547.1,513.8 L548.0,514.1 L548.9,514.5 L549.8,514.7
+ L550.7,515.0 L551.6,515.2 L552.5,515.4 L553.4,515.6 L554.3,515.8 L555.2,515.9 L556.1,515.9 L557.0,516.0
+ L557.9,516.0 L557.0,516.0 L556.1,516.0 L555.2,516.0 L554.3,516.0 L553.4,516.0 L552.5,516.0 L551.6,516.0
+ L550.7,516.0 L549.8,516.0 L548.9,516.0 L548.0,516.0 L547.1,516.0 L546.2,516.0 L545.3,516.0 L544.4,516.0
+ L543.5,516.0 L542.6,516.0 L541.7,516.0 L540.8,516.0 L539.9,516.0 L539.0,516.0 L538.1,516.0 L537.2,516.0
+ L536.2,516.0 L535.3,516.0 L534.4,516.0 L533.5,516.0 L532.6,516.0 L531.7,516.0 L530.8,516.0 L529.9,516.0
+ L529.0,516.0 L528.1,516.0 L527.2,516.0 L526.3,516.0 L525.4,516.0 L524.5,516.0 L523.6,516.0 L522.7,516.0
+ L521.8,516.0 L520.9,516.0 L520.0,516.0 L519.1,516.0 L518.2,516.0 L517.3,516.0 L516.4,516.0 L515.5,516.0
+ L514.6,516.0 L513.7,516.0 L512.8,516.0 L511.9,516.0 L511.0,516.0 L510.1,516.0 L509.2,516.0 L508.3,516.0
+ L507.4,516.0 L506.5,516.0 L505.6,516.0 L504.7,516.0 L503.8,516.0 L502.9,516.0 L502.0,516.0 L501.1,516.0
+ L500.2,516.0 L499.3,516.0 L498.4,516.0 L497.5,516.0 L496.6,516.0 L495.7,516.0 L494.7,516.0 L493.8,516.0
+ L492.9,516.0 L492.0,516.0 L491.1,516.0 L490.2,516.0 L489.3,516.0 L488.4,516.0 L487.5,516.0 L486.6,516.0
+ L485.7,516.0 L484.8,516.0 L483.9,516.0 L483.0,516.0 L482.1,516.0 L481.2,516.0 L480.3,516.0 L479.4,516.0
+ L478.5,516.0 L477.6,516.0 L476.7,516.0 L475.8,516.0 L474.9,516.0 L474.0,516.0 L473.1,516.0 L472.2,516.0
+ L471.3,516.0 L470.4,516.0 L469.5,516.0 L468.6,516.0 L467.7,516.0 L466.8,516.0 L465.9,516.0 L465.0,516.0
+ L464.1,516.0 L463.2,516.0 L462.3,516.0 L461.4,516.0 L460.5,516.0 L459.6,516.0 L458.7,516.0 L457.8,516.0
+ L456.9,516.0 L456.0,516.0 L455.1,516.0 L454.2,516.0 L453.3,516.0 L452.3,516.0 L451.4,516.0 L450.5,516.0
+ L449.6,516.0 L448.7,516.0 L447.8,516.0 L446.9,516.0 L446.0,516.0 L445.1,516.0 L444.2,516.0 L443.3,516.0
+ L442.4,516.0 L441.5,516.0 L440.6,516.0 L439.7,516.0 L438.8,516.0 L437.9,516.0 L437.0,516.0 L436.1,516.0
+ L435.2,516.0 L434.3,516.0 L433.4,516.0 L432.5,516.0 L431.6,516.0 L430.7,516.0 L429.8,516.0 L428.9,516.0
+ L428.0,516.0 L427.1,516.0 L426.2,516.0 L425.3,516.0 L424.4,516.0 L423.5,516.0 L422.6,516.0 L421.7,516.0
+ L420.8,516.0 L419.9,516.0 L419.0,516.0 L418.1,516.0 L417.2,516.0 L416.3,516.0 L415.4,516.0 L414.5,516.0
+ L413.6,516.0 L412.7,516.0 L411.8,516.0 L410.8,516.0 L409.9,516.0 L409.0,516.0 L408.1,516.0 L407.2,516.0
+ L406.3,516.0 L405.4,516.0 L404.5,516.0 L403.6,516.0 L402.7,516.0 L401.8,516.0 L400.9,516.0 L400.0,516.0
+ L399.1,516.0 L398.2,516.0 L397.3,516.0 L396.4,516.0 L395.5,516.0 L394.6,516.0 L393.7,516.0 L392.8,516.0
+ L391.9,516.0 L391.0,516.0 L390.1,516.0 L389.2,516.0 L388.3,516.0 L387.4,516.0 L386.5,516.0 L385.6,516.0
+ L384.7,516.0 L383.8,516.0 L382.9,516.0 L382.0,516.0 L381.1,516.0 L380.2,516.0 L379.3,516.0 L378.4,516.0
+ L377.5,516.0 L376.6,516.0 L375.7,516.0 L374.8,516.0 L373.9,516.0 L373.0,516.0 L372.1,516.0 L371.2,516.0
+ L370.3,516.0 L369.4,516.0 L368.4,516.0 L367.5,516.0 L366.6,516.0 L365.7,516.0 L364.8,516.0 L363.9,516.0
+ L363.0,516.0 L362.1,516.0 L361.2,516.0 L360.3,516.0 L359.4,516.0 L358.5,516.0 L357.6,516.0 L356.7,516.0
+ L355.8,516.0 L354.9,516.0 L354.0,516.0 L353.1,516.0 L352.2,516.0 L351.3,516.0 L350.4,516.0 L349.5,516.0
+ L348.6,516.0 L347.7,516.0 L346.8,516.0 L345.9,516.0 L345.0,516.0 L344.1,516.0 L343.2,516.0 L342.3,516.0
+ L341.4,516.0 L340.5,516.0 L339.6,516.0 L338.7,516.0 L337.8,516.0 L336.9,516.0 L336.0,516.0 L335.1,516.0
+ L334.2,516.0 L333.3,516.0 L332.4,516.0 L331.5,516.0 L330.6,516.0 L329.7,516.0 L328.8,516.0 L327.9,516.0
+ L327.0,516.0 L326.0,516.0 L325.1,516.0 L324.2,516.0 L323.3,516.0 L322.4,516.0 L321.5,516.0 L320.6,516.0
+ L319.7,516.0 L318.8,516.0 L317.9,516.0 L317.0,516.0 L316.1,516.0 L315.2,516.0 L314.3,516.0 L313.4,516.0
+ L312.5,516.0 L311.6,516.0 L310.7,516.0 L309.8,516.0 L308.9,516.0 L308.0,516.0 L307.1,516.0 L306.2,516.0
+ L305.3,516.0 L304.4,516.0 L303.5,516.0 L302.6,516.0 L301.7,516.0 L300.8,516.0 L299.9,516.0 L299.0,516.0
+ L298.1,516.0 L297.2,516.0 L296.3,516.0 L295.4,516.0 L294.5,516.0 L293.6,516.0 L292.7,516.0 L291.8,516.0
+ L290.9,516.0 L290.0,516.0 L289.1,516.0 L288.2,516.0 L287.3,516.0 L286.4,516.0 L285.5,516.0 L284.5,516.0
+ L283.6,516.0 L282.7,516.0 L281.8,516.0 L280.9,516.0 L280.0,516.0 L279.1,516.0 L278.2,516.0 L277.3,516.0
+ L276.4,516.0 L275.5,516.0 L274.6,516.0 L273.7,516.0 L272.8,516.0 L271.9,516.0 L271.0,516.0 L270.1,516.0
+ L269.2,516.0 L268.3,516.0 L267.4,516.0 L266.5,516.0 L265.6,516.0 L264.7,516.0 L263.8,516.0 L262.9,516.0
+ L262.0,516.0 L261.1,516.0 L260.2,516.0 L259.3,516.0 L258.4,516.0 L257.5,516.0 L256.6,516.0 L255.7,516.0
+ L254.8,516.0 L253.9,516.0 L253.0,516.0 L252.1,516.0 L251.2,516.0 L250.3,516.0 L249.4,516.0 L248.5,516.0
+ L247.6,516.0 L246.7,516.0 L245.8,516.0 L244.9,516.0 L244.0,516.0 L243.1,516.0 L242.1,516.0 L241.2,516.0
+ L240.3,516.0 L239.4,516.0 L238.5,516.0 L237.6,516.0 L236.7,516.0 L235.8,516.0 L234.9,516.0 L234.0,516.0
+ L233.1,516.0 L232.2,516.0 L231.3,516.0 L230.4,516.0 L229.5,516.0 L228.6,516.0 L227.7,516.0 L226.8,516.0
+ L225.9,516.0 L225.0,516.0 L224.1,516.0 L223.2,516.0 L222.3,516.0 L221.4,516.0 L220.5,516.0 L219.6,516.0
+ L218.7,516.0 L217.8,516.0 L216.9,516.0 L216.0,516.0 L215.1,516.0 L214.2,516.0 L213.3,516.0 L212.4,516.0
+ L211.5,516.0 L210.6,516.0 L209.7,516.0 L208.8,516.0 L207.9,516.0 L207.0,516.0 L206.1,516.0 L205.2,516.0
+ L204.3,516.0 L203.4,516.0 L202.5,516.0 L201.6,516.0 L200.6,516.0 L199.7,516.0 L198.8,516.0 L197.9,516.0
+ L197.0,516.0 L196.1,516.0 L195.2,516.0 L194.3,516.0 L193.4,516.0 L192.5,516.0 L191.6,516.0 L190.7,516.0
+ L189.8,516.0 L188.9,516.0 L188.0,516.0 L187.1,516.0 L186.2,516.0 L185.3,516.0 L184.4,516.0 L183.5,516.0
+ L182.6,516.0 L181.7,516.0 L180.8,516.0 L179.9,516.0 L179.0,516.0 L178.1,516.0 L177.2,516.0 L176.3,516.0
+ L175.4,516.0 L174.5,516.0 L173.6,516.0 L172.7,516.0 L171.8,516.0 L170.9,516.0 L170.0,516.0 L169.1,516.0
+ L168.2,516.0 L167.3,516.0 L166.4,516.0 L165.5,516.0 L164.6,516.0 L163.7,516.0 L162.8,516.0 L161.9,516.0
+ L161.0,516.0 L160.1,516.0 L159.2,516.0 L158.2,516.0 L157.3,516.0 L156.4,516.0 L155.5,516.0 L154.6,516.0
+ L153.7,516.0 L152.8,516.0 L151.9,516.0 L151.0,516.0 L150.1,516.0 L149.2,516.0 L148.3,516.0 L147.4,516.0
+ L146.5,516.0 L145.6,516.0 L144.7,516.0 L143.8,516.0 L142.9,516.0 L142.0,516.0 L141.1,516.0 L140.2,516.0
+ L139.3,516.0 L138.4,516.0 L137.5,516.0 L136.6,516.0 L135.7,516.0 L134.8,516.0 L133.9,516.0 L133.0,516.0
+ L132.1,516.0 L131.2,516.0 L130.3,516.0 L129.4,516.0 L128.5,516.0 L127.6,516.0 L126.7,516.0 L125.8,516.0
+ L124.9,516.0 L124.0,516.0 L123.1,516.0 L122.2,516.0 L121.3,516.0 L120.4,516.0 L119.5,516.0 L118.6,516.0
+ L117.7,516.0 L116.7,516.0 L115.8,516.0 L114.9,516.0 L114.0,516.0 L113.1,516.0 L112.2,516.0 L111.3,516.0
+ L110.4,516.0 L109.5,516.0 L108.6,516.0 L107.7,516.0 L106.8,516.0 L105.9,516.0 L105.0,516.0 L104.1,516.0
+ L103.2,516.0 L102.3,516.0 L101.4,516.0 L100.5,516.0 L99.6,516.0 L98.7,516.0 L97.8,516.0 L96.9,516.0
+ L96.0,516.0 '/></g>
+ </g>
+<g fill="none" color="#FFFFFF" stroke="rgb( 0, 0, 0)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 38, 38, 38)' d='M96.0,516.0 L557.9,516.0 M96.0,84.1 L557.9,84.1 M96.0,516.0 L96.0,84.1 M557.9,516.0 L557.9,84.1
+ '/></g>
+<g fill="none" color="black" stroke="rgb( 38, 38, 38)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g stroke='none' shape-rendering='crispEdges'>
+ <polygon fill = 'rgb(255, 255, 255)' points = '714.0,516.0 1175.8,516.0 1175.8,84.2 714.0,84.2 '/>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,516.0 L1175.9,516.0 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,516.0 L729.6,516.0 M1175.9,516.0 L1160.3,516.0 '/> <g transform="translate(703.5,522.5)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-130</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,484.2 L1175.9,484.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,484.2 L729.6,484.2 M1175.9,484.2 L1160.3,484.2 '/> <g transform="translate(703.5,490.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-120</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,452.5 L1175.9,452.5 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,452.5 L729.6,452.5 M1175.9,452.5 L1160.3,452.5 '/> <g transform="translate(703.5,459.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-110</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,420.7 L1175.9,420.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,420.7 L729.6,420.7 M1175.9,420.7 L1160.3,420.7 '/> <g transform="translate(703.5,427.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-100</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,389.0 L1175.9,389.0 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,389.0 L729.6,389.0 M1175.9,389.0 L1160.3,389.0 '/> <g transform="translate(703.5,395.5)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-90</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,357.2 L1175.9,357.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,357.2 L729.6,357.2 M1175.9,357.2 L1160.3,357.2 '/> <g transform="translate(703.5,363.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-80</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,325.5 L1175.9,325.5 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,325.5 L729.6,325.5 M1175.9,325.5 L1160.3,325.5 '/> <g transform="translate(703.5,332.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-70</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,293.7 L1175.9,293.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,293.7 L729.6,293.7 M1175.9,293.7 L1160.3,293.7 '/> <g transform="translate(703.5,300.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-60</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,261.9 L1175.9,261.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,261.9 L729.6,261.9 M1175.9,261.9 L1160.3,261.9 '/> <g transform="translate(703.5,268.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-50</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,230.2 L1175.9,230.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,230.2 L729.6,230.2 M1175.9,230.2 L1160.3,230.2 '/> <g transform="translate(703.5,236.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-40</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,198.4 L1175.9,198.4 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,198.4 L729.6,198.4 M1175.9,198.4 L1160.3,198.4 '/> <g transform="translate(703.5,204.9)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-30</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,166.7 L1175.9,166.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,166.7 L729.6,166.7 M1175.9,166.7 L1160.3,166.7 '/> <g transform="translate(703.5,173.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-20</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,134.9 L1175.9,134.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,134.9 L729.6,134.9 M1175.9,134.9 L1160.3,134.9 '/> <g transform="translate(703.5,141.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-10</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,103.2 L1175.9,103.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,103.2 L729.6,103.2 M1175.9,103.2 L1160.3,103.2 '/> <g transform="translate(703.5,109.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,516.0 L714.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,516.0 L714.0,500.4 M714.0,84.1 L714.0,99.7 '/> <g transform="translate(714.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-40</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M829.5,516.0 L829.5,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M829.5,516.0 L829.5,500.4 M829.5,84.1 L829.5,99.7 '/> <g transform="translate(829.5,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-20</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M945.0,516.0 L945.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M945.0,516.0 L945.0,500.4 M945.0,84.1 L945.0,99.7 '/> <g transform="translate(945.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M1060.4,516.0 L1060.4,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M1060.4,516.0 L1060.4,500.4 M1060.4,84.1 L1060.4,99.7 '/> <g transform="translate(1060.4,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >20</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M1175.9,516.0 L1175.9,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M1175.9,516.0 L1175.9,500.4 M1175.9,84.1 L1175.9,99.7 '/> <g transform="translate(1175.9,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >40</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(648.1,300.1) rotate(-90)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >decibels</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(944.9,581.3)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >bins</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(944.9,39.9)" stroke="none" fill="rgb(0,0,0)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >Fourier transform</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+ <g id="gnuplot_plot_1b" ><title>gnuplot_plot_1b</title>
+<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb(222, 125, 0)' d='M714.0,516.0 M714.2,516.0 L714.2,503.4 M714.4,516.0 L714.4,484.7 M714.5,516.0 L714.5,473.7 M714.7,516.0
+ L714.7,466.1 M714.9,516.0 L714.9,460.3 M715.1,516.0 L715.1,455.7 M715.3,516.0 L715.3,452.0 M715.4,516.0
+ L715.4,449.0 M715.6,516.0 L715.6,446.5 M715.8,516.0 L715.8,444.4 M716.0,516.0 L716.0,442.7 M716.2,516.0
+ L716.2,441.4 M716.3,516.0 L716.3,440.3 M716.5,516.0 L716.5,439.6 M716.7,516.0 L716.7,439.1 M716.9,516.0
+ L716.9,438.9 M717.1,516.0 L717.1,439.0 M717.2,516.0 L717.2,439.3 M717.4,516.0 L717.4,440.0 M717.6,516.0
+ L717.6,440.9 M717.8,516.0 L717.8,442.1 M718.0,516.0 L718.0,443.7 M718.1,516.0 L718.1,445.6 M718.3,516.0
+ L718.3,448.0 M718.5,516.0 L718.5,451.0 M718.7,516.0 L718.7,454.6 M718.9,516.0 L718.9,459.1 M719.1,516.0
+ L719.1,464.8 M719.2,516.0 L719.2,472.4 M719.4,516.0 L719.4,483.4 M719.6,516.0 L719.6,502.5 M719.8,516.0
+ M720.0,516.0 L720.0,501.4 M720.1,516.0 L720.1,482.6 M720.3,516.0 L720.3,471.6 M720.5,516.0 L720.5,464.0
+ M720.7,516.0 L720.7,458.2 M720.9,516.0 L720.9,453.6 M721.0,516.0 L721.0,449.9 M721.2,516.0 L721.2,446.9
+ M721.4,516.0 L721.4,444.3 M721.6,516.0 L721.6,442.3 M721.8,516.0 L721.8,440.6 M721.9,516.0 L721.9,439.2
+ M722.1,516.0 L722.1,438.2 M722.3,516.0 L722.3,437.5 M722.5,516.0 L722.5,437.0 M722.7,516.0 L722.7,436.8
+ M722.8,516.0 L722.8,436.9 M723.0,516.0 L723.0,437.2 M723.2,516.0 L723.2,437.8 M723.4,516.0 L723.4,438.7
+ M723.6,516.0 L723.6,440.0 M723.7,516.0 L723.7,441.5 M723.9,516.0 L723.9,443.5 M724.1,516.0 L724.1,445.9
+ M724.3,516.0 L724.3,448.8 M724.5,516.0 L724.5,452.4 M724.6,516.0 L724.6,456.9 M724.8,516.0 L724.8,462.6
+ M725.0,516.0 L725.0,470.2 M725.2,516.0 L725.2,481.2 M725.4,516.0 L725.4,500.4 M725.5,516.0 M725.7,516.0
+ L725.7,499.2 M725.9,516.0 L725.9,480.4 M726.1,516.0 L726.1,469.5 M726.3,516.0 L726.3,461.8 M726.4,516.0
+ L726.4,456.0 M726.6,516.0 L726.6,451.5 M726.8,516.0 L726.8,447.7 M727.0,516.0 L727.0,444.7 M727.2,516.0
+ L727.2,442.2 M727.4,516.0 L727.4,440.1 M727.5,516.0 L727.5,438.4 M727.7,516.0 L727.7,437.1 M727.9,516.0
+ L727.9,436.0 M728.1,516.0 L728.1,435.3 M728.3,516.0 L728.3,434.8 M728.4,516.0 L728.4,434.6 M728.6,516.0
+ L728.6,434.7 M728.8,516.0 L728.8,435.0 M729.0,516.0 L729.0,435.7 M729.2,516.0 L729.2,436.6 M729.3,516.0
+ L729.3,437.8 M729.5,516.0 L729.5,439.3 M729.7,516.0 L729.7,441.3 M729.9,516.0 L729.9,443.7 M730.1,516.0
+ L730.1,446.6 M730.2,516.0 L730.2,450.2 M730.4,516.0 L730.4,454.7 M730.6,516.0 L730.6,460.4 M730.8,516.0
+ L730.8,468.0 M731.0,516.0 L731.0,479.0 M731.1,516.0 L731.1,498.2 M731.3,516.0 M731.5,516.0 L731.5,497.0
+ M731.7,516.0 L731.7,478.2 M731.9,516.0 L731.9,467.3 M732.0,516.0 L732.0,459.6 M732.2,516.0 L732.2,453.8
+ M732.4,516.0 L732.4,449.2 M732.6,516.0 L732.6,445.5 M732.8,516.0 L732.8,442.5 M732.9,516.0 L732.9,440.0
+ M733.1,516.0 L733.1,437.9 M733.3,516.0 L733.3,436.2 M733.5,516.0 L733.5,434.8 M733.7,516.0 L733.7,433.8
+ M733.8,516.0 L733.8,433.1 M734.0,516.0 L734.0,432.6 M734.2,516.0 L734.2,432.4 M734.4,516.0 L734.4,432.5
+ M734.6,516.0 L734.6,432.8 M734.7,516.0 L734.7,433.4 M734.9,516.0 L734.9,434.3 M735.1,516.0 L735.1,435.5
+ M735.3,516.0 L735.3,437.1 M735.5,516.0 L735.5,439.0 M735.7,516.0 L735.7,441.4 M735.8,516.0 L735.8,444.4
+ M736.0,516.0 L736.0,448.0 M736.2,516.0 L736.2,452.4 M736.4,516.0 L736.4,458.2 M736.6,516.0 L736.6,465.7
+ M736.7,516.0 L736.7,476.7 M736.9,516.0 L736.9,495.9 M737.1,516.0 M737.3,516.0 L737.3,494.8 M737.5,516.0
+ L737.5,476.0 M737.6,516.0 L737.6,465.0 M737.8,516.0 L737.8,457.3 M738.0,516.0 L738.0,451.5 M738.2,516.0
+ L738.2,447.0 M738.4,516.0 L738.4,443.2 M738.5,516.0 L738.5,440.2 M738.7,516.0 L738.7,437.7 M738.9,516.0
+ L738.9,435.6 M739.1,516.0 L739.1,433.9 M739.3,516.0 L739.3,432.5 M739.4,516.0 L739.4,431.5 M739.6,516.0
+ L739.6,430.8 M739.8,516.0 L739.8,430.3 M740.0,516.0 L740.0,430.1 M740.2,516.0 L740.2,430.2 M740.3,516.0
+ L740.3,430.5 M740.5,516.0 L740.5,431.1 M740.7,516.0 L740.7,432.0 M740.9,516.0 L740.9,433.2 M741.1,516.0
+ L741.1,434.8 M741.2,516.0 L741.2,436.7 M741.4,516.0 L741.4,439.1 M741.6,516.0 L741.6,442.0 M741.8,516.0
+ L741.8,445.6 M742.0,516.0 L742.0,450.1 M742.1,516.0 L742.1,455.8 M742.3,516.0 L742.3,463.4 M742.5,516.0
+ L742.5,474.4 M742.7,516.0 L742.7,493.5 M742.9,516.0 M743.0,516.0 L743.0,492.4 M743.2,516.0 L743.2,473.6
+ M743.4,516.0 L743.4,462.7 M743.6,516.0 L743.6,455.0 M743.8,516.0 L743.8,449.2 M744.0,516.0 L744.0,444.6
+ M744.1,516.0 L744.1,440.9 M744.3,516.0 L744.3,437.8 M744.5,516.0 L744.5,435.3 M744.7,516.0 L744.7,433.2
+ M744.9,516.0 L744.9,431.5 M745.0,516.0 L745.0,430.2 M745.2,516.0 L745.2,429.2 M745.4,516.0 L745.4,428.4
+ M745.6,516.0 L745.6,427.9 M745.8,516.0 L745.8,427.7 M745.9,516.0 L745.9,427.8 M746.1,516.0 L746.1,428.1
+ M746.3,516.0 L746.3,428.7 M746.5,516.0 L746.5,429.6 M746.7,516.0 L746.7,430.8 M746.8,516.0 L746.8,432.4
+ M747.0,516.0 L747.0,434.3 M747.2,516.0 L747.2,436.7 M747.4,516.0 L747.4,439.7 M747.6,516.0 L747.6,443.3
+ M747.7,516.0 L747.7,447.7 M747.9,516.0 L747.9,453.4 M748.1,516.0 L748.1,461.0 M748.3,516.0 L748.3,472.0
+ M748.5,516.0 L748.5,491.1 M748.6,516.0 M748.8,516.0 L748.8,490.1 M749.0,516.0 L749.0,471.2 M749.2,516.0
+ L749.2,460.3 M749.4,516.0 L749.4,452.6 M749.5,516.0 L749.5,446.8 M749.7,516.0 L749.7,442.2 M749.9,516.0
+ L749.9,438.5 M750.1,516.0 L750.1,435.4 M750.3,516.0 L750.3,432.9 M750.4,516.0 L750.4,430.8 M750.6,516.0
+ L750.6,429.1 M750.8,516.0 L750.8,427.8 M751.0,516.0 L751.0,426.7 M751.2,516.0 L751.2,426.0 M751.3,516.0
+ L751.3,425.5 M751.5,516.0 L751.5,425.3 M751.7,516.0 L751.7,425.4 M751.9,516.0 L751.9,425.7 M752.1,516.0
+ L752.1,426.3 M752.3,516.0 L752.3,427.2 M752.4,516.0 L752.4,428.4 M752.6,516.0 L752.6,429.9 M752.8,516.0
+ L752.8,431.9 M753.0,516.0 L753.0,434.3 M753.2,516.0 L753.2,437.2 M753.3,516.0 L753.3,440.8 M753.5,516.0
+ L753.5,445.3 M753.7,516.0 L753.7,451.0 M753.9,516.0 L753.9,458.5 M754.1,516.0 L754.1,469.5 M754.2,516.0
+ L754.2,488.6 M754.4,516.0 M754.6,516.0 L754.6,487.6 M754.8,516.0 L754.8,468.8 M755.0,516.0 L755.0,457.8
+ M755.1,516.0 L755.1,450.1 M755.3,516.0 L755.3,444.3 M755.5,516.0 L755.5,439.7 M755.7,516.0 L755.7,436.0
+ M755.9,516.0 L755.9,432.9 M756.0,516.0 L756.0,430.4 M756.2,516.0 L756.2,428.3 M756.4,516.0 L756.4,426.6
+ M756.6,516.0 L756.6,425.3 M756.8,516.0 L756.8,424.2 M756.9,516.0 L756.9,423.5 M757.1,516.0 L757.1,423.0
+ M757.3,516.0 L757.3,422.8 M757.5,516.0 L757.5,422.8 M757.7,516.0 L757.7,423.2 M757.8,516.0 L757.8,423.8
+ M758.0,516.0 L758.0,424.7 M758.2,516.0 L758.2,425.9 M758.4,516.0 L758.4,427.4 M758.6,516.0 L758.6,429.4
+ M758.7,516.0 L758.7,431.7 M758.9,516.0 L758.9,434.7 M759.1,516.0 L759.1,438.3 M759.3,516.0 L759.3,442.7
+ M759.5,516.0 L759.5,448.4 M759.6,516.0 L759.6,456.0 M759.8,516.0 L759.8,467.0 M760.0,516.0 L760.0,486.1
+ M760.2,516.0 M760.4,516.0 L760.4,485.1 M760.6,516.0 L760.6,466.2 M760.7,516.0 L760.7,455.2 M760.9,516.0
+ L760.9,447.6 '/> <path stroke='rgb(222, 125, 0)' d='M761.1,516.0 L761.1,441.8 M761.3,516.0 L761.3,437.2 M761.5,516.0 L761.5,433.4 M761.6,516.0 L761.6,430.4
+ M761.8,516.0 L761.8,427.8 M762.0,516.0 L762.0,425.8 M762.2,516.0 L762.2,424.0 M762.4,516.0 L762.4,422.7
+ M762.5,516.0 L762.5,421.6 M762.7,516.0 L762.7,420.9 M762.9,516.0 L762.9,420.4 M763.1,516.0 L763.1,420.2
+ M763.3,516.0 L763.3,420.3 M763.4,516.0 L763.4,420.6 M763.6,516.0 L763.6,421.2 M763.8,516.0 L763.8,422.1
+ M764.0,516.0 L764.0,423.3 M764.2,516.0 L764.2,424.8 M764.3,516.0 L764.3,426.8 M764.5,516.0 L764.5,429.1
+ M764.7,516.0 L764.7,432.1 M764.9,516.0 L764.9,435.6 M765.1,516.0 L765.1,440.1 M765.2,516.0 L765.2,445.8
+ M765.4,516.0 L765.4,453.4 M765.6,516.0 L765.6,464.3 M765.8,516.0 L765.8,483.4 M766.0,516.0 M766.1,516.0
+ L766.1,482.4 M766.3,516.0 L766.3,463.6 M766.5,516.0 L766.5,452.6 M766.7,516.0 L766.7,444.9 M766.9,516.0
+ L766.9,439.1 M767.0,516.0 L767.0,434.5 M767.2,516.0 L767.2,430.8 M767.4,516.0 L767.4,427.7 M767.6,516.0
+ L767.6,425.2 M767.8,516.0 L767.8,423.1 M767.9,516.0 L767.9,421.4 M768.1,516.0 L768.1,420.0 M768.3,516.0
+ L768.3,419.0 M768.5,516.0 L768.5,418.2 M768.7,516.0 L768.7,417.7 M768.9,516.0 L768.9,417.5 M769.0,516.0
+ L769.0,417.6 M769.2,516.0 L769.2,417.9 M769.4,516.0 L769.4,418.5 M769.6,516.0 L769.6,419.4 M769.8,516.0
+ L769.8,420.6 M769.9,516.0 L769.9,422.1 M770.1,516.0 L770.1,424.1 M770.3,516.0 L770.3,426.4 M770.5,516.0
+ L770.5,429.4 M770.7,516.0 L770.7,432.9 M770.8,516.0 L770.8,437.4 M771.0,516.0 L771.0,443.1 M771.2,516.0
+ L771.2,450.7 M771.4,516.0 L771.4,461.6 M771.6,516.0 L771.6,480.7 M771.7,516.0 M771.9,516.0 L771.9,479.7
+ M772.1,516.0 L772.1,460.9 M772.3,516.0 L772.3,449.9 M772.5,516.0 L772.5,442.2 M772.6,516.0 L772.6,436.4
+ M772.8,516.0 L772.8,431.8 M773.0,516.0 L773.0,428.1 M773.2,516.0 L773.2,425.0 M773.4,516.0 L773.4,422.4
+ M773.5,516.0 L773.5,420.4 M773.7,516.0 L773.7,418.6 M773.9,516.0 L773.9,417.3 M774.1,516.0 L774.1,416.2
+ M774.3,516.0 L774.3,415.5 M774.4,516.0 L774.4,415.0 M774.6,516.0 L774.6,414.8 M774.8,516.0 L774.8,414.8
+ M775.0,516.0 L775.0,415.1 M775.2,516.0 L775.2,415.7 M775.3,516.0 L775.3,416.6 M775.5,516.0 L775.5,417.8
+ M775.7,516.0 L775.7,419.4 M775.9,516.0 L775.9,421.3 M776.1,516.0 L776.1,423.7 M776.2,516.0 L776.2,426.6
+ M776.4,516.0 L776.4,430.2 M776.6,516.0 L776.6,434.6 M776.8,516.0 L776.8,440.3 M777.0,516.0 L777.0,447.9
+ M777.2,516.0 L777.2,458.8 M777.3,516.0 L777.3,477.9 M777.5,516.0 M777.7,516.0 L777.7,476.9 M777.9,516.0
+ L777.9,458.1 M778.1,516.0 L778.1,447.1 M778.2,516.0 L778.2,439.4 M778.4,516.0 L778.4,433.6 M778.6,516.0
+ L778.6,429.0 M778.8,516.0 L778.8,425.2 M779.0,516.0 L779.0,422.2 M779.1,516.0 L779.1,419.6 M779.3,516.0
+ L779.3,417.5 M779.5,516.0 L779.5,415.8 M779.7,516.0 L779.7,414.4 M779.9,516.0 L779.9,413.4 M780.0,516.0
+ L780.0,412.6 M780.2,516.0 L780.2,412.1 M780.4,516.0 L780.4,411.9 M780.6,516.0 L780.6,412.0 M780.8,516.0
+ L780.8,412.3 M780.9,516.0 L780.9,412.9 M781.1,516.0 L781.1,413.7 M781.3,516.0 L781.3,414.9 M781.5,516.0
+ L781.5,416.5 M781.7,516.0 L781.7,418.4 M781.8,516.0 L781.8,420.8 M782.0,516.0 L782.0,423.7 M782.2,516.0
+ L782.2,427.3 M782.4,516.0 L782.4,431.7 M782.6,516.0 L782.6,437.4 M782.7,516.0 L782.7,445.0 M782.9,516.0
+ L782.9,455.9 M783.1,516.0 L783.1,475.0 M783.3,516.0 M783.5,516.0 L783.5,474.0 M783.6,516.0 L783.6,455.2
+ M783.8,516.0 L783.8,444.2 M784.0,516.0 L784.0,436.5 M784.2,516.0 L784.2,430.7 M784.4,516.0 L784.4,426.0
+ M784.5,516.0 L784.5,422.3 M784.7,516.0 L784.7,419.2 M784.9,516.0 L784.9,416.7 M785.1,516.0 L785.1,414.6
+ M785.3,516.0 L785.3,412.9 M785.5,516.0 L785.5,411.5 M785.6,516.0 L785.6,410.4 M785.8,516.0 L785.8,409.7
+ M786.0,516.0 L786.0,409.2 M786.2,516.0 L786.2,408.9 M786.4,516.0 L786.4,409.0 M786.5,516.0 L786.5,409.3
+ M786.7,516.0 L786.7,409.9 M786.9,516.0 L786.9,410.8 M787.1,516.0 L787.1,412.0 M787.3,516.0 L787.3,413.5
+ M787.4,516.0 L787.4,415.4 M787.6,516.0 L787.6,417.8 M787.8,516.0 L787.8,420.7 M788.0,516.0 L788.0,424.3
+ M788.2,516.0 L788.2,428.7 M788.3,516.0 L788.3,434.4 M788.5,516.0 L788.5,442.0 M788.7,516.0 L788.7,452.9
+ M788.9,516.0 L788.9,472.0 M789.1,516.0 M789.2,516.0 L789.2,471.0 M789.4,516.0 L789.4,452.1 M789.6,516.0
+ L789.6,441.1 M789.8,516.0 L789.8,433.5 M790.0,516.0 L790.0,427.6 M790.1,516.0 L790.1,423.0 M790.3,516.0
+ L790.3,419.3 M790.5,516.0 L790.5,416.2 M790.7,516.0 L790.7,413.6 M790.9,516.0 L790.9,411.5 M791.0,516.0
+ L791.0,409.8 M791.2,516.0 L791.2,408.4 M791.4,516.0 L791.4,407.4 M791.6,516.0 L791.6,406.6 M791.8,516.0
+ L791.8,406.1 M791.9,516.0 L791.9,405.9 M792.1,516.0 L792.1,405.9 M792.3,516.0 L792.3,406.2 M792.5,516.0
+ L792.5,406.8 M792.7,516.0 L792.7,407.7 M792.8,516.0 L792.8,408.9 M793.0,516.0 L793.0,410.4 M793.2,516.0
+ L793.2,412.3 M793.4,516.0 L793.4,414.7 M793.6,516.0 L793.6,417.6 M793.7,516.0 L793.7,421.2 M793.9,516.0
+ L793.9,425.6 M794.1,516.0 L794.1,431.3 M794.3,516.0 L794.3,438.8 M794.5,516.0 L794.5,449.8 M794.7,516.0
+ L794.7,468.8 M794.8,516.0 M795.0,516.0 L795.0,467.9 M795.2,516.0 L795.2,449.0 M795.4,516.0 L795.4,438.0
+ M795.6,516.0 L795.6,430.3 M795.7,516.0 L795.7,424.5 M795.9,516.0 L795.9,419.9 M796.1,516.0 L796.1,416.1
+ M796.3,516.0 L796.3,413.0 M796.5,516.0 L796.5,410.5 M796.6,516.0 L796.6,408.4 M796.8,516.0 L796.8,406.6
+ M797.0,516.0 L797.0,405.3 M797.2,516.0 L797.2,404.2 M797.4,516.0 L797.4,403.4 M797.5,516.0 L797.5,402.9
+ M797.7,516.0 L797.7,402.7 M797.9,516.0 L797.9,402.7 M798.1,516.0 L798.1,403.0 M798.3,516.0 L798.3,403.6
+ M798.4,516.0 L798.4,404.5 M798.6,516.0 L798.6,405.7 M798.8,516.0 L798.8,407.2 M799.0,516.0 L799.0,409.1
+ M799.2,516.0 L799.2,411.5 M799.3,516.0 L799.3,414.4 M799.5,516.0 L799.5,417.9 M799.7,516.0 L799.7,422.4
+ M799.9,516.0 L799.9,428.0 M800.1,516.0 L800.1,435.6 M800.2,516.0 L800.2,446.5 M800.4,516.0 L800.4,465.6
+ M800.6,516.0 M800.8,516.0 L800.8,464.7 M801.0,516.0 L801.0,445.8 M801.1,516.0 L801.1,434.8 M801.3,516.0
+ L801.3,427.1 M801.5,516.0 L801.5,421.2 M801.7,516.0 L801.7,416.6 M801.9,516.0 L801.9,412.8 M802.0,516.0
+ L802.0,409.7 M802.2,516.0 L802.2,407.2 M802.4,516.0 L802.4,405.1 M802.6,516.0 L802.6,403.4 M802.8,516.0
+ L802.8,402.0 M803.0,516.0 L803.0,400.9 M803.1,516.0 L803.1,400.1 M803.3,516.0 L803.3,399.6 M803.5,516.0
+ L803.5,399.4 M803.7,516.0 L803.7,399.4 M803.9,516.0 L803.9,399.7 M804.0,516.0 L804.0,400.3 M804.2,516.0
+ L804.2,401.2 M804.4,516.0 L804.4,402.3 M804.6,516.0 L804.6,403.9 M804.8,516.0 L804.8,405.8 M804.9,516.0
+ L804.9,408.1 M805.1,516.0 L805.1,411.0 M805.3,516.0 L805.3,414.6 M805.5,516.0 L805.5,419.0 M805.7,516.0
+ L805.7,424.7 M805.8,516.0 L805.8,432.2 M806.0,516.0 L806.0,443.1 M806.2,516.0 L806.2,462.2 M806.4,516.0
+ M806.6,516.0 L806.6,461.3 M806.7,516.0 L806.7,442.4 M806.9,516.0 L806.9,431.4 M807.1,516.0 L807.1,423.7
+ M807.3,516.0 L807.3,417.8 M807.5,516.0 L807.5,413.2 M807.6,516.0 L807.6,409.4 M807.8,516.0 L807.8,406.3
+ M808.0,516.0 L808.0,403.8 '/> <path stroke='rgb(222, 125, 0)' d='M808.2,516.0 L808.2,401.7 M808.4,516.0 L808.4,399.9 M808.5,516.0 L808.5,398.5 M808.7,516.0 L808.7,397.5
+ M808.9,516.0 L808.9,396.7 M809.1,516.0 L809.1,396.2 M809.3,516.0 L809.3,395.9 M809.4,516.0 L809.4,396.0
+ M809.6,516.0 L809.6,396.2 M809.8,516.0 L809.8,396.8 M810.0,516.0 L810.0,397.7 M810.2,516.0 L810.2,398.9
+ M810.3,516.0 L810.3,400.4 M810.5,516.0 L810.5,402.3 M810.7,516.0 L810.7,404.6 M810.9,516.0 L810.9,407.5
+ M811.1,516.0 L811.1,411.1 M811.3,516.0 L811.3,415.5 M811.4,516.0 L811.4,421.2 M811.6,516.0 L811.6,428.7
+ M811.8,516.0 L811.8,439.6 M812.0,516.0 L812.0,458.6 M812.2,516.0 M812.3,516.0 L812.3,457.8 M812.5,516.0
+ L812.5,438.8 M812.7,516.0 L812.7,427.8 M812.9,516.0 L812.9,420.1 M813.1,516.0 L813.1,414.3 M813.2,516.0
+ L813.2,409.6 M813.4,516.0 L813.4,405.9 M813.6,516.0 L813.6,402.8 M813.8,516.0 L813.8,400.2 M814.0,516.0
+ L814.0,398.1 M814.1,516.0 L814.1,396.3 M814.3,516.0 L814.3,395.0 M814.5,516.0 L814.5,393.9 M814.7,516.0
+ L814.7,393.1 M814.9,516.0 L814.9,392.6 M815.0,516.0 L815.0,392.3 M815.2,516.0 L815.2,392.3 M815.4,516.0
+ L815.4,392.6 M815.6,516.0 L815.6,393.2 M815.8,516.0 L815.8,394.1 M815.9,516.0 L815.9,395.2 M816.1,516.0
+ L816.1,396.7 M816.3,516.0 L816.3,398.6 M816.5,516.0 L816.5,401.0 M816.7,516.0 L816.7,403.9 M816.8,516.0
+ L816.8,407.4 M817.0,516.0 L817.0,411.8 M817.2,516.0 L817.2,417.5 M817.4,516.0 L817.4,425.0 M817.6,516.0
+ L817.6,435.9 M817.7,516.0 L817.7,454.9 M817.9,516.0 M818.1,516.0 L818.1,454.1 M818.3,516.0 L818.3,435.2
+ M818.5,516.0 L818.5,424.1 M818.6,516.0 L818.6,416.4 M818.8,516.0 L818.8,410.6 M819.0,516.0 L819.0,405.9
+ M819.2,516.0 L819.2,402.2 M819.4,516.0 L819.4,399.0 M819.6,516.0 L819.6,396.5 M819.7,516.0 L819.7,394.3
+ M819.9,516.0 L819.9,392.6 M820.1,516.0 L820.1,391.2 M820.3,516.0 L820.3,390.1 M820.5,516.0 L820.5,389.3
+ M820.6,516.0 L820.6,388.8 M820.8,516.0 L820.8,388.6 M821.0,516.0 L821.0,388.6 M821.2,516.0 L821.2,388.9
+ M821.4,516.0 L821.4,389.4 M821.5,516.0 L821.5,390.3 M821.7,516.0 L821.7,391.4 M821.9,516.0 L821.9,392.9
+ M822.1,516.0 L822.1,394.8 M822.3,516.0 L822.3,397.2 M822.4,516.0 L822.4,400.1 M822.6,516.0 L822.6,403.6
+ M822.8,516.0 L822.8,408.0 M823.0,516.0 L823.0,413.7 M823.2,516.0 L823.2,421.2 M823.3,516.0 L823.3,432.1
+ M823.5,516.0 L823.5,451.1 M823.7,516.0 M823.9,516.0 L823.9,450.3 M824.1,516.0 L824.1,431.3 M824.2,516.0
+ L824.2,420.3 M824.4,516.0 L824.4,412.5 M824.6,516.0 L824.6,406.7 M824.8,516.0 L824.8,402.0 M825.0,516.0
+ L825.0,398.3 M825.1,516.0 L825.1,395.1 M825.3,516.0 L825.3,392.6 M825.5,516.0 L825.5,390.4 M825.7,516.0
+ L825.7,388.7 M825.9,516.0 L825.9,387.3 M826.0,516.0 L826.0,386.2 M826.2,516.0 L826.2,385.4 M826.4,516.0
+ L826.4,384.9 M826.6,516.0 L826.6,384.6 M826.8,516.0 L826.8,384.6 M826.9,516.0 L826.9,384.9 M827.1,516.0
+ L827.1,385.5 M827.3,516.0 L827.3,386.3 M827.5,516.0 L827.5,387.5 M827.7,516.0 L827.7,389.0 M827.9,516.0
+ L827.9,390.8 M828.0,516.0 L828.0,393.2 M828.2,516.0 L828.2,396.1 M828.4,516.0 L828.4,399.6 M828.6,516.0
+ L828.6,404.0 M828.8,516.0 L828.8,409.6 M828.9,516.0 L828.9,417.2 M829.1,516.0 L829.1,428.0 M829.3,516.0
+ L829.3,447.0 M829.5,516.0 M829.7,516.0 L829.7,446.2 M829.8,516.0 L829.8,427.3 M830.0,516.0 L830.0,416.2
+ M830.2,516.0 L830.2,408.5 M830.4,516.0 L830.4,402.6 M830.6,516.0 L830.6,398.0 M830.7,516.0 L830.7,394.2
+ M830.9,516.0 L830.9,391.1 M831.1,516.0 L831.1,388.5 M831.3,516.0 L831.3,386.3 M831.5,516.0 L831.5,384.6
+ M831.6,516.0 L831.6,383.2 M831.8,516.0 L831.8,382.1 M832.0,516.0 L832.0,381.3 M832.2,516.0 L832.2,380.7
+ M832.4,516.0 L832.4,380.5 M832.5,516.0 L832.5,380.5 M832.7,516.0 L832.7,380.7 M832.9,516.0 L832.9,381.3
+ M833.1,516.0 L833.1,382.1 M833.3,516.0 L833.3,383.3 M833.4,516.0 L833.4,384.8 M833.6,516.0 L833.6,386.7
+ M833.8,516.0 L833.8,389.0 M834.0,516.0 L834.0,391.8 M834.2,516.0 L834.2,395.4 M834.3,516.0 L834.3,399.8
+ M834.5,516.0 L834.5,405.4 M834.7,516.0 L834.7,412.9 M834.9,516.0 L834.9,423.8 M835.1,516.0 L835.1,442.8
+ M835.2,516.0 M835.4,516.0 L835.4,442.0 M835.6,516.0 L835.6,423.0 M835.8,516.0 L835.8,411.9 M836.0,516.0
+ L836.0,404.2 M836.2,516.0 L836.2,398.3 M836.3,516.0 L836.3,393.7 M836.5,516.0 L836.5,389.9 M836.7,516.0
+ L836.7,386.7 M836.9,516.0 L836.9,384.2 M837.1,516.0 L837.1,382.0 M837.2,516.0 L837.2,380.3 M837.4,516.0
+ L837.4,378.8 M837.6,516.0 L837.6,377.7 M837.8,516.0 L837.8,376.9 M838.0,516.0 L838.0,376.4 M838.1,516.0
+ L838.1,376.1 M838.3,516.0 L838.3,376.1 M838.5,516.0 L838.5,376.4 M838.7,516.0 L838.7,376.9 M838.9,516.0
+ L838.9,377.7 M839.0,516.0 L839.0,378.9 M839.2,516.0 L839.2,380.4 M839.4,516.0 L839.4,382.2 M839.6,516.0
+ L839.6,384.6 M839.8,516.0 L839.8,387.4 M839.9,516.0 L839.9,390.9 M840.1,516.0 L840.1,395.3 M840.3,516.0
+ L840.3,401.0 M840.5,516.0 L840.5,408.5 M840.7,516.0 L840.7,419.3 M840.8,516.0 L840.8,438.3 M841.0,516.0
+ M841.2,516.0 L841.2,437.5 M841.4,516.0 L841.4,418.5 M841.6,516.0 L841.6,407.4 M841.7,516.0 L841.7,399.7
+ M841.9,516.0 L841.9,393.8 M842.1,516.0 L842.1,389.1 M842.3,516.0 L842.3,385.3 M842.5,516.0 L842.5,382.2
+ M842.6,516.0 L842.6,379.6 M842.8,516.0 L842.8,377.5 M843.0,516.0 L843.0,375.7 M843.2,516.0 L843.2,374.3
+ M843.4,516.0 L843.4,373.1 M843.5,516.0 L843.5,372.3 M843.7,516.0 L843.7,371.8 M843.9,516.0 L843.9,371.5
+ M844.1,516.0 L844.1,371.5 M844.3,516.0 L844.3,371.7 M844.5,516.0 L844.5,372.3 M844.6,516.0 L844.6,373.1
+ M844.8,516.0 L844.8,374.2 M845.0,516.0 L845.0,375.7 M845.2,516.0 L845.2,377.6 M845.4,516.0 L845.4,379.9
+ M845.5,516.0 L845.5,382.7 M845.7,516.0 L845.7,386.2 M845.9,516.0 L845.9,390.6 M846.1,516.0 L846.1,396.2
+ M846.3,516.0 L846.3,403.7 M846.4,516.0 L846.4,414.6 M846.6,516.0 L846.6,433.5 M846.8,516.0 M847.0,516.0
+ L847.0,432.8 M847.2,516.0 L847.2,413.8 M847.3,516.0 L847.3,402.7 M847.5,516.0 L847.5,394.9 M847.7,516.0
+ L847.7,389.0 M847.9,516.0 L847.9,384.3 M848.1,516.0 L848.1,380.5 M848.2,516.0 L848.2,377.4 M848.4,516.0
+ L848.4,374.8 M848.6,516.0 L848.6,372.6 M848.8,516.0 L848.8,370.8 M849.0,516.0 L849.0,369.4 M849.1,516.0
+ L849.1,368.3 M849.3,516.0 L849.3,367.5 M849.5,516.0 L849.5,366.9 M849.7,516.0 L849.7,366.6 M849.9,516.0
+ L849.9,366.6 M850.0,516.0 L850.0,366.8 M850.2,516.0 L850.2,367.4 M850.4,516.0 L850.4,368.2 M850.6,516.0
+ L850.6,369.3 M850.8,516.0 L850.8,370.8 M850.9,516.0 L850.9,372.6 M851.1,516.0 L851.1,374.9 M851.3,516.0
+ L851.3,377.8 M851.5,516.0 L851.5,381.3 M851.7,516.0 L851.7,385.7 M851.8,516.0 L851.8,391.3 M852.0,516.0
+ L852.0,398.7 M852.2,516.0 L852.2,409.6 M852.4,516.0 L852.4,428.5 M852.6,516.0 M852.8,516.0 L852.8,427.8
+ M852.9,516.0 L852.9,408.7 M853.1,516.0 L853.1,397.6 M853.3,516.0 L853.3,389.9 M853.5,516.0 L853.5,384.0
+ M853.7,516.0 L853.7,379.3 M853.8,516.0 L853.8,375.4 M854.0,516.0 L854.0,372.3 M854.2,516.0 L854.2,369.7
+ M854.4,516.0 L854.4,367.5 M854.6,516.0 L854.6,365.7 M854.7,516.0 L854.7,364.3 M854.9,516.0 L854.9,363.1
+ M855.1,516.0 L855.1,362.3 '/> <path stroke='rgb(222, 125, 0)' d='M855.3,516.0 L855.3,361.7 M855.5,516.0 L855.5,361.4 M855.6,516.0 L855.6,361.4 M855.8,516.0 L855.8,361.6
+ M856.0,516.0 L856.0,362.1 M856.2,516.0 L856.2,362.9 M856.4,516.0 L856.4,364.1 M856.5,516.0 L856.5,365.5
+ M856.7,516.0 L856.7,367.4 M856.9,516.0 L856.9,369.7 M857.1,516.0 L857.1,372.5 M857.3,516.0 L857.3,376.0
+ M857.4,516.0 L857.4,380.3 M857.6,516.0 L857.6,385.9 M857.8,516.0 L857.8,393.4 M858.0,516.0 L858.0,404.2
+ M858.2,516.0 L858.2,423.1 M858.3,516.0 M858.5,516.0 L858.5,422.4 M858.7,516.0 L858.7,403.3 M858.9,516.0
+ L858.9,392.2 M859.1,516.0 L859.1,384.5 M859.2,516.0 L859.2,378.5 M859.4,516.0 L859.4,373.8 M859.6,516.0
+ L859.6,370.0 M859.8,516.0 L859.8,366.8 M860.0,516.0 L860.0,364.2 M860.1,516.0 L860.1,362.0 M860.3,516.0
+ L860.3,360.2 M860.5,516.0 L860.5,358.8 M860.7,516.0 L860.7,357.6 M860.9,516.0 L860.9,356.8 M861.1,516.0
+ L861.1,356.2 M861.2,516.0 L861.2,355.9 M861.4,516.0 L861.4,355.8 M861.6,516.0 L861.6,356.1 M861.8,516.0
+ L861.8,356.6 M862.0,516.0 L862.0,357.4 M862.1,516.0 L862.1,358.5 M862.3,516.0 L862.3,359.9 M862.5,516.0
+ L862.5,361.7 M862.7,516.0 L862.7,364.0 M862.9,516.0 L862.9,366.8 M863.0,516.0 L863.0,370.3 M863.2,516.0
+ L863.2,374.7 M863.4,516.0 L863.4,380.3 M863.6,516.0 L863.6,387.7 M863.8,516.0 L863.8,398.5 M863.9,516.0
+ L863.9,417.4 M864.1,516.0 M864.3,516.0 L864.3,416.7 M864.5,516.0 L864.5,397.6 M864.7,516.0 L864.7,386.5
+ M864.8,516.0 L864.8,378.7 M865.0,516.0 L865.0,372.8 M865.2,516.0 L865.2,368.0 M865.4,516.0 L865.4,364.2
+ M865.6,516.0 L865.6,361.0 M865.7,516.0 L865.7,358.4 M865.9,516.0 L865.9,356.2 M866.1,516.0 L866.1,354.4
+ M866.3,516.0 L866.3,352.9 M866.5,516.0 L866.5,351.7 M866.6,516.0 L866.6,350.9 M866.8,516.0 L866.8,350.3
+ M867.0,516.0 L867.0,350.0 M867.2,516.0 L867.2,349.9 M867.4,516.0 L867.4,350.1 M867.5,516.0 L867.5,350.6
+ M867.7,516.0 L867.7,351.4 M867.9,516.0 L867.9,352.5 M868.1,516.0 L868.1,353.9 M868.3,516.0 L868.3,355.7
+ M868.4,516.0 L868.4,358.0 M868.6,516.0 L868.6,360.8 M868.8,516.0 L868.8,364.2 M869.0,516.0 L869.0,368.6
+ M869.2,516.0 L869.2,374.2 M869.3,516.0 L869.3,381.6 M869.5,516.0 L869.5,392.4 M869.7,516.0 L869.7,411.3
+ M869.9,516.0 M870.1,516.0 L870.1,410.5 M870.3,516.0 L870.3,391.4 M870.4,516.0 L870.4,380.3 M870.6,516.0
+ L870.6,372.5 M870.8,516.0 L870.8,366.5 M871.0,516.0 L871.0,361.8 M871.2,516.0 L871.2,357.9 M871.3,516.0
+ L871.3,354.8 M871.5,516.0 L871.5,352.1 M871.7,516.0 L871.7,349.9 M871.9,516.0 L871.9,348.1 M872.1,516.0
+ L872.1,346.6 M872.2,516.0 L872.2,345.4 M872.4,516.0 L872.4,344.5 M872.6,516.0 L872.6,343.9 M872.8,516.0
+ L872.8,343.6 M873.0,516.0 L873.0,343.5 M873.1,516.0 L873.1,343.7 M873.3,516.0 L873.3,344.2 M873.5,516.0
+ L873.5,344.9 M873.7,516.0 L873.7,346.0 M873.9,516.0 L873.9,347.4 M874.0,516.0 L874.0,349.2 M874.2,516.0
+ L874.2,351.5 M874.4,516.0 L874.4,354.2 M874.6,516.0 L874.6,357.7 M874.8,516.0 L874.8,362.0 M874.9,516.0
+ L874.9,367.6 M875.1,516.0 L875.1,375.0 M875.3,516.0 L875.3,385.8 M875.5,516.0 L875.5,404.6 M875.7,516.0
+ M875.8,516.0 L875.8,403.9 M876.0,516.0 L876.0,384.7 M876.2,516.0 L876.2,373.6 M876.4,516.0 L876.4,365.8
+ M876.6,516.0 L876.6,359.8 M876.7,516.0 L876.7,355.0 M876.9,516.0 L876.9,351.2 M877.1,516.0 L877.1,348.0
+ M877.3,516.0 L877.3,345.3 M877.5,516.0 L877.5,343.1 M877.6,516.0 L877.6,341.2 M877.8,516.0 L877.8,339.7
+ M878.0,516.0 L878.0,338.5 M878.2,516.0 L878.2,337.6 M878.4,516.0 L878.4,337.0 M878.6,516.0 L878.6,336.6
+ M878.7,516.0 L878.7,336.5 M878.9,516.0 L878.9,336.7 M879.1,516.0 L879.1,337.2 M879.3,516.0 L879.3,337.9
+ M879.5,516.0 L879.5,339.0 M879.6,516.0 L879.6,340.4 M879.8,516.0 L879.8,342.1 M880.0,516.0 L880.0,344.4
+ M880.2,516.0 L880.2,347.1 M880.4,516.0 L880.4,350.6 M880.5,516.0 L880.5,354.9 M880.7,516.0 L880.7,360.4
+ M880.9,516.0 L880.9,367.8 M881.1,516.0 L881.1,378.6 M881.3,516.0 L881.3,397.4 M881.4,516.0 M881.6,516.0
+ L881.6,396.6 M881.8,516.0 L881.8,377.5 M882.0,516.0 L882.0,366.3 M882.2,516.0 L882.2,358.4 M882.3,516.0
+ L882.3,352.5 M882.5,516.0 L882.5,347.7 M882.7,516.0 L882.7,343.8 M882.9,516.0 L882.9,340.6 M883.1,516.0
+ L883.1,337.9 M883.2,516.0 L883.2,335.6 M883.4,516.0 L883.4,333.7 M883.6,516.0 L883.6,332.2 M883.8,516.0
+ L883.8,331.0 M884.0,516.0 L884.0,330.1 M884.1,516.0 L884.1,329.4 M884.3,516.0 L884.3,329.1 M884.5,516.0
+ L884.5,328.9 M884.7,516.0 L884.7,329.1 M884.9,516.0 L884.9,329.5 M885.0,516.0 L885.0,330.3 M885.2,516.0
+ L885.2,331.3 M885.4,516.0 L885.4,332.7 M885.6,516.0 L885.6,334.4 M885.8,516.0 L885.8,336.6 M885.9,516.0
+ L885.9,339.4 M886.1,516.0 L886.1,342.8 M886.3,516.0 L886.3,347.1 M886.5,516.0 L886.5,352.6 M886.7,516.0
+ L886.7,359.9 M886.9,516.0 L886.9,370.7 M887.0,516.0 L887.0,389.5 M887.2,516.0 M887.4,516.0 L887.4,388.7
+ M887.6,516.0 L887.6,369.5 M887.8,516.0 L887.8,358.3 M887.9,516.0 L887.9,350.4 M888.1,516.0 L888.1,344.4
+ M888.3,516.0 L888.3,339.6 M888.5,516.0 L888.5,335.7 M888.7,516.0 L888.7,332.4 M888.8,516.0 L888.8,329.7
+ M889.0,516.0 L889.0,327.4 M889.2,516.0 L889.2,325.5 M889.4,516.0 L889.4,324.0 M889.6,516.0 L889.6,322.8
+ M889.7,516.0 L889.7,321.8 M889.9,516.0 L889.9,321.1 M890.1,516.0 L890.1,320.7 M890.3,516.0 L890.3,320.6
+ M890.5,516.0 L890.5,320.7 M890.6,516.0 L890.6,321.1 M890.8,516.0 L890.8,321.8 M891.0,516.0 L891.0,322.8
+ M891.2,516.0 L891.2,324.2 M891.4,516.0 L891.4,325.9 M891.5,516.0 L891.5,328.1 M891.7,516.0 L891.7,330.8
+ M891.9,516.0 L891.9,334.2 M892.1,516.0 L892.1,338.4 M892.3,516.0 L892.3,343.9 M892.4,516.0 L892.4,351.2
+ M892.6,516.0 L892.6,361.9 M892.8,516.0 L892.8,380.7 M893.0,516.0 M893.2,516.0 L893.2,379.9 M893.3,516.0
+ L893.3,360.7 M893.5,516.0 L893.5,349.4 M893.7,516.0 L893.7,341.5 M893.9,516.0 L893.9,335.5 M894.1,516.0
+ L894.1,330.7 M894.2,516.0 L894.2,326.7 M894.4,516.0 L894.4,323.4 M894.6,516.0 L894.6,320.7 M894.8,516.0
+ L894.8,318.3 M895.0,516.0 L895.0,316.4 M895.2,516.0 L895.2,314.8 M895.3,516.0 L895.3,313.6 M895.5,516.0
+ L895.5,312.6 M895.7,516.0 L895.7,311.9 M895.9,516.0 L895.9,311.4 M896.1,516.0 L896.1,311.3 M896.2,516.0
+ L896.2,311.4 M896.4,516.0 L896.4,311.7 M896.6,516.0 L896.6,312.4 M896.8,516.0 L896.8,313.4 M897.0,516.0
+ L897.0,314.7 M897.1,516.0 L897.1,316.4 M897.3,516.0 L897.3,318.5 M897.5,516.0 L897.5,321.2 M897.7,516.0
+ L897.7,324.5 M897.9,516.0 L897.9,328.8 M898.0,516.0 L898.0,334.2 M898.2,516.0 L898.2,341.5 M898.4,516.0
+ L898.4,352.2 M898.6,516.0 L898.6,370.9 M898.8,516.0 M898.9,516.0 L898.9,370.0 M899.1,516.0 L899.1,350.7
+ M899.3,516.0 L899.3,339.5 M899.5,516.0 L899.5,331.5 M899.7,516.0 L899.7,325.4 M899.8,516.0 L899.8,320.6
+ M900.0,516.0 L900.0,316.6 M900.2,516.0 L900.2,313.3 M900.4,516.0 L900.4,310.5 M900.6,516.0 L900.6,308.1
+ M900.7,516.0 L900.7,306.2 M900.9,516.0 L900.9,304.5 M901.1,516.0 L901.1,303.2 M901.3,516.0 L901.3,302.2
+ M901.5,516.0 L901.5,301.5 M901.6,516.0 L901.6,301.0 M901.8,516.0 L901.8,300.8 M902.0,516.0 L902.0,300.8
+ M902.2,516.0 L902.2,301.1 '/> <path stroke='rgb(222, 125, 0)' d='M902.4,516.0 L902.4,301.8 M902.5,516.0 L902.5,302.7 M902.7,516.0 L902.7,303.9 M902.9,516.0 L902.9,305.6
+ M903.1,516.0 L903.1,307.7 M903.3,516.0 L903.3,310.3 M903.5,516.0 L903.5,313.6 M903.6,516.0 L903.6,317.8
+ M903.8,516.0 L903.8,323.2 M904.0,516.0 L904.0,330.5 M904.2,516.0 L904.2,341.1 M904.4,516.0 L904.4,359.7
+ M904.5,516.0 L904.5,515.9 M904.7,516.0 L904.7,358.8 M904.9,516.0 L904.9,339.5 M905.1,516.0 L905.1,328.1
+ M905.3,516.0 L905.3,320.2 M905.4,516.0 L905.4,314.0 M905.6,516.0 L905.6,309.1 M905.8,516.0 L905.8,305.1
+ M906.0,516.0 L906.0,301.7 M906.2,516.0 L906.2,298.8 M906.3,516.0 L906.3,296.4 M906.5,516.0 L906.5,294.4
+ M906.7,516.0 L906.7,292.7 M906.9,516.0 L906.9,291.4 M907.1,516.0 L907.1,290.3 M907.2,516.0 L907.2,289.5
+ M907.4,516.0 L907.4,289.0 M907.6,516.0 L907.6,288.7 M907.8,516.0 L907.8,288.7 M908.0,516.0 L908.0,289.0
+ M908.1,516.0 L908.1,289.5 M908.3,516.0 L908.3,290.4 M908.5,516.0 L908.5,291.6 M908.7,516.0 L908.7,293.2
+ M908.9,516.0 L908.9,295.2 M909.0,516.0 L909.0,297.8 M909.2,516.0 L909.2,301.0 M909.4,516.0 L909.4,305.2
+ M909.6,516.0 L909.6,310.5 M909.8,516.0 L909.8,317.7 M909.9,516.0 L909.9,328.2 M910.1,516.0 L910.1,346.8
+ M910.3,516.0 L910.3,507.1 M910.5,516.0 L910.5,345.8 M910.7,516.0 L910.7,326.4 M910.8,516.0 L910.8,315.0
+ M911.0,516.0 L911.0,306.9 M911.2,516.0 L911.2,300.7 M911.4,516.0 L911.4,295.7 M911.6,516.0 L911.6,291.6
+ M911.8,516.0 L911.8,288.2 M911.9,516.0 L911.9,285.3 M912.1,516.0 L912.1,282.8 M912.3,516.0 L912.3,280.7
+ M912.5,516.0 L912.5,279.0 M912.7,516.0 L912.7,277.5 M912.8,516.0 L912.8,276.4 M913.0,516.0 L913.0,275.5
+ M913.2,516.0 L913.2,274.9 M913.4,516.0 L913.4,274.5 M913.6,516.0 L913.6,274.4 M913.7,516.0 L913.7,274.6
+ M913.9,516.0 L913.9,275.1 M914.1,516.0 L914.1,275.9 M914.3,516.0 L914.3,277.0 M914.5,516.0 L914.5,278.5
+ M914.6,516.0 L914.6,280.5 M914.8,516.0 L914.8,283.0 M915.0,516.0 L915.0,286.1 M915.2,516.0 L915.2,290.2
+ M915.4,516.0 L915.4,295.4 M915.5,516.0 L915.5,302.5 M915.7,516.0 L915.7,313.0 M915.9,516.0 L915.9,331.5
+ M916.1,516.0 L916.1,496.7 M916.3,516.0 L916.3,330.3 M916.4,516.0 L916.4,310.8 M916.6,516.0 L916.6,299.3
+ M916.8,516.0 L916.8,291.1 M917.0,516.0 L917.0,284.8 M917.2,516.0 L917.2,279.7 M917.3,516.0 L917.3,275.5
+ M917.5,516.0 L917.5,272.0 M917.7,516.0 L917.7,269.0 M917.9,516.0 L917.9,266.4 M918.1,516.0 L918.1,264.2
+ M918.2,516.0 L918.2,262.3 M918.4,516.0 L918.4,260.8 M918.6,516.0 L918.6,259.5 M918.8,516.0 L918.8,258.5
+ M919.0,516.0 L919.0,257.8 M919.1,516.0 L919.1,257.3 M919.3,516.0 L919.3,257.1 M919.5,516.0 L919.5,257.2
+ M919.7,516.0 L919.7,257.6 M919.9,516.0 L919.9,258.2 M920.1,516.0 L920.1,259.2 M920.2,516.0 L920.2,260.6
+ M920.4,516.0 L920.4,262.5 M920.6,516.0 L920.6,264.8 M920.8,516.0 L920.8,267.8 M921.0,516.0 L921.0,271.7
+ M921.1,516.0 L921.1,276.8 M921.3,516.0 L921.3,283.8 M921.5,516.0 L921.5,294.1 M921.7,516.0 L921.7,312.5
+ M921.9,516.0 L921.9,483.8 M922.0,516.0 L922.0,311.0 M922.2,516.0 L922.2,291.4 M922.4,516.0 L922.4,279.7
+ M922.6,516.0 L922.6,271.4 M922.8,516.0 L922.8,265.0 M922.9,516.0 L922.9,259.7 M923.1,516.0 L923.1,255.3
+ M923.3,516.0 L923.3,251.6 M923.5,516.0 L923.5,248.4 M923.7,516.0 L923.7,245.7 M923.8,516.0 L923.8,243.3
+ M924.0,516.0 L924.0,241.3 M924.2,516.0 L924.2,239.6 M924.4,516.0 L924.4,238.1 M924.6,516.0 L924.6,237.0
+ M924.7,516.0 L924.7,236.0 M924.9,516.0 L924.9,235.4 M925.1,516.0 L925.1,235.0 M925.3,516.0 L925.3,234.9
+ M925.5,516.0 L925.5,235.0 M925.6,516.0 L925.6,235.5 M925.8,516.0 L925.8,236.3 M926.0,516.0 L926.0,237.5
+ M926.2,516.0 L926.2,239.1 M926.4,516.0 L926.4,241.2 M926.5,516.0 L926.5,244.0 M926.7,516.0 L926.7,247.7
+ M926.9,516.0 L926.9,252.5 M927.1,516.0 L927.1,259.3 M927.3,516.0 L927.3,269.3 M927.4,516.0 L927.4,287.4
+ M927.6,516.0 L927.6,466.4 M927.8,516.0 L927.8,285.5 M928.0,516.0 L928.0,265.6 M928.2,516.0 L928.2,253.6
+ M928.4,516.0 L928.4,245.0 M928.5,516.0 L928.5,238.3 M928.7,516.0 L928.7,232.8 M928.9,516.0 L928.9,228.1
+ M929.1,516.0 L929.1,224.1 M929.3,516.0 L929.3,220.6 M929.4,516.0 L929.4,217.5 M929.6,516.0 L929.6,214.8
+ M929.8,516.0 L929.8,212.4 M930.0,516.0 L930.0,210.4 M930.2,516.0 L930.2,208.6 M930.3,516.0 L930.3,207.0
+ M930.5,516.0 L930.5,205.7 M930.7,516.0 L930.7,204.7 M930.9,516.0 L930.9,203.9 M931.1,516.0 L931.1,203.4
+ M931.2,516.0 L931.2,203.1 M931.4,516.0 L931.4,203.1 M931.6,516.0 L931.6,203.5 M931.8,516.0 L931.8,204.2
+ M932.0,516.0 L932.0,205.3 M932.1,516.0 L932.1,207.0 M932.3,516.0 L932.3,209.3 M932.5,516.0 L932.5,212.4
+ M932.7,516.0 L932.7,216.7 M932.9,516.0 L932.9,222.9 M933.0,516.0 L933.0,232.3 M933.2,516.0 L933.2,249.8
+ M933.4,516.0 L933.4,439.4 M933.6,516.0 L933.6,246.6 M933.8,516.0 L933.8,226.0 M933.9,516.0 L933.9,213.3
+ M934.1,516.0 L934.1,204.0 M934.3,516.0 L934.3,196.5 M934.5,516.0 L934.5,190.1 M934.7,516.0 L934.7,184.6
+ M934.8,516.0 L934.8,179.7 M935.0,516.0 L935.0,175.2 M935.2,516.0 L935.2,171.2 M935.4,516.0 L935.4,167.4
+ M935.6,516.0 L935.6,164.0 M935.7,516.0 L935.7,160.7 M935.9,516.0 L935.9,157.7 M936.1,516.0 L936.1,154.8
+ M936.3,516.0 L936.3,152.1 M936.5,516.0 L936.5,149.5 M936.7,516.0 L936.7,147.0 M936.8,516.0 L936.8,144.7
+ M937.0,516.0 L937.0,142.5 M937.2,516.0 L937.2,140.4 M937.4,516.0 L937.4,138.4 M937.6,516.0 L937.6,136.4
+ M937.7,516.0 L937.7,134.6 M937.9,516.0 L937.9,132.8 M938.1,516.0 L938.1,131.1 M938.3,516.0 L938.3,129.5
+ M938.5,516.0 L938.5,127.9 M938.6,516.0 L938.6,126.4 M938.8,516.0 L938.8,125.0 M939.0,516.0 L939.0,123.6
+ M939.2,516.0 L939.2,122.3 M939.4,516.0 L939.4,121.0 M939.5,516.0 L939.5,119.8 M939.7,516.0 L939.7,118.6
+ M939.9,516.0 L939.9,117.5 M940.1,516.0 L940.1,116.5 M940.3,516.0 L940.3,115.4 M940.4,516.0 L940.4,114.5
+ M940.6,516.0 L940.6,113.6 M940.8,516.0 L940.8,112.7 M941.0,516.0 L941.0,111.8 M941.2,516.0 L941.2,111.0
+ M941.3,516.0 L941.3,110.3 M941.5,516.0 L941.5,109.6 M941.7,516.0 L941.7,108.9 M941.9,516.0 L941.9,108.3
+ M942.1,516.0 L942.1,107.7 M942.2,516.0 L942.2,107.1 M942.4,516.0 L942.4,106.6 M942.6,516.0 L942.6,106.1
+ M942.8,516.0 L942.8,105.7 M943.0,516.0 L943.0,105.3 M943.1,516.0 L943.1,104.9 M943.3,516.0 L943.3,104.6
+ M943.5,516.0 L943.5,104.3 M943.7,516.0 L943.7,104.0 M943.9,516.0 L943.9,103.8 M944.0,516.0 L944.0,103.6
+ M944.2,516.0 L944.2,103.4 M944.4,516.0 L944.4,103.3 M944.6,516.0 L944.6,103.2 M944.8,516.0 L944.8,103.2
+ M945.0,516.0 L945.0,103.2 M945.1,516.0 L945.1,103.2 M945.3,516.0 L945.3,103.2 M945.5,516.0 L945.5,103.3
+ M945.7,516.0 L945.7,103.4 M945.9,516.0 L945.9,103.6 M946.0,516.0 L946.0,103.8 M946.2,516.0 L946.2,104.0
+ M946.4,516.0 L946.4,104.3 M946.6,516.0 L946.6,104.6 M946.8,516.0 L946.8,104.9 M946.9,516.0 L946.9,105.3
+ M947.1,516.0 L947.1,105.7 M947.3,516.0 L947.3,106.1 M947.5,516.0 L947.5,106.6 M947.7,516.0 L947.7,107.1
+ M947.8,516.0 L947.8,107.7 M948.0,516.0 L948.0,108.3 M948.2,516.0 L948.2,108.9 M948.4,516.0 L948.4,109.6
+ M948.6,516.0 L948.6,110.3 '/> <path stroke='rgb(222, 125, 0)' d='M948.7,516.0 L948.7,111.0 M948.9,516.0 L948.9,111.8 M949.1,516.0 L949.1,112.7 M949.3,516.0 L949.3,113.6
+ M949.5,516.0 L949.5,114.5 M949.6,516.0 L949.6,115.4 M949.8,516.0 L949.8,116.5 M950.0,516.0 L950.0,117.5
+ M950.2,516.0 L950.2,118.6 M950.4,516.0 L950.4,119.8 M950.5,516.0 L950.5,121.0 M950.7,516.0 L950.7,122.3
+ M950.9,516.0 L950.9,123.6 M951.1,516.0 L951.1,125.0 M951.3,516.0 L951.3,126.4 M951.4,516.0 L951.4,127.9
+ M951.6,516.0 L951.6,129.5 M951.8,516.0 L951.8,131.1 M952.0,516.0 L952.0,132.8 M952.2,516.0 L952.2,134.6
+ M952.3,516.0 L952.3,136.4 M952.5,516.0 L952.5,138.4 M952.7,516.0 L952.7,140.4 M952.9,516.0 L952.9,142.5
+ M953.1,516.0 L953.1,144.7 M953.2,516.0 L953.2,147.0 M953.4,516.0 L953.4,149.5 M953.6,516.0 L953.6,152.1
+ M953.8,516.0 L953.8,154.8 M954.0,516.0 L954.0,157.7 M954.2,516.0 L954.2,160.7 M954.3,516.0 L954.3,164.0
+ M954.5,516.0 L954.5,167.4 M954.7,516.0 L954.7,171.2 M954.9,516.0 L954.9,175.2 M955.1,516.0 L955.1,179.7
+ M955.2,516.0 L955.2,184.6 M955.4,516.0 L955.4,190.1 M955.6,516.0 L955.6,196.5 M955.8,516.0 L955.8,204.0
+ M956.0,516.0 L956.0,213.3 M956.1,516.0 L956.1,226.0 M956.3,516.0 L956.3,246.6 M956.5,516.0 L956.5,439.4
+ M956.7,516.0 L956.7,249.8 M956.9,516.0 L956.9,232.3 M957.0,516.0 L957.0,222.9 M957.2,516.0 L957.2,216.7
+ M957.4,516.0 L957.4,212.4 M957.6,516.0 L957.6,209.3 M957.8,516.0 L957.8,207.0 M957.9,516.0 L957.9,205.3
+ M958.1,516.0 L958.1,204.2 M958.3,516.0 L958.3,203.5 M958.5,516.0 L958.5,203.1 M958.7,516.0 L958.7,203.1
+ M958.8,516.0 L958.8,203.4 M959.0,516.0 L959.0,203.9 M959.2,516.0 L959.2,204.7 M959.4,516.0 L959.4,205.7
+ M959.6,516.0 L959.6,207.0 M959.7,516.0 L959.7,208.6 M959.9,516.0 L959.9,210.4 M960.1,516.0 L960.1,212.4
+ M960.3,516.0 L960.3,214.8 M960.5,516.0 L960.5,217.5 M960.6,516.0 L960.6,220.6 M960.8,516.0 L960.8,224.1
+ M961.0,516.0 L961.0,228.1 M961.2,516.0 L961.2,232.8 M961.4,516.0 L961.4,238.3 M961.5,516.0 L961.5,245.0
+ M961.7,516.0 L961.7,253.6 M961.9,516.0 L961.9,265.6 M962.1,516.0 L962.1,285.5 M962.3,516.0 L962.3,466.4
+ M962.5,516.0 L962.5,287.4 M962.6,516.0 L962.6,269.3 M962.8,516.0 L962.8,259.3 M963.0,516.0 L963.0,252.5
+ M963.2,516.0 L963.2,247.7 M963.4,516.0 L963.4,244.0 M963.5,516.0 L963.5,241.2 M963.7,516.0 L963.7,239.1
+ M963.9,516.0 L963.9,237.5 M964.1,516.0 L964.1,236.3 M964.3,516.0 L964.3,235.5 M964.4,516.0 L964.4,235.0
+ M964.6,516.0 L964.6,234.9 M964.8,516.0 L964.8,235.0 M965.0,516.0 L965.0,235.4 M965.2,516.0 L965.2,236.0
+ M965.3,516.0 L965.3,237.0 M965.5,516.0 L965.5,238.1 M965.7,516.0 L965.7,239.6 M965.9,516.0 L965.9,241.3
+ M966.1,516.0 L966.1,243.3 M966.2,516.0 L966.2,245.7 M966.4,516.0 L966.4,248.4 M966.6,516.0 L966.6,251.6
+ M966.8,516.0 L966.8,255.3 M967.0,516.0 L967.0,259.7 M967.1,516.0 L967.1,265.0 M967.3,516.0 L967.3,271.4
+ M967.5,516.0 L967.5,279.7 M967.7,516.0 L967.7,291.4 M967.9,516.0 L967.9,311.0 M968.0,516.0 L968.0,483.8
+ M968.2,516.0 L968.2,312.5 M968.4,516.0 L968.4,294.1 M968.6,516.0 L968.6,283.8 M968.8,516.0 L968.8,276.8
+ M968.9,516.0 L968.9,271.7 M969.1,516.0 L969.1,267.8 M969.3,516.0 L969.3,264.8 M969.5,516.0 L969.5,262.5
+ M969.7,516.0 L969.7,260.6 M969.8,516.0 L969.8,259.2 M970.0,516.0 L970.0,258.2 M970.2,516.0 L970.2,257.6
+ M970.4,516.0 L970.4,257.2 M970.6,516.0 L970.6,257.1 M970.8,516.0 L970.8,257.3 M970.9,516.0 L970.9,257.8
+ M971.1,516.0 L971.1,258.5 M971.3,516.0 L971.3,259.5 M971.5,516.0 L971.5,260.8 M971.7,516.0 L971.7,262.3
+ M971.8,516.0 L971.8,264.2 M972.0,516.0 L972.0,266.4 M972.2,516.0 L972.2,269.0 M972.4,516.0 L972.4,272.0
+ M972.6,516.0 L972.6,275.5 M972.7,516.0 L972.7,279.7 M972.9,516.0 L972.9,284.8 M973.1,516.0 L973.1,291.1
+ M973.3,516.0 L973.3,299.3 M973.5,516.0 L973.5,310.8 M973.6,516.0 L973.6,330.3 M973.8,516.0 L973.8,496.7
+ M974.0,516.0 L974.0,331.5 M974.2,516.0 L974.2,313.0 M974.4,516.0 L974.4,302.5 M974.5,516.0 L974.5,295.4
+ M974.7,516.0 L974.7,290.2 M974.9,516.0 L974.9,286.1 M975.1,516.0 L975.1,283.0 M975.3,516.0 L975.3,280.5
+ M975.4,516.0 L975.4,278.5 M975.6,516.0 L975.6,277.0 M975.8,516.0 L975.8,275.9 M976.0,516.0 L976.0,275.1
+ M976.2,516.0 L976.2,274.6 M976.3,516.0 L976.3,274.4 M976.5,516.0 L976.5,274.5 M976.7,516.0 L976.7,274.9
+ M976.9,516.0 L976.9,275.5 M977.1,516.0 L977.1,276.4 M977.2,516.0 L977.2,277.5 M977.4,516.0 L977.4,279.0
+ M977.6,516.0 L977.6,280.7 M977.8,516.0 L977.8,282.8 M978.0,516.0 L978.0,285.3 M978.1,516.0 L978.1,288.2
+ M978.3,516.0 L978.3,291.6 M978.5,516.0 L978.5,295.7 M978.7,516.0 L978.7,300.7 M978.9,516.0 L978.9,306.9
+ M979.1,516.0 L979.1,315.0 M979.2,516.0 L979.2,326.4 M979.4,516.0 L979.4,345.8 M979.6,516.0 L979.6,507.1
+ M979.8,516.0 L979.8,346.8 M980.0,516.0 L980.0,328.2 M980.1,516.0 L980.1,317.7 M980.3,516.0 L980.3,310.5
+ M980.5,516.0 L980.5,305.2 M980.7,516.0 L980.7,301.0 M980.9,516.0 L980.9,297.8 M981.0,516.0 L981.0,295.2
+ M981.2,516.0 L981.2,293.2 M981.4,516.0 L981.4,291.6 M981.6,516.0 L981.6,290.4 M981.8,516.0 L981.8,289.5
+ M981.9,516.0 L981.9,289.0 M982.1,516.0 L982.1,288.7 M982.3,516.0 L982.3,288.7 M982.5,516.0 L982.5,289.0
+ M982.7,516.0 L982.7,289.5 M982.8,516.0 L982.8,290.3 M983.0,516.0 L983.0,291.4 M983.2,516.0 L983.2,292.7
+ M983.4,516.0 L983.4,294.4 M983.6,516.0 L983.6,296.4 M983.7,516.0 L983.7,298.8 M983.9,516.0 L983.9,301.7
+ M984.1,516.0 L984.1,305.1 M984.3,516.0 L984.3,309.1 M984.5,516.0 L984.5,314.0 M984.6,516.0 L984.6,320.2
+ M984.8,516.0 L984.8,328.1 M985.0,516.0 L985.0,339.5 M985.2,516.0 L985.2,358.8 M985.4,516.0 L985.4,515.9
+ M985.5,516.0 L985.5,359.7 M985.7,516.0 L985.7,341.1 M985.9,516.0 L985.9,330.5 M986.1,516.0 L986.1,323.2
+ M986.3,516.0 L986.3,317.8 M986.4,516.0 L986.4,313.6 M986.6,516.0 L986.6,310.3 M986.8,516.0 L986.8,307.7
+ M987.0,516.0 L987.0,305.6 M987.2,516.0 L987.2,303.9 M987.4,516.0 L987.4,302.7 M987.5,516.0 L987.5,301.8
+ M987.7,516.0 L987.7,301.1 M987.9,516.0 L987.9,300.8 M988.1,516.0 L988.1,300.8 M988.3,516.0 L988.3,301.0
+ M988.4,516.0 L988.4,301.5 M988.6,516.0 L988.6,302.2 M988.8,516.0 L988.8,303.2 M989.0,516.0 L989.0,304.5
+ M989.2,516.0 L989.2,306.2 M989.3,516.0 L989.3,308.1 M989.5,516.0 L989.5,310.5 M989.7,516.0 L989.7,313.3
+ M989.9,516.0 L989.9,316.6 M990.1,516.0 L990.1,320.6 M990.2,516.0 L990.2,325.4 M990.4,516.0 L990.4,331.5
+ M990.6,516.0 L990.6,339.5 M990.8,516.0 L990.8,350.7 M991.0,516.0 L991.0,370.0 M991.1,516.0 M991.3,516.0
+ L991.3,370.9 M991.5,516.0 L991.5,352.2 M991.7,516.0 L991.7,341.5 M991.9,516.0 L991.9,334.2 M992.0,516.0
+ L992.0,328.8 M992.2,516.0 L992.2,324.5 M992.4,516.0 L992.4,321.2 M992.6,516.0 L992.6,318.5 M992.8,516.0
+ L992.8,316.4 M992.9,516.0 L992.9,314.7 M993.1,516.0 L993.1,313.4 M993.3,516.0 L993.3,312.4 M993.5,516.0
+ L993.5,311.7 M993.7,516.0 L993.7,311.4 M993.8,516.0 L993.8,311.3 M994.0,516.0 L994.0,311.4 M994.2,516.0
+ L994.2,311.9 M994.4,516.0 L994.4,312.6 M994.6,516.0 L994.6,313.6 M994.7,516.0 L994.7,314.8 M994.9,516.0
+ L994.9,316.4 '/> <path stroke='rgb(222, 125, 0)' d='M995.1,516.0 L995.1,318.3 M995.3,516.0 L995.3,320.7 M995.5,516.0 L995.5,323.4 M995.7,516.0 L995.7,326.7
+ M995.8,516.0 L995.8,330.7 M996.0,516.0 L996.0,335.5 M996.2,516.0 L996.2,341.5 M996.4,516.0 L996.4,349.4
+ M996.6,516.0 L996.6,360.7 M996.7,516.0 L996.7,379.9 M996.9,516.0 M997.1,516.0 L997.1,380.7 M997.3,516.0
+ L997.3,361.9 M997.5,516.0 L997.5,351.2 M997.6,516.0 L997.6,343.9 M997.8,516.0 L997.8,338.4 M998.0,516.0
+ L998.0,334.2 M998.2,516.0 L998.2,330.8 M998.4,516.0 L998.4,328.1 M998.5,516.0 L998.5,325.9 M998.7,516.0
+ L998.7,324.2 M998.9,516.0 L998.9,322.8 M999.1,516.0 L999.1,321.8 M999.3,516.0 L999.3,321.1 M999.4,516.0
+ L999.4,320.7 M999.6,516.0 L999.6,320.6 M999.8,516.0 L999.8,320.7 M1000.0,516.0 L1000.0,321.1 M1000.2,516.0
+ L1000.2,321.8 M1000.3,516.0 L1000.3,322.8 M1000.5,516.0 L1000.5,324.0 M1000.7,516.0 L1000.7,325.5 M1000.9,516.0
+ L1000.9,327.4 M1001.1,516.0 L1001.1,329.7 M1001.2,516.0 L1001.2,332.4 M1001.4,516.0 L1001.4,335.7 M1001.6,516.0
+ L1001.6,339.6 M1001.8,516.0 L1001.8,344.4 M1002.0,516.0 L1002.0,350.4 M1002.1,516.0 L1002.1,358.3 M1002.3,516.0
+ L1002.3,369.5 M1002.5,516.0 L1002.5,388.7 M1002.7,516.0 M1002.9,516.0 L1002.9,389.5 M1003.0,516.0 L1003.0,370.7
+ M1003.2,516.0 L1003.2,359.9 M1003.4,516.0 L1003.4,352.6 M1003.6,516.0 L1003.6,347.1 M1003.8,516.0 L1003.8,342.8
+ M1004.0,516.0 L1004.0,339.4 M1004.1,516.0 L1004.1,336.6 M1004.3,516.0 L1004.3,334.4 M1004.5,516.0 L1004.5,332.7
+ M1004.7,516.0 L1004.7,331.3 M1004.9,516.0 L1004.9,330.3 M1005.0,516.0 L1005.0,329.5 M1005.2,516.0 L1005.2,329.1
+ M1005.4,516.0 L1005.4,328.9 M1005.6,516.0 L1005.6,329.1 M1005.8,516.0 L1005.8,329.4 M1005.9,516.0 L1005.9,330.1
+ M1006.1,516.0 L1006.1,331.0 M1006.3,516.0 L1006.3,332.2 M1006.5,516.0 L1006.5,333.7 M1006.7,516.0 L1006.7,335.6
+ M1006.8,516.0 L1006.8,337.9 M1007.0,516.0 L1007.0,340.6 M1007.2,516.0 L1007.2,343.8 M1007.4,516.0 L1007.4,347.7
+ M1007.6,516.0 L1007.6,352.5 M1007.7,516.0 L1007.7,358.4 M1007.9,516.0 L1007.9,366.3 M1008.1,516.0 L1008.1,377.5
+ M1008.3,516.0 L1008.3,396.6 M1008.5,516.0 M1008.6,516.0 L1008.6,397.4 M1008.8,516.0 L1008.8,378.6 M1009.0,516.0
+ L1009.0,367.8 M1009.2,516.0 L1009.2,360.4 M1009.4,516.0 L1009.4,354.9 M1009.5,516.0 L1009.5,350.6 M1009.7,516.0
+ L1009.7,347.1 M1009.9,516.0 L1009.9,344.4 M1010.1,516.0 L1010.1,342.1 M1010.3,516.0 L1010.3,340.4 M1010.4,516.0
+ L1010.4,339.0 M1010.6,516.0 L1010.6,337.9 M1010.8,516.0 L1010.8,337.2 M1011.0,516.0 L1011.0,336.7 M1011.2,516.0
+ L1011.2,336.5 M1011.3,516.0 L1011.3,336.6 M1011.5,516.0 L1011.5,337.0 M1011.7,516.0 L1011.7,337.6 M1011.9,516.0
+ L1011.9,338.5 M1012.1,516.0 L1012.1,339.7 M1012.3,516.0 L1012.3,341.2 M1012.4,516.0 L1012.4,343.1 M1012.6,516.0
+ L1012.6,345.3 M1012.8,516.0 L1012.8,348.0 M1013.0,516.0 L1013.0,351.2 M1013.2,516.0 L1013.2,355.0 M1013.3,516.0
+ L1013.3,359.8 M1013.5,516.0 L1013.5,365.8 M1013.7,516.0 L1013.7,373.6 M1013.9,516.0 L1013.9,384.7 M1014.1,516.0
+ L1014.1,403.9 M1014.2,516.0 M1014.4,516.0 L1014.4,404.6 M1014.6,516.0 L1014.6,385.8 M1014.8,516.0 L1014.8,375.0
+ M1015.0,516.0 L1015.0,367.6 M1015.1,516.0 L1015.1,362.0 M1015.3,516.0 L1015.3,357.7 M1015.5,516.0 L1015.5,354.2
+ M1015.7,516.0 L1015.7,351.5 M1015.9,516.0 L1015.9,349.2 M1016.0,516.0 L1016.0,347.4 M1016.2,516.0 L1016.2,346.0
+ M1016.4,516.0 L1016.4,344.9 M1016.6,516.0 L1016.6,344.2 M1016.8,516.0 L1016.8,343.7 M1016.9,516.0 L1016.9,343.5
+ M1017.1,516.0 L1017.1,343.6 M1017.3,516.0 L1017.3,343.9 M1017.5,516.0 L1017.5,344.5 M1017.7,516.0 L1017.7,345.4
+ M1017.8,516.0 L1017.8,346.6 M1018.0,516.0 L1018.0,348.1 M1018.2,516.0 L1018.2,349.9 M1018.4,516.0 L1018.4,352.1
+ M1018.6,516.0 L1018.6,354.8 M1018.7,516.0 L1018.7,357.9 M1018.9,516.0 L1018.9,361.8 M1019.1,516.0 L1019.1,366.5
+ M1019.3,516.0 L1019.3,372.5 M1019.5,516.0 L1019.5,380.3 M1019.6,516.0 L1019.6,391.4 M1019.8,516.0 L1019.8,410.5
+ M1020.0,516.0 M1020.2,516.0 L1020.2,411.3 M1020.4,516.0 L1020.4,392.4 M1020.6,516.0 L1020.6,381.6 M1020.7,516.0
+ L1020.7,374.2 M1020.9,516.0 L1020.9,368.6 M1021.1,516.0 L1021.1,364.2 M1021.3,516.0 L1021.3,360.8 M1021.5,516.0
+ L1021.5,358.0 M1021.6,516.0 L1021.6,355.7 M1021.8,516.0 L1021.8,353.9 M1022.0,516.0 L1022.0,352.5 M1022.2,516.0
+ L1022.2,351.4 M1022.4,516.0 L1022.4,350.6 M1022.5,516.0 L1022.5,350.1 M1022.7,516.0 L1022.7,349.9 M1022.9,516.0
+ L1022.9,350.0 M1023.1,516.0 L1023.1,350.3 M1023.3,516.0 L1023.3,350.9 M1023.4,516.0 L1023.4,351.7 M1023.6,516.0
+ L1023.6,352.9 M1023.8,516.0 L1023.8,354.4 M1024.0,516.0 L1024.0,356.2 M1024.2,516.0 L1024.2,358.4 M1024.3,516.0
+ L1024.3,361.0 M1024.5,516.0 L1024.5,364.2 M1024.7,516.0 L1024.7,368.0 M1024.9,516.0 L1024.9,372.8 M1025.1,516.0
+ L1025.1,378.7 M1025.2,516.0 L1025.2,386.5 M1025.4,516.0 L1025.4,397.6 M1025.6,516.0 L1025.6,416.7 M1025.8,516.0
+ M1026.0,516.0 L1026.0,417.4 M1026.1,516.0 L1026.1,398.5 M1026.3,516.0 L1026.3,387.7 M1026.5,516.0 L1026.5,380.3
+ M1026.7,516.0 L1026.7,374.7 M1026.9,516.0 L1026.9,370.3 M1027.0,516.0 L1027.0,366.8 M1027.2,516.0 L1027.2,364.0
+ M1027.4,516.0 L1027.4,361.7 M1027.6,516.0 L1027.6,359.9 M1027.8,516.0 L1027.8,358.5 M1027.9,516.0 L1027.9,357.4
+ M1028.1,516.0 L1028.1,356.6 M1028.3,516.0 L1028.3,356.1 M1028.5,516.0 L1028.5,355.8 M1028.7,516.0 L1028.7,355.9
+ M1028.8,516.0 L1028.8,356.2 M1029.0,516.0 L1029.0,356.8 M1029.2,516.0 L1029.2,357.6 M1029.4,516.0 L1029.4,358.8
+ M1029.6,516.0 L1029.6,360.2 M1029.8,516.0 L1029.8,362.0 M1029.9,516.0 L1029.9,364.2 M1030.1,516.0 L1030.1,366.8
+ M1030.3,516.0 L1030.3,370.0 M1030.5,516.0 L1030.5,373.8 M1030.7,516.0 L1030.7,378.5 M1030.8,516.0 L1030.8,384.5
+ M1031.0,516.0 L1031.0,392.2 M1031.2,516.0 L1031.2,403.3 M1031.4,516.0 L1031.4,422.4 M1031.6,516.0 M1031.7,516.0
+ L1031.7,423.1 M1031.9,516.0 L1031.9,404.2 M1032.1,516.0 L1032.1,393.4 M1032.3,516.0 L1032.3,385.9 M1032.5,516.0
+ L1032.5,380.3 M1032.6,516.0 L1032.6,376.0 M1032.8,516.0 L1032.8,372.5 M1033.0,516.0 L1033.0,369.7 M1033.2,516.0
+ L1033.2,367.4 M1033.4,516.0 L1033.4,365.5 M1033.5,516.0 L1033.5,364.1 M1033.7,516.0 L1033.7,362.9 M1033.9,516.0
+ L1033.9,362.1 M1034.1,516.0 L1034.1,361.6 M1034.3,516.0 L1034.3,361.4 M1034.4,516.0 L1034.4,361.4 M1034.6,516.0
+ L1034.6,361.7 M1034.8,516.0 L1034.8,362.3 M1035.0,516.0 L1035.0,363.1 M1035.2,516.0 L1035.2,364.3 M1035.3,516.0
+ L1035.3,365.7 M1035.5,516.0 L1035.5,367.5 M1035.7,516.0 L1035.7,369.7 M1035.9,516.0 L1035.9,372.3 M1036.1,516.0
+ L1036.1,375.4 M1036.2,516.0 L1036.2,379.3 M1036.4,516.0 L1036.4,384.0 M1036.6,516.0 L1036.6,389.9 M1036.8,516.0
+ L1036.8,397.6 M1037.0,516.0 L1037.0,408.7 M1037.1,516.0 L1037.1,427.8 M1037.3,516.0 M1037.5,516.0 L1037.5,428.5
+ M1037.7,516.0 L1037.7,409.6 M1037.9,516.0 L1037.9,398.7 M1038.1,516.0 L1038.1,391.3 M1038.2,516.0 L1038.2,385.7
+ M1038.4,516.0 L1038.4,381.3 M1038.6,516.0 L1038.6,377.8 M1038.8,516.0 L1038.8,374.9 M1039.0,516.0 L1039.0,372.6
+ M1039.1,516.0 L1039.1,370.8 M1039.3,516.0 L1039.3,369.3 M1039.5,516.0 L1039.5,368.2 M1039.7,516.0 L1039.7,367.4
+ M1039.9,516.0 L1039.9,366.8 M1040.0,516.0 L1040.0,366.6 M1040.2,516.0 L1040.2,366.6 M1040.4,516.0 L1040.4,366.9
+ M1040.6,516.0 L1040.6,367.5 M1040.8,516.0 L1040.8,368.3 M1040.9,516.0 L1040.9,369.4 M1041.1,516.0 L1041.1,370.8
+ M1041.3,516.0 L1041.3,372.6 M1041.5,516.0 L1041.5,374.8 M1041.7,516.0 L1041.7,377.4 M1041.8,516.0 L1041.8,380.5
+ M1042.0,516.0 L1042.0,384.3 '/> <path stroke='rgb(222, 125, 0)' d='M1042.2,516.0 L1042.2,389.0 M1042.4,516.0 L1042.4,394.9 M1042.6,516.0 L1042.6,402.7 M1042.7,516.0 L1042.7,413.8
+ M1042.9,516.0 L1042.9,432.8 M1043.1,516.0 M1043.3,516.0 L1043.3,433.5 M1043.5,516.0 L1043.5,414.6 M1043.6,516.0
+ L1043.6,403.7 M1043.8,516.0 L1043.8,396.2 M1044.0,516.0 L1044.0,390.6 M1044.2,516.0 L1044.2,386.2 M1044.4,516.0
+ L1044.4,382.7 M1044.5,516.0 L1044.5,379.9 M1044.7,516.0 L1044.7,377.6 M1044.9,516.0 L1044.9,375.7 M1045.1,516.0
+ L1045.1,374.2 M1045.3,516.0 L1045.3,373.1 M1045.4,516.0 L1045.4,372.3 M1045.6,516.0 L1045.6,371.7 M1045.8,516.0
+ L1045.8,371.5 M1046.0,516.0 L1046.0,371.5 M1046.2,516.0 L1046.2,371.8 M1046.4,516.0 L1046.4,372.3 M1046.5,516.0
+ L1046.5,373.1 M1046.7,516.0 L1046.7,374.3 M1046.9,516.0 L1046.9,375.7 M1047.1,516.0 L1047.1,377.5 M1047.3,516.0
+ L1047.3,379.6 M1047.4,516.0 L1047.4,382.2 M1047.6,516.0 L1047.6,385.3 M1047.8,516.0 L1047.8,389.1 M1048.0,516.0
+ L1048.0,393.8 M1048.2,516.0 L1048.2,399.7 M1048.3,516.0 L1048.3,407.4 M1048.5,516.0 L1048.5,418.5 M1048.7,516.0
+ L1048.7,437.5 M1048.9,516.0 M1049.1,516.0 L1049.1,438.3 M1049.2,516.0 L1049.2,419.3 M1049.4,516.0 L1049.4,408.5
+ M1049.6,516.0 L1049.6,401.0 M1049.8,516.0 L1049.8,395.3 M1050.0,516.0 L1050.0,390.9 M1050.1,516.0 L1050.1,387.4
+ M1050.3,516.0 L1050.3,384.6 M1050.5,516.0 L1050.5,382.2 M1050.7,516.0 L1050.7,380.4 M1050.9,516.0 L1050.9,378.9
+ M1051.0,516.0 L1051.0,377.7 M1051.2,516.0 L1051.2,376.9 M1051.4,516.0 L1051.4,376.4 M1051.6,516.0 L1051.6,376.1
+ M1051.8,516.0 L1051.8,376.1 M1051.9,516.0 L1051.9,376.4 M1052.1,516.0 L1052.1,376.9 M1052.3,516.0 L1052.3,377.7
+ M1052.5,516.0 L1052.5,378.8 M1052.7,516.0 L1052.7,380.3 M1052.8,516.0 L1052.8,382.0 M1053.0,516.0 L1053.0,384.2
+ M1053.2,516.0 L1053.2,386.7 M1053.4,516.0 L1053.4,389.9 M1053.6,516.0 L1053.6,393.7 M1053.7,516.0 L1053.7,398.3
+ M1053.9,516.0 L1053.9,404.2 M1054.1,516.0 L1054.1,411.9 M1054.3,516.0 L1054.3,423.0 M1054.5,516.0 L1054.5,442.0
+ M1054.7,516.0 M1054.8,516.0 L1054.8,442.8 M1055.0,516.0 L1055.0,423.8 M1055.2,516.0 L1055.2,412.9 M1055.4,516.0
+ L1055.4,405.4 M1055.6,516.0 L1055.6,399.8 M1055.7,516.0 L1055.7,395.4 M1055.9,516.0 L1055.9,391.8 M1056.1,516.0
+ L1056.1,389.0 M1056.3,516.0 L1056.3,386.7 M1056.5,516.0 L1056.5,384.8 M1056.6,516.0 L1056.6,383.3 M1056.8,516.0
+ L1056.8,382.1 M1057.0,516.0 L1057.0,381.3 M1057.2,516.0 L1057.2,380.7 M1057.4,516.0 L1057.4,380.5 M1057.5,516.0
+ L1057.5,380.5 M1057.7,516.0 L1057.7,380.7 M1057.9,516.0 L1057.9,381.3 M1058.1,516.0 L1058.1,382.1 M1058.3,516.0
+ L1058.3,383.2 M1058.4,516.0 L1058.4,384.6 M1058.6,516.0 L1058.6,386.3 M1058.8,516.0 L1058.8,388.5 M1059.0,516.0
+ L1059.0,391.1 M1059.2,516.0 L1059.2,394.2 M1059.3,516.0 L1059.3,398.0 M1059.5,516.0 L1059.5,402.6 M1059.7,516.0
+ L1059.7,408.5 M1059.9,516.0 L1059.9,416.2 M1060.1,516.0 L1060.1,427.3 M1060.2,516.0 L1060.2,446.2 M1060.4,516.0
+ M1060.6,516.0 L1060.6,447.0 M1060.8,516.0 L1060.8,428.0 M1061.0,516.0 L1061.0,417.2 M1061.1,516.0 L1061.1,409.6
+ M1061.3,516.0 L1061.3,404.0 M1061.5,516.0 L1061.5,399.6 M1061.7,516.0 L1061.7,396.1 M1061.9,516.0 L1061.9,393.2
+ M1062.0,516.0 L1062.0,390.8 M1062.2,516.0 L1062.2,389.0 M1062.4,516.0 L1062.4,387.5 M1062.6,516.0 L1062.6,386.3
+ M1062.8,516.0 L1062.8,385.5 M1063.0,516.0 L1063.0,384.9 M1063.1,516.0 L1063.1,384.6 M1063.3,516.0 L1063.3,384.6
+ M1063.5,516.0 L1063.5,384.9 M1063.7,516.0 L1063.7,385.4 M1063.9,516.0 L1063.9,386.2 M1064.0,516.0 L1064.0,387.3
+ M1064.2,516.0 L1064.2,388.7 M1064.4,516.0 L1064.4,390.4 M1064.6,516.0 L1064.6,392.6 M1064.8,516.0 L1064.8,395.1
+ M1064.9,516.0 L1064.9,398.3 M1065.1,516.0 L1065.1,402.0 M1065.3,516.0 L1065.3,406.7 M1065.5,516.0 L1065.5,412.5
+ M1065.7,516.0 L1065.7,420.3 M1065.8,516.0 L1065.8,431.3 M1066.0,516.0 L1066.0,450.3 M1066.2,516.0 M1066.4,516.0
+ L1066.4,451.1 M1066.6,516.0 L1066.6,432.1 M1066.7,516.0 L1066.7,421.2 M1066.9,516.0 L1066.9,413.7 M1067.1,516.0
+ L1067.1,408.0 M1067.3,516.0 L1067.3,403.6 M1067.5,516.0 L1067.5,400.1 M1067.6,516.0 L1067.6,397.2 M1067.8,516.0
+ L1067.8,394.8 M1068.0,516.0 L1068.0,392.9 M1068.2,516.0 L1068.2,391.4 M1068.4,516.0 L1068.4,390.3 M1068.5,516.0
+ L1068.5,389.4 M1068.7,516.0 L1068.7,388.9 M1068.9,516.0 L1068.9,388.6 M1069.1,516.0 L1069.1,388.6 M1069.3,516.0
+ L1069.3,388.8 M1069.4,516.0 L1069.4,389.3 M1069.6,516.0 L1069.6,390.1 M1069.8,516.0 L1069.8,391.2 M1070.0,516.0
+ L1070.0,392.6 M1070.2,516.0 L1070.2,394.3 M1070.3,516.0 L1070.3,396.5 M1070.5,516.0 L1070.5,399.0 M1070.7,516.0
+ L1070.7,402.2 M1070.9,516.0 L1070.9,405.9 M1071.1,516.0 L1071.1,410.6 M1071.3,516.0 L1071.3,416.4 M1071.4,516.0
+ L1071.4,424.1 M1071.6,516.0 L1071.6,435.2 M1071.8,516.0 L1071.8,454.1 M1072.0,516.0 M1072.2,516.0 L1072.2,454.9
+ M1072.3,516.0 L1072.3,435.9 M1072.5,516.0 L1072.5,425.0 M1072.7,516.0 L1072.7,417.5 M1072.9,516.0 L1072.9,411.8
+ M1073.1,516.0 L1073.1,407.4 M1073.2,516.0 L1073.2,403.9 M1073.4,516.0 L1073.4,401.0 M1073.6,516.0 L1073.6,398.6
+ M1073.8,516.0 L1073.8,396.7 M1074.0,516.0 L1074.0,395.2 M1074.1,516.0 L1074.1,394.1 M1074.3,516.0 L1074.3,393.2
+ M1074.5,516.0 L1074.5,392.6 M1074.7,516.0 L1074.7,392.3 M1074.9,516.0 L1074.9,392.3 M1075.0,516.0 L1075.0,392.6
+ M1075.2,516.0 L1075.2,393.1 M1075.4,516.0 L1075.4,393.9 M1075.6,516.0 L1075.6,395.0 M1075.8,516.0 L1075.8,396.3
+ M1075.9,516.0 L1075.9,398.1 M1076.1,516.0 L1076.1,400.2 M1076.3,516.0 L1076.3,402.8 M1076.5,516.0 L1076.5,405.9
+ M1076.7,516.0 L1076.7,409.6 M1076.8,516.0 L1076.8,414.3 M1077.0,516.0 L1077.0,420.1 M1077.2,516.0 L1077.2,427.8
+ M1077.4,516.0 L1077.4,438.8 M1077.6,516.0 L1077.6,457.8 M1077.7,516.0 M1077.9,516.0 L1077.9,458.6 M1078.1,516.0
+ L1078.1,439.6 M1078.3,516.0 L1078.3,428.7 M1078.5,516.0 L1078.5,421.2 M1078.6,516.0 L1078.6,415.5 M1078.8,516.0
+ L1078.8,411.1 M1079.0,516.0 L1079.0,407.5 M1079.2,516.0 L1079.2,404.6 M1079.4,516.0 L1079.4,402.3 M1079.6,516.0
+ L1079.6,400.4 M1079.7,516.0 L1079.7,398.9 M1079.9,516.0 L1079.9,397.7 M1080.1,516.0 L1080.1,396.8 M1080.3,516.0
+ L1080.3,396.2 M1080.5,516.0 L1080.5,396.0 M1080.6,516.0 L1080.6,395.9 M1080.8,516.0 L1080.8,396.2 M1081.0,516.0
+ L1081.0,396.7 M1081.2,516.0 L1081.2,397.5 M1081.4,516.0 L1081.4,398.5 M1081.5,516.0 L1081.5,399.9 M1081.7,516.0
+ L1081.7,401.7 M1081.9,516.0 L1081.9,403.8 M1082.1,516.0 L1082.1,406.3 M1082.3,516.0 L1082.3,409.4 M1082.4,516.0
+ L1082.4,413.2 M1082.6,516.0 L1082.6,417.8 M1082.8,516.0 L1082.8,423.7 M1083.0,516.0 L1083.0,431.4 M1083.2,516.0
+ L1083.2,442.4 M1083.3,516.0 L1083.3,461.3 M1083.5,516.0 M1083.7,516.0 L1083.7,462.2 M1083.9,516.0 L1083.9,443.1
+ M1084.1,516.0 L1084.1,432.2 M1084.2,516.0 L1084.2,424.7 M1084.4,516.0 L1084.4,419.0 M1084.6,516.0 L1084.6,414.6
+ M1084.8,516.0 L1084.8,411.0 M1085.0,516.0 L1085.0,408.1 M1085.1,516.0 L1085.1,405.8 M1085.3,516.0 L1085.3,403.9
+ M1085.5,516.0 L1085.5,402.3 M1085.7,516.0 L1085.7,401.2 M1085.9,516.0 L1085.9,400.3 M1086.0,516.0 L1086.0,399.7
+ M1086.2,516.0 L1086.2,399.4 M1086.4,516.0 L1086.4,399.4 M1086.6,516.0 L1086.6,399.6 M1086.8,516.0 L1086.8,400.1
+ M1086.9,516.0 L1086.9,400.9 M1087.1,516.0 L1087.1,402.0 M1087.3,516.0 L1087.3,403.4 M1087.5,516.0 L1087.5,405.1
+ M1087.7,516.0 L1087.7,407.2 M1087.9,516.0 L1087.9,409.7 M1088.0,516.0 L1088.0,412.8 M1088.2,516.0 L1088.2,416.6
+ M1088.4,516.0 L1088.4,421.2 M1088.6,516.0 L1088.6,427.1 M1088.8,516.0 L1088.8,434.8 M1088.9,516.0 L1088.9,445.8
+ M1089.1,516.0 L1089.1,464.7 '/> <path stroke='rgb(222, 125, 0)' d='M1089.3,516.0 M1089.5,516.0 L1089.5,465.6 M1089.7,516.0 L1089.7,446.5 M1089.8,516.0 L1089.8,435.6 M1090.0,516.0
+ L1090.0,428.0 M1090.2,516.0 L1090.2,422.4 M1090.4,516.0 L1090.4,417.9 M1090.6,516.0 L1090.6,414.4 M1090.7,516.0
+ L1090.7,411.5 M1090.9,516.0 L1090.9,409.1 M1091.1,516.0 L1091.1,407.2 M1091.3,516.0 L1091.3,405.7 M1091.5,516.0
+ L1091.5,404.5 M1091.6,516.0 L1091.6,403.6 M1091.8,516.0 L1091.8,403.0 M1092.0,516.0 L1092.0,402.7 M1092.2,516.0
+ L1092.2,402.7 M1092.4,516.0 L1092.4,402.9 M1092.5,516.0 L1092.5,403.4 M1092.7,516.0 L1092.7,404.2 M1092.9,516.0
+ L1092.9,405.3 M1093.1,516.0 L1093.1,406.6 M1093.3,516.0 L1093.3,408.4 M1093.4,516.0 L1093.4,410.5 M1093.6,516.0
+ L1093.6,413.0 M1093.8,516.0 L1093.8,416.1 M1094.0,516.0 L1094.0,419.9 M1094.2,516.0 L1094.2,424.5 M1094.3,516.0
+ L1094.3,430.3 M1094.5,516.0 L1094.5,438.0 M1094.7,516.0 L1094.7,449.0 M1094.9,516.0 L1094.9,467.9 M1095.1,516.0
+ M1095.2,516.0 L1095.2,468.8 M1095.4,516.0 L1095.4,449.8 M1095.6,516.0 L1095.6,438.8 M1095.8,516.0 L1095.8,431.3
+ M1096.0,516.0 L1096.0,425.6 M1096.2,516.0 L1096.2,421.2 M1096.3,516.0 L1096.3,417.6 M1096.5,516.0 L1096.5,414.7
+ M1096.7,516.0 L1096.7,412.3 M1096.9,516.0 L1096.9,410.4 M1097.1,516.0 L1097.1,408.9 M1097.2,516.0 L1097.2,407.7
+ M1097.4,516.0 L1097.4,406.8 M1097.6,516.0 L1097.6,406.2 M1097.8,516.0 L1097.8,405.9 M1098.0,516.0 L1098.0,405.9
+ M1098.1,516.0 L1098.1,406.1 M1098.3,516.0 L1098.3,406.6 M1098.5,516.0 L1098.5,407.4 M1098.7,516.0 L1098.7,408.4
+ M1098.9,516.0 L1098.9,409.8 M1099.0,516.0 L1099.0,411.5 M1099.2,516.0 L1099.2,413.6 M1099.4,516.0 L1099.4,416.2
+ M1099.6,516.0 L1099.6,419.3 M1099.8,516.0 L1099.8,423.0 M1099.9,516.0 L1099.9,427.6 M1100.1,516.0 L1100.1,433.5
+ M1100.3,516.0 L1100.3,441.1 M1100.5,516.0 L1100.5,452.1 M1100.7,516.0 L1100.7,471.0 M1100.8,516.0 M1101.0,516.0
+ L1101.0,472.0 M1101.2,516.0 L1101.2,452.9 M1101.4,516.0 L1101.4,442.0 M1101.6,516.0 L1101.6,434.4 M1101.7,516.0
+ L1101.7,428.7 M1101.9,516.0 L1101.9,424.3 M1102.1,516.0 L1102.1,420.7 M1102.3,516.0 L1102.3,417.8 M1102.5,516.0
+ L1102.5,415.4 M1102.6,516.0 L1102.6,413.5 M1102.8,516.0 L1102.8,412.0 M1103.0,516.0 L1103.0,410.8 M1103.2,516.0
+ L1103.2,409.9 M1103.4,516.0 L1103.4,409.3 M1103.5,516.0 L1103.5,409.0 M1103.7,516.0 L1103.7,408.9 M1103.9,516.0
+ L1103.9,409.2 M1104.1,516.0 L1104.1,409.7 M1104.3,516.0 L1104.3,410.4 M1104.4,516.0 L1104.4,411.5 M1104.6,516.0
+ L1104.6,412.9 M1104.8,516.0 L1104.8,414.6 M1105.0,516.0 L1105.0,416.7 M1105.2,516.0 L1105.2,419.2 M1105.4,516.0
+ L1105.4,422.3 M1105.5,516.0 L1105.5,426.0 M1105.7,516.0 L1105.7,430.7 M1105.9,516.0 L1105.9,436.5 M1106.1,516.0
+ L1106.1,444.2 M1106.3,516.0 L1106.3,455.2 M1106.4,516.0 L1106.4,474.0 M1106.6,516.0 M1106.8,516.0 L1106.8,475.0
+ M1107.0,516.0 L1107.0,455.9 M1107.2,516.0 L1107.2,445.0 M1107.3,516.0 L1107.3,437.4 M1107.5,516.0 L1107.5,431.7
+ M1107.7,516.0 L1107.7,427.3 M1107.9,516.0 L1107.9,423.7 M1108.1,516.0 L1108.1,420.8 M1108.2,516.0 L1108.2,418.4
+ M1108.4,516.0 L1108.4,416.5 M1108.6,516.0 L1108.6,414.9 M1108.8,516.0 L1108.8,413.7 M1109.0,516.0 L1109.0,412.9
+ M1109.1,516.0 L1109.1,412.3 M1109.3,516.0 L1109.3,412.0 M1109.5,516.0 L1109.5,411.9 M1109.7,516.0 L1109.7,412.1
+ M1109.9,516.0 L1109.9,412.6 M1110.0,516.0 L1110.0,413.4 M1110.2,516.0 L1110.2,414.4 M1110.4,516.0 L1110.4,415.8
+ M1110.6,516.0 L1110.6,417.5 M1110.8,516.0 L1110.8,419.6 M1110.9,516.0 L1110.9,422.2 M1111.1,516.0 L1111.1,425.2
+ M1111.3,516.0 L1111.3,429.0 M1111.5,516.0 L1111.5,433.6 M1111.7,516.0 L1111.7,439.4 M1111.8,516.0 L1111.8,447.1
+ M1112.0,516.0 L1112.0,458.1 M1112.2,516.0 L1112.2,476.9 M1112.4,516.0 M1112.6,516.0 L1112.6,477.9 M1112.7,516.0
+ L1112.7,458.8 M1112.9,516.0 L1112.9,447.9 M1113.1,516.0 L1113.1,440.3 M1113.3,516.0 L1113.3,434.6 M1113.5,516.0
+ L1113.5,430.2 M1113.7,516.0 L1113.7,426.6 M1113.8,516.0 L1113.8,423.7 M1114.0,516.0 L1114.0,421.3 M1114.2,516.0
+ L1114.2,419.4 M1114.4,516.0 L1114.4,417.8 M1114.6,516.0 L1114.6,416.6 M1114.7,516.0 L1114.7,415.7 M1114.9,516.0
+ L1114.9,415.1 M1115.1,516.0 L1115.1,414.8 M1115.3,516.0 L1115.3,414.8 M1115.5,516.0 L1115.5,415.0 M1115.6,516.0
+ L1115.6,415.5 M1115.8,516.0 L1115.8,416.2 M1116.0,516.0 L1116.0,417.3 M1116.2,516.0 L1116.2,418.6 M1116.4,516.0
+ L1116.4,420.4 M1116.5,516.0 L1116.5,422.4 M1116.7,516.0 L1116.7,425.0 M1116.9,516.0 L1116.9,428.1 M1117.1,516.0
+ L1117.1,431.8 M1117.3,516.0 L1117.3,436.4 M1117.4,516.0 L1117.4,442.2 M1117.6,516.0 L1117.6,449.9 M1117.8,516.0
+ L1117.8,460.9 M1118.0,516.0 L1118.0,479.7 M1118.2,516.0 M1118.3,516.0 L1118.3,480.7 M1118.5,516.0 L1118.5,461.6
+ M1118.7,516.0 L1118.7,450.7 M1118.9,516.0 L1118.9,443.1 M1119.1,516.0 L1119.1,437.4 M1119.2,516.0 L1119.2,432.9
+ M1119.4,516.0 L1119.4,429.4 M1119.6,516.0 L1119.6,426.4 M1119.8,516.0 L1119.8,424.1 M1120.0,516.0 L1120.0,422.1
+ M1120.1,516.0 L1120.1,420.6 M1120.3,516.0 L1120.3,419.4 M1120.5,516.0 L1120.5,418.5 M1120.7,516.0 L1120.7,417.9
+ M1120.9,516.0 L1120.9,417.6 M1121.0,516.0 L1121.0,417.5 M1121.2,516.0 L1121.2,417.7 M1121.4,516.0 L1121.4,418.2
+ M1121.6,516.0 L1121.6,419.0 M1121.8,516.0 L1121.8,420.0 M1122.0,516.0 L1122.0,421.4 M1122.1,516.0 L1122.1,423.1
+ M1122.3,516.0 L1122.3,425.2 M1122.5,516.0 L1122.5,427.7 M1122.7,516.0 L1122.7,430.8 M1122.9,516.0 L1122.9,434.5
+ M1123.0,516.0 L1123.0,439.1 M1123.2,516.0 L1123.2,444.9 M1123.4,516.0 L1123.4,452.6 M1123.6,516.0 L1123.6,463.6
+ M1123.8,516.0 L1123.8,482.4 M1123.9,516.0 M1124.1,516.0 L1124.1,483.4 M1124.3,516.0 L1124.3,464.3 M1124.5,516.0
+ L1124.5,453.4 M1124.7,516.0 L1124.7,445.8 M1124.8,516.0 L1124.8,440.1 M1125.0,516.0 L1125.0,435.6 M1125.2,516.0
+ L1125.2,432.1 M1125.4,516.0 L1125.4,429.1 M1125.6,516.0 L1125.6,426.8 M1125.7,516.0 L1125.7,424.8 M1125.9,516.0
+ L1125.9,423.3 M1126.1,516.0 L1126.1,422.1 M1126.3,516.0 L1126.3,421.2 M1126.5,516.0 L1126.5,420.6 M1126.6,516.0
+ L1126.6,420.3 M1126.8,516.0 L1126.8,420.2 M1127.0,516.0 L1127.0,420.4 M1127.2,516.0 L1127.2,420.9 M1127.4,516.0
+ L1127.4,421.6 M1127.5,516.0 L1127.5,422.7 M1127.7,516.0 L1127.7,424.0 M1127.9,516.0 L1127.9,425.8 M1128.1,516.0
+ L1128.1,427.8 M1128.3,516.0 L1128.3,430.4 M1128.4,516.0 L1128.4,433.4 M1128.6,516.0 L1128.6,437.2 M1128.8,516.0
+ L1128.8,441.8 M1129.0,516.0 L1129.0,447.6 M1129.2,516.0 L1129.2,455.2 M1129.3,516.0 L1129.3,466.2 M1129.5,516.0
+ L1129.5,485.1 M1129.7,516.0 M1129.9,516.0 L1129.9,486.1 M1130.1,516.0 L1130.1,467.0 M1130.3,516.0 L1130.3,456.0
+ M1130.4,516.0 L1130.4,448.4 M1130.6,516.0 L1130.6,442.7 M1130.8,516.0 L1130.8,438.3 M1131.0,516.0 L1131.0,434.7
+ M1131.2,516.0 L1131.2,431.7 M1131.3,516.0 L1131.3,429.4 M1131.5,516.0 L1131.5,427.4 M1131.7,516.0 L1131.7,425.9
+ M1131.9,516.0 L1131.9,424.7 M1132.1,516.0 L1132.1,423.8 M1132.2,516.0 L1132.2,423.2 M1132.4,516.0 L1132.4,422.8
+ M1132.6,516.0 L1132.6,422.8 M1132.8,516.0 L1132.8,423.0 M1133.0,516.0 L1133.0,423.5 M1133.1,516.0 L1133.1,424.2
+ M1133.3,516.0 L1133.3,425.3 M1133.5,516.0 L1133.5,426.6 M1133.7,516.0 L1133.7,428.3 M1133.9,516.0 L1133.9,430.4
+ M1134.0,516.0 L1134.0,432.9 M1134.2,516.0 L1134.2,436.0 M1134.4,516.0 L1134.4,439.7 M1134.6,516.0 L1134.6,444.3
+ M1134.8,516.0 L1134.8,450.1 M1134.9,516.0 L1134.9,457.8 M1135.1,516.0 L1135.1,468.8 M1135.3,516.0 L1135.3,487.6
+ M1135.5,516.0 M1135.7,516.0 L1135.7,488.6 M1135.8,516.0 L1135.8,469.5 M1136.0,516.0 L1136.0,458.5 M1136.2,516.0
+ L1136.2,451.0 '/> <path stroke='rgb(222, 125, 0)' d='M1136.4,516.0 L1136.4,445.3 M1136.6,516.0 L1136.6,440.8 M1136.7,516.0 L1136.7,437.2 M1136.9,516.0 L1136.9,434.3
+ M1137.1,516.0 L1137.1,431.9 M1137.3,516.0 L1137.3,429.9 M1137.5,516.0 L1137.5,428.4 M1137.6,516.0 L1137.6,427.2
+ M1137.8,516.0 L1137.8,426.3 M1138.0,516.0 L1138.0,425.7 M1138.2,516.0 L1138.2,425.4 M1138.4,516.0 L1138.4,425.3
+ M1138.6,516.0 L1138.6,425.5 M1138.7,516.0 L1138.7,426.0 M1138.9,516.0 L1138.9,426.7 M1139.1,516.0 L1139.1,427.8
+ M1139.3,516.0 L1139.3,429.1 M1139.5,516.0 L1139.5,430.8 M1139.6,516.0 L1139.6,432.9 M1139.8,516.0 L1139.8,435.4
+ M1140.0,516.0 L1140.0,438.5 M1140.2,516.0 L1140.2,442.2 M1140.4,516.0 L1140.4,446.8 M1140.5,516.0 L1140.5,452.6
+ M1140.7,516.0 L1140.7,460.3 M1140.9,516.0 L1140.9,471.2 M1141.1,516.0 L1141.1,490.1 M1141.3,516.0 M1141.4,516.0
+ L1141.4,491.1 M1141.6,516.0 L1141.6,472.0 M1141.8,516.0 L1141.8,461.0 M1142.0,516.0 L1142.0,453.4 M1142.2,516.0
+ L1142.2,447.7 M1142.3,516.0 L1142.3,443.3 M1142.5,516.0 L1142.5,439.7 M1142.7,516.0 L1142.7,436.7 M1142.9,516.0
+ L1142.9,434.3 M1143.1,516.0 L1143.1,432.4 M1143.2,516.0 L1143.2,430.8 M1143.4,516.0 L1143.4,429.6 M1143.6,516.0
+ L1143.6,428.7 M1143.8,516.0 L1143.8,428.1 M1144.0,516.0 L1144.0,427.8 M1144.1,516.0 L1144.1,427.7 M1144.3,516.0
+ L1144.3,427.9 M1144.5,516.0 L1144.5,428.4 M1144.7,516.0 L1144.7,429.2 M1144.9,516.0 L1144.9,430.2 M1145.0,516.0
+ L1145.0,431.5 M1145.2,516.0 L1145.2,433.2 M1145.4,516.0 L1145.4,435.3 M1145.6,516.0 L1145.6,437.8 M1145.8,516.0
+ L1145.8,440.9 M1145.9,516.0 L1145.9,444.6 M1146.1,516.0 L1146.1,449.2 M1146.3,516.0 L1146.3,455.0 M1146.5,516.0
+ L1146.5,462.7 M1146.7,516.0 L1146.7,473.6 M1146.9,516.0 L1146.9,492.4 M1147.0,516.0 M1147.2,516.0 L1147.2,493.5
+ M1147.4,516.0 L1147.4,474.4 M1147.6,516.0 L1147.6,463.4 M1147.8,516.0 L1147.8,455.8 M1147.9,516.0 L1147.9,450.1
+ M1148.1,516.0 L1148.1,445.6 M1148.3,516.0 L1148.3,442.0 M1148.5,516.0 L1148.5,439.1 M1148.7,516.0 L1148.7,436.7
+ M1148.8,516.0 L1148.8,434.8 M1149.0,516.0 L1149.0,433.2 M1149.2,516.0 L1149.2,432.0 M1149.4,516.0 L1149.4,431.1
+ M1149.6,516.0 L1149.6,430.5 M1149.7,516.0 L1149.7,430.2 M1149.9,516.0 L1149.9,430.1 M1150.1,516.0 L1150.1,430.3
+ M1150.3,516.0 L1150.3,430.8 M1150.5,516.0 L1150.5,431.5 M1150.6,516.0 L1150.6,432.5 M1150.8,516.0 L1150.8,433.9
+ M1151.0,516.0 L1151.0,435.6 M1151.2,516.0 L1151.2,437.7 M1151.4,516.0 L1151.4,440.2 M1151.5,516.0 L1151.5,443.2
+ M1151.7,516.0 L1151.7,447.0 M1151.9,516.0 L1151.9,451.5 M1152.1,516.0 L1152.1,457.3 M1152.3,516.0 L1152.3,465.0
+ M1152.4,516.0 L1152.4,476.0 M1152.6,516.0 L1152.6,494.8 M1152.8,516.0 M1153.0,516.0 L1153.0,495.9 M1153.2,516.0
+ L1153.2,476.7 M1153.3,516.0 L1153.3,465.7 M1153.5,516.0 L1153.5,458.2 M1153.7,516.0 L1153.7,452.4 M1153.9,516.0
+ L1153.9,448.0 M1154.1,516.0 L1154.1,444.4 M1154.2,516.0 L1154.2,441.4 M1154.4,516.0 L1154.4,439.0 M1154.6,516.0
+ L1154.6,437.1 M1154.8,516.0 L1154.8,435.5 M1155.0,516.0 L1155.0,434.3 M1155.2,516.0 L1155.2,433.4 M1155.3,516.0
+ L1155.3,432.8 M1155.5,516.0 L1155.5,432.5 M1155.7,516.0 L1155.7,432.4 M1155.9,516.0 L1155.9,432.6 M1156.1,516.0
+ L1156.1,433.1 M1156.2,516.0 L1156.2,433.8 M1156.4,516.0 L1156.4,434.8 M1156.6,516.0 L1156.6,436.2 M1156.8,516.0
+ L1156.8,437.9 M1157.0,516.0 L1157.0,440.0 M1157.1,516.0 L1157.1,442.5 M1157.3,516.0 L1157.3,445.5 M1157.5,516.0
+ L1157.5,449.2 M1157.7,516.0 L1157.7,453.8 M1157.9,516.0 L1157.9,459.6 M1158.0,516.0 L1158.0,467.3 M1158.2,516.0
+ L1158.2,478.2 M1158.4,516.0 L1158.4,497.0 M1158.6,516.0 M1158.8,516.0 L1158.8,498.2 M1158.9,516.0 L1158.9,479.0
+ M1159.1,516.0 L1159.1,468.0 M1159.3,516.0 L1159.3,460.4 M1159.5,516.0 L1159.5,454.7 M1159.7,516.0 L1159.7,450.2
+ M1159.8,516.0 L1159.8,446.6 M1160.0,516.0 L1160.0,443.7 M1160.2,516.0 L1160.2,441.3 M1160.4,516.0 L1160.4,439.3
+ M1160.6,516.0 L1160.6,437.8 M1160.7,516.0 L1160.7,436.6 M1160.9,516.0 L1160.9,435.7 M1161.1,516.0 L1161.1,435.0
+ M1161.3,516.0 L1161.3,434.7 M1161.5,516.0 L1161.5,434.6 M1161.6,516.0 L1161.6,434.8 M1161.8,516.0 L1161.8,435.3
+ M1162.0,516.0 L1162.0,436.0 M1162.2,516.0 L1162.2,437.1 M1162.4,516.0 L1162.4,438.4 M1162.5,516.0 L1162.5,440.1
+ M1162.7,516.0 L1162.7,442.2 M1162.9,516.0 L1162.9,444.7 M1163.1,516.0 L1163.1,447.7 M1163.3,516.0 L1163.3,451.5
+ M1163.5,516.0 L1163.5,456.0 M1163.6,516.0 L1163.6,461.8 M1163.8,516.0 L1163.8,469.5 M1164.0,516.0 L1164.0,480.4
+ M1164.2,516.0 L1164.2,499.2 M1164.4,516.0 M1164.5,516.0 L1164.5,500.4 M1164.7,516.0 L1164.7,481.2 M1164.9,516.0
+ L1164.9,470.2 M1165.1,516.0 L1165.1,462.6 M1165.3,516.0 L1165.3,456.9 M1165.4,516.0 L1165.4,452.4 M1165.6,516.0
+ L1165.6,448.8 M1165.8,516.0 L1165.8,445.9 M1166.0,516.0 L1166.0,443.5 M1166.2,516.0 L1166.2,441.5 M1166.3,516.0
+ L1166.3,440.0 M1166.5,516.0 L1166.5,438.7 M1166.7,516.0 L1166.7,437.8 M1166.9,516.0 L1166.9,437.2 M1167.1,516.0
+ L1167.1,436.9 M1167.2,516.0 L1167.2,436.8 M1167.4,516.0 L1167.4,437.0 M1167.6,516.0 L1167.6,437.5 M1167.8,516.0
+ L1167.8,438.2 M1168.0,516.0 L1168.0,439.2 M1168.1,516.0 L1168.1,440.6 M1168.3,516.0 L1168.3,442.3 M1168.5,516.0
+ L1168.5,444.3 M1168.7,516.0 L1168.7,446.9 M1168.9,516.0 L1168.9,449.9 M1169.0,516.0 L1169.0,453.6 M1169.2,516.0
+ L1169.2,458.2 M1169.4,516.0 L1169.4,464.0 M1169.6,516.0 L1169.6,471.6 M1169.8,516.0 L1169.8,482.6 M1169.9,516.0
+ L1169.9,501.4 M1170.1,516.0 M1170.3,516.0 L1170.3,502.5 M1170.5,516.0 L1170.5,483.4 M1170.7,516.0 L1170.7,472.4
+ M1170.8,516.0 L1170.8,464.8 M1171.0,516.0 L1171.0,459.1 M1171.2,516.0 L1171.2,454.6 M1171.4,516.0 L1171.4,451.0
+ M1171.6,516.0 L1171.6,448.0 M1171.8,516.0 L1171.8,445.6 M1171.9,516.0 L1171.9,443.7 M1172.1,516.0 L1172.1,442.1
+ M1172.3,516.0 L1172.3,440.9 M1172.5,516.0 L1172.5,440.0 M1172.7,516.0 L1172.7,439.3 M1172.8,516.0 L1172.8,439.0
+ M1173.0,516.0 L1173.0,438.9 M1173.2,516.0 L1173.2,439.1 M1173.4,516.0 L1173.4,439.6 M1173.6,516.0 L1173.6,440.3
+ M1173.7,516.0 L1173.7,441.4 M1173.9,516.0 L1173.9,442.7 M1174.1,516.0 L1174.1,444.4 M1174.3,516.0 L1174.3,446.5
+ M1174.5,516.0 L1174.5,449.0 M1174.6,516.0 L1174.6,452.0 M1174.8,516.0 L1174.8,455.7 M1175.0,516.0 L1175.0,460.3
+ M1175.2,516.0 L1175.2,466.1 M1175.4,516.0 L1175.4,473.7 M1175.5,516.0 L1175.5,484.7 M1175.7,516.0 L1175.7,503.4
+ M1175.9,516.0 '/></g>
+ </g>
+ <g id="gnuplot_plot_2b" ><title>gnuplot_plot_2b</title>
+<g fill="none" color="black" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,516.0 L1175.9,516.0 '/></g>
+ </g>
+<g fill="none" color="#FFFFFF" stroke="rgb( 0, 0, 0)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(916.1,506.6)" stroke="none" fill="rgb(0,0,0)" font-family="Microsoft Sans Serif:Bold" font-size="10.00" text-anchor="start">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >B = 1.500</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 38, 38, 38)' d='M714.0,516.0 L1175.9,516.0 M714.0,84.1 L1175.9,84.1 M714.0,516.0 L714.0,84.1 M1175.9,516.0 L1175.9,84.1
+ '/></g>
+<g fill="none" color="black" stroke="rgb( 38, 38, 38)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+</g>
+</svg>
+
diff --git a/chapter04/win_rect.svg b/chapter04/win_rect.svg
new file mode 100644
index 0000000..5a43426
--- /dev/null
+++ b/chapter04/win_rect.svg
@@ -0,0 +1,1594 @@
+<?xml version="1.0" encoding="windows-1252" standalone="no"?>
+<svg
+ viewBox="0 0 1200 600"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+>
+
+<title>Window function and its Fourier transform &#8211; Rectangular</title>
+<desc>Produced by GNUPLOT 5.2 patchlevel 6 </desc>
+
+<g id="gnuplot_canvas">
+
+<rect x="0" y="0" width="1200" height="600" fill="#ffffff"/>
+<defs>
+
+ <circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
+ <path id='gpPt0' stroke-width='0.179' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
+ <path id='gpPt1' stroke-width='0.179' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
+ <path id='gpPt2' stroke-width='0.179' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
+ <rect id='gpPt3' stroke-width='0.179' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
+ <rect id='gpPt4' stroke-width='0.179' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
+ <circle id='gpPt5' stroke-width='0.179' stroke='currentColor' cx='0' cy='0' r='1'/>
+ <use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
+ <path id='gpPt7' stroke-width='0.179' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
+ <use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
+ <use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
+ <use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
+ <use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
+ <use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
+ <path id='gpPt13' stroke-width='0.179' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
+ <use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
+ <filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
+ <feFlood flood-color='#FFFFFF' flood-opacity='1' result='bgnd'/>
+ <feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
+ </filter>
+ <filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
+ <feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
+ <feComposite in='SourceGraphic' in2='grey' operator='atop'/>
+ </filter>
+</defs>
+<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g stroke='none' shape-rendering='crispEdges'>
+ <polygon fill = 'rgb(255, 255, 255)' points = '96.0,516.0 557.8,516.0 557.8,84.2 96.0,84.2 '/>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,516.0 L557.9,516.0 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,516.0 L111.6,516.0 M557.9,516.0 L542.3,516.0 '/> <g transform="translate(85.5,522.5)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,474.9 L557.9,474.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,474.9 L111.6,474.9 M557.9,474.9 L542.3,474.9 '/> <g transform="translate(85.5,481.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.1</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,433.7 L557.9,433.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,433.7 L111.6,433.7 M557.9,433.7 L542.3,433.7 '/> <g transform="translate(85.5,440.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.2</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,392.6 L557.9,392.6 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,392.6 L111.6,392.6 M557.9,392.6 L542.3,392.6 '/> <g transform="translate(85.5,399.1)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.3</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,351.5 L557.9,351.5 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,351.5 L111.6,351.5 M557.9,351.5 L542.3,351.5 '/> <g transform="translate(85.5,358.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.4</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,310.3 L557.9,310.3 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,310.3 L111.6,310.3 M557.9,310.3 L542.3,310.3 '/> <g transform="translate(85.5,316.8)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.5</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,269.2 L557.9,269.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,269.2 L111.6,269.2 M557.9,269.2 L542.3,269.2 '/> <g transform="translate(85.5,275.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.6</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,228.1 L557.9,228.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,228.1 L111.6,228.1 M557.9,228.1 L542.3,228.1 '/> <g transform="translate(85.5,234.6)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.7</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,186.9 L557.9,186.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,186.9 L111.6,186.9 M557.9,186.9 L542.3,186.9 '/> <g transform="translate(85.5,193.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.8</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,145.8 L557.9,145.8 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,145.8 L111.6,145.8 M557.9,145.8 L542.3,145.8 '/> <g transform="translate(85.5,152.3)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.9</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,104.7 L557.9,104.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,104.7 L111.6,104.7 M557.9,104.7 L542.3,104.7 '/> <g transform="translate(85.5,111.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >1</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,516.0 L96.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,516.0 L96.0,500.4 M96.0,84.1 L96.0,99.7 '/> <g transform="translate(96.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" > 0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M153.7,516.0 L153.7,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M153.7,516.0 L153.7,500.4 M153.7,84.1 L153.7,99.7 '/> <g transform="translate(153.7,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M211.5,516.0 L211.5,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M211.5,516.0 L211.5,500.4 M211.5,84.1 L211.5,99.7 '/> <g transform="translate(211.5,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M269.2,516.0 L269.2,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M269.2,516.0 L269.2,500.4 M269.2,84.1 L269.2,99.7 '/> <g transform="translate(269.2,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M327.0,516.0 L327.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M327.0,516.0 L327.0,500.4 M327.0,84.1 L327.0,99.7 '/> <g transform="translate(327.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M384.7,516.0 L384.7,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M384.7,516.0 L384.7,500.4 M384.7,84.1 L384.7,99.7 '/> <g transform="translate(384.7,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M442.4,516.0 L442.4,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M442.4,516.0 L442.4,500.4 M442.4,84.1 L442.4,99.7 '/> <g transform="translate(442.4,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M500.2,516.0 L500.2,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M500.2,516.0 L500.2,500.4 M500.2,84.1 L500.2,99.7 '/> <g transform="translate(500.2,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M557.9,516.0 L557.9,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M557.9,516.0 L557.9,500.4 M557.9,84.1 L557.9,99.7 '/> <g transform="translate(557.9,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text xml:space="preserve"><tspan font-family="Microsoft Sans Serif" font-weight="bold" xml:space="preserve"> N</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(40.6,300.1) rotate(-90)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >amplitude</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(326.9,581.3)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >samples</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(326.9,39.9)" stroke="none" fill="rgb(0,0,0)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >Rectangular window</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+ <g id="gnuplot_plot_1a" ><title>gnuplot_plot_1a</title>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g stroke='none' shape-rendering='crispEdges'>
+ <polygon fill = 'rgb( 0, 102, 153)' points = '96.0,516.0 96.0,104.7 96.9,104.7 97.8,104.7 98.7,104.7 99.6,104.7 100.5,104.7 101.4,104.7 102.3,104.7 103.2,104.7 104.1,104.7 105.0,104.7 105.9,104.7 106.8,104.7 107.7,104.7 108.6,104.7
+109.5,104.7 110.4,104.7 111.3,104.7 112.2,104.7 113.1,104.7 114.0,104.7 114.9,104.7 115.8,104.7 116.7,104.7 117.7,104.7 118.6,104.7 119.5,104.7 120.4,104.7 121.3,104.7 122.2,104.7 123.1,104.7
+124.0,104.7 124.9,104.7 125.8,104.7 126.7,104.7 127.6,104.7 128.5,104.7 129.4,104.7 130.3,104.7 131.2,104.7 132.1,104.7 133.0,104.7 133.9,104.7 134.8,104.7 135.7,104.7 136.6,104.7 137.5,104.7
+138.4,104.7 139.3,104.7 140.2,104.7 141.1,104.7 142.0,104.7 142.9,104.7 143.8,104.7 144.7,104.7 145.6,104.7 146.5,104.7 147.4,104.7 148.3,104.7 149.2,104.7 150.1,104.7 151.0,104.7 151.9,104.7
+152.8,104.7 153.7,104.7 154.6,104.7 155.5,104.7 156.4,104.7 157.3,104.7 158.2,104.7 159.2,104.7 160.1,104.7 161.0,104.7 161.9,104.7 162.8,104.7 163.7,104.7 164.6,104.7 165.5,104.7 166.4,104.7
+167.3,104.7 168.2,104.7 169.1,104.7 170.0,104.7 170.9,104.7 171.8,104.7 172.7,104.7 173.6,104.7 174.5,104.7 175.4,104.7 176.3,104.7 177.2,104.7 178.1,104.7 179.0,104.7 179.9,104.7 180.8,104.7
+181.7,104.7 182.6,104.7 183.5,104.7 184.4,104.7 185.3,104.7 186.2,104.7 187.1,104.7 188.0,104.7 188.9,104.7 189.8,104.7 190.7,104.7 191.6,104.7 192.5,104.7 193.4,104.7 194.3,104.7 195.2,104.7
+196.1,104.7 197.0,104.7 197.9,104.7 198.8,104.7 199.7,104.7 200.6,104.7 201.6,104.7 202.5,104.7 203.4,104.7 204.3,104.7 205.2,104.7 206.1,104.7 207.0,104.7 207.9,104.7 208.8,104.7 209.7,104.7
+210.6,104.7 211.5,104.7 212.4,104.7 213.3,104.7 214.2,104.7 215.1,104.7 216.0,104.7 216.9,104.7 217.8,104.7 218.7,104.7 219.6,104.7 220.5,104.7 221.4,104.7 222.3,104.7 223.2,104.7 224.1,104.7
+225.0,104.7 225.9,104.7 226.8,104.7 227.7,104.7 228.6,104.7 229.5,104.7 230.4,104.7 231.3,104.7 232.2,104.7 233.1,104.7 234.0,104.7 234.9,104.7 235.8,104.7 236.7,104.7 237.6,104.7 238.5,104.7
+239.4,104.7 240.3,104.7 241.2,104.7 242.1,104.7 243.1,104.7 244.0,104.7 244.9,104.7 245.8,104.7 246.7,104.7 247.6,104.7 248.5,104.7 249.4,104.7 250.3,104.7 251.2,104.7 252.1,104.7 253.0,104.7
+253.9,104.7 254.8,104.7 255.7,104.7 256.6,104.7 257.5,104.7 258.4,104.7 259.3,104.7 260.2,104.7 261.1,104.7 262.0,104.7 262.9,104.7 263.8,104.7 264.7,104.7 265.6,104.7 266.5,104.7 267.4,104.7
+268.3,104.7 269.2,104.7 270.1,104.7 271.0,104.7 271.9,104.7 272.8,104.7 273.7,104.7 274.6,104.7 275.5,104.7 276.4,104.7 277.3,104.7 278.2,104.7 279.1,104.7 280.0,104.7 280.9,104.7 281.8,104.7
+282.7,104.7 283.6,104.7 284.5,104.7 285.5,104.7 286.4,104.7 287.3,104.7 288.2,104.7 289.1,104.7 290.0,104.7 290.9,104.7 291.8,104.7 292.7,104.7 293.6,104.7 294.5,104.7 295.4,104.7 296.3,104.7
+297.2,104.7 298.1,104.7 299.0,104.7 299.9,104.7 300.8,104.7 301.7,104.7 302.6,104.7 303.5,104.7 304.4,104.7 305.3,104.7 306.2,104.7 307.1,104.7 308.0,104.7 308.9,104.7 309.8,104.7 310.7,104.7
+311.6,104.7 312.5,104.7 313.4,104.7 314.3,104.7 315.2,104.7 316.1,104.7 317.0,104.7 317.9,104.7 318.8,104.7 319.7,104.7 320.6,104.7 321.5,104.7 322.4,104.7 323.3,104.7 324.2,104.7 325.1,104.7
+326.0,104.7 327.0,104.7 327.9,104.7 328.8,104.7 329.7,104.7 330.6,104.7 331.5,104.7 332.4,104.7 333.3,104.7 334.2,104.7 335.1,104.7 336.0,104.7 336.9,104.7 337.8,104.7 338.7,104.7 339.6,104.7
+340.5,104.7 341.4,104.7 342.3,104.7 343.2,104.7 344.1,104.7 345.0,104.7 345.9,104.7 346.8,104.7 347.7,104.7 348.6,104.7 349.5,104.7 350.4,104.7 351.3,104.7 352.2,104.7 353.1,104.7 354.0,104.7
+354.9,104.7 355.8,104.7 356.7,104.7 357.6,104.7 358.5,104.7 359.4,104.7 360.3,104.7 361.2,104.7 362.1,104.7 363.0,104.7 363.9,104.7 364.8,104.7 365.7,104.7 366.6,104.7 367.5,104.7 368.4,104.7
+369.4,104.7 370.3,104.7 371.2,104.7 372.1,104.7 373.0,104.7 373.9,104.7 374.8,104.7 375.7,104.7 376.6,104.7 377.5,104.7 378.4,104.7 379.3,104.7 380.2,104.7 381.1,104.7 382.0,104.7 382.9,104.7
+383.8,104.7 384.7,104.7 385.6,104.7 386.5,104.7 387.4,104.7 388.3,104.7 389.2,104.7 390.1,104.7 391.0,104.7 391.9,104.7 392.8,104.7 393.7,104.7 394.6,104.7 395.5,104.7 396.4,104.7 397.3,104.7
+398.2,104.7 399.1,104.7 400.0,104.7 400.9,104.7 401.8,104.7 402.7,104.7 403.6,104.7 404.5,104.7 405.4,104.7 406.3,104.7 407.2,104.7 408.1,104.7 409.0,104.7 409.9,104.7 410.8,104.7 411.8,104.7
+412.7,104.7 413.6,104.7 414.5,104.7 415.4,104.7 416.3,104.7 417.2,104.7 418.1,104.7 419.0,104.7 419.9,104.7 420.8,104.7 421.7,104.7 422.6,104.7 423.5,104.7 424.4,104.7 425.3,104.7 426.2,104.7
+427.1,104.7 428.0,104.7 428.9,104.7 429.8,104.7 430.7,104.7 431.6,104.7 432.5,104.7 433.4,104.7 434.3,104.7 435.2,104.7 436.1,104.7 437.0,104.7 437.9,104.7 438.8,104.7 439.7,104.7 440.6,104.7
+441.5,104.7 442.4,104.7 443.3,104.7 444.2,104.7 445.1,104.7 446.0,104.7 446.9,104.7 447.8,104.7 448.7,104.7 449.6,104.7 450.5,104.7 451.4,104.7 452.3,104.7 453.3,104.7 454.2,104.7 455.1,104.7
+456.0,104.7 456.9,104.7 457.8,104.7 458.7,104.7 459.6,104.7 460.5,104.7 461.4,104.7 462.3,104.7 463.2,104.7 464.1,104.7 465.0,104.7 465.9,104.7 466.8,104.7 467.7,104.7 468.6,104.7 469.5,104.7
+470.4,104.7 471.3,104.7 472.2,104.7 473.1,104.7 474.0,104.7 474.9,104.7 475.8,104.7 476.7,104.7 477.6,104.7 478.5,104.7 479.4,104.7 480.3,104.7 481.2,104.7 482.1,104.7 483.0,104.7 483.9,104.7
+484.8,104.7 485.7,104.7 486.6,104.7 487.5,104.7 488.4,104.7 489.3,104.7 490.2,104.7 491.1,104.7 492.0,104.7 492.9,104.7 493.8,104.7 494.7,104.7 495.7,104.7 496.6,104.7 497.5,104.7 498.4,104.7
+499.3,104.7 500.2,104.7 501.1,104.7 502.0,104.7 502.9,104.7 503.8,104.7 504.7,104.7 505.6,104.7 506.5,104.7 507.4,104.7 508.3,104.7 509.2,104.7 510.1,104.7 511.0,104.7 511.9,104.7 512.8,104.7
+513.7,104.7 514.6,104.7 515.5,104.7 516.4,104.7 517.3,104.7 518.2,104.7 519.1,104.7 520.0,104.7 520.9,104.7 521.8,104.7 522.7,104.7 523.6,104.7 524.5,104.7 525.4,104.7 526.3,104.7 527.2,104.7
+528.1,104.7 529.0,104.7 529.9,104.7 530.8,104.7 531.7,104.7 532.6,104.7 533.5,104.7 534.4,104.7 535.3,104.7 536.2,104.7 537.2,104.7 538.1,104.7 539.0,104.7 539.9,104.7 540.8,104.7 541.7,104.7
+542.6,104.7 543.5,104.7 544.4,104.7 545.3,104.7 546.2,104.7 547.1,104.7 548.0,104.7 548.9,104.7 549.8,104.7 550.7,104.7 551.6,104.7 552.5,104.7 553.4,104.7 554.3,104.7 555.2,104.7 556.1,104.7
+557.0,104.7 557.9,104.7 557.9,516.0 557.0,516.0 556.1,516.0 555.2,516.0 554.3,516.0 553.4,516.0 552.5,516.0 551.6,516.0 550.7,516.0 549.8,516.0 548.9,516.0 548.0,516.0 547.1,516.0 546.2,516.0
+545.3,516.0 544.4,516.0 543.5,516.0 542.6,516.0 541.7,516.0 540.8,516.0 539.9,516.0 539.0,516.0 538.1,516.0 537.2,516.0 536.2,516.0 535.3,516.0 534.4,516.0 533.5,516.0 532.6,516.0 531.7,516.0
+530.8,516.0 529.9,516.0 529.0,516.0 528.1,516.0 527.2,516.0 526.3,516.0 525.4,516.0 524.5,516.0 523.6,516.0 522.7,516.0 521.8,516.0 520.9,516.0 520.0,516.0 519.1,516.0 518.2,516.0 517.3,516.0
+516.4,516.0 515.5,516.0 514.6,516.0 513.7,516.0 512.8,516.0 511.9,516.0 511.0,516.0 510.1,516.0 509.2,516.0 508.3,516.0 507.4,516.0 506.5,516.0 505.6,516.0 504.7,516.0 503.8,516.0 502.9,516.0
+502.0,516.0 501.1,516.0 500.2,516.0 499.3,516.0 498.4,516.0 497.5,516.0 496.6,516.0 495.7,516.0 494.7,516.0 493.8,516.0 492.9,516.0 492.0,516.0 491.1,516.0 490.2,516.0 489.3,516.0 488.4,516.0
+487.5,516.0 486.6,516.0 485.7,516.0 484.8,516.0 483.9,516.0 483.0,516.0 482.1,516.0 481.2,516.0 480.3,516.0 479.4,516.0 478.5,516.0 477.6,516.0 476.7,516.0 475.8,516.0 474.9,516.0 474.0,516.0
+473.1,516.0 472.2,516.0 471.3,516.0 470.4,516.0 469.5,516.0 468.6,516.0 467.7,516.0 466.8,516.0 465.9,516.0 465.0,516.0 464.1,516.0 463.2,516.0 462.3,516.0 461.4,516.0 460.5,516.0 459.6,516.0
+458.7,516.0 457.8,516.0 456.9,516.0 456.0,516.0 455.1,516.0 454.2,516.0 453.3,516.0 452.3,516.0 451.4,516.0 450.5,516.0 449.6,516.0 448.7,516.0 447.8,516.0 446.9,516.0 446.0,516.0 445.1,516.0
+444.2,516.0 443.3,516.0 442.4,516.0 441.5,516.0 440.6,516.0 439.7,516.0 438.8,516.0 437.9,516.0 437.0,516.0 436.1,516.0 435.2,516.0 434.3,516.0 433.4,516.0 432.5,516.0 431.6,516.0 430.7,516.0
+429.8,516.0 428.9,516.0 428.0,516.0 427.1,516.0 426.2,516.0 425.3,516.0 424.4,516.0 423.5,516.0 422.6,516.0 421.7,516.0 420.8,516.0 419.9,516.0 419.0,516.0 418.1,516.0 417.2,516.0 416.3,516.0
+415.4,516.0 414.5,516.0 413.6,516.0 412.7,516.0 411.8,516.0 410.8,516.0 409.9,516.0 409.0,516.0 408.1,516.0 407.2,516.0 406.3,516.0 405.4,516.0 404.5,516.0 403.6,516.0 402.7,516.0 401.8,516.0
+400.9,516.0 400.0,516.0 399.1,516.0 398.2,516.0 397.3,516.0 396.4,516.0 395.5,516.0 394.6,516.0 393.7,516.0 392.8,516.0 391.9,516.0 391.0,516.0 390.1,516.0 389.2,516.0 388.3,516.0 387.4,516.0
+386.5,516.0 385.6,516.0 384.7,516.0 383.8,516.0 382.9,516.0 382.0,516.0 381.1,516.0 380.2,516.0 379.3,516.0 378.4,516.0 377.5,516.0 376.6,516.0 375.7,516.0 374.8,516.0 373.9,516.0 373.0,516.0
+372.1,516.0 371.2,516.0 370.3,516.0 369.4,516.0 368.4,516.0 367.5,516.0 366.6,516.0 365.7,516.0 364.8,516.0 363.9,516.0 363.0,516.0 362.1,516.0 361.2,516.0 360.3,516.0 359.4,516.0 358.5,516.0
+357.6,516.0 356.7,516.0 355.8,516.0 354.9,516.0 354.0,516.0 353.1,516.0 352.2,516.0 351.3,516.0 350.4,516.0 349.5,516.0 348.6,516.0 347.7,516.0 346.8,516.0 345.9,516.0 345.0,516.0 344.1,516.0
+343.2,516.0 342.3,516.0 341.4,516.0 340.5,516.0 339.6,516.0 338.7,516.0 337.8,516.0 336.9,516.0 336.0,516.0 335.1,516.0 334.2,516.0 333.3,516.0 332.4,516.0 331.5,516.0 330.6,516.0 329.7,516.0
+328.8,516.0 327.9,516.0 327.0,516.0 326.0,516.0 325.1,516.0 324.2,516.0 323.3,516.0 322.4,516.0 321.5,516.0 320.6,516.0 319.7,516.0 318.8,516.0 317.9,516.0 317.0,516.0 316.1,516.0 315.2,516.0
+314.3,516.0 313.4,516.0 312.5,516.0 311.6,516.0 310.7,516.0 309.8,516.0 308.9,516.0 308.0,516.0 307.1,516.0 306.2,516.0 305.3,516.0 304.4,516.0 303.5,516.0 302.6,516.0 301.7,516.0 300.8,516.0
+299.9,516.0 299.0,516.0 298.1,516.0 297.2,516.0 296.3,516.0 295.4,516.0 294.5,516.0 293.6,516.0 292.7,516.0 291.8,516.0 290.9,516.0 290.0,516.0 289.1,516.0 288.2,516.0 287.3,516.0 286.4,516.0
+285.5,516.0 284.5,516.0 283.6,516.0 282.7,516.0 281.8,516.0 280.9,516.0 280.0,516.0 279.1,516.0 278.2,516.0 277.3,516.0 276.4,516.0 275.5,516.0 274.6,516.0 273.7,516.0 272.8,516.0 271.9,516.0
+271.0,516.0 270.1,516.0 269.2,516.0 268.3,516.0 267.4,516.0 266.5,516.0 265.6,516.0 264.7,516.0 263.8,516.0 262.9,516.0 262.0,516.0 261.1,516.0 260.2,516.0 259.3,516.0 258.4,516.0 257.5,516.0
+256.6,516.0 255.7,516.0 254.8,516.0 253.9,516.0 253.0,516.0 252.1,516.0 251.2,516.0 250.3,516.0 249.4,516.0 248.5,516.0 247.6,516.0 246.7,516.0 245.8,516.0 244.9,516.0 244.0,516.0 243.1,516.0
+242.1,516.0 241.2,516.0 240.3,516.0 239.4,516.0 238.5,516.0 237.6,516.0 236.7,516.0 235.8,516.0 234.9,516.0 234.0,516.0 233.1,516.0 232.2,516.0 231.3,516.0 230.4,516.0 229.5,516.0 228.6,516.0
+227.7,516.0 226.8,516.0 225.9,516.0 225.0,516.0 224.1,516.0 223.2,516.0 222.3,516.0 221.4,516.0 220.5,516.0 219.6,516.0 218.7,516.0 217.8,516.0 216.9,516.0 216.0,516.0 215.1,516.0 214.2,516.0
+213.3,516.0 212.4,516.0 211.5,516.0 210.6,516.0 209.7,516.0 208.8,516.0 207.9,516.0 207.0,516.0 206.1,516.0 205.2,516.0 204.3,516.0 203.4,516.0 202.5,516.0 201.6,516.0 200.6,516.0 199.7,516.0
+198.8,516.0 197.9,516.0 197.0,516.0 196.1,516.0 195.2,516.0 194.3,516.0 193.4,516.0 192.5,516.0 191.6,516.0 190.7,516.0 189.8,516.0 188.9,516.0 188.0,516.0 187.1,516.0 186.2,516.0 185.3,516.0
+184.4,516.0 183.5,516.0 182.6,516.0 181.7,516.0 180.8,516.0 179.9,516.0 179.0,516.0 178.1,516.0 177.2,516.0 176.3,516.0 175.4,516.0 174.5,516.0 173.6,516.0 172.7,516.0 171.8,516.0 170.9,516.0
+170.0,516.0 169.1,516.0 168.2,516.0 167.3,516.0 166.4,516.0 165.5,516.0 164.6,516.0 163.7,516.0 162.8,516.0 161.9,516.0 161.0,516.0 160.1,516.0 159.2,516.0 158.2,516.0 157.3,516.0 156.4,516.0
+155.5,516.0 154.6,516.0 153.7,516.0 152.8,516.0 151.9,516.0 151.0,516.0 150.1,516.0 149.2,516.0 148.3,516.0 147.4,516.0 146.5,516.0 145.6,516.0 144.7,516.0 143.8,516.0 142.9,516.0 142.0,516.0
+141.1,516.0 140.2,516.0 139.3,516.0 138.4,516.0 137.5,516.0 136.6,516.0 135.7,516.0 134.8,516.0 133.9,516.0 133.0,516.0 132.1,516.0 131.2,516.0 130.3,516.0 129.4,516.0 128.5,516.0 127.6,516.0
+126.7,516.0 125.8,516.0 124.9,516.0 124.0,516.0 123.1,516.0 122.2,516.0 121.3,516.0 120.4,516.0 119.5,516.0 118.6,516.0 117.7,516.0 116.7,516.0 115.8,516.0 114.9,516.0 114.0,516.0 113.1,516.0
+112.2,516.0 111.3,516.0 110.4,516.0 109.5,516.0 108.6,516.0 107.7,516.0 106.8,516.0 105.9,516.0 105.0,516.0 104.1,516.0 103.2,516.0 102.3,516.0 101.4,516.0 100.5,516.0 99.6,516.0 98.7,516.0
+97.8,516.0 96.9,516.0 96.0,516.0 96.0,516.0 '/>
+ </g>
+ <path stroke='rgb( 0, 102, 153)' d='M96.0,516.0 L96.0,104.7 L96.9,104.7 L97.8,104.7 L98.7,104.7 L99.6,104.7 L100.5,104.7 L101.4,104.7
+ L102.3,104.7 L103.2,104.7 L104.1,104.7 L105.0,104.7 L105.9,104.7 L106.8,104.7 L107.7,104.7 L108.6,104.7
+ L109.5,104.7 L110.4,104.7 L111.3,104.7 L112.2,104.7 L113.1,104.7 L114.0,104.7 L114.9,104.7 L115.8,104.7
+ L116.7,104.7 L117.7,104.7 L118.6,104.7 L119.5,104.7 L120.4,104.7 L121.3,104.7 L122.2,104.7 L123.1,104.7
+ L124.0,104.7 L124.9,104.7 L125.8,104.7 L126.7,104.7 L127.6,104.7 L128.5,104.7 L129.4,104.7 L130.3,104.7
+ L131.2,104.7 L132.1,104.7 L133.0,104.7 L133.9,104.7 L134.8,104.7 L135.7,104.7 L136.6,104.7 L137.5,104.7
+ L138.4,104.7 L139.3,104.7 L140.2,104.7 L141.1,104.7 L142.0,104.7 L142.9,104.7 L143.8,104.7 L144.7,104.7
+ L145.6,104.7 L146.5,104.7 L147.4,104.7 L148.3,104.7 L149.2,104.7 L150.1,104.7 L151.0,104.7 L151.9,104.7
+ L152.8,104.7 L153.7,104.7 L154.6,104.7 L155.5,104.7 L156.4,104.7 L157.3,104.7 L158.2,104.7 L159.2,104.7
+ L160.1,104.7 L161.0,104.7 L161.9,104.7 L162.8,104.7 L163.7,104.7 L164.6,104.7 L165.5,104.7 L166.4,104.7
+ L167.3,104.7 L168.2,104.7 L169.1,104.7 L170.0,104.7 L170.9,104.7 L171.8,104.7 L172.7,104.7 L173.6,104.7
+ L174.5,104.7 L175.4,104.7 L176.3,104.7 L177.2,104.7 L178.1,104.7 L179.0,104.7 L179.9,104.7 L180.8,104.7
+ L181.7,104.7 L182.6,104.7 L183.5,104.7 L184.4,104.7 L185.3,104.7 L186.2,104.7 L187.1,104.7 L188.0,104.7
+ L188.9,104.7 L189.8,104.7 L190.7,104.7 L191.6,104.7 L192.5,104.7 L193.4,104.7 L194.3,104.7 L195.2,104.7
+ L196.1,104.7 L197.0,104.7 L197.9,104.7 L198.8,104.7 L199.7,104.7 L200.6,104.7 L201.6,104.7 L202.5,104.7
+ L203.4,104.7 L204.3,104.7 L205.2,104.7 L206.1,104.7 L207.0,104.7 L207.9,104.7 L208.8,104.7 L209.7,104.7
+ L210.6,104.7 L211.5,104.7 L212.4,104.7 L213.3,104.7 L214.2,104.7 L215.1,104.7 L216.0,104.7 L216.9,104.7
+ L217.8,104.7 L218.7,104.7 L219.6,104.7 L220.5,104.7 L221.4,104.7 L222.3,104.7 L223.2,104.7 L224.1,104.7
+ L225.0,104.7 L225.9,104.7 L226.8,104.7 L227.7,104.7 L228.6,104.7 L229.5,104.7 L230.4,104.7 L231.3,104.7
+ L232.2,104.7 L233.1,104.7 L234.0,104.7 L234.9,104.7 L235.8,104.7 L236.7,104.7 L237.6,104.7 L238.5,104.7
+ L239.4,104.7 L240.3,104.7 L241.2,104.7 L242.1,104.7 L243.1,104.7 L244.0,104.7 L244.9,104.7 L245.8,104.7
+ L246.7,104.7 L247.6,104.7 L248.5,104.7 L249.4,104.7 L250.3,104.7 L251.2,104.7 L252.1,104.7 L253.0,104.7
+ L253.9,104.7 L254.8,104.7 L255.7,104.7 L256.6,104.7 L257.5,104.7 L258.4,104.7 L259.3,104.7 L260.2,104.7
+ L261.1,104.7 L262.0,104.7 L262.9,104.7 L263.8,104.7 L264.7,104.7 L265.6,104.7 L266.5,104.7 L267.4,104.7
+ L268.3,104.7 L269.2,104.7 L270.1,104.7 L271.0,104.7 L271.9,104.7 L272.8,104.7 L273.7,104.7 L274.6,104.7
+ L275.5,104.7 L276.4,104.7 L277.3,104.7 L278.2,104.7 L279.1,104.7 L280.0,104.7 L280.9,104.7 L281.8,104.7
+ L282.7,104.7 L283.6,104.7 L284.5,104.7 L285.5,104.7 L286.4,104.7 L287.3,104.7 L288.2,104.7 L289.1,104.7
+ L290.0,104.7 L290.9,104.7 L291.8,104.7 L292.7,104.7 L293.6,104.7 L294.5,104.7 L295.4,104.7 L296.3,104.7
+ L297.2,104.7 L298.1,104.7 L299.0,104.7 L299.9,104.7 L300.8,104.7 L301.7,104.7 L302.6,104.7 L303.5,104.7
+ L304.4,104.7 L305.3,104.7 L306.2,104.7 L307.1,104.7 L308.0,104.7 L308.9,104.7 L309.8,104.7 L310.7,104.7
+ L311.6,104.7 L312.5,104.7 L313.4,104.7 L314.3,104.7 L315.2,104.7 L316.1,104.7 L317.0,104.7 L317.9,104.7
+ L318.8,104.7 L319.7,104.7 L320.6,104.7 L321.5,104.7 L322.4,104.7 L323.3,104.7 L324.2,104.7 L325.1,104.7
+ L326.0,104.7 L327.0,104.7 L327.9,104.7 L328.8,104.7 L329.7,104.7 L330.6,104.7 L331.5,104.7 L332.4,104.7
+ L333.3,104.7 L334.2,104.7 L335.1,104.7 L336.0,104.7 L336.9,104.7 L337.8,104.7 L338.7,104.7 L339.6,104.7
+ L340.5,104.7 L341.4,104.7 L342.3,104.7 L343.2,104.7 L344.1,104.7 L345.0,104.7 L345.9,104.7 L346.8,104.7
+ L347.7,104.7 L348.6,104.7 L349.5,104.7 L350.4,104.7 L351.3,104.7 L352.2,104.7 L353.1,104.7 L354.0,104.7
+ L354.9,104.7 L355.8,104.7 L356.7,104.7 L357.6,104.7 L358.5,104.7 L359.4,104.7 L360.3,104.7 L361.2,104.7
+ L362.1,104.7 L363.0,104.7 L363.9,104.7 L364.8,104.7 L365.7,104.7 L366.6,104.7 L367.5,104.7 L368.4,104.7
+ L369.4,104.7 L370.3,104.7 L371.2,104.7 L372.1,104.7 L373.0,104.7 L373.9,104.7 L374.8,104.7 L375.7,104.7
+ L376.6,104.7 L377.5,104.7 L378.4,104.7 L379.3,104.7 L380.2,104.7 L381.1,104.7 L382.0,104.7 L382.9,104.7
+ L383.8,104.7 L384.7,104.7 L385.6,104.7 L386.5,104.7 L387.4,104.7 L388.3,104.7 L389.2,104.7 L390.1,104.7
+ L391.0,104.7 L391.9,104.7 L392.8,104.7 L393.7,104.7 L394.6,104.7 L395.5,104.7 L396.4,104.7 L397.3,104.7
+ L398.2,104.7 L399.1,104.7 L400.0,104.7 L400.9,104.7 L401.8,104.7 L402.7,104.7 L403.6,104.7 L404.5,104.7
+ L405.4,104.7 L406.3,104.7 L407.2,104.7 L408.1,104.7 L409.0,104.7 L409.9,104.7 L410.8,104.7 L411.8,104.7
+ L412.7,104.7 L413.6,104.7 L414.5,104.7 L415.4,104.7 L416.3,104.7 L417.2,104.7 L418.1,104.7 L419.0,104.7
+ L419.9,104.7 L420.8,104.7 L421.7,104.7 L422.6,104.7 L423.5,104.7 L424.4,104.7 L425.3,104.7 L426.2,104.7
+ L427.1,104.7 L428.0,104.7 L428.9,104.7 L429.8,104.7 L430.7,104.7 L431.6,104.7 L432.5,104.7 L433.4,104.7
+ L434.3,104.7 L435.2,104.7 L436.1,104.7 L437.0,104.7 L437.9,104.7 L438.8,104.7 L439.7,104.7 L440.6,104.7
+ L441.5,104.7 L442.4,104.7 L443.3,104.7 L444.2,104.7 L445.1,104.7 L446.0,104.7 L446.9,104.7 L447.8,104.7
+ L448.7,104.7 L449.6,104.7 L450.5,104.7 L451.4,104.7 L452.3,104.7 L453.3,104.7 L454.2,104.7 L455.1,104.7
+ L456.0,104.7 L456.9,104.7 L457.8,104.7 L458.7,104.7 L459.6,104.7 L460.5,104.7 L461.4,104.7 L462.3,104.7
+ L463.2,104.7 L464.1,104.7 L465.0,104.7 L465.9,104.7 L466.8,104.7 L467.7,104.7 L468.6,104.7 L469.5,104.7
+ L470.4,104.7 L471.3,104.7 L472.2,104.7 L473.1,104.7 L474.0,104.7 L474.9,104.7 L475.8,104.7 L476.7,104.7
+ L477.6,104.7 L478.5,104.7 L479.4,104.7 L480.3,104.7 L481.2,104.7 L482.1,104.7 L483.0,104.7 L483.9,104.7
+ L484.8,104.7 L485.7,104.7 L486.6,104.7 L487.5,104.7 L488.4,104.7 L489.3,104.7 L490.2,104.7 L491.1,104.7
+ L492.0,104.7 L492.9,104.7 L493.8,104.7 L494.7,104.7 L495.7,104.7 L496.6,104.7 L497.5,104.7 L498.4,104.7
+ L499.3,104.7 L500.2,104.7 L501.1,104.7 L502.0,104.7 L502.9,104.7 L503.8,104.7 L504.7,104.7 L505.6,104.7
+ L506.5,104.7 L507.4,104.7 L508.3,104.7 L509.2,104.7 L510.1,104.7 L511.0,104.7 L511.9,104.7 L512.8,104.7
+ L513.7,104.7 L514.6,104.7 L515.5,104.7 L516.4,104.7 L517.3,104.7 L518.2,104.7 L519.1,104.7 L520.0,104.7
+ L520.9,104.7 L521.8,104.7 L522.7,104.7 L523.6,104.7 L524.5,104.7 L525.4,104.7 L526.3,104.7 L527.2,104.7
+ L528.1,104.7 L529.0,104.7 L529.9,104.7 L530.8,104.7 L531.7,104.7 L532.6,104.7 L533.5,104.7 L534.4,104.7
+ L535.3,104.7 L536.2,104.7 L537.2,104.7 L538.1,104.7 L539.0,104.7 L539.9,104.7 L540.8,104.7 L541.7,104.7
+ L542.6,104.7 L543.5,104.7 L544.4,104.7 L545.3,104.7 L546.2,104.7 L547.1,104.7 L548.0,104.7 L548.9,104.7
+ L549.8,104.7 L550.7,104.7 L551.6,104.7 L552.5,104.7 L553.4,104.7 L554.3,104.7 L555.2,104.7 L556.1,104.7
+ L557.0,104.7 L557.9,104.7 L557.9,516.0 L557.0,516.0 L556.1,516.0 L555.2,516.0 L554.3,516.0 L553.4,516.0
+ L552.5,516.0 L551.6,516.0 L550.7,516.0 L549.8,516.0 L548.9,516.0 L548.0,516.0 L547.1,516.0 L546.2,516.0
+ L545.3,516.0 L544.4,516.0 L543.5,516.0 L542.6,516.0 L541.7,516.0 L540.8,516.0 L539.9,516.0 L539.0,516.0
+ L538.1,516.0 L537.2,516.0 L536.2,516.0 L535.3,516.0 L534.4,516.0 L533.5,516.0 L532.6,516.0 L531.7,516.0
+ L530.8,516.0 L529.9,516.0 L529.0,516.0 L528.1,516.0 L527.2,516.0 L526.3,516.0 L525.4,516.0 L524.5,516.0
+ L523.6,516.0 L522.7,516.0 L521.8,516.0 L520.9,516.0 L520.0,516.0 L519.1,516.0 L518.2,516.0 L517.3,516.0
+ L516.4,516.0 L515.5,516.0 L514.6,516.0 L513.7,516.0 L512.8,516.0 L511.9,516.0 L511.0,516.0 L510.1,516.0
+ L509.2,516.0 L508.3,516.0 L507.4,516.0 L506.5,516.0 L505.6,516.0 L504.7,516.0 L503.8,516.0 L502.9,516.0
+ L502.0,516.0 L501.1,516.0 L500.2,516.0 L499.3,516.0 L498.4,516.0 L497.5,516.0 L496.6,516.0 L495.7,516.0
+ L494.7,516.0 L493.8,516.0 L492.9,516.0 L492.0,516.0 L491.1,516.0 L490.2,516.0 L489.3,516.0 L488.4,516.0
+ L487.5,516.0 L486.6,516.0 L485.7,516.0 L484.8,516.0 L483.9,516.0 L483.0,516.0 L482.1,516.0 L481.2,516.0
+ L480.3,516.0 L479.4,516.0 L478.5,516.0 L477.6,516.0 L476.7,516.0 L475.8,516.0 L474.9,516.0 L474.0,516.0
+ L473.1,516.0 L472.2,516.0 L471.3,516.0 L470.4,516.0 L469.5,516.0 L468.6,516.0 L467.7,516.0 L466.8,516.0
+ L465.9,516.0 L465.0,516.0 L464.1,516.0 L463.2,516.0 L462.3,516.0 L461.4,516.0 L460.5,516.0 L459.6,516.0
+ L458.7,516.0 L457.8,516.0 L456.9,516.0 L456.0,516.0 L455.1,516.0 L454.2,516.0 L453.3,516.0 L452.3,516.0
+ L451.4,516.0 L450.5,516.0 L449.6,516.0 L448.7,516.0 L447.8,516.0 L446.9,516.0 L446.0,516.0 L445.1,516.0
+ L444.2,516.0 L443.3,516.0 L442.4,516.0 L441.5,516.0 L440.6,516.0 L439.7,516.0 L438.8,516.0 L437.9,516.0
+ L437.0,516.0 L436.1,516.0 L435.2,516.0 L434.3,516.0 L433.4,516.0 L432.5,516.0 L431.6,516.0 L430.7,516.0
+ L429.8,516.0 L428.9,516.0 L428.0,516.0 L427.1,516.0 L426.2,516.0 L425.3,516.0 L424.4,516.0 L423.5,516.0
+ L422.6,516.0 L421.7,516.0 L420.8,516.0 L419.9,516.0 L419.0,516.0 L418.1,516.0 L417.2,516.0 L416.3,516.0
+ L415.4,516.0 L414.5,516.0 L413.6,516.0 L412.7,516.0 L411.8,516.0 L410.8,516.0 L409.9,516.0 L409.0,516.0
+ L408.1,516.0 L407.2,516.0 L406.3,516.0 L405.4,516.0 L404.5,516.0 L403.6,516.0 L402.7,516.0 L401.8,516.0
+ L400.9,516.0 L400.0,516.0 L399.1,516.0 L398.2,516.0 L397.3,516.0 L396.4,516.0 L395.5,516.0 L394.6,516.0
+ L393.7,516.0 L392.8,516.0 L391.9,516.0 L391.0,516.0 L390.1,516.0 L389.2,516.0 L388.3,516.0 L387.4,516.0
+ L386.5,516.0 L385.6,516.0 L384.7,516.0 L383.8,516.0 L382.9,516.0 L382.0,516.0 L381.1,516.0 L380.2,516.0
+ L379.3,516.0 L378.4,516.0 L377.5,516.0 L376.6,516.0 L375.7,516.0 L374.8,516.0 L373.9,516.0 L373.0,516.0
+ L372.1,516.0 L371.2,516.0 L370.3,516.0 L369.4,516.0 L368.4,516.0 L367.5,516.0 L366.6,516.0 L365.7,516.0
+ L364.8,516.0 L363.9,516.0 L363.0,516.0 L362.1,516.0 L361.2,516.0 L360.3,516.0 L359.4,516.0 L358.5,516.0
+ L357.6,516.0 L356.7,516.0 L355.8,516.0 L354.9,516.0 L354.0,516.0 L353.1,516.0 L352.2,516.0 L351.3,516.0
+ L350.4,516.0 L349.5,516.0 L348.6,516.0 L347.7,516.0 L346.8,516.0 L345.9,516.0 L345.0,516.0 L344.1,516.0
+ L343.2,516.0 L342.3,516.0 L341.4,516.0 L340.5,516.0 L339.6,516.0 L338.7,516.0 L337.8,516.0 L336.9,516.0
+ L336.0,516.0 L335.1,516.0 L334.2,516.0 L333.3,516.0 L332.4,516.0 L331.5,516.0 L330.6,516.0 L329.7,516.0
+ L328.8,516.0 L327.9,516.0 L327.0,516.0 L326.0,516.0 L325.1,516.0 L324.2,516.0 L323.3,516.0 L322.4,516.0
+ L321.5,516.0 L320.6,516.0 L319.7,516.0 L318.8,516.0 L317.9,516.0 L317.0,516.0 L316.1,516.0 L315.2,516.0
+ L314.3,516.0 L313.4,516.0 L312.5,516.0 L311.6,516.0 L310.7,516.0 L309.8,516.0 L308.9,516.0 L308.0,516.0
+ L307.1,516.0 L306.2,516.0 L305.3,516.0 L304.4,516.0 L303.5,516.0 L302.6,516.0 L301.7,516.0 L300.8,516.0
+ L299.9,516.0 L299.0,516.0 L298.1,516.0 L297.2,516.0 L296.3,516.0 L295.4,516.0 L294.5,516.0 L293.6,516.0
+ L292.7,516.0 L291.8,516.0 L290.9,516.0 L290.0,516.0 L289.1,516.0 L288.2,516.0 L287.3,516.0 L286.4,516.0
+ L285.5,516.0 L284.5,516.0 L283.6,516.0 L282.7,516.0 L281.8,516.0 L280.9,516.0 L280.0,516.0 L279.1,516.0
+ L278.2,516.0 L277.3,516.0 L276.4,516.0 L275.5,516.0 L274.6,516.0 L273.7,516.0 L272.8,516.0 L271.9,516.0
+ L271.0,516.0 L270.1,516.0 L269.2,516.0 L268.3,516.0 L267.4,516.0 L266.5,516.0 L265.6,516.0 L264.7,516.0
+ L263.8,516.0 L262.9,516.0 L262.0,516.0 L261.1,516.0 L260.2,516.0 L259.3,516.0 L258.4,516.0 L257.5,516.0
+ L256.6,516.0 L255.7,516.0 L254.8,516.0 L253.9,516.0 L253.0,516.0 L252.1,516.0 L251.2,516.0 L250.3,516.0
+ L249.4,516.0 L248.5,516.0 L247.6,516.0 L246.7,516.0 L245.8,516.0 L244.9,516.0 L244.0,516.0 L243.1,516.0
+ L242.1,516.0 L241.2,516.0 L240.3,516.0 L239.4,516.0 L238.5,516.0 L237.6,516.0 L236.7,516.0 L235.8,516.0
+ L234.9,516.0 L234.0,516.0 L233.1,516.0 L232.2,516.0 L231.3,516.0 L230.4,516.0 L229.5,516.0 L228.6,516.0
+ L227.7,516.0 L226.8,516.0 L225.9,516.0 L225.0,516.0 L224.1,516.0 L223.2,516.0 L222.3,516.0 L221.4,516.0
+ L220.5,516.0 L219.6,516.0 L218.7,516.0 L217.8,516.0 L216.9,516.0 L216.0,516.0 L215.1,516.0 L214.2,516.0
+ L213.3,516.0 L212.4,516.0 L211.5,516.0 L210.6,516.0 L209.7,516.0 L208.8,516.0 L207.9,516.0 L207.0,516.0
+ L206.1,516.0 L205.2,516.0 L204.3,516.0 L203.4,516.0 L202.5,516.0 L201.6,516.0 L200.6,516.0 L199.7,516.0
+ L198.8,516.0 L197.9,516.0 L197.0,516.0 L196.1,516.0 L195.2,516.0 L194.3,516.0 L193.4,516.0 L192.5,516.0
+ L191.6,516.0 L190.7,516.0 L189.8,516.0 L188.9,516.0 L188.0,516.0 L187.1,516.0 L186.2,516.0 L185.3,516.0
+ L184.4,516.0 L183.5,516.0 L182.6,516.0 L181.7,516.0 L180.8,516.0 L179.9,516.0 L179.0,516.0 L178.1,516.0
+ L177.2,516.0 L176.3,516.0 L175.4,516.0 L174.5,516.0 L173.6,516.0 L172.7,516.0 L171.8,516.0 L170.9,516.0
+ L170.0,516.0 L169.1,516.0 L168.2,516.0 L167.3,516.0 L166.4,516.0 L165.5,516.0 L164.6,516.0 L163.7,516.0
+ L162.8,516.0 L161.9,516.0 L161.0,516.0 L160.1,516.0 L159.2,516.0 L158.2,516.0 L157.3,516.0 L156.4,516.0
+ L155.5,516.0 L154.6,516.0 L153.7,516.0 L152.8,516.0 L151.9,516.0 L151.0,516.0 L150.1,516.0 L149.2,516.0
+ L148.3,516.0 L147.4,516.0 L146.5,516.0 L145.6,516.0 L144.7,516.0 L143.8,516.0 L142.9,516.0 L142.0,516.0
+ L141.1,516.0 L140.2,516.0 L139.3,516.0 L138.4,516.0 L137.5,516.0 L136.6,516.0 L135.7,516.0 L134.8,516.0
+ L133.9,516.0 L133.0,516.0 L132.1,516.0 L131.2,516.0 L130.3,516.0 L129.4,516.0 L128.5,516.0 L127.6,516.0
+ L126.7,516.0 L125.8,516.0 L124.9,516.0 L124.0,516.0 L123.1,516.0 L122.2,516.0 L121.3,516.0 L120.4,516.0
+ L119.5,516.0 L118.6,516.0 L117.7,516.0 L116.7,516.0 L115.8,516.0 L114.9,516.0 L114.0,516.0 L113.1,516.0
+ L112.2,516.0 L111.3,516.0 L110.4,516.0 L109.5,516.0 L108.6,516.0 L107.7,516.0 L106.8,516.0 L105.9,516.0
+ L105.0,516.0 L104.1,516.0 L103.2,516.0 L102.3,516.0 L101.4,516.0 L100.5,516.0 L99.6,516.0 L98.7,516.0
+ L97.8,516.0 L96.9,516.0 L96.0,516.0 '/></g>
+ </g>
+ <g id="gnuplot_plot_2a" ><title>gnuplot_plot_2a</title>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,516.0 L96.0,104.7 L96.9,104.7 L97.8,104.7 L98.7,104.7 L99.6,104.7 L100.5,104.7 L101.4,104.7
+ L102.3,104.7 L103.2,104.7 L104.1,104.7 L105.0,104.7 L105.9,104.7 L106.8,104.7 L107.7,104.7 L108.6,104.7
+ L109.5,104.7 L110.4,104.7 L111.3,104.7 L112.2,104.7 L113.1,104.7 L114.0,104.7 L114.9,104.7 L115.8,104.7
+ L116.7,104.7 L117.7,104.7 L118.6,104.7 L119.5,104.7 L120.4,104.7 L121.3,104.7 L122.2,104.7 L123.1,104.7
+ L124.0,104.7 L124.9,104.7 L125.8,104.7 L126.7,104.7 L127.6,104.7 L128.5,104.7 L129.4,104.7 L130.3,104.7
+ L131.2,104.7 L132.1,104.7 L133.0,104.7 L133.9,104.7 L134.8,104.7 L135.7,104.7 L136.6,104.7 L137.5,104.7
+ L138.4,104.7 L139.3,104.7 L140.2,104.7 L141.1,104.7 L142.0,104.7 L142.9,104.7 L143.8,104.7 L144.7,104.7
+ L145.6,104.7 L146.5,104.7 L147.4,104.7 L148.3,104.7 L149.2,104.7 L150.1,104.7 L151.0,104.7 L151.9,104.7
+ L152.8,104.7 L153.7,104.7 L154.6,104.7 L155.5,104.7 L156.4,104.7 L157.3,104.7 L158.2,104.7 L159.2,104.7
+ L160.1,104.7 L161.0,104.7 L161.9,104.7 L162.8,104.7 L163.7,104.7 L164.6,104.7 L165.5,104.7 L166.4,104.7
+ L167.3,104.7 L168.2,104.7 L169.1,104.7 L170.0,104.7 L170.9,104.7 L171.8,104.7 L172.7,104.7 L173.6,104.7
+ L174.5,104.7 L175.4,104.7 L176.3,104.7 L177.2,104.7 L178.1,104.7 L179.0,104.7 L179.9,104.7 L180.8,104.7
+ L181.7,104.7 L182.6,104.7 L183.5,104.7 L184.4,104.7 L185.3,104.7 L186.2,104.7 L187.1,104.7 L188.0,104.7
+ L188.9,104.7 L189.8,104.7 L190.7,104.7 L191.6,104.7 L192.5,104.7 L193.4,104.7 L194.3,104.7 L195.2,104.7
+ L196.1,104.7 L197.0,104.7 L197.9,104.7 L198.8,104.7 L199.7,104.7 L200.6,104.7 L201.6,104.7 L202.5,104.7
+ L203.4,104.7 L204.3,104.7 L205.2,104.7 L206.1,104.7 L207.0,104.7 L207.9,104.7 L208.8,104.7 L209.7,104.7
+ L210.6,104.7 L211.5,104.7 L212.4,104.7 L213.3,104.7 L214.2,104.7 L215.1,104.7 L216.0,104.7 L216.9,104.7
+ L217.8,104.7 L218.7,104.7 L219.6,104.7 L220.5,104.7 L221.4,104.7 L222.3,104.7 L223.2,104.7 L224.1,104.7
+ L225.0,104.7 L225.9,104.7 L226.8,104.7 L227.7,104.7 L228.6,104.7 L229.5,104.7 L230.4,104.7 L231.3,104.7
+ L232.2,104.7 L233.1,104.7 L234.0,104.7 L234.9,104.7 L235.8,104.7 L236.7,104.7 L237.6,104.7 L238.5,104.7
+ L239.4,104.7 L240.3,104.7 L241.2,104.7 L242.1,104.7 L243.1,104.7 L244.0,104.7 L244.9,104.7 L245.8,104.7
+ L246.7,104.7 L247.6,104.7 L248.5,104.7 L249.4,104.7 L250.3,104.7 L251.2,104.7 L252.1,104.7 L253.0,104.7
+ L253.9,104.7 L254.8,104.7 L255.7,104.7 L256.6,104.7 L257.5,104.7 L258.4,104.7 L259.3,104.7 L260.2,104.7
+ L261.1,104.7 L262.0,104.7 L262.9,104.7 L263.8,104.7 L264.7,104.7 L265.6,104.7 L266.5,104.7 L267.4,104.7
+ L268.3,104.7 L269.2,104.7 L270.1,104.7 L271.0,104.7 L271.9,104.7 L272.8,104.7 L273.7,104.7 L274.6,104.7
+ L275.5,104.7 L276.4,104.7 L277.3,104.7 L278.2,104.7 L279.1,104.7 L280.0,104.7 L280.9,104.7 L281.8,104.7
+ L282.7,104.7 L283.6,104.7 L284.5,104.7 L285.5,104.7 L286.4,104.7 L287.3,104.7 L288.2,104.7 L289.1,104.7
+ L290.0,104.7 L290.9,104.7 L291.8,104.7 L292.7,104.7 L293.6,104.7 L294.5,104.7 L295.4,104.7 L296.3,104.7
+ L297.2,104.7 L298.1,104.7 L299.0,104.7 L299.9,104.7 L300.8,104.7 L301.7,104.7 L302.6,104.7 L303.5,104.7
+ L304.4,104.7 L305.3,104.7 L306.2,104.7 L307.1,104.7 L308.0,104.7 L308.9,104.7 L309.8,104.7 L310.7,104.7
+ L311.6,104.7 L312.5,104.7 L313.4,104.7 L314.3,104.7 L315.2,104.7 L316.1,104.7 L317.0,104.7 L317.9,104.7
+ L318.8,104.7 L319.7,104.7 L320.6,104.7 L321.5,104.7 L322.4,104.7 L323.3,104.7 L324.2,104.7 L325.1,104.7
+ L326.0,104.7 L327.0,104.7 L327.9,104.7 L328.8,104.7 L329.7,104.7 L330.6,104.7 L331.5,104.7 L332.4,104.7
+ L333.3,104.7 L334.2,104.7 L335.1,104.7 L336.0,104.7 L336.9,104.7 L337.8,104.7 L338.7,104.7 L339.6,104.7
+ L340.5,104.7 L341.4,104.7 L342.3,104.7 L343.2,104.7 L344.1,104.7 L345.0,104.7 L345.9,104.7 L346.8,104.7
+ L347.7,104.7 L348.6,104.7 L349.5,104.7 L350.4,104.7 L351.3,104.7 L352.2,104.7 L353.1,104.7 L354.0,104.7
+ L354.9,104.7 L355.8,104.7 L356.7,104.7 L357.6,104.7 L358.5,104.7 L359.4,104.7 L360.3,104.7 L361.2,104.7
+ L362.1,104.7 L363.0,104.7 L363.9,104.7 L364.8,104.7 L365.7,104.7 L366.6,104.7 L367.5,104.7 L368.4,104.7
+ L369.4,104.7 L370.3,104.7 L371.2,104.7 L372.1,104.7 L373.0,104.7 L373.9,104.7 L374.8,104.7 L375.7,104.7
+ L376.6,104.7 L377.5,104.7 L378.4,104.7 L379.3,104.7 L380.2,104.7 L381.1,104.7 L382.0,104.7 L382.9,104.7
+ L383.8,104.7 L384.7,104.7 L385.6,104.7 L386.5,104.7 L387.4,104.7 L388.3,104.7 L389.2,104.7 L390.1,104.7
+ L391.0,104.7 L391.9,104.7 L392.8,104.7 L393.7,104.7 L394.6,104.7 L395.5,104.7 L396.4,104.7 L397.3,104.7
+ L398.2,104.7 L399.1,104.7 L400.0,104.7 L400.9,104.7 L401.8,104.7 L402.7,104.7 L403.6,104.7 L404.5,104.7
+ L405.4,104.7 L406.3,104.7 L407.2,104.7 L408.1,104.7 L409.0,104.7 L409.9,104.7 L410.8,104.7 L411.8,104.7
+ L412.7,104.7 L413.6,104.7 L414.5,104.7 L415.4,104.7 L416.3,104.7 L417.2,104.7 L418.1,104.7 L419.0,104.7
+ L419.9,104.7 L420.8,104.7 L421.7,104.7 L422.6,104.7 L423.5,104.7 L424.4,104.7 L425.3,104.7 L426.2,104.7
+ L427.1,104.7 L428.0,104.7 L428.9,104.7 L429.8,104.7 L430.7,104.7 L431.6,104.7 L432.5,104.7 L433.4,104.7
+ L434.3,104.7 L435.2,104.7 L436.1,104.7 L437.0,104.7 L437.9,104.7 L438.8,104.7 L439.7,104.7 L440.6,104.7
+ L441.5,104.7 L442.4,104.7 L443.3,104.7 L444.2,104.7 L445.1,104.7 L446.0,104.7 L446.9,104.7 L447.8,104.7
+ L448.7,104.7 L449.6,104.7 L450.5,104.7 L451.4,104.7 L452.3,104.7 L453.3,104.7 L454.2,104.7 L455.1,104.7
+ L456.0,104.7 L456.9,104.7 L457.8,104.7 L458.7,104.7 L459.6,104.7 L460.5,104.7 L461.4,104.7 L462.3,104.7
+ L463.2,104.7 L464.1,104.7 L465.0,104.7 L465.9,104.7 L466.8,104.7 L467.7,104.7 L468.6,104.7 L469.5,104.7
+ L470.4,104.7 L471.3,104.7 L472.2,104.7 L473.1,104.7 L474.0,104.7 L474.9,104.7 L475.8,104.7 L476.7,104.7
+ L477.6,104.7 L478.5,104.7 L479.4,104.7 L480.3,104.7 L481.2,104.7 L482.1,104.7 L483.0,104.7 L483.9,104.7
+ L484.8,104.7 L485.7,104.7 L486.6,104.7 L487.5,104.7 L488.4,104.7 L489.3,104.7 L490.2,104.7 L491.1,104.7
+ L492.0,104.7 L492.9,104.7 L493.8,104.7 L494.7,104.7 L495.7,104.7 L496.6,104.7 L497.5,104.7 L498.4,104.7
+ L499.3,104.7 L500.2,104.7 L501.1,104.7 L502.0,104.7 L502.9,104.7 L503.8,104.7 L504.7,104.7 L505.6,104.7
+ L506.5,104.7 L507.4,104.7 L508.3,104.7 L509.2,104.7 L510.1,104.7 L511.0,104.7 L511.9,104.7 L512.8,104.7
+ L513.7,104.7 L514.6,104.7 L515.5,104.7 L516.4,104.7 L517.3,104.7 L518.2,104.7 L519.1,104.7 L520.0,104.7
+ L520.9,104.7 L521.8,104.7 L522.7,104.7 L523.6,104.7 L524.5,104.7 L525.4,104.7 L526.3,104.7 L527.2,104.7
+ L528.1,104.7 L529.0,104.7 L529.9,104.7 L530.8,104.7 L531.7,104.7 L532.6,104.7 L533.5,104.7 L534.4,104.7
+ L535.3,104.7 L536.2,104.7 L537.2,104.7 L538.1,104.7 L539.0,104.7 L539.9,104.7 L540.8,104.7 L541.7,104.7
+ L542.6,104.7 L543.5,104.7 L544.4,104.7 L545.3,104.7 L546.2,104.7 L547.1,104.7 L548.0,104.7 L548.9,104.7
+ L549.8,104.7 L550.7,104.7 L551.6,104.7 L552.5,104.7 L553.4,104.7 L554.3,104.7 L555.2,104.7 L556.1,104.7
+ L557.0,104.7 L557.9,104.7 L557.9,516.0 L557.0,516.0 L556.1,516.0 L555.2,516.0 L554.3,516.0 L553.4,516.0
+ L552.5,516.0 L551.6,516.0 L550.7,516.0 L549.8,516.0 L548.9,516.0 L548.0,516.0 L547.1,516.0 L546.2,516.0
+ L545.3,516.0 L544.4,516.0 L543.5,516.0 L542.6,516.0 L541.7,516.0 L540.8,516.0 L539.9,516.0 L539.0,516.0
+ L538.1,516.0 L537.2,516.0 L536.2,516.0 L535.3,516.0 L534.4,516.0 L533.5,516.0 L532.6,516.0 L531.7,516.0
+ L530.8,516.0 L529.9,516.0 L529.0,516.0 L528.1,516.0 L527.2,516.0 L526.3,516.0 L525.4,516.0 L524.5,516.0
+ L523.6,516.0 L522.7,516.0 L521.8,516.0 L520.9,516.0 L520.0,516.0 L519.1,516.0 L518.2,516.0 L517.3,516.0
+ L516.4,516.0 L515.5,516.0 L514.6,516.0 L513.7,516.0 L512.8,516.0 L511.9,516.0 L511.0,516.0 L510.1,516.0
+ L509.2,516.0 L508.3,516.0 L507.4,516.0 L506.5,516.0 L505.6,516.0 L504.7,516.0 L503.8,516.0 L502.9,516.0
+ L502.0,516.0 L501.1,516.0 L500.2,516.0 L499.3,516.0 L498.4,516.0 L497.5,516.0 L496.6,516.0 L495.7,516.0
+ L494.7,516.0 L493.8,516.0 L492.9,516.0 L492.0,516.0 L491.1,516.0 L490.2,516.0 L489.3,516.0 L488.4,516.0
+ L487.5,516.0 L486.6,516.0 L485.7,516.0 L484.8,516.0 L483.9,516.0 L483.0,516.0 L482.1,516.0 L481.2,516.0
+ L480.3,516.0 L479.4,516.0 L478.5,516.0 L477.6,516.0 L476.7,516.0 L475.8,516.0 L474.9,516.0 L474.0,516.0
+ L473.1,516.0 L472.2,516.0 L471.3,516.0 L470.4,516.0 L469.5,516.0 L468.6,516.0 L467.7,516.0 L466.8,516.0
+ L465.9,516.0 L465.0,516.0 L464.1,516.0 L463.2,516.0 L462.3,516.0 L461.4,516.0 L460.5,516.0 L459.6,516.0
+ L458.7,516.0 L457.8,516.0 L456.9,516.0 L456.0,516.0 L455.1,516.0 L454.2,516.0 L453.3,516.0 L452.3,516.0
+ L451.4,516.0 L450.5,516.0 L449.6,516.0 L448.7,516.0 L447.8,516.0 L446.9,516.0 L446.0,516.0 L445.1,516.0
+ L444.2,516.0 L443.3,516.0 L442.4,516.0 L441.5,516.0 L440.6,516.0 L439.7,516.0 L438.8,516.0 L437.9,516.0
+ L437.0,516.0 L436.1,516.0 L435.2,516.0 L434.3,516.0 L433.4,516.0 L432.5,516.0 L431.6,516.0 L430.7,516.0
+ L429.8,516.0 L428.9,516.0 L428.0,516.0 L427.1,516.0 L426.2,516.0 L425.3,516.0 L424.4,516.0 L423.5,516.0
+ L422.6,516.0 L421.7,516.0 L420.8,516.0 L419.9,516.0 L419.0,516.0 L418.1,516.0 L417.2,516.0 L416.3,516.0
+ L415.4,516.0 L414.5,516.0 L413.6,516.0 L412.7,516.0 L411.8,516.0 L410.8,516.0 L409.9,516.0 L409.0,516.0
+ L408.1,516.0 L407.2,516.0 L406.3,516.0 L405.4,516.0 L404.5,516.0 L403.6,516.0 L402.7,516.0 L401.8,516.0
+ L400.9,516.0 L400.0,516.0 L399.1,516.0 L398.2,516.0 L397.3,516.0 L396.4,516.0 L395.5,516.0 L394.6,516.0
+ L393.7,516.0 L392.8,516.0 L391.9,516.0 L391.0,516.0 L390.1,516.0 L389.2,516.0 L388.3,516.0 L387.4,516.0
+ L386.5,516.0 L385.6,516.0 L384.7,516.0 L383.8,516.0 L382.9,516.0 L382.0,516.0 L381.1,516.0 L380.2,516.0
+ L379.3,516.0 L378.4,516.0 L377.5,516.0 L376.6,516.0 L375.7,516.0 L374.8,516.0 L373.9,516.0 L373.0,516.0
+ L372.1,516.0 L371.2,516.0 L370.3,516.0 L369.4,516.0 L368.4,516.0 L367.5,516.0 L366.6,516.0 L365.7,516.0
+ L364.8,516.0 L363.9,516.0 L363.0,516.0 L362.1,516.0 L361.2,516.0 L360.3,516.0 L359.4,516.0 L358.5,516.0
+ L357.6,516.0 L356.7,516.0 L355.8,516.0 L354.9,516.0 L354.0,516.0 L353.1,516.0 L352.2,516.0 L351.3,516.0
+ L350.4,516.0 L349.5,516.0 L348.6,516.0 L347.7,516.0 L346.8,516.0 L345.9,516.0 L345.0,516.0 L344.1,516.0
+ L343.2,516.0 L342.3,516.0 L341.4,516.0 L340.5,516.0 L339.6,516.0 L338.7,516.0 L337.8,516.0 L336.9,516.0
+ L336.0,516.0 L335.1,516.0 L334.2,516.0 L333.3,516.0 L332.4,516.0 L331.5,516.0 L330.6,516.0 L329.7,516.0
+ L328.8,516.0 L327.9,516.0 L327.0,516.0 L326.0,516.0 L325.1,516.0 L324.2,516.0 L323.3,516.0 L322.4,516.0
+ L321.5,516.0 L320.6,516.0 L319.7,516.0 L318.8,516.0 L317.9,516.0 L317.0,516.0 L316.1,516.0 L315.2,516.0
+ L314.3,516.0 L313.4,516.0 L312.5,516.0 L311.6,516.0 L310.7,516.0 L309.8,516.0 L308.9,516.0 L308.0,516.0
+ L307.1,516.0 L306.2,516.0 L305.3,516.0 L304.4,516.0 L303.5,516.0 L302.6,516.0 L301.7,516.0 L300.8,516.0
+ L299.9,516.0 L299.0,516.0 L298.1,516.0 L297.2,516.0 L296.3,516.0 L295.4,516.0 L294.5,516.0 L293.6,516.0
+ L292.7,516.0 L291.8,516.0 L290.9,516.0 L290.0,516.0 L289.1,516.0 L288.2,516.0 L287.3,516.0 L286.4,516.0
+ L285.5,516.0 L284.5,516.0 L283.6,516.0 L282.7,516.0 L281.8,516.0 L280.9,516.0 L280.0,516.0 L279.1,516.0
+ L278.2,516.0 L277.3,516.0 L276.4,516.0 L275.5,516.0 L274.6,516.0 L273.7,516.0 L272.8,516.0 L271.9,516.0
+ L271.0,516.0 L270.1,516.0 L269.2,516.0 L268.3,516.0 L267.4,516.0 L266.5,516.0 L265.6,516.0 L264.7,516.0
+ L263.8,516.0 L262.9,516.0 L262.0,516.0 L261.1,516.0 L260.2,516.0 L259.3,516.0 L258.4,516.0 L257.5,516.0
+ L256.6,516.0 L255.7,516.0 L254.8,516.0 L253.9,516.0 L253.0,516.0 L252.1,516.0 L251.2,516.0 L250.3,516.0
+ L249.4,516.0 L248.5,516.0 L247.6,516.0 L246.7,516.0 L245.8,516.0 L244.9,516.0 L244.0,516.0 L243.1,516.0
+ L242.1,516.0 L241.2,516.0 L240.3,516.0 L239.4,516.0 L238.5,516.0 L237.6,516.0 L236.7,516.0 L235.8,516.0
+ L234.9,516.0 L234.0,516.0 L233.1,516.0 L232.2,516.0 L231.3,516.0 L230.4,516.0 L229.5,516.0 L228.6,516.0
+ L227.7,516.0 L226.8,516.0 L225.9,516.0 L225.0,516.0 L224.1,516.0 L223.2,516.0 L222.3,516.0 L221.4,516.0
+ L220.5,516.0 L219.6,516.0 L218.7,516.0 L217.8,516.0 L216.9,516.0 L216.0,516.0 L215.1,516.0 L214.2,516.0
+ L213.3,516.0 L212.4,516.0 L211.5,516.0 L210.6,516.0 L209.7,516.0 L208.8,516.0 L207.9,516.0 L207.0,516.0
+ L206.1,516.0 L205.2,516.0 L204.3,516.0 L203.4,516.0 L202.5,516.0 L201.6,516.0 L200.6,516.0 L199.7,516.0
+ L198.8,516.0 L197.9,516.0 L197.0,516.0 L196.1,516.0 L195.2,516.0 L194.3,516.0 L193.4,516.0 L192.5,516.0
+ L191.6,516.0 L190.7,516.0 L189.8,516.0 L188.9,516.0 L188.0,516.0 L187.1,516.0 L186.2,516.0 L185.3,516.0
+ L184.4,516.0 L183.5,516.0 L182.6,516.0 L181.7,516.0 L180.8,516.0 L179.9,516.0 L179.0,516.0 L178.1,516.0
+ L177.2,516.0 L176.3,516.0 L175.4,516.0 L174.5,516.0 L173.6,516.0 L172.7,516.0 L171.8,516.0 L170.9,516.0
+ L170.0,516.0 L169.1,516.0 L168.2,516.0 L167.3,516.0 L166.4,516.0 L165.5,516.0 L164.6,516.0 L163.7,516.0
+ L162.8,516.0 L161.9,516.0 L161.0,516.0 L160.1,516.0 L159.2,516.0 L158.2,516.0 L157.3,516.0 L156.4,516.0
+ L155.5,516.0 L154.6,516.0 L153.7,516.0 L152.8,516.0 L151.9,516.0 L151.0,516.0 L150.1,516.0 L149.2,516.0
+ L148.3,516.0 L147.4,516.0 L146.5,516.0 L145.6,516.0 L144.7,516.0 L143.8,516.0 L142.9,516.0 L142.0,516.0
+ L141.1,516.0 L140.2,516.0 L139.3,516.0 L138.4,516.0 L137.5,516.0 L136.6,516.0 L135.7,516.0 L134.8,516.0
+ L133.9,516.0 L133.0,516.0 L132.1,516.0 L131.2,516.0 L130.3,516.0 L129.4,516.0 L128.5,516.0 L127.6,516.0
+ L126.7,516.0 L125.8,516.0 L124.9,516.0 L124.0,516.0 L123.1,516.0 L122.2,516.0 L121.3,516.0 L120.4,516.0
+ L119.5,516.0 L118.6,516.0 L117.7,516.0 L116.7,516.0 L115.8,516.0 L114.9,516.0 L114.0,516.0 L113.1,516.0
+ L112.2,516.0 L111.3,516.0 L110.4,516.0 L109.5,516.0 L108.6,516.0 L107.7,516.0 L106.8,516.0 L105.9,516.0
+ L105.0,516.0 L104.1,516.0 L103.2,516.0 L102.3,516.0 L101.4,516.0 L100.5,516.0 L99.6,516.0 L98.7,516.0
+ L97.8,516.0 L96.9,516.0 L96.0,516.0 '/></g>
+ </g>
+<g fill="none" color="#FFFFFF" stroke="rgb( 0, 0, 0)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 38, 38, 38)' d='M96.0,516.0 L557.9,516.0 M96.0,84.1 L557.9,84.1 M96.0,516.0 L96.0,84.1 M557.9,516.0 L557.9,84.1
+ '/></g>
+<g fill="none" color="black" stroke="rgb( 38, 38, 38)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g stroke='none' shape-rendering='crispEdges'>
+ <polygon fill = 'rgb(255, 255, 255)' points = '714.0,516.0 1175.8,516.0 1175.8,84.2 714.0,84.2 '/>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,516.0 L1175.9,516.0 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,516.0 L729.6,516.0 M1175.9,516.0 L1160.3,516.0 '/> <g transform="translate(703.5,522.5)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-130</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,484.2 L1175.9,484.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,484.2 L729.6,484.2 M1175.9,484.2 L1160.3,484.2 '/> <g transform="translate(703.5,490.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-120</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,452.5 L1175.9,452.5 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,452.5 L729.6,452.5 M1175.9,452.5 L1160.3,452.5 '/> <g transform="translate(703.5,459.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-110</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,420.7 L1175.9,420.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,420.7 L729.6,420.7 M1175.9,420.7 L1160.3,420.7 '/> <g transform="translate(703.5,427.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-100</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,389.0 L1175.9,389.0 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,389.0 L729.6,389.0 M1175.9,389.0 L1160.3,389.0 '/> <g transform="translate(703.5,395.5)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-90</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,357.2 L1175.9,357.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,357.2 L729.6,357.2 M1175.9,357.2 L1160.3,357.2 '/> <g transform="translate(703.5,363.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-80</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,325.5 L1175.9,325.5 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,325.5 L729.6,325.5 M1175.9,325.5 L1160.3,325.5 '/> <g transform="translate(703.5,332.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-70</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,293.7 L1175.9,293.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,293.7 L729.6,293.7 M1175.9,293.7 L1160.3,293.7 '/> <g transform="translate(703.5,300.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-60</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,261.9 L1175.9,261.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,261.9 L729.6,261.9 M1175.9,261.9 L1160.3,261.9 '/> <g transform="translate(703.5,268.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-50</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,230.2 L1175.9,230.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,230.2 L729.6,230.2 M1175.9,230.2 L1160.3,230.2 '/> <g transform="translate(703.5,236.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-40</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,198.4 L1175.9,198.4 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,198.4 L729.6,198.4 M1175.9,198.4 L1160.3,198.4 '/> <g transform="translate(703.5,204.9)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-30</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,166.7 L1175.9,166.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,166.7 L729.6,166.7 M1175.9,166.7 L1160.3,166.7 '/> <g transform="translate(703.5,173.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-20</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,134.9 L1175.9,134.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,134.9 L729.6,134.9 M1175.9,134.9 L1160.3,134.9 '/> <g transform="translate(703.5,141.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-10</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,103.2 L1175.9,103.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,103.2 L729.6,103.2 M1175.9,103.2 L1160.3,103.2 '/> <g transform="translate(703.5,109.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,516.0 L714.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,516.0 L714.0,500.4 M714.0,84.1 L714.0,99.7 '/> <g transform="translate(714.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-40</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M829.5,516.0 L829.5,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M829.5,516.0 L829.5,500.4 M829.5,84.1 L829.5,99.7 '/> <g transform="translate(829.5,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-20</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M945.0,516.0 L945.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M945.0,516.0 L945.0,500.4 M945.0,84.1 L945.0,99.7 '/> <g transform="translate(945.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M1060.4,516.0 L1060.4,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M1060.4,516.0 L1060.4,500.4 M1060.4,84.1 L1060.4,99.7 '/> <g transform="translate(1060.4,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >20</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M1175.9,516.0 L1175.9,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M1175.9,516.0 L1175.9,500.4 M1175.9,84.1 L1175.9,99.7 '/> <g transform="translate(1175.9,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >40</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(648.1,300.1) rotate(-90)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >decibels</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(944.9,581.3)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >bins</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(944.9,39.9)" stroke="none" fill="rgb(0,0,0)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >Fourier transform</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+ <g id="gnuplot_plot_1b" ><title>gnuplot_plot_1b</title>
+<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb(222, 125, 0)' d='M714.0,516.0 M714.2,516.0 L714.2,300.5 M714.4,516.0 L714.4,281.5 M714.5,516.0 L714.5,270.5 M714.7,516.0
+ L714.7,262.9 M714.9,516.0 L714.9,257.1 M715.1,516.0 L715.1,252.6 M715.3,516.0 L715.3,248.9 M715.4,516.0
+ L715.4,245.9 M715.6,516.0 L715.6,243.4 M715.8,516.0 L715.8,241.4 M716.0,516.0 L716.0,239.7 M716.2,516.0
+ L716.2,238.4 M716.3,516.0 L716.3,237.4 M716.5,516.0 L716.5,236.7 M716.7,516.0 L716.7,236.3 M716.9,516.0
+ L716.9,236.1 M717.1,516.0 L717.1,236.2 M717.2,516.0 L717.2,236.6 M717.4,516.0 L717.4,237.3 M717.6,516.0
+ L717.6,238.2 M717.8,516.0 L717.8,239.5 M718.0,516.0 L718.0,241.1 M718.1,516.0 L718.1,243.1 M718.3,516.0
+ L718.3,245.5 M718.5,516.0 L718.5,248.5 M718.7,516.0 L718.7,252.1 M718.9,516.0 L718.9,256.6 M719.1,516.0
+ L719.1,262.4 M719.2,516.0 L719.2,270.0 M719.4,516.0 L719.4,280.9 M719.6,516.0 L719.6,299.9 M719.8,516.0
+ M720.0,516.0 L720.0,299.8 M720.1,516.0 L720.1,280.8 M720.3,516.0 L720.3,269.8 M720.5,516.0 L720.5,262.2
+ M720.7,516.0 L720.7,256.4 M720.9,516.0 L720.9,251.9 M721.0,516.0 L721.0,248.2 M721.2,516.0 L721.2,245.2
+ M721.4,516.0 L721.4,242.7 M721.6,516.0 L721.6,240.7 M721.8,516.0 L721.8,239.0 M721.9,516.0 L721.9,237.7
+ M722.1,516.0 L722.1,236.7 M722.3,516.0 L722.3,236.0 M722.5,516.0 L722.5,235.6 M722.7,516.0 L722.7,235.4
+ M722.8,516.0 L722.8,235.5 M723.0,516.0 L723.0,235.9 M723.2,516.0 L723.2,236.6 M723.4,516.0 L723.4,237.5
+ M723.6,516.0 L723.6,238.8 M723.7,516.0 L723.7,240.4 M723.9,516.0 L723.9,242.4 M724.1,516.0 L724.1,244.8
+ M724.3,516.0 L724.3,247.8 M724.5,516.0 L724.5,251.4 M724.6,516.0 L724.6,255.9 M724.8,516.0 L724.8,261.7
+ M725.0,516.0 L725.0,269.3 M725.2,516.0 L725.2,280.2 M725.4,516.0 L725.4,299.2 M725.5,516.0 M725.7,516.0
+ L725.7,299.1 M725.9,516.0 L725.9,280.1 M726.1,516.0 L726.1,269.1 M726.3,516.0 L726.3,261.5 M726.4,516.0
+ L726.4,255.7 M726.6,516.0 L726.6,251.1 M726.8,516.0 L726.8,247.5 M727.0,516.0 L727.0,244.4 M727.2,516.0
+ L727.2,242.0 M727.4,516.0 L727.4,239.9 M727.5,516.0 L727.5,238.3 M727.7,516.0 L727.7,237.0 M727.9,516.0
+ L727.9,236.0 M728.1,516.0 L728.1,235.3 M728.3,516.0 L728.3,234.9 M728.4,516.0 L728.4,234.7 M728.6,516.0
+ L728.6,234.8 M728.8,516.0 L728.8,235.2 M729.0,516.0 L729.0,235.8 M729.2,516.0 L729.2,236.8 M729.3,516.0
+ L729.3,238.1 M729.5,516.0 L729.5,239.7 M729.7,516.0 L729.7,241.6 M729.9,516.0 L729.9,244.1 M730.1,516.0
+ L730.1,247.1 M730.2,516.0 L730.2,250.7 M730.4,516.0 L730.4,255.2 M730.6,516.0 L730.6,260.9 M730.8,516.0
+ L730.8,268.5 M731.0,516.0 L731.0,279.5 M731.1,516.0 L731.1,298.4 M731.3,516.0 M731.5,516.0 L731.5,298.4
+ M731.7,516.0 L731.7,279.4 M731.9,516.0 L731.9,268.4 M732.0,516.0 L732.0,260.7 M732.2,516.0 L732.2,255.0
+ M732.4,516.0 L732.4,250.4 M732.6,516.0 L732.6,246.7 M732.8,516.0 L732.8,243.7 M732.9,516.0 L732.9,241.2
+ M733.1,516.0 L733.1,239.2 M733.3,516.0 L733.3,237.5 M733.5,516.0 L733.5,236.2 M733.7,516.0 L733.7,235.2
+ M733.8,516.0 L733.8,234.5 M734.0,516.0 L734.0,234.1 M734.2,516.0 L734.2,234.0 M734.4,516.0 L734.4,234.1
+ M734.6,516.0 L734.6,234.4 M734.7,516.0 L734.7,235.1 M734.9,516.0 L734.9,236.0 M735.1,516.0 L735.1,237.3
+ M735.3,516.0 L735.3,238.9 M735.5,516.0 L735.5,240.9 M735.7,516.0 L735.7,243.3 M735.8,516.0 L735.8,246.3
+ M736.0,516.0 L736.0,249.9 M736.2,516.0 L736.2,254.4 M736.4,516.0 L736.4,260.2 M736.6,516.0 L736.6,267.8
+ M736.7,516.0 L736.7,278.7 M736.9,516.0 L736.9,297.7 M737.1,516.0 M737.3,516.0 L737.3,297.6 M737.5,516.0
+ L737.5,278.6 M737.6,516.0 L737.6,267.6 M737.8,516.0 L737.8,260.0 M738.0,516.0 L738.0,254.2 M738.2,516.0
+ L738.2,249.6 M738.4,516.0 L738.4,246.0 M738.5,516.0 L738.5,242.9 M738.7,516.0 L738.7,240.5 M738.9,516.0
+ L738.9,238.4 M739.1,516.0 L739.1,236.8 M739.3,516.0 L739.3,235.5 M739.4,516.0 L739.4,234.5 M739.6,516.0
+ L739.6,233.8 M739.8,516.0 L739.8,233.4 M740.0,516.0 L740.0,233.2 M740.2,516.0 L740.2,233.3 M740.3,516.0
+ L740.3,233.7 M740.5,516.0 L740.5,234.3 M740.7,516.0 L740.7,235.3 M740.9,516.0 L740.9,236.5 M741.1,516.0
+ L741.1,238.1 M741.2,516.0 L741.2,240.1 M741.4,516.0 L741.4,242.6 M741.6,516.0 L741.6,245.5 M741.8,516.0
+ L741.8,249.2 M742.0,516.0 L742.0,253.7 M742.1,516.0 L742.1,259.4 M742.3,516.0 L742.3,267.0 M742.5,516.0
+ L742.5,277.9 M742.7,516.0 L742.7,296.9 M742.9,516.0 M743.0,516.0 L743.0,296.8 M743.2,516.0 L743.2,277.8
+ M743.4,516.0 L743.4,266.8 M743.6,516.0 L743.6,259.2 M743.8,516.0 L743.8,253.4 M744.0,516.0 L744.0,248.9
+ M744.1,516.0 L744.1,245.2 M744.3,516.0 L744.3,242.2 M744.5,516.0 L744.5,239.7 M744.7,516.0 L744.7,237.6
+ M744.9,516.0 L744.9,236.0 M745.0,516.0 L745.0,234.7 M745.2,516.0 L745.2,233.7 M745.4,516.0 L745.4,233.0
+ M745.6,516.0 L745.6,232.6 M745.8,516.0 L745.8,232.4 M745.9,516.0 L745.9,232.5 M746.1,516.0 L746.1,232.9
+ M746.3,516.0 L746.3,233.5 M746.5,516.0 L746.5,234.5 M746.7,516.0 L746.7,235.7 M746.8,516.0 L746.8,237.3
+ M747.0,516.0 L747.0,239.3 M747.2,516.0 L747.2,241.8 M747.4,516.0 L747.4,244.7 M747.6,516.0 L747.6,248.4
+ M747.7,516.0 L747.7,252.9 M747.9,516.0 L747.9,258.6 M748.1,516.0 L748.1,266.2 M748.3,516.0 L748.3,277.1
+ M748.5,516.0 L748.5,296.1 M748.6,516.0 M748.8,516.0 L748.8,296.0 M749.0,516.0 L749.0,277.0 M749.2,516.0
+ L749.2,266.0 M749.4,516.0 L749.4,258.4 M749.5,516.0 L749.5,252.6 M749.7,516.0 L749.7,248.1 M749.9,516.0
+ L749.9,244.4 M750.1,516.0 L750.1,241.4 M750.3,516.0 L750.3,238.9 M750.4,516.0 L750.4,236.8 M750.6,516.0
+ L750.6,235.2 M750.8,516.0 L750.8,233.9 M751.0,516.0 L751.0,232.9 M751.2,516.0 L751.2,232.2 M751.3,516.0
+ L751.3,231.8 M751.5,516.0 L751.5,231.6 M751.7,516.0 L751.7,231.7 M751.9,516.0 L751.9,232.1 M752.1,516.0
+ L752.1,232.7 M752.3,516.0 L752.3,233.7 M752.4,516.0 L752.4,234.9 M752.6,516.0 L752.6,236.5 M752.8,516.0
+ L752.8,238.5 M753.0,516.0 L753.0,240.9 M753.2,516.0 L753.2,243.9 M753.3,516.0 L753.3,247.5 M753.5,516.0
+ L753.5,252.1 M753.7,516.0 L753.7,257.8 M753.9,516.0 L753.9,265.4 M754.1,516.0 L754.1,276.3 M754.2,516.0
+ L754.2,295.3 M754.4,516.0 M754.6,516.0 L754.6,295.2 M754.8,516.0 L754.8,276.2 M755.0,516.0 L755.0,265.2
+ M755.1,516.0 L755.1,257.6 M755.3,516.0 L755.3,251.8 M755.5,516.0 L755.5,247.2 M755.7,516.0 L755.7,243.5
+ M755.9,516.0 L755.9,240.5 M756.0,516.0 L756.0,238.0 M756.2,516.0 L756.2,236.0 M756.4,516.0 L756.4,234.4
+ M756.6,516.0 L756.6,233.0 M756.8,516.0 L756.8,232.1 M756.9,516.0 L756.9,231.3 M757.1,516.0 L757.1,230.9
+ M757.3,516.0 L757.3,230.8 M757.5,516.0 L757.5,230.9 M757.7,516.0 L757.7,231.2 M757.8,516.0 L757.8,231.9
+ M758.0,516.0 L758.0,232.8 M758.2,516.0 L758.2,234.1 M758.4,516.0 L758.4,235.7 M758.6,516.0 L758.6,237.7
+ M758.7,516.0 L758.7,240.1 M758.9,516.0 L758.9,243.1 M759.1,516.0 L759.1,246.7 M759.3,516.0 L759.3,251.2
+ M759.5,516.0 L759.5,256.9 M759.6,516.0 L759.6,264.5 M759.8,516.0 L759.8,275.5 M760.0,516.0 L760.0,294.4
+ M760.2,516.0 M760.4,516.0 L760.4,294.4 M760.6,516.0 L760.6,275.4 M760.7,516.0 L760.7,264.4 M760.9,516.0
+ L760.9,256.7 '/> <path stroke='rgb(222, 125, 0)' d='M761.1,516.0 L761.1,250.9 M761.3,516.0 L761.3,246.4 M761.5,516.0 L761.5,242.7 M761.6,516.0 L761.6,239.7
+ M761.8,516.0 L761.8,237.2 M762.0,516.0 L762.0,235.2 M762.2,516.0 L762.2,233.5 M762.4,516.0 L762.4,232.2
+ M762.5,516.0 L762.5,231.2 M762.7,516.0 L762.7,230.5 M762.9,516.0 L762.9,230.1 M763.1,516.0 L763.1,229.9
+ M763.3,516.0 L763.3,230.0 M763.4,516.0 L763.4,230.4 M763.6,516.0 L763.6,231.0 M763.8,516.0 L763.8,232.0
+ M764.0,516.0 L764.0,233.2 M764.2,516.0 L764.2,234.8 M764.3,516.0 L764.3,236.8 M764.5,516.0 L764.5,239.2
+ M764.7,516.0 L764.7,242.2 M764.9,516.0 L764.9,245.8 M765.1,516.0 L765.1,250.3 M765.2,516.0 L765.2,256.1
+ M765.4,516.0 L765.4,263.7 M765.6,516.0 L765.6,274.6 M765.8,516.0 L765.8,293.5 M766.0,516.0 M766.1,516.0
+ L766.1,293.5 M766.3,516.0 L766.3,274.5 M766.5,516.0 L766.5,263.5 M766.7,516.0 L766.7,255.8 M766.9,516.0
+ L766.9,250.1 M767.0,516.0 L767.0,245.5 M767.2,516.0 L767.2,241.8 M767.4,516.0 L767.4,238.8 M767.6,516.0
+ L767.6,236.3 M767.8,516.0 L767.8,234.3 M767.9,516.0 L767.9,232.6 M768.1,516.0 L768.1,231.3 M768.3,516.0
+ L768.3,230.3 M768.5,516.0 L768.5,229.6 M768.7,516.0 L768.7,229.2 M768.9,516.0 L768.9,229.0 M769.0,516.0
+ L769.0,229.1 M769.2,516.0 L769.2,229.5 M769.4,516.0 L769.4,230.1 M769.6,516.0 L769.6,231.1 M769.8,516.0
+ L769.8,232.3 M769.9,516.0 L769.9,233.9 M770.1,516.0 L770.1,235.9 M770.3,516.0 L770.3,238.3 M770.5,516.0
+ L770.5,241.3 M770.7,516.0 L770.7,244.9 M770.8,516.0 L770.8,249.4 M771.0,516.0 L771.0,255.2 M771.2,516.0
+ L771.2,262.8 M771.4,516.0 L771.4,273.7 M771.6,516.0 L771.6,292.6 M771.7,516.0 M771.9,516.0 L771.9,292.6
+ M772.1,516.0 L772.1,273.6 M772.3,516.0 L772.3,262.6 M772.5,516.0 L772.5,254.9 M772.6,516.0 L772.6,249.2
+ M772.8,516.0 L772.8,244.6 M773.0,516.0 L773.0,240.9 M773.2,516.0 L773.2,237.9 M773.4,516.0 L773.4,235.4
+ M773.5,516.0 L773.5,233.4 M773.7,516.0 L773.7,231.7 M773.9,516.0 L773.9,230.4 M774.1,516.0 L774.1,229.4
+ M774.3,516.0 L774.3,228.7 M774.4,516.0 L774.4,228.2 M774.6,516.0 L774.6,228.1 M774.8,516.0 L774.8,228.2
+ M775.0,516.0 L775.0,228.6 M775.2,516.0 L775.2,229.2 M775.3,516.0 L775.3,230.2 M775.5,516.0 L775.5,231.4
+ M775.7,516.0 L775.7,233.0 M775.9,516.0 L775.9,235.0 M776.1,516.0 L776.1,237.4 M776.2,516.0 L776.2,240.4
+ M776.4,516.0 L776.4,244.0 M776.6,516.0 L776.6,248.5 M776.8,516.0 L776.8,254.2 M777.0,516.0 L777.0,261.8
+ M777.2,516.0 L777.2,272.8 M777.3,516.0 L777.3,291.7 M777.5,516.0 M777.7,516.0 L777.7,291.7 M777.9,516.0
+ L777.9,272.6 M778.1,516.0 L778.1,261.6 M778.2,516.0 L778.2,254.0 M778.4,516.0 L778.4,248.2 M778.6,516.0
+ L778.6,243.6 M778.8,516.0 L778.8,240.0 M779.0,516.0 L779.0,236.9 M779.1,516.0 L779.1,234.4 M779.3,516.0
+ L779.3,232.4 M779.5,516.0 L779.5,230.8 M779.7,516.0 L779.7,229.4 M779.9,516.0 L779.9,228.4 M780.0,516.0
+ L780.0,227.7 M780.2,516.0 L780.2,227.3 M780.4,516.0 L780.4,227.1 M780.6,516.0 L780.6,227.2 M780.8,516.0
+ L780.8,227.6 M780.9,516.0 L780.9,228.3 M781.1,516.0 L781.1,229.2 M781.3,516.0 L781.3,230.4 M781.5,516.0
+ L781.5,232.0 M781.7,516.0 L781.7,234.0 M781.8,516.0 L781.8,236.5 M782.0,516.0 L782.0,239.4 M782.2,516.0
+ L782.2,243.0 M782.4,516.0 L782.4,247.5 M782.6,516.0 L782.6,253.3 M782.7,516.0 L782.7,260.9 M782.9,516.0
+ L782.9,271.8 M783.1,516.0 L783.1,290.7 M783.3,516.0 M783.5,516.0 L783.5,290.7 M783.6,516.0 L783.6,271.7
+ M783.8,516.0 L783.8,260.7 M784.0,516.0 L784.0,253.0 M784.2,516.0 L784.2,247.2 M784.4,516.0 L784.4,242.7
+ M784.5,516.0 L784.5,239.0 M784.7,516.0 L784.7,236.0 M784.9,516.0 L784.9,233.5 M785.1,516.0 L785.1,231.4
+ M785.3,516.0 L785.3,229.8 M785.5,516.0 L785.5,228.5 M785.6,516.0 L785.6,227.5 M785.8,516.0 L785.8,226.7
+ M786.0,516.0 L786.0,226.3 M786.2,516.0 L786.2,226.1 M786.4,516.0 L786.4,226.3 M786.5,516.0 L786.5,226.6
+ M786.7,516.0 L786.7,227.3 M786.9,516.0 L786.9,228.2 M787.1,516.0 L787.1,229.5 M787.3,516.0 L787.3,231.1
+ M787.4,516.0 L787.4,233.0 M787.6,516.0 L787.6,235.5 M787.8,516.0 L787.8,238.4 M788.0,516.0 L788.0,242.0
+ M788.2,516.0 L788.2,246.5 M788.3,516.0 L788.3,252.3 M788.5,516.0 L788.5,259.9 M788.7,516.0 L788.7,270.8
+ M788.9,516.0 L788.9,289.7 M789.1,516.0 M789.2,516.0 L789.2,289.7 M789.4,516.0 L789.4,270.7 M789.6,516.0
+ L789.6,259.7 M789.8,516.0 L789.8,252.0 M790.0,516.0 L790.0,246.2 M790.1,516.0 L790.1,241.7 M790.3,516.0
+ L790.3,238.0 M790.5,516.0 L790.5,234.9 M790.7,516.0 L790.7,232.5 M790.9,516.0 L790.9,230.4 M791.0,516.0
+ L791.0,228.8 M791.2,516.0 L791.2,227.4 M791.4,516.0 L791.4,226.4 M791.6,516.0 L791.6,225.7 M791.8,516.0
+ L791.8,225.3 M791.9,516.0 L791.9,225.1 M792.1,516.0 L792.1,225.2 M792.3,516.0 L792.3,225.6 M792.5,516.0
+ L792.5,226.2 M792.7,516.0 L792.7,227.2 M792.8,516.0 L792.8,228.4 M793.0,516.0 L793.0,230.0 M793.2,516.0
+ L793.2,232.0 M793.4,516.0 L793.4,234.4 M793.6,516.0 L793.6,237.4 M793.7,516.0 L793.7,241.0 M793.9,516.0
+ L793.9,245.5 M794.1,516.0 L794.1,251.2 M794.3,516.0 L794.3,258.8 M794.5,516.0 L794.5,269.7 M794.7,516.0
+ L794.7,288.7 M794.8,516.0 M795.0,516.0 L795.0,288.6 M795.2,516.0 L795.2,269.6 M795.4,516.0 L795.4,258.6
+ M795.6,516.0 L795.6,251.0 M795.7,516.0 L795.7,245.2 M795.9,516.0 L795.9,240.6 M796.1,516.0 L796.1,236.9
+ M796.3,516.0 L796.3,233.9 M796.5,516.0 L796.5,231.4 M796.6,516.0 L796.6,229.4 M796.8,516.0 L796.8,227.7
+ M797.0,516.0 L797.0,226.4 M797.2,516.0 L797.2,225.4 M797.4,516.0 L797.4,224.7 M797.5,516.0 L797.5,224.2
+ M797.7,516.0 L797.7,224.1 M797.9,516.0 L797.9,224.2 M798.1,516.0 L798.1,224.5 M798.3,516.0 L798.3,225.2
+ M798.4,516.0 L798.4,226.1 M798.6,516.0 L798.6,227.4 M798.8,516.0 L798.8,229.0 M799.0,516.0 L799.0,230.9
+ M799.2,516.0 L799.2,233.4 M799.3,516.0 L799.3,236.3 M799.5,516.0 L799.5,239.9 M799.7,516.0 L799.7,244.4
+ M799.9,516.0 L799.9,250.2 M800.1,516.0 L800.1,257.7 M800.2,516.0 L800.2,268.7 M800.4,516.0 L800.4,287.6
+ M800.6,516.0 M800.8,516.0 L800.8,287.6 M801.0,516.0 L801.0,268.5 M801.1,516.0 L801.1,257.5 M801.3,516.0
+ L801.3,249.9 M801.5,516.0 L801.5,244.1 M801.7,516.0 L801.7,239.5 M801.9,516.0 L801.9,235.8 M802.0,516.0
+ L802.0,232.8 M802.2,516.0 L802.2,230.3 M802.4,516.0 L802.4,228.3 M802.6,516.0 L802.6,226.6 M802.8,516.0
+ L802.8,225.3 M803.0,516.0 L803.0,224.3 M803.1,516.0 L803.1,223.6 M803.3,516.0 L803.3,223.1 M803.5,516.0
+ L803.5,223.0 M803.7,516.0 L803.7,223.1 M803.9,516.0 L803.9,223.4 M804.0,516.0 L804.0,224.1 M804.2,516.0
+ L804.2,225.0 M804.4,516.0 L804.4,226.3 M804.6,516.0 L804.6,227.8 M804.8,516.0 L804.8,229.8 M804.9,516.0
+ L804.9,232.2 M805.1,516.0 L805.1,235.2 M805.3,516.0 L805.3,238.8 M805.5,516.0 L805.5,243.3 M805.7,516.0
+ L805.7,249.0 M805.8,516.0 L805.8,256.6 M806.0,516.0 L806.0,267.5 M806.2,516.0 L806.2,286.5 M806.4,516.0
+ M806.6,516.0 L806.6,286.4 M806.7,516.0 L806.7,267.4 M806.9,516.0 L806.9,256.4 M807.1,516.0 L807.1,248.7
+ M807.3,516.0 L807.3,243.0 M807.5,516.0 L807.5,238.4 M807.6,516.0 L807.6,234.7 M807.8,516.0 L807.8,231.7
+ M808.0,516.0 L808.0,229.2 '/> <path stroke='rgb(222, 125, 0)' d='M808.2,516.0 L808.2,227.1 M808.4,516.0 L808.4,225.5 M808.5,516.0 L808.5,224.1 M808.7,516.0 L808.7,223.1
+ M808.9,516.0 L808.9,222.4 M809.1,516.0 L809.1,222.0 M809.3,516.0 L809.3,221.8 M809.4,516.0 L809.4,221.9
+ M809.6,516.0 L809.6,222.3 M809.8,516.0 L809.8,222.9 M810.0,516.0 L810.0,223.9 M810.2,516.0 L810.2,225.1
+ M810.3,516.0 L810.3,226.7 M810.5,516.0 L810.5,228.7 M810.7,516.0 L810.7,231.1 M810.9,516.0 L810.9,234.0
+ M811.1,516.0 L811.1,237.7 M811.3,516.0 L811.3,242.2 M811.4,516.0 L811.4,247.9 M811.6,516.0 L811.6,255.5
+ M811.8,516.0 L811.8,266.4 M812.0,516.0 L812.0,285.3 M812.2,516.0 M812.3,516.0 L812.3,285.3 M812.5,516.0
+ L812.5,266.2 M812.7,516.0 L812.7,255.2 M812.9,516.0 L812.9,247.6 M813.1,516.0 L813.1,241.8 M813.2,516.0
+ L813.2,237.2 M813.4,516.0 L813.4,233.5 M813.6,516.0 L813.6,230.5 M813.8,516.0 L813.8,228.0 M814.0,516.0
+ L814.0,225.9 M814.1,516.0 L814.1,224.3 M814.3,516.0 L814.3,223.0 M814.5,516.0 L814.5,221.9 M814.7,516.0
+ L814.7,221.2 M814.9,516.0 L814.9,220.8 M815.0,516.0 L815.0,220.6 M815.2,516.0 L815.2,220.7 M815.4,516.0
+ L815.4,221.1 M815.6,516.0 L815.6,221.7 M815.8,516.0 L815.8,222.6 M815.9,516.0 L815.9,223.9 M816.1,516.0
+ L816.1,225.5 M816.3,516.0 L816.3,227.4 M816.5,516.0 L816.5,229.9 M816.7,516.0 L816.7,232.8 M816.8,516.0
+ L816.8,236.4 M817.0,516.0 L817.0,240.9 M817.2,516.0 L817.2,246.6 M817.4,516.0 L817.4,254.2 M817.6,516.0
+ L817.6,265.2 M817.7,516.0 L817.7,284.1 M817.9,516.0 M818.1,516.0 L818.1,284.0 M818.3,516.0 L818.3,265.0
+ M818.5,516.0 L818.5,254.0 M818.6,516.0 L818.6,246.3 M818.8,516.0 L818.8,240.5 M819.0,516.0 L819.0,236.0
+ M819.2,516.0 L819.2,232.3 M819.4,516.0 L819.4,229.2 M819.6,516.0 L819.6,226.7 M819.7,516.0 L819.7,224.7
+ M819.9,516.0 L819.9,223.0 M820.1,516.0 L820.1,221.7 M820.3,516.0 L820.3,220.7 M820.5,516.0 L820.5,220.0
+ M820.6,516.0 L820.6,219.5 M820.8,516.0 L820.8,219.4 M821.0,516.0 L821.0,219.5 M821.2,516.0 L821.2,219.8
+ M821.4,516.0 L821.4,220.5 M821.5,516.0 L821.5,221.4 M821.7,516.0 L821.7,222.6 M821.9,516.0 L821.9,224.2
+ M822.1,516.0 L822.1,226.2 M822.3,516.0 L822.3,228.6 M822.4,516.0 L822.4,231.6 M822.6,516.0 L822.6,235.2
+ M822.8,516.0 L822.8,239.7 M823.0,516.0 L823.0,245.4 M823.2,516.0 L823.2,253.0 M823.3,516.0 L823.3,263.9
+ M823.5,516.0 L823.5,282.8 M823.7,516.0 M823.9,516.0 L823.9,282.7 M824.1,516.0 L824.1,263.7 M824.2,516.0
+ L824.2,252.7 M824.4,516.0 L824.4,245.0 M824.6,516.0 L824.6,239.2 M824.8,516.0 L824.8,234.7 M825.0,516.0
+ L825.0,231.0 M825.1,516.0 L825.1,227.9 M825.3,516.0 L825.3,225.4 M825.5,516.0 L825.5,223.4 M825.7,516.0
+ L825.7,221.7 M825.9,516.0 L825.9,220.4 M826.0,516.0 L826.0,219.4 M826.2,516.0 L826.2,218.7 M826.4,516.0
+ L826.4,218.2 M826.6,516.0 L826.6,218.0 M826.8,516.0 L826.8,218.1 M826.9,516.0 L826.9,218.5 M827.1,516.0
+ L827.1,219.1 M827.3,516.0 L827.3,220.1 M827.5,516.0 L827.5,221.3 M827.7,516.0 L827.7,222.9 M827.9,516.0
+ L827.9,224.9 M828.0,516.0 L828.0,227.3 M828.2,516.0 L828.2,230.2 M828.4,516.0 L828.4,233.8 M828.6,516.0
+ L828.6,238.3 M828.8,516.0 L828.8,244.0 M828.9,516.0 L828.9,251.6 M829.1,516.0 L829.1,262.5 M829.3,516.0
+ L829.3,281.5 M829.5,516.0 M829.7,516.0 L829.7,281.4 M829.8,516.0 L829.8,262.4 M830.0,516.0 L830.0,251.4
+ M830.2,516.0 L830.2,243.7 M830.4,516.0 L830.4,237.9 M830.6,516.0 L830.6,233.3 M830.7,516.0 L830.7,229.6
+ M830.9,516.0 L830.9,226.6 M831.1,516.0 L831.1,224.1 M831.3,516.0 L831.3,222.0 M831.5,516.0 L831.5,220.4
+ M831.6,516.0 L831.6,219.0 M831.8,516.0 L831.8,218.0 M832.0,516.0 L832.0,217.3 M832.2,516.0 L832.2,216.8
+ M832.4,516.0 L832.4,216.7 M832.5,516.0 L832.5,216.8 M832.7,516.0 L832.7,217.1 M832.9,516.0 L832.9,217.7
+ M833.1,516.0 L833.1,218.7 M833.3,516.0 L833.3,219.9 M833.4,516.0 L833.4,221.5 M833.6,516.0 L833.6,223.5
+ M833.8,516.0 L833.8,225.9 M834.0,516.0 L834.0,228.8 M834.2,516.0 L834.2,232.4 M834.3,516.0 L834.3,236.9
+ M834.5,516.0 L834.5,242.6 M834.7,516.0 L834.7,250.2 M834.9,516.0 L834.9,261.1 M835.1,516.0 L835.1,280.1
+ M835.2,516.0 M835.4,516.0 L835.4,280.0 M835.6,516.0 L835.6,260.9 M835.8,516.0 L835.8,249.9 M836.0,516.0
+ L836.0,242.3 M836.2,516.0 L836.2,236.5 M836.3,516.0 L836.3,231.9 M836.5,516.0 L836.5,228.2 M836.7,516.0
+ L836.7,225.1 M836.9,516.0 L836.9,222.6 M837.1,516.0 L837.1,220.6 M837.2,516.0 L837.2,218.9 M837.4,516.0
+ L837.4,217.6 M837.6,516.0 L837.6,216.6 M837.8,516.0 L837.8,215.8 M838.0,516.0 L838.0,215.4 M838.1,516.0
+ L838.1,215.2 M838.3,516.0 L838.3,215.3 M838.5,516.0 L838.5,215.7 M838.7,516.0 L838.7,216.3 M838.9,516.0
+ L838.9,217.2 M839.0,516.0 L839.0,218.4 M839.2,516.0 L839.2,220.0 M839.4,516.0 L839.4,222.0 M839.6,516.0
+ L839.6,224.4 M839.8,516.0 L839.8,227.3 M839.9,516.0 L839.9,231.0 M840.1,516.0 L840.1,235.4 M840.3,516.0
+ L840.3,241.1 M840.5,516.0 L840.5,248.7 M840.7,516.0 L840.7,259.6 M840.8,516.0 L840.8,278.6 M841.0,516.0
+ M841.2,516.0 L841.2,278.5 M841.4,516.0 L841.4,259.4 M841.6,516.0 L841.6,248.4 M841.7,516.0 L841.7,240.8
+ M841.9,516.0 L841.9,235.0 M842.1,516.0 L842.1,230.4 M842.3,516.0 L842.3,226.7 M842.5,516.0 L842.5,223.6
+ M842.6,516.0 L842.6,221.1 M842.8,516.0 L842.8,219.1 M843.0,516.0 L843.0,217.4 M843.2,516.0 L843.2,216.1
+ M843.4,516.0 L843.4,215.0 M843.5,516.0 L843.5,214.3 M843.7,516.0 L843.7,213.9 M843.9,516.0 L843.9,213.7
+ M844.1,516.0 L844.1,213.8 M844.3,516.0 L844.3,214.1 M844.5,516.0 L844.5,214.7 M844.6,516.0 L844.6,215.7
+ M844.8,516.0 L844.8,216.9 M845.0,516.0 L845.0,218.5 M845.2,516.0 L845.2,220.4 M845.4,516.0 L845.4,222.8
+ M845.5,516.0 L845.5,225.8 M845.7,516.0 L845.7,229.4 M845.9,516.0 L845.9,233.9 M846.1,516.0 L846.1,239.6
+ M846.3,516.0 L846.3,247.2 M846.4,516.0 L846.4,258.1 M846.6,516.0 L846.6,277.0 M846.8,516.0 M847.0,516.0
+ L847.0,276.9 M847.2,516.0 L847.2,257.9 M847.3,516.0 L847.3,246.8 M847.5,516.0 L847.5,239.2 M847.7,516.0
+ L847.7,233.4 M847.9,516.0 L847.9,228.8 M848.1,516.0 L848.1,225.1 M848.2,516.0 L848.2,222.0 M848.4,516.0
+ L848.4,219.5 M848.6,516.0 L848.6,217.5 M848.8,516.0 L848.8,215.8 M849.0,516.0 L849.0,214.5 M849.1,516.0
+ L849.1,213.4 M849.3,516.0 L849.3,212.7 M849.5,516.0 L849.5,212.2 M849.7,516.0 L849.7,212.1 M849.9,516.0
+ L849.9,212.1 M850.0,516.0 L850.0,212.5 M850.2,516.0 L850.2,213.1 M850.4,516.0 L850.4,214.0 M850.6,516.0
+ L850.6,215.3 M850.8,516.0 L850.8,216.8 M850.9,516.0 L850.9,218.8 M851.1,516.0 L851.1,221.2 M851.3,516.0
+ L851.3,224.1 M851.5,516.0 L851.5,227.7 M851.7,516.0 L851.7,232.2 M851.8,516.0 L851.8,237.9 M852.0,516.0
+ L852.0,245.5 M852.2,516.0 L852.2,256.4 M852.4,516.0 L852.4,275.3 M852.6,516.0 M852.8,516.0 L852.8,275.2
+ M852.9,516.0 L852.9,256.2 M853.1,516.0 L853.1,245.2 M853.3,516.0 L853.3,237.5 M853.5,516.0 L853.5,231.7
+ M853.7,516.0 L853.7,227.1 M853.8,516.0 L853.8,223.4 M854.0,516.0 L854.0,220.3 M854.2,516.0 L854.2,217.8
+ M854.4,516.0 L854.4,215.8 M854.6,516.0 L854.6,214.1 M854.7,516.0 L854.7,212.7 M854.9,516.0 L854.9,211.7
+ M855.1,516.0 L855.1,211.0 '/> <path stroke='rgb(222, 125, 0)' d='M855.3,516.0 L855.3,210.5 M855.5,516.0 L855.5,210.3 M855.6,516.0 L855.6,210.4 M855.8,516.0 L855.8,210.8
+ M856.0,516.0 L856.0,211.4 M856.2,516.0 L856.2,212.3 M856.4,516.0 L856.4,213.5 M856.5,516.0 L856.5,215.1
+ M856.7,516.0 L856.7,217.0 M856.9,516.0 L856.9,219.4 M857.1,516.0 L857.1,222.4 M857.3,516.0 L857.3,226.0
+ M857.4,516.0 L857.4,230.5 M857.6,516.0 L857.6,236.2 M857.8,516.0 L857.8,243.7 M858.0,516.0 L858.0,254.6
+ M858.2,516.0 L858.2,273.6 M858.3,516.0 M858.5,516.0 L858.5,273.4 M858.7,516.0 L858.7,254.4 M858.9,516.0
+ L858.9,243.4 M859.1,516.0 L859.1,235.7 M859.2,516.0 L859.2,229.9 M859.4,516.0 L859.4,225.3 M859.6,516.0
+ L859.6,221.6 M859.8,516.0 L859.8,218.5 M860.0,516.0 L860.0,216.0 M860.1,516.0 L860.1,213.9 M860.3,516.0
+ L860.3,212.3 M860.5,516.0 L860.5,210.9 M860.7,516.0 L860.7,209.9 M860.9,516.0 L860.9,209.1 M861.1,516.0
+ L861.1,208.7 M861.2,516.0 L861.2,208.5 M861.4,516.0 L861.4,208.6 M861.6,516.0 L861.6,208.9 M861.8,516.0
+ L861.8,209.5 M862.0,516.0 L862.0,210.4 M862.1,516.0 L862.1,211.7 M862.3,516.0 L862.3,213.2 M862.5,516.0
+ L862.5,215.2 M862.7,516.0 L862.7,217.6 M862.9,516.0 L862.9,220.5 M863.0,516.0 L863.0,224.1 M863.2,516.0
+ L863.2,228.6 M863.4,516.0 L863.4,234.3 M863.6,516.0 L863.6,241.8 M863.8,516.0 L863.8,252.7 M863.9,516.0
+ L863.9,271.7 M864.1,516.0 M864.3,516.0 L864.3,271.5 M864.5,516.0 L864.5,252.5 M864.7,516.0 L864.7,241.5
+ M864.8,516.0 L864.8,233.8 M865.0,516.0 L865.0,228.0 M865.2,516.0 L865.2,223.4 M865.4,516.0 L865.4,219.6
+ M865.6,516.0 L865.6,216.6 M865.7,516.0 L865.7,214.1 M865.9,516.0 L865.9,212.0 M866.1,516.0 L866.1,210.3
+ M866.3,516.0 L866.3,209.0 M866.5,516.0 L866.5,207.9 M866.6,516.0 L866.6,207.2 M866.8,516.0 L866.8,206.7
+ M867.0,516.0 L867.0,206.5 M867.2,516.0 L867.2,206.6 M867.4,516.0 L867.4,206.9 M867.5,516.0 L867.5,207.5
+ M867.7,516.0 L867.7,208.5 M867.9,516.0 L867.9,209.7 M868.1,516.0 L868.1,211.2 M868.3,516.0 L868.3,213.2
+ M868.4,516.0 L868.4,215.6 M868.6,516.0 L868.6,218.5 M868.8,516.0 L868.8,222.1 M869.0,516.0 L869.0,226.6
+ M869.2,516.0 L869.2,232.2 M869.3,516.0 L869.3,239.8 M869.5,516.0 L869.5,250.7 M869.7,516.0 L869.7,269.6
+ M869.9,516.0 M870.1,516.0 L870.1,269.5 M870.3,516.0 L870.3,250.4 M870.4,516.0 L870.4,239.4 M870.6,516.0
+ L870.6,231.7 M870.8,516.0 L870.8,225.9 M871.0,516.0 L871.0,221.3 M871.2,516.0 L871.2,217.6 M871.3,516.0
+ L871.3,214.5 M871.5,516.0 L871.5,212.0 M871.7,516.0 L871.7,209.9 M871.9,516.0 L871.9,208.2 M872.1,516.0
+ L872.1,206.9 M872.2,516.0 L872.2,205.8 M872.4,516.0 L872.4,205.1 M872.6,516.0 L872.6,204.6 M872.8,516.0
+ L872.8,204.4 M873.0,516.0 L873.0,204.5 M873.1,516.0 L873.1,204.8 M873.3,516.0 L873.3,205.4 M873.5,516.0
+ L873.5,206.3 M873.7,516.0 L873.7,207.5 M873.9,516.0 L873.9,209.1 M874.0,516.0 L874.0,211.0 M874.2,516.0
+ L874.2,213.4 M874.4,516.0 L874.4,216.3 M874.6,516.0 L874.6,219.9 M874.8,516.0 L874.8,224.4 M874.9,516.0
+ L874.9,230.1 M875.1,516.0 L875.1,237.6 M875.3,516.0 L875.3,248.5 M875.5,516.0 L875.5,267.4 M875.7,516.0
+ M875.8,516.0 L875.8,267.3 M876.0,516.0 L876.0,248.2 M876.2,516.0 L876.2,237.2 M876.4,516.0 L876.4,229.5
+ M876.6,516.0 L876.6,223.7 M876.7,516.0 L876.7,219.1 M876.9,516.0 L876.9,215.3 M877.1,516.0 L877.1,212.3
+ M877.3,516.0 L877.3,209.7 M877.5,516.0 L877.5,207.6 M877.6,516.0 L877.6,205.9 M877.8,516.0 L877.8,204.6
+ M878.0,516.0 L878.0,203.5 M878.2,516.0 L878.2,202.8 M878.4,516.0 L878.4,202.3 M878.6,516.0 L878.6,202.1
+ M878.7,516.0 L878.7,202.2 M878.9,516.0 L878.9,202.5 M879.1,516.0 L879.1,203.1 M879.3,516.0 L879.3,204.0
+ M879.5,516.0 L879.5,205.2 M879.6,516.0 L879.6,206.7 M879.8,516.0 L879.8,208.7 M880.0,516.0 L880.0,211.1
+ M880.2,516.0 L880.2,214.0 M880.4,516.0 L880.4,217.6 M880.5,516.0 L880.5,222.0 M880.7,516.0 L880.7,227.7
+ M880.9,516.0 L880.9,235.2 M881.1,516.0 L881.1,246.1 M881.3,516.0 L881.3,265.0 M881.4,516.0 M881.6,516.0
+ L881.6,264.9 M881.8,516.0 L881.8,245.8 M882.0,516.0 L882.0,234.8 M882.2,516.0 L882.2,227.1 M882.3,516.0
+ L882.3,221.2 M882.5,516.0 L882.5,216.6 M882.7,516.0 L882.7,212.9 M882.9,516.0 L882.9,209.8 M883.1,516.0
+ L883.1,207.3 M883.2,516.0 L883.2,205.2 M883.4,516.0 L883.4,203.5 M883.6,516.0 L883.6,202.1 M883.8,516.0
+ L883.8,201.1 M884.0,516.0 L884.0,200.3 M884.1,516.0 L884.1,199.8 M884.3,516.0 L884.3,199.6 M884.5,516.0
+ L884.5,199.6 M884.7,516.0 L884.7,200.0 M884.9,516.0 L884.9,200.6 M885.0,516.0 L885.0,201.4 M885.2,516.0
+ L885.2,202.6 M885.4,516.0 L885.4,204.2 M885.6,516.0 L885.6,206.1 M885.8,516.0 L885.8,208.5 M885.9,516.0
+ L885.9,211.4 M886.1,516.0 L886.1,215.0 M886.3,516.0 L886.3,219.4 M886.5,516.0 L886.5,225.1 M886.7,516.0
+ L886.7,232.6 M886.9,516.0 L886.9,243.5 M887.0,516.0 L887.0,262.4 M887.2,516.0 M887.4,516.0 L887.4,262.2
+ M887.6,516.0 L887.6,243.2 M887.8,516.0 L887.8,232.1 M887.9,516.0 L887.9,224.4 M888.1,516.0 L888.1,218.6
+ M888.3,516.0 L888.3,213.9 M888.5,516.0 L888.5,210.2 M888.7,516.0 L888.7,207.1 M888.8,516.0 L888.8,204.6
+ M889.0,516.0 L889.0,202.5 M889.2,516.0 L889.2,200.7 M889.4,516.0 L889.4,199.4 M889.6,516.0 L889.6,198.3
+ M889.7,516.0 L889.7,197.5 M889.9,516.0 L889.9,197.1 M890.1,516.0 L890.1,196.8 M890.3,516.0 L890.3,196.9
+ M890.5,516.0 L890.5,197.2 M890.6,516.0 L890.6,197.8 M890.8,516.0 L890.8,198.6 M891.0,516.0 L891.0,199.8
+ M891.2,516.0 L891.2,201.4 M891.4,516.0 L891.4,203.3 M891.5,516.0 L891.5,205.7 M891.7,516.0 L891.7,208.6
+ M891.9,516.0 L891.9,212.1 M892.1,516.0 L892.1,216.6 M892.3,516.0 L892.3,222.2 M892.4,516.0 L892.4,229.7
+ M892.6,516.0 L892.6,240.6 M892.8,516.0 L892.8,259.5 M893.0,516.0 M893.2,516.0 L893.2,259.3 M893.3,516.0
+ L893.3,240.2 M893.5,516.0 L893.5,229.2 M893.7,516.0 L893.7,221.4 M893.9,516.0 L893.9,215.6 M894.1,516.0
+ L894.1,211.0 M894.2,516.0 L894.2,207.2 M894.4,516.0 L894.4,204.1 M894.6,516.0 L894.6,201.6 M894.8,516.0
+ L894.8,199.5 M895.0,516.0 L895.0,197.7 M895.2,516.0 L895.2,196.3 M895.3,516.0 L895.3,195.3 M895.5,516.0
+ L895.5,194.5 M895.7,516.0 L895.7,194.0 M895.9,516.0 L895.9,193.8 M896.1,516.0 L896.1,193.8 M896.2,516.0
+ L896.2,194.1 M896.4,516.0 L896.4,194.7 M896.6,516.0 L896.6,195.5 M896.8,516.0 L896.8,196.7 M897.0,516.0
+ L897.0,198.2 M897.1,516.0 L897.1,200.1 M897.3,516.0 L897.3,202.5 M897.5,516.0 L897.5,205.4 M897.7,516.0
+ L897.7,208.9 M897.9,516.0 L897.9,213.4 M898.0,516.0 L898.0,219.0 M898.2,516.0 L898.2,226.5 M898.4,516.0
+ L898.4,237.4 M898.6,516.0 L898.6,256.3 M898.8,516.0 M898.9,516.0 L898.9,256.0 M899.1,516.0 L899.1,237.0
+ M899.3,516.0 L899.3,225.9 M899.5,516.0 L899.5,218.2 M899.7,516.0 L899.7,212.3 M899.8,516.0 L899.8,207.6
+ M900.0,516.0 L900.0,203.9 M900.2,516.0 L900.2,200.8 M900.4,516.0 L900.4,198.2 M900.6,516.0 L900.6,196.1
+ M900.7,516.0 L900.7,194.3 M900.9,516.0 L900.9,192.9 M901.1,516.0 L901.1,191.9 M901.3,516.0 L901.3,191.1
+ M901.5,516.0 L901.5,190.6 M901.6,516.0 L901.6,190.3 M901.8,516.0 L901.8,190.3 M902.0,516.0 L902.0,190.6
+ M902.2,516.0 L902.2,191.2 '/> <path stroke='rgb(222, 125, 0)' d='M902.4,516.0 L902.4,192.0 M902.5,516.0 L902.5,193.2 M902.7,516.0 L902.7,194.7 M902.9,516.0 L902.9,196.6
+ M903.1,516.0 L903.1,198.9 M903.3,516.0 L903.3,201.8 M903.5,516.0 L903.5,205.3 M903.6,516.0 L903.6,209.8
+ M903.8,516.0 L903.8,215.4 M904.0,516.0 L904.0,222.9 M904.2,516.0 L904.2,233.7 M904.4,516.0 L904.4,252.6
+ M904.5,516.0 M904.7,516.0 L904.7,252.4 M904.9,516.0 L904.9,233.2 M905.1,516.0 L905.1,222.2 M905.3,516.0
+ L905.3,214.4 M905.4,516.0 L905.4,208.5 M905.6,516.0 L905.6,203.9 M905.8,516.0 L905.8,200.1 M906.0,516.0
+ L906.0,197.0 M906.2,516.0 L906.2,194.4 M906.3,516.0 L906.3,192.2 M906.5,516.0 L906.5,190.5 M906.7,516.0
+ L906.7,189.1 M906.9,516.0 L906.9,188.0 M907.1,516.0 L907.1,187.2 M907.2,516.0 L907.2,186.6 M907.4,516.0
+ L907.4,186.4 M907.6,516.0 L907.6,186.4 M907.8,516.0 L907.8,186.6 M908.0,516.0 L908.0,187.2 M908.1,516.0
+ L908.1,188.0 M908.3,516.0 L908.3,189.2 M908.5,516.0 L908.5,190.6 M908.7,516.0 L908.7,192.5 M908.9,516.0
+ L908.9,194.8 M909.0,516.0 L909.0,197.7 M909.2,516.0 L909.2,201.2 M909.4,516.0 L909.4,205.6 M909.6,516.0
+ L909.6,211.2 M909.8,516.0 L909.8,218.7 M909.9,516.0 L909.9,229.5 M910.1,516.0 L910.1,248.4 M910.3,516.0
+ M910.5,516.0 L910.5,248.1 M910.7,516.0 L910.7,228.9 M910.8,516.0 L910.8,217.8 M911.0,516.0 L911.0,210.1
+ M911.2,516.0 L911.2,204.2 M911.4,516.0 L911.4,199.5 M911.6,516.0 L911.6,195.7 M911.8,516.0 L911.8,192.5
+ M911.9,516.0 L911.9,189.9 M912.1,516.0 L912.1,187.8 M912.3,516.0 L912.3,186.0 M912.5,516.0 L912.5,184.6
+ M912.7,516.0 L912.7,183.4 M912.8,516.0 L912.8,182.6 M913.0,516.0 L913.0,182.0 M913.2,516.0 L913.2,181.8
+ M913.4,516.0 L913.4,181.7 M913.6,516.0 L913.6,182.0 M913.7,516.0 L913.7,182.5 M913.9,516.0 L913.9,183.3
+ M914.1,516.0 L914.1,184.4 M914.3,516.0 L914.3,185.9 M914.5,516.0 L914.5,187.7 M914.6,516.0 L914.6,190.0
+ M914.8,516.0 L914.8,192.9 M915.0,516.0 L915.0,196.4 M915.2,516.0 L915.2,200.7 M915.4,516.0 L915.4,206.3
+ M915.5,516.0 L915.5,213.8 M915.7,516.0 L915.7,224.5 M915.9,516.0 L915.9,243.4 M916.1,516.0 M916.3,516.0
+ L916.3,243.0 M916.4,516.0 L916.4,223.9 M916.6,516.0 L916.6,212.7 M916.8,516.0 L916.8,204.9 M917.0,516.0
+ L917.0,199.0 M917.2,516.0 L917.2,194.3 M917.3,516.0 L917.3,190.4 M917.5,516.0 L917.5,187.3 M917.7,516.0
+ L917.7,184.6 M917.9,516.0 L917.9,182.4 M918.1,516.0 L918.1,180.6 M918.2,516.0 L918.2,179.2 M918.4,516.0
+ L918.4,178.0 M918.6,516.0 L918.6,177.1 M918.8,516.0 L918.8,176.5 M919.0,516.0 L919.0,176.2 M919.1,516.0
+ L919.1,176.2 M919.3,516.0 L919.3,176.4 M919.5,516.0 L919.5,176.9 M919.7,516.0 L919.7,177.6 M919.9,516.0
+ L919.9,178.7 M920.1,516.0 L920.1,180.1 M920.2,516.0 L920.2,181.9 M920.4,516.0 L920.4,184.2 M920.6,516.0
+ L920.6,187.0 M920.8,516.0 L920.8,190.4 M921.0,516.0 L921.0,194.8 M921.1,516.0 L921.1,200.3 M921.3,516.0
+ L921.3,207.7 M921.5,516.0 L921.5,218.5 M921.7,516.0 L921.7,237.3 M921.9,516.0 M922.0,516.0 L922.0,236.8
+ M922.2,516.0 L922.2,217.6 M922.4,516.0 L922.4,206.4 M922.6,516.0 L922.6,198.6 M922.8,516.0 L922.8,192.6
+ M922.9,516.0 L922.9,187.9 M923.1,516.0 L923.1,184.0 M923.3,516.0 L923.3,180.8 M923.5,516.0 L923.5,178.1
+ M923.7,516.0 L923.7,175.8 M923.8,516.0 L923.8,174.0 M924.0,516.0 L924.0,172.4 M924.2,516.0 L924.2,171.2
+ M924.4,516.0 L924.4,170.3 M924.6,516.0 L924.6,169.7 M924.7,516.0 L924.7,169.3 M924.9,516.0 L924.9,169.2
+ M925.1,516.0 L925.1,169.3 M925.3,516.0 L925.3,169.8 M925.5,516.0 L925.5,170.5 M925.6,516.0 L925.6,171.5
+ M925.8,516.0 L925.8,172.9 M926.0,516.0 L926.0,174.6 M926.2,516.0 L926.2,176.8 M926.4,516.0 L926.4,179.5
+ M926.5,516.0 L926.5,182.9 M926.7,516.0 L926.7,187.2 M926.9,516.0 L926.9,192.7 M927.1,516.0 L927.1,200.0
+ M927.3,516.0 L927.3,210.7 M927.4,516.0 L927.4,229.4 M927.6,516.0 M927.8,516.0 L927.8,228.8 M928.0,516.0
+ L928.0,209.5 M928.2,516.0 L928.2,198.3 M928.4,516.0 L928.4,190.4 M928.5,516.0 L928.5,184.3 M928.7,516.0
+ L928.7,179.5 M928.9,516.0 L928.9,175.5 M929.1,516.0 L929.1,172.2 M929.3,516.0 L929.3,169.4 M929.4,516.0
+ L929.4,167.1 M929.6,516.0 L929.6,165.1 M929.8,516.0 L929.8,163.5 M930.0,516.0 L930.0,162.2 M930.2,516.0
+ L930.2,161.2 M930.3,516.0 L930.3,160.5 M930.5,516.0 L930.5,160.0 M930.7,516.0 L930.7,159.8 M930.9,516.0
+ L930.9,159.8 M931.1,516.0 L931.1,160.2 M931.2,516.0 L931.2,160.8 M931.4,516.0 L931.4,161.7 M931.6,516.0
+ L931.6,162.9 M931.8,516.0 L931.8,164.6 M932.0,516.0 L932.0,166.7 M932.1,516.0 L932.1,169.3 M932.3,516.0
+ L932.3,172.5 M932.5,516.0 L932.5,176.7 M932.7,516.0 L932.7,182.0 M932.9,516.0 L932.9,189.2 M933.0,516.0
+ L933.0,199.8 M933.2,516.0 L933.2,218.3 M933.4,516.0 M933.6,516.0 L933.6,217.5 M933.8,516.0 L933.8,198.1
+ M933.9,516.0 L933.9,186.6 M934.1,516.0 L934.1,178.6 M934.3,516.0 L934.3,172.4 M934.5,516.0 L934.5,167.3
+ M934.7,516.0 L934.7,163.2 M934.8,516.0 L934.8,159.7 M935.0,516.0 L935.0,156.8 M935.2,516.0 L935.2,154.3
+ M935.4,516.0 L935.4,152.1 M935.6,516.0 L935.6,150.3 M935.7,516.0 L935.7,148.8 M935.9,516.0 L935.9,147.6
+ M936.1,516.0 L936.1,146.6 M936.3,516.0 L936.3,145.9 M936.5,516.0 L936.5,145.5 M936.7,516.0 L936.7,145.3
+ M936.8,516.0 L936.8,145.3 M937.0,516.0 L937.0,145.7 M937.2,516.0 L937.2,146.3 M937.4,516.0 L937.4,147.3
+ M937.6,516.0 L937.6,148.7 M937.7,516.0 L937.7,150.4 M937.9,516.0 L937.9,152.7 M938.1,516.0 L938.1,155.7
+ M938.3,516.0 L938.3,159.5 M938.5,516.0 L938.5,164.5 M938.6,516.0 L938.6,171.3 M938.8,516.0 L938.8,181.5
+ M939.0,516.0 L939.0,199.6 M939.2,516.0 M939.4,516.0 L939.4,197.9 M939.5,516.0 L939.5,178.0 M939.7,516.0
+ L939.7,166.1 M939.9,516.0 L939.9,157.5 M940.1,516.0 L940.1,150.8 M940.3,516.0 L940.3,145.2 M940.4,516.0
+ L940.4,140.5 M940.6,516.0 L940.6,136.4 M940.8,516.0 L940.8,132.7 M941.0,516.0 L941.0,129.5 M941.2,516.0
+ L941.2,126.6 M941.3,516.0 L941.3,124.0 M941.5,516.0 L941.5,121.6 M941.7,516.0 L941.7,119.4 M941.9,516.0
+ L941.9,117.4 M942.1,516.0 L942.1,115.6 M942.2,516.0 L942.2,114.0 M942.4,516.0 L942.4,112.5 M942.6,516.0
+ L942.6,111.1 M942.8,516.0 L942.8,109.9 M943.0,516.0 L943.0,108.7 M943.1,516.0 L943.1,107.7 M943.3,516.0
+ L943.3,106.8 M943.5,516.0 L943.5,106.1 M943.7,516.0 L943.7,105.4 M943.9,516.0 L943.9,104.8 M944.0,516.0
+ L944.0,104.3 M944.2,516.0 L944.2,103.9 M944.4,516.0 L944.4,103.6 M944.6,516.0 L944.6,103.3 M944.8,516.0
+ L944.8,103.2 M945.0,516.0 L945.0,103.2 M945.1,516.0 L945.1,103.2 M945.3,516.0 L945.3,103.3 M945.5,516.0
+ L945.5,103.6 M945.7,516.0 L945.7,103.9 M945.9,516.0 L945.9,104.3 M946.0,516.0 L946.0,104.8 M946.2,516.0
+ L946.2,105.4 M946.4,516.0 L946.4,106.1 M946.6,516.0 L946.6,106.8 M946.8,516.0 L946.8,107.7 M946.9,516.0
+ L946.9,108.7 M947.1,516.0 L947.1,109.9 M947.3,516.0 L947.3,111.1 M947.5,516.0 L947.5,112.5 M947.7,516.0
+ L947.7,114.0 M947.8,516.0 L947.8,115.6 M948.0,516.0 L948.0,117.4 M948.2,516.0 L948.2,119.4 M948.4,516.0
+ L948.4,121.6 M948.6,516.0 L948.6,124.0 M948.7,516.0 L948.7,126.6 M948.9,516.0 L948.9,129.5 M949.1,516.0
+ L949.1,132.7 '/> <path stroke='rgb(222, 125, 0)' d='M949.3,516.0 L949.3,136.4 M949.5,516.0 L949.5,140.5 M949.6,516.0 L949.6,145.2 M949.8,516.0 L949.8,150.8
+ M950.0,516.0 L950.0,157.5 M950.2,516.0 L950.2,166.1 M950.4,516.0 L950.4,178.0 M950.5,516.0 L950.5,197.9
+ M950.7,516.0 M950.9,516.0 L950.9,199.6 M951.1,516.0 L951.1,181.5 M951.3,516.0 L951.3,171.3 M951.4,516.0
+ L951.4,164.5 M951.6,516.0 L951.6,159.5 M951.8,516.0 L951.8,155.7 M952.0,516.0 L952.0,152.7 M952.2,516.0
+ L952.2,150.4 M952.3,516.0 L952.3,148.7 M952.5,516.0 L952.5,147.3 M952.7,516.0 L952.7,146.3 M952.9,516.0
+ L952.9,145.7 M953.1,516.0 L953.1,145.3 M953.2,516.0 L953.2,145.3 M953.4,516.0 L953.4,145.5 M953.6,516.0
+ L953.6,145.9 M953.8,516.0 L953.8,146.6 M954.0,516.0 L954.0,147.6 M954.2,516.0 L954.2,148.8 M954.3,516.0
+ L954.3,150.3 M954.5,516.0 L954.5,152.1 M954.7,516.0 L954.7,154.3 M954.9,516.0 L954.9,156.8 M955.1,516.0
+ L955.1,159.7 M955.2,516.0 L955.2,163.2 M955.4,516.0 L955.4,167.3 M955.6,516.0 L955.6,172.4 M955.8,516.0
+ L955.8,178.6 M956.0,516.0 L956.0,186.6 M956.1,516.0 L956.1,198.1 M956.3,516.0 L956.3,217.5 M956.5,516.0
+ M956.7,516.0 L956.7,218.3 M956.9,516.0 L956.9,199.8 M957.0,516.0 L957.0,189.2 M957.2,516.0 L957.2,182.0
+ M957.4,516.0 L957.4,176.7 M957.6,516.0 L957.6,172.5 M957.8,516.0 L957.8,169.3 M957.9,516.0 L957.9,166.7
+ M958.1,516.0 L958.1,164.6 M958.3,516.0 L958.3,162.9 M958.5,516.0 L958.5,161.7 M958.7,516.0 L958.7,160.8
+ M958.8,516.0 L958.8,160.2 M959.0,516.0 L959.0,159.8 M959.2,516.0 L959.2,159.8 M959.4,516.0 L959.4,160.0
+ M959.6,516.0 L959.6,160.5 M959.7,516.0 L959.7,161.2 M959.9,516.0 L959.9,162.2 M960.1,516.0 L960.1,163.5
+ M960.3,516.0 L960.3,165.1 M960.5,516.0 L960.5,167.1 M960.6,516.0 L960.6,169.4 M960.8,516.0 L960.8,172.2
+ M961.0,516.0 L961.0,175.5 M961.2,516.0 L961.2,179.5 M961.4,516.0 L961.4,184.3 M961.5,516.0 L961.5,190.4
+ M961.7,516.0 L961.7,198.3 M961.9,516.0 L961.9,209.5 M962.1,516.0 L962.1,228.8 M962.3,516.0 M962.5,516.0
+ L962.5,229.4 M962.6,516.0 L962.6,210.7 M962.8,516.0 L962.8,200.0 M963.0,516.0 L963.0,192.7 M963.2,516.0
+ L963.2,187.2 M963.4,516.0 L963.4,182.9 M963.5,516.0 L963.5,179.5 M963.7,516.0 L963.7,176.8 M963.9,516.0
+ L963.9,174.6 M964.1,516.0 L964.1,172.9 M964.3,516.0 L964.3,171.5 M964.4,516.0 L964.4,170.5 M964.6,516.0
+ L964.6,169.8 M964.8,516.0 L964.8,169.3 M965.0,516.0 L965.0,169.2 M965.2,516.0 L965.2,169.3 M965.3,516.0
+ L965.3,169.7 M965.5,516.0 L965.5,170.3 M965.7,516.0 L965.7,171.2 M965.9,516.0 L965.9,172.4 M966.1,516.0
+ L966.1,174.0 M966.2,516.0 L966.2,175.8 M966.4,516.0 L966.4,178.1 M966.6,516.0 L966.6,180.8 M966.8,516.0
+ L966.8,184.0 M967.0,516.0 L967.0,187.9 M967.1,516.0 L967.1,192.6 M967.3,516.0 L967.3,198.6 M967.5,516.0
+ L967.5,206.4 M967.7,516.0 L967.7,217.6 M967.9,516.0 L967.9,236.8 M968.0,516.0 M968.2,516.0 L968.2,237.3
+ M968.4,516.0 L968.4,218.5 M968.6,516.0 L968.6,207.7 M968.8,516.0 L968.8,200.3 M968.9,516.0 L968.9,194.8
+ M969.1,516.0 L969.1,190.4 M969.3,516.0 L969.3,187.0 M969.5,516.0 L969.5,184.2 M969.7,516.0 L969.7,181.9
+ M969.8,516.0 L969.8,180.1 M970.0,516.0 L970.0,178.7 M970.2,516.0 L970.2,177.6 M970.4,516.0 L970.4,176.9
+ M970.6,516.0 L970.6,176.4 M970.8,516.0 L970.8,176.2 M970.9,516.0 L970.9,176.2 M971.1,516.0 L971.1,176.5
+ M971.3,516.0 L971.3,177.1 M971.5,516.0 L971.5,178.0 M971.7,516.0 L971.7,179.2 M971.8,516.0 L971.8,180.6
+ M972.0,516.0 L972.0,182.4 M972.2,516.0 L972.2,184.6 M972.4,516.0 L972.4,187.3 M972.6,516.0 L972.6,190.4
+ M972.7,516.0 L972.7,194.3 M972.9,516.0 L972.9,199.0 M973.1,516.0 L973.1,204.9 M973.3,516.0 L973.3,212.7
+ M973.5,516.0 L973.5,223.9 M973.6,516.0 L973.6,243.0 M973.8,516.0 M974.0,516.0 L974.0,243.4 M974.2,516.0
+ L974.2,224.5 M974.4,516.0 L974.4,213.8 M974.5,516.0 L974.5,206.3 M974.7,516.0 L974.7,200.7 M974.9,516.0
+ L974.9,196.4 M975.1,516.0 L975.1,192.9 M975.3,516.0 L975.3,190.0 M975.4,516.0 L975.4,187.7 M975.6,516.0
+ L975.6,185.9 M975.8,516.0 L975.8,184.4 M976.0,516.0 L976.0,183.3 M976.2,516.0 L976.2,182.5 M976.3,516.0
+ L976.3,182.0 M976.5,516.0 L976.5,181.7 M976.7,516.0 L976.7,181.8 M976.9,516.0 L976.9,182.0 M977.1,516.0
+ L977.1,182.6 M977.2,516.0 L977.2,183.4 M977.4,516.0 L977.4,184.6 M977.6,516.0 L977.6,186.0 M977.8,516.0
+ L977.8,187.8 M978.0,516.0 L978.0,189.9 M978.1,516.0 L978.1,192.5 M978.3,516.0 L978.3,195.7 M978.5,516.0
+ L978.5,199.5 M978.7,516.0 L978.7,204.2 M978.9,516.0 L978.9,210.1 M979.1,516.0 L979.1,217.8 M979.2,516.0
+ L979.2,228.9 M979.4,516.0 L979.4,248.1 M979.6,516.0 M979.8,516.0 L979.8,248.4 M980.0,516.0 L980.0,229.5
+ M980.1,516.0 L980.1,218.7 M980.3,516.0 L980.3,211.2 M980.5,516.0 L980.5,205.6 M980.7,516.0 L980.7,201.2
+ M980.9,516.0 L980.9,197.7 M981.0,516.0 L981.0,194.8 M981.2,516.0 L981.2,192.5 M981.4,516.0 L981.4,190.6
+ M981.6,516.0 L981.6,189.2 M981.8,516.0 L981.8,188.0 M981.9,516.0 L981.9,187.2 M982.1,516.0 L982.1,186.6
+ M982.3,516.0 L982.3,186.4 M982.5,516.0 L982.5,186.4 M982.7,516.0 L982.7,186.6 M982.8,516.0 L982.8,187.2
+ M983.0,516.0 L983.0,188.0 M983.2,516.0 L983.2,189.1 M983.4,516.0 L983.4,190.5 M983.6,516.0 L983.6,192.2
+ M983.7,516.0 L983.7,194.4 M983.9,516.0 L983.9,197.0 M984.1,516.0 L984.1,200.1 M984.3,516.0 L984.3,203.9
+ M984.5,516.0 L984.5,208.5 M984.6,516.0 L984.6,214.4 M984.8,516.0 L984.8,222.2 M985.0,516.0 L985.0,233.2
+ M985.2,516.0 L985.2,252.4 M985.4,516.0 M985.5,516.0 L985.5,252.6 M985.7,516.0 L985.7,233.7 M985.9,516.0
+ L985.9,222.9 M986.1,516.0 L986.1,215.4 M986.3,516.0 L986.3,209.8 M986.4,516.0 L986.4,205.3 M986.6,516.0
+ L986.6,201.8 M986.8,516.0 L986.8,198.9 M987.0,516.0 L987.0,196.6 M987.2,516.0 L987.2,194.7 M987.4,516.0
+ L987.4,193.2 M987.5,516.0 L987.5,192.0 M987.7,516.0 L987.7,191.2 M987.9,516.0 L987.9,190.6 M988.1,516.0
+ L988.1,190.3 M988.3,516.0 L988.3,190.3 M988.4,516.0 L988.4,190.6 M988.6,516.0 L988.6,191.1 M988.8,516.0
+ L988.8,191.9 M989.0,516.0 L989.0,192.9 M989.2,516.0 L989.2,194.3 M989.3,516.0 L989.3,196.1 M989.5,516.0
+ L989.5,198.2 M989.7,516.0 L989.7,200.8 M989.9,516.0 L989.9,203.9 M990.1,516.0 L990.1,207.6 M990.2,516.0
+ L990.2,212.3 M990.4,516.0 L990.4,218.2 M990.6,516.0 L990.6,225.9 M990.8,516.0 L990.8,237.0 M991.0,516.0
+ L991.0,256.0 M991.1,516.0 M991.3,516.0 L991.3,256.3 M991.5,516.0 L991.5,237.4 M991.7,516.0 L991.7,226.5
+ M991.9,516.0 L991.9,219.0 M992.0,516.0 L992.0,213.4 M992.2,516.0 L992.2,208.9 M992.4,516.0 L992.4,205.4
+ M992.6,516.0 L992.6,202.5 M992.8,516.0 L992.8,200.1 M992.9,516.0 L992.9,198.2 M993.1,516.0 L993.1,196.7
+ M993.3,516.0 L993.3,195.5 M993.5,516.0 L993.5,194.7 M993.7,516.0 L993.7,194.1 M993.8,516.0 L993.8,193.8
+ M994.0,516.0 L994.0,193.8 M994.2,516.0 L994.2,194.0 M994.4,516.0 L994.4,194.5 M994.6,516.0 L994.6,195.3
+ M994.7,516.0 L994.7,196.3 M994.9,516.0 L994.9,197.7 M995.1,516.0 L995.1,199.5 M995.3,516.0 L995.3,201.6
+ M995.5,516.0 L995.5,204.1 M995.7,516.0 L995.7,207.2 M995.8,516.0 L995.8,211.0 M996.0,516.0 L996.0,215.6
+ M996.2,516.0 L996.2,221.4 '/> <path stroke='rgb(222, 125, 0)' d='M996.4,516.0 L996.4,229.2 M996.6,516.0 L996.6,240.2 M996.7,516.0 L996.7,259.3 M996.9,516.0 M997.1,516.0
+ L997.1,259.5 M997.3,516.0 L997.3,240.6 M997.5,516.0 L997.5,229.7 M997.6,516.0 L997.6,222.2 M997.8,516.0
+ L997.8,216.6 M998.0,516.0 L998.0,212.1 M998.2,516.0 L998.2,208.6 M998.4,516.0 L998.4,205.7 M998.5,516.0
+ L998.5,203.3 M998.7,516.0 L998.7,201.4 M998.9,516.0 L998.9,199.8 M999.1,516.0 L999.1,198.6 M999.3,516.0
+ L999.3,197.8 M999.4,516.0 L999.4,197.2 M999.6,516.0 L999.6,196.9 M999.8,516.0 L999.8,196.8 M1000.0,516.0
+ L1000.0,197.1 M1000.2,516.0 L1000.2,197.5 M1000.3,516.0 L1000.3,198.3 M1000.5,516.0 L1000.5,199.4 M1000.7,516.0
+ L1000.7,200.7 M1000.9,516.0 L1000.9,202.5 M1001.1,516.0 L1001.1,204.6 M1001.2,516.0 L1001.2,207.1 M1001.4,516.0
+ L1001.4,210.2 M1001.6,516.0 L1001.6,213.9 M1001.8,516.0 L1001.8,218.6 M1002.0,516.0 L1002.0,224.4 M1002.1,516.0
+ L1002.1,232.1 M1002.3,516.0 L1002.3,243.2 M1002.5,516.0 L1002.5,262.2 M1002.7,516.0 M1002.9,516.0 L1002.9,262.4
+ M1003.0,516.0 L1003.0,243.5 M1003.2,516.0 L1003.2,232.6 M1003.4,516.0 L1003.4,225.1 M1003.6,516.0 L1003.6,219.4
+ M1003.8,516.0 L1003.8,215.0 M1004.0,516.0 L1004.0,211.4 M1004.1,516.0 L1004.1,208.5 M1004.3,516.0 L1004.3,206.1
+ M1004.5,516.0 L1004.5,204.2 M1004.7,516.0 L1004.7,202.6 M1004.9,516.0 L1004.9,201.4 M1005.0,516.0 L1005.0,200.6
+ M1005.2,516.0 L1005.2,200.0 M1005.4,516.0 L1005.4,199.6 M1005.6,516.0 L1005.6,199.6 M1005.8,516.0 L1005.8,199.8
+ M1005.9,516.0 L1005.9,200.3 M1006.1,516.0 L1006.1,201.1 M1006.3,516.0 L1006.3,202.1 M1006.5,516.0 L1006.5,203.5
+ M1006.7,516.0 L1006.7,205.2 M1006.8,516.0 L1006.8,207.3 M1007.0,516.0 L1007.0,209.8 M1007.2,516.0 L1007.2,212.9
+ M1007.4,516.0 L1007.4,216.6 M1007.6,516.0 L1007.6,221.2 M1007.7,516.0 L1007.7,227.1 M1007.9,516.0 L1007.9,234.8
+ M1008.1,516.0 L1008.1,245.8 M1008.3,516.0 L1008.3,264.9 M1008.5,516.0 M1008.6,516.0 L1008.6,265.0 M1008.8,516.0
+ L1008.8,246.1 M1009.0,516.0 L1009.0,235.2 M1009.2,516.0 L1009.2,227.7 M1009.4,516.0 L1009.4,222.0 M1009.5,516.0
+ L1009.5,217.6 M1009.7,516.0 L1009.7,214.0 M1009.9,516.0 L1009.9,211.1 M1010.1,516.0 L1010.1,208.7 M1010.3,516.0
+ L1010.3,206.7 M1010.4,516.0 L1010.4,205.2 M1010.6,516.0 L1010.6,204.0 M1010.8,516.0 L1010.8,203.1 M1011.0,516.0
+ L1011.0,202.5 M1011.2,516.0 L1011.2,202.2 M1011.3,516.0 L1011.3,202.1 M1011.5,516.0 L1011.5,202.3 M1011.7,516.0
+ L1011.7,202.8 M1011.9,516.0 L1011.9,203.5 M1012.1,516.0 L1012.1,204.6 M1012.3,516.0 L1012.3,205.9 M1012.4,516.0
+ L1012.4,207.6 M1012.6,516.0 L1012.6,209.7 M1012.8,516.0 L1012.8,212.3 M1013.0,516.0 L1013.0,215.3 M1013.2,516.0
+ L1013.2,219.1 M1013.3,516.0 L1013.3,223.7 M1013.5,516.0 L1013.5,229.5 M1013.7,516.0 L1013.7,237.2 M1013.9,516.0
+ L1013.9,248.2 M1014.1,516.0 L1014.1,267.3 M1014.2,516.0 M1014.4,516.0 L1014.4,267.4 M1014.6,516.0 L1014.6,248.5
+ M1014.8,516.0 L1014.8,237.6 M1015.0,516.0 L1015.0,230.1 M1015.1,516.0 L1015.1,224.4 M1015.3,516.0 L1015.3,219.9
+ M1015.5,516.0 L1015.5,216.3 M1015.7,516.0 L1015.7,213.4 M1015.9,516.0 L1015.9,211.0 M1016.0,516.0 L1016.0,209.1
+ M1016.2,516.0 L1016.2,207.5 M1016.4,516.0 L1016.4,206.3 M1016.6,516.0 L1016.6,205.4 M1016.8,516.0 L1016.8,204.8
+ M1016.9,516.0 L1016.9,204.5 M1017.1,516.0 L1017.1,204.4 M1017.3,516.0 L1017.3,204.6 M1017.5,516.0 L1017.5,205.1
+ M1017.7,516.0 L1017.7,205.8 M1017.8,516.0 L1017.8,206.9 M1018.0,516.0 L1018.0,208.2 M1018.2,516.0 L1018.2,209.9
+ M1018.4,516.0 L1018.4,212.0 M1018.6,516.0 L1018.6,214.5 M1018.7,516.0 L1018.7,217.6 M1018.9,516.0 L1018.9,221.3
+ M1019.1,516.0 L1019.1,225.9 M1019.3,516.0 L1019.3,231.7 M1019.5,516.0 L1019.5,239.4 M1019.6,516.0 L1019.6,250.4
+ M1019.8,516.0 L1019.8,269.5 M1020.0,516.0 M1020.2,516.0 L1020.2,269.6 M1020.4,516.0 L1020.4,250.7 M1020.6,516.0
+ L1020.6,239.8 M1020.7,516.0 L1020.7,232.2 M1020.9,516.0 L1020.9,226.6 M1021.1,516.0 L1021.1,222.1 M1021.3,516.0
+ L1021.3,218.5 M1021.5,516.0 L1021.5,215.6 M1021.6,516.0 L1021.6,213.2 M1021.8,516.0 L1021.8,211.2 M1022.0,516.0
+ L1022.0,209.7 M1022.2,516.0 L1022.2,208.5 M1022.4,516.0 L1022.4,207.5 M1022.5,516.0 L1022.5,206.9 M1022.7,516.0
+ L1022.7,206.6 M1022.9,516.0 L1022.9,206.5 M1023.1,516.0 L1023.1,206.7 M1023.3,516.0 L1023.3,207.2 M1023.4,516.0
+ L1023.4,207.9 M1023.6,516.0 L1023.6,209.0 M1023.8,516.0 L1023.8,210.3 M1024.0,516.0 L1024.0,212.0 M1024.2,516.0
+ L1024.2,214.1 M1024.3,516.0 L1024.3,216.6 M1024.5,516.0 L1024.5,219.6 M1024.7,516.0 L1024.7,223.4 M1024.9,516.0
+ L1024.9,228.0 M1025.1,516.0 L1025.1,233.8 M1025.2,516.0 L1025.2,241.5 M1025.4,516.0 L1025.4,252.5 M1025.6,516.0
+ L1025.6,271.5 M1025.8,516.0 M1026.0,516.0 L1026.0,271.7 M1026.1,516.0 L1026.1,252.7 M1026.3,516.0 L1026.3,241.8
+ M1026.5,516.0 L1026.5,234.3 M1026.7,516.0 L1026.7,228.6 M1026.9,516.0 L1026.9,224.1 M1027.0,516.0 L1027.0,220.5
+ M1027.2,516.0 L1027.2,217.6 M1027.4,516.0 L1027.4,215.2 M1027.6,516.0 L1027.6,213.2 M1027.8,516.0 L1027.8,211.7
+ M1027.9,516.0 L1027.9,210.4 M1028.1,516.0 L1028.1,209.5 M1028.3,516.0 L1028.3,208.9 M1028.5,516.0 L1028.5,208.6
+ M1028.7,516.0 L1028.7,208.5 M1028.8,516.0 L1028.8,208.7 M1029.0,516.0 L1029.0,209.1 M1029.2,516.0 L1029.2,209.9
+ M1029.4,516.0 L1029.4,210.9 M1029.6,516.0 L1029.6,212.3 M1029.8,516.0 L1029.8,213.9 M1029.9,516.0 L1029.9,216.0
+ M1030.1,516.0 L1030.1,218.5 M1030.3,516.0 L1030.3,221.6 M1030.5,516.0 L1030.5,225.3 M1030.7,516.0 L1030.7,229.9
+ M1030.8,516.0 L1030.8,235.7 M1031.0,516.0 L1031.0,243.4 M1031.2,516.0 L1031.2,254.4 M1031.4,516.0 L1031.4,273.4
+ M1031.6,516.0 M1031.7,516.0 L1031.7,273.6 M1031.9,516.0 L1031.9,254.6 M1032.1,516.0 L1032.1,243.7 M1032.3,516.0
+ L1032.3,236.2 M1032.5,516.0 L1032.5,230.5 M1032.6,516.0 L1032.6,226.0 M1032.8,516.0 L1032.8,222.4 M1033.0,516.0
+ L1033.0,219.4 M1033.2,516.0 L1033.2,217.0 M1033.4,516.0 L1033.4,215.1 M1033.5,516.0 L1033.5,213.5 M1033.7,516.0
+ L1033.7,212.3 M1033.9,516.0 L1033.9,211.4 M1034.1,516.0 L1034.1,210.8 M1034.3,516.0 L1034.3,210.4 M1034.4,516.0
+ L1034.4,210.3 M1034.6,516.0 L1034.6,210.5 M1034.8,516.0 L1034.8,211.0 M1035.0,516.0 L1035.0,211.7 M1035.2,516.0
+ L1035.2,212.7 M1035.3,516.0 L1035.3,214.1 M1035.5,516.0 L1035.5,215.8 M1035.7,516.0 L1035.7,217.8 M1035.9,516.0
+ L1035.9,220.3 M1036.1,516.0 L1036.1,223.4 M1036.2,516.0 L1036.2,227.1 M1036.4,516.0 L1036.4,231.7 M1036.6,516.0
+ L1036.6,237.5 M1036.8,516.0 L1036.8,245.2 M1037.0,516.0 L1037.0,256.2 M1037.1,516.0 L1037.1,275.2 M1037.3,516.0
+ M1037.5,516.0 L1037.5,275.3 M1037.7,516.0 L1037.7,256.4 M1037.9,516.0 L1037.9,245.5 M1038.1,516.0 L1038.1,237.9
+ M1038.2,516.0 L1038.2,232.2 M1038.4,516.0 L1038.4,227.7 M1038.6,516.0 L1038.6,224.1 M1038.8,516.0 L1038.8,221.2
+ M1039.0,516.0 L1039.0,218.8 M1039.1,516.0 L1039.1,216.8 M1039.3,516.0 L1039.3,215.3 M1039.5,516.0 L1039.5,214.0
+ M1039.7,516.0 L1039.7,213.1 M1039.9,516.0 L1039.9,212.5 M1040.0,516.0 L1040.0,212.1 M1040.2,516.0 L1040.2,212.1
+ M1040.4,516.0 L1040.4,212.2 M1040.6,516.0 L1040.6,212.7 M1040.8,516.0 L1040.8,213.4 M1040.9,516.0 L1040.9,214.5
+ M1041.1,516.0 L1041.1,215.8 M1041.3,516.0 L1041.3,217.5 M1041.5,516.0 L1041.5,219.5 M1041.7,516.0 L1041.7,222.0
+ M1041.8,516.0 L1041.8,225.1 M1042.0,516.0 L1042.0,228.8 M1042.2,516.0 L1042.2,233.4 M1042.4,516.0 L1042.4,239.2
+ M1042.6,516.0 L1042.6,246.8 M1042.7,516.0 L1042.7,257.9 M1042.9,516.0 L1042.9,276.9 M1043.1,516.0 M1043.3,516.0
+ L1043.3,277.0 '/> <path stroke='rgb(222, 125, 0)' d='M1043.5,516.0 L1043.5,258.1 M1043.6,516.0 L1043.6,247.2 M1043.8,516.0 L1043.8,239.6 M1044.0,516.0 L1044.0,233.9
+ M1044.2,516.0 L1044.2,229.4 M1044.4,516.0 L1044.4,225.8 M1044.5,516.0 L1044.5,222.8 M1044.7,516.0 L1044.7,220.4
+ M1044.9,516.0 L1044.9,218.5 M1045.1,516.0 L1045.1,216.9 M1045.3,516.0 L1045.3,215.7 M1045.4,516.0 L1045.4,214.7
+ M1045.6,516.0 L1045.6,214.1 M1045.8,516.0 L1045.8,213.8 M1046.0,516.0 L1046.0,213.7 M1046.2,516.0 L1046.2,213.9
+ M1046.4,516.0 L1046.4,214.3 M1046.5,516.0 L1046.5,215.0 M1046.7,516.0 L1046.7,216.1 M1046.9,516.0 L1046.9,217.4
+ M1047.1,516.0 L1047.1,219.1 M1047.3,516.0 L1047.3,221.1 M1047.4,516.0 L1047.4,223.6 M1047.6,516.0 L1047.6,226.7
+ M1047.8,516.0 L1047.8,230.4 M1048.0,516.0 L1048.0,235.0 M1048.2,516.0 L1048.2,240.8 M1048.3,516.0 L1048.3,248.4
+ M1048.5,516.0 L1048.5,259.4 M1048.7,516.0 L1048.7,278.5 M1048.9,516.0 M1049.1,516.0 L1049.1,278.6 M1049.2,516.0
+ L1049.2,259.6 M1049.4,516.0 L1049.4,248.7 M1049.6,516.0 L1049.6,241.1 M1049.8,516.0 L1049.8,235.4 M1050.0,516.0
+ L1050.0,231.0 M1050.1,516.0 L1050.1,227.3 M1050.3,516.0 L1050.3,224.4 M1050.5,516.0 L1050.5,222.0 M1050.7,516.0
+ L1050.7,220.0 M1050.9,516.0 L1050.9,218.4 M1051.0,516.0 L1051.0,217.2 M1051.2,516.0 L1051.2,216.3 M1051.4,516.0
+ L1051.4,215.7 M1051.6,516.0 L1051.6,215.3 M1051.8,516.0 L1051.8,215.2 M1051.9,516.0 L1051.9,215.4 M1052.1,516.0
+ L1052.1,215.8 M1052.3,516.0 L1052.3,216.6 M1052.5,516.0 L1052.5,217.6 M1052.7,516.0 L1052.7,218.9 M1052.8,516.0
+ L1052.8,220.6 M1053.0,516.0 L1053.0,222.6 M1053.2,516.0 L1053.2,225.1 M1053.4,516.0 L1053.4,228.2 M1053.6,516.0
+ L1053.6,231.9 M1053.7,516.0 L1053.7,236.5 M1053.9,516.0 L1053.9,242.3 M1054.1,516.0 L1054.1,249.9 M1054.3,516.0
+ L1054.3,260.9 M1054.5,516.0 L1054.5,280.0 M1054.7,516.0 M1054.8,516.0 L1054.8,280.1 M1055.0,516.0 L1055.0,261.1
+ M1055.2,516.0 L1055.2,250.2 M1055.4,516.0 L1055.4,242.6 M1055.6,516.0 L1055.6,236.9 M1055.7,516.0 L1055.7,232.4
+ M1055.9,516.0 L1055.9,228.8 M1056.1,516.0 L1056.1,225.9 M1056.3,516.0 L1056.3,223.5 M1056.5,516.0 L1056.5,221.5
+ M1056.6,516.0 L1056.6,219.9 M1056.8,516.0 L1056.8,218.7 M1057.0,516.0 L1057.0,217.7 M1057.2,516.0 L1057.2,217.1
+ M1057.4,516.0 L1057.4,216.8 M1057.5,516.0 L1057.5,216.7 M1057.7,516.0 L1057.7,216.8 M1057.9,516.0 L1057.9,217.3
+ M1058.1,516.0 L1058.1,218.0 M1058.3,516.0 L1058.3,219.0 M1058.4,516.0 L1058.4,220.4 M1058.6,516.0 L1058.6,222.0
+ M1058.8,516.0 L1058.8,224.1 M1059.0,516.0 L1059.0,226.6 M1059.2,516.0 L1059.2,229.6 M1059.3,516.0 L1059.3,233.3
+ M1059.5,516.0 L1059.5,237.9 M1059.7,516.0 L1059.7,243.7 M1059.9,516.0 L1059.9,251.4 M1060.1,516.0 L1060.1,262.4
+ M1060.2,516.0 L1060.2,281.4 M1060.4,516.0 M1060.6,516.0 L1060.6,281.5 M1060.8,516.0 L1060.8,262.5 M1061.0,516.0
+ L1061.0,251.6 M1061.1,516.0 L1061.1,244.0 M1061.3,516.0 L1061.3,238.3 M1061.5,516.0 L1061.5,233.8 M1061.7,516.0
+ L1061.7,230.2 M1061.9,516.0 L1061.9,227.3 M1062.0,516.0 L1062.0,224.9 M1062.2,516.0 L1062.2,222.9 M1062.4,516.0
+ L1062.4,221.3 M1062.6,516.0 L1062.6,220.1 M1062.8,516.0 L1062.8,219.1 M1063.0,516.0 L1063.0,218.5 M1063.1,516.0
+ L1063.1,218.1 M1063.3,516.0 L1063.3,218.0 M1063.5,516.0 L1063.5,218.2 M1063.7,516.0 L1063.7,218.7 M1063.9,516.0
+ L1063.9,219.4 M1064.0,516.0 L1064.0,220.4 M1064.2,516.0 L1064.2,221.7 M1064.4,516.0 L1064.4,223.4 M1064.6,516.0
+ L1064.6,225.4 M1064.8,516.0 L1064.8,227.9 M1064.9,516.0 L1064.9,231.0 M1065.1,516.0 L1065.1,234.7 M1065.3,516.0
+ L1065.3,239.2 M1065.5,516.0 L1065.5,245.0 M1065.7,516.0 L1065.7,252.7 M1065.8,516.0 L1065.8,263.7 M1066.0,516.0
+ L1066.0,282.7 M1066.2,516.0 M1066.4,516.0 L1066.4,282.8 M1066.6,516.0 L1066.6,263.9 M1066.7,516.0 L1066.7,253.0
+ M1066.9,516.0 L1066.9,245.4 M1067.1,516.0 L1067.1,239.7 M1067.3,516.0 L1067.3,235.2 M1067.5,516.0 L1067.5,231.6
+ M1067.6,516.0 L1067.6,228.6 M1067.8,516.0 L1067.8,226.2 M1068.0,516.0 L1068.0,224.2 M1068.2,516.0 L1068.2,222.6
+ M1068.4,516.0 L1068.4,221.4 M1068.5,516.0 L1068.5,220.5 M1068.7,516.0 L1068.7,219.8 M1068.9,516.0 L1068.9,219.5
+ M1069.1,516.0 L1069.1,219.4 M1069.3,516.0 L1069.3,219.5 M1069.4,516.0 L1069.4,220.0 M1069.6,516.0 L1069.6,220.7
+ M1069.8,516.0 L1069.8,221.7 M1070.0,516.0 L1070.0,223.0 M1070.2,516.0 L1070.2,224.7 M1070.3,516.0 L1070.3,226.7
+ M1070.5,516.0 L1070.5,229.2 M1070.7,516.0 L1070.7,232.3 M1070.9,516.0 L1070.9,236.0 M1071.1,516.0 L1071.1,240.5
+ M1071.3,516.0 L1071.3,246.3 M1071.4,516.0 L1071.4,254.0 M1071.6,516.0 L1071.6,265.0 M1071.8,516.0 L1071.8,284.0
+ M1072.0,516.0 M1072.2,516.0 L1072.2,284.1 M1072.3,516.0 L1072.3,265.2 M1072.5,516.0 L1072.5,254.2 M1072.7,516.0
+ L1072.7,246.6 M1072.9,516.0 L1072.9,240.9 M1073.1,516.0 L1073.1,236.4 M1073.2,516.0 L1073.2,232.8 M1073.4,516.0
+ L1073.4,229.9 M1073.6,516.0 L1073.6,227.4 M1073.8,516.0 L1073.8,225.5 M1074.0,516.0 L1074.0,223.9 M1074.1,516.0
+ L1074.1,222.6 M1074.3,516.0 L1074.3,221.7 M1074.5,516.0 L1074.5,221.1 M1074.7,516.0 L1074.7,220.7 M1074.9,516.0
+ L1074.9,220.6 M1075.0,516.0 L1075.0,220.8 M1075.2,516.0 L1075.2,221.2 M1075.4,516.0 L1075.4,221.9 M1075.6,516.0
+ L1075.6,223.0 M1075.8,516.0 L1075.8,224.3 M1075.9,516.0 L1075.9,225.9 M1076.1,516.0 L1076.1,228.0 M1076.3,516.0
+ L1076.3,230.5 M1076.5,516.0 L1076.5,233.5 M1076.7,516.0 L1076.7,237.2 M1076.8,516.0 L1076.8,241.8 M1077.0,516.0
+ L1077.0,247.6 M1077.2,516.0 L1077.2,255.2 M1077.4,516.0 L1077.4,266.2 M1077.6,516.0 L1077.6,285.3 M1077.7,516.0
+ M1077.9,516.0 L1077.9,285.3 M1078.1,516.0 L1078.1,266.4 M1078.3,516.0 L1078.3,255.5 M1078.5,516.0 L1078.5,247.9
+ M1078.6,516.0 L1078.6,242.2 M1078.8,516.0 L1078.8,237.7 M1079.0,516.0 L1079.0,234.0 M1079.2,516.0 L1079.2,231.1
+ M1079.4,516.0 L1079.4,228.7 M1079.6,516.0 L1079.6,226.7 M1079.7,516.0 L1079.7,225.1 M1079.9,516.0 L1079.9,223.9
+ M1080.1,516.0 L1080.1,222.9 M1080.3,516.0 L1080.3,222.3 M1080.5,516.0 L1080.5,221.9 M1080.6,516.0 L1080.6,221.8
+ M1080.8,516.0 L1080.8,222.0 M1081.0,516.0 L1081.0,222.4 M1081.2,516.0 L1081.2,223.1 M1081.4,516.0 L1081.4,224.1
+ M1081.5,516.0 L1081.5,225.5 M1081.7,516.0 L1081.7,227.1 M1081.9,516.0 L1081.9,229.2 M1082.1,516.0 L1082.1,231.7
+ M1082.3,516.0 L1082.3,234.7 M1082.4,516.0 L1082.4,238.4 M1082.6,516.0 L1082.6,243.0 M1082.8,516.0 L1082.8,248.7
+ M1083.0,516.0 L1083.0,256.4 M1083.2,516.0 L1083.2,267.4 M1083.3,516.0 L1083.3,286.4 M1083.5,516.0 M1083.7,516.0
+ L1083.7,286.5 M1083.9,516.0 L1083.9,267.5 M1084.1,516.0 L1084.1,256.6 M1084.2,516.0 L1084.2,249.0 M1084.4,516.0
+ L1084.4,243.3 M1084.6,516.0 L1084.6,238.8 M1084.8,516.0 L1084.8,235.2 M1085.0,516.0 L1085.0,232.2 M1085.1,516.0
+ L1085.1,229.8 M1085.3,516.0 L1085.3,227.8 M1085.5,516.0 L1085.5,226.3 M1085.7,516.0 L1085.7,225.0 M1085.9,516.0
+ L1085.9,224.1 M1086.0,516.0 L1086.0,223.4 M1086.2,516.0 L1086.2,223.1 M1086.4,516.0 L1086.4,223.0 M1086.6,516.0
+ L1086.6,223.1 M1086.8,516.0 L1086.8,223.6 M1086.9,516.0 L1086.9,224.3 M1087.1,516.0 L1087.1,225.3 M1087.3,516.0
+ L1087.3,226.6 M1087.5,516.0 L1087.5,228.3 M1087.7,516.0 L1087.7,230.3 M1087.9,516.0 L1087.9,232.8 M1088.0,516.0
+ L1088.0,235.8 M1088.2,516.0 L1088.2,239.5 M1088.4,516.0 L1088.4,244.1 M1088.6,516.0 L1088.6,249.9 M1088.8,516.0
+ L1088.8,257.5 M1088.9,516.0 L1088.9,268.5 M1089.1,516.0 L1089.1,287.6 M1089.3,516.0 M1089.5,516.0 L1089.5,287.6
+ M1089.7,516.0 L1089.7,268.7 M1089.8,516.0 L1089.8,257.7 M1090.0,516.0 L1090.0,250.2 M1090.2,516.0 L1090.2,244.4
+ M1090.4,516.0 L1090.4,239.9 '/> <path stroke='rgb(222, 125, 0)' d='M1090.6,516.0 L1090.6,236.3 M1090.7,516.0 L1090.7,233.4 M1090.9,516.0 L1090.9,230.9 M1091.1,516.0 L1091.1,229.0
+ M1091.3,516.0 L1091.3,227.4 M1091.5,516.0 L1091.5,226.1 M1091.6,516.0 L1091.6,225.2 M1091.8,516.0 L1091.8,224.5
+ M1092.0,516.0 L1092.0,224.2 M1092.2,516.0 L1092.2,224.1 M1092.4,516.0 L1092.4,224.2 M1092.5,516.0 L1092.5,224.7
+ M1092.7,516.0 L1092.7,225.4 M1092.9,516.0 L1092.9,226.4 M1093.1,516.0 L1093.1,227.7 M1093.3,516.0 L1093.3,229.4
+ M1093.4,516.0 L1093.4,231.4 M1093.6,516.0 L1093.6,233.9 M1093.8,516.0 L1093.8,236.9 M1094.0,516.0 L1094.0,240.6
+ M1094.2,516.0 L1094.2,245.2 M1094.3,516.0 L1094.3,251.0 M1094.5,516.0 L1094.5,258.6 M1094.7,516.0 L1094.7,269.6
+ M1094.9,516.0 L1094.9,288.6 M1095.1,516.0 M1095.2,516.0 L1095.2,288.7 M1095.4,516.0 L1095.4,269.7 M1095.6,516.0
+ L1095.6,258.8 M1095.8,516.0 L1095.8,251.2 M1096.0,516.0 L1096.0,245.5 M1096.2,516.0 L1096.2,241.0 M1096.3,516.0
+ L1096.3,237.4 M1096.5,516.0 L1096.5,234.4 M1096.7,516.0 L1096.7,232.0 M1096.9,516.0 L1096.9,230.0 M1097.1,516.0
+ L1097.1,228.4 M1097.2,516.0 L1097.2,227.2 M1097.4,516.0 L1097.4,226.2 M1097.6,516.0 L1097.6,225.6 M1097.8,516.0
+ L1097.8,225.2 M1098.0,516.0 L1098.0,225.1 M1098.1,516.0 L1098.1,225.3 M1098.3,516.0 L1098.3,225.7 M1098.5,516.0
+ L1098.5,226.4 M1098.7,516.0 L1098.7,227.4 M1098.9,516.0 L1098.9,228.8 M1099.0,516.0 L1099.0,230.4 M1099.2,516.0
+ L1099.2,232.5 M1099.4,516.0 L1099.4,234.9 M1099.6,516.0 L1099.6,238.0 M1099.8,516.0 L1099.8,241.7 M1099.9,516.0
+ L1099.9,246.2 M1100.1,516.0 L1100.1,252.0 M1100.3,516.0 L1100.3,259.7 M1100.5,516.0 L1100.5,270.7 M1100.7,516.0
+ L1100.7,289.7 M1100.8,516.0 M1101.0,516.0 L1101.0,289.7 M1101.2,516.0 L1101.2,270.8 M1101.4,516.0 L1101.4,259.9
+ M1101.6,516.0 L1101.6,252.3 M1101.7,516.0 L1101.7,246.5 M1101.9,516.0 L1101.9,242.0 M1102.1,516.0 L1102.1,238.4
+ M1102.3,516.0 L1102.3,235.5 M1102.5,516.0 L1102.5,233.0 M1102.6,516.0 L1102.6,231.1 M1102.8,516.0 L1102.8,229.5
+ M1103.0,516.0 L1103.0,228.2 M1103.2,516.0 L1103.2,227.3 M1103.4,516.0 L1103.4,226.6 M1103.5,516.0 L1103.5,226.3
+ M1103.7,516.0 L1103.7,226.1 M1103.9,516.0 L1103.9,226.3 M1104.1,516.0 L1104.1,226.7 M1104.3,516.0 L1104.3,227.5
+ M1104.4,516.0 L1104.4,228.5 M1104.6,516.0 L1104.6,229.8 M1104.8,516.0 L1104.8,231.4 M1105.0,516.0 L1105.0,233.5
+ M1105.2,516.0 L1105.2,236.0 M1105.4,516.0 L1105.4,239.0 M1105.5,516.0 L1105.5,242.7 M1105.7,516.0 L1105.7,247.2
+ M1105.9,516.0 L1105.9,253.0 M1106.1,516.0 L1106.1,260.7 M1106.3,516.0 L1106.3,271.7 M1106.4,516.0 L1106.4,290.7
+ M1106.6,516.0 M1106.8,516.0 L1106.8,290.7 M1107.0,516.0 L1107.0,271.8 M1107.2,516.0 L1107.2,260.9 M1107.3,516.0
+ L1107.3,253.3 M1107.5,516.0 L1107.5,247.5 M1107.7,516.0 L1107.7,243.0 M1107.9,516.0 L1107.9,239.4 M1108.1,516.0
+ L1108.1,236.5 M1108.2,516.0 L1108.2,234.0 M1108.4,516.0 L1108.4,232.0 M1108.6,516.0 L1108.6,230.4 M1108.8,516.0
+ L1108.8,229.2 M1109.0,516.0 L1109.0,228.3 M1109.1,516.0 L1109.1,227.6 M1109.3,516.0 L1109.3,227.2 M1109.5,516.0
+ L1109.5,227.1 M1109.7,516.0 L1109.7,227.3 M1109.9,516.0 L1109.9,227.7 M1110.0,516.0 L1110.0,228.4 M1110.2,516.0
+ L1110.2,229.4 M1110.4,516.0 L1110.4,230.8 M1110.6,516.0 L1110.6,232.4 M1110.8,516.0 L1110.8,234.4 M1110.9,516.0
+ L1110.9,236.9 M1111.1,516.0 L1111.1,240.0 M1111.3,516.0 L1111.3,243.6 M1111.5,516.0 L1111.5,248.2 M1111.7,516.0
+ L1111.7,254.0 M1111.8,516.0 L1111.8,261.6 M1112.0,516.0 L1112.0,272.6 M1112.2,516.0 L1112.2,291.7 M1112.4,516.0
+ M1112.6,516.0 L1112.6,291.7 M1112.7,516.0 L1112.7,272.8 M1112.9,516.0 L1112.9,261.8 M1113.1,516.0 L1113.1,254.2
+ M1113.3,516.0 L1113.3,248.5 M1113.5,516.0 L1113.5,244.0 M1113.7,516.0 L1113.7,240.4 M1113.8,516.0 L1113.8,237.4
+ M1114.0,516.0 L1114.0,235.0 M1114.2,516.0 L1114.2,233.0 M1114.4,516.0 L1114.4,231.4 M1114.6,516.0 L1114.6,230.2
+ M1114.7,516.0 L1114.7,229.2 M1114.9,516.0 L1114.9,228.6 M1115.1,516.0 L1115.1,228.2 M1115.3,516.0 L1115.3,228.1
+ M1115.5,516.0 L1115.5,228.2 M1115.6,516.0 L1115.6,228.7 M1115.8,516.0 L1115.8,229.4 M1116.0,516.0 L1116.0,230.4
+ M1116.2,516.0 L1116.2,231.7 M1116.4,516.0 L1116.4,233.4 M1116.5,516.0 L1116.5,235.4 M1116.7,516.0 L1116.7,237.9
+ M1116.9,516.0 L1116.9,240.9 M1117.1,516.0 L1117.1,244.6 M1117.3,516.0 L1117.3,249.2 M1117.4,516.0 L1117.4,254.9
+ M1117.6,516.0 L1117.6,262.6 M1117.8,516.0 L1117.8,273.6 M1118.0,516.0 L1118.0,292.6 M1118.2,516.0 M1118.3,516.0
+ L1118.3,292.6 M1118.5,516.0 L1118.5,273.7 M1118.7,516.0 L1118.7,262.8 M1118.9,516.0 L1118.9,255.2 M1119.1,516.0
+ L1119.1,249.4 M1119.2,516.0 L1119.2,244.9 M1119.4,516.0 L1119.4,241.3 M1119.6,516.0 L1119.6,238.3 M1119.8,516.0
+ L1119.8,235.9 M1120.0,516.0 L1120.0,233.9 M1120.1,516.0 L1120.1,232.3 M1120.3,516.0 L1120.3,231.1 M1120.5,516.0
+ L1120.5,230.1 M1120.7,516.0 L1120.7,229.5 M1120.9,516.0 L1120.9,229.1 M1121.0,516.0 L1121.0,229.0 M1121.2,516.0
+ L1121.2,229.2 M1121.4,516.0 L1121.4,229.6 M1121.6,516.0 L1121.6,230.3 M1121.8,516.0 L1121.8,231.3 M1122.0,516.0
+ L1122.0,232.6 M1122.1,516.0 L1122.1,234.3 M1122.3,516.0 L1122.3,236.3 M1122.5,516.0 L1122.5,238.8 M1122.7,516.0
+ L1122.7,241.8 M1122.9,516.0 L1122.9,245.5 M1123.0,516.0 L1123.0,250.1 M1123.2,516.0 L1123.2,255.8 M1123.4,516.0
+ L1123.4,263.5 M1123.6,516.0 L1123.6,274.5 M1123.8,516.0 L1123.8,293.5 M1123.9,516.0 M1124.1,516.0 L1124.1,293.5
+ M1124.3,516.0 L1124.3,274.6 M1124.5,516.0 L1124.5,263.7 M1124.7,516.0 L1124.7,256.1 M1124.8,516.0 L1124.8,250.3
+ M1125.0,516.0 L1125.0,245.8 M1125.2,516.0 L1125.2,242.2 M1125.4,516.0 L1125.4,239.2 M1125.6,516.0 L1125.6,236.8
+ M1125.7,516.0 L1125.7,234.8 M1125.9,516.0 L1125.9,233.2 M1126.1,516.0 L1126.1,232.0 M1126.3,516.0 L1126.3,231.0
+ M1126.5,516.0 L1126.5,230.4 M1126.6,516.0 L1126.6,230.0 M1126.8,516.0 L1126.8,229.9 M1127.0,516.0 L1127.0,230.1
+ M1127.2,516.0 L1127.2,230.5 M1127.4,516.0 L1127.4,231.2 M1127.5,516.0 L1127.5,232.2 M1127.7,516.0 L1127.7,233.5
+ M1127.9,516.0 L1127.9,235.2 M1128.1,516.0 L1128.1,237.2 M1128.3,516.0 L1128.3,239.7 M1128.4,516.0 L1128.4,242.7
+ M1128.6,516.0 L1128.6,246.4 M1128.8,516.0 L1128.8,250.9 M1129.0,516.0 L1129.0,256.7 M1129.2,516.0 L1129.2,264.4
+ M1129.3,516.0 L1129.3,275.4 M1129.5,516.0 L1129.5,294.4 M1129.7,516.0 M1129.9,516.0 L1129.9,294.4 M1130.1,516.0
+ L1130.1,275.5 M1130.3,516.0 L1130.3,264.5 M1130.4,516.0 L1130.4,256.9 M1130.6,516.0 L1130.6,251.2 M1130.8,516.0
+ L1130.8,246.7 M1131.0,516.0 L1131.0,243.1 M1131.2,516.0 L1131.2,240.1 M1131.3,516.0 L1131.3,237.7 M1131.5,516.0
+ L1131.5,235.7 M1131.7,516.0 L1131.7,234.1 M1131.9,516.0 L1131.9,232.8 M1132.1,516.0 L1132.1,231.9 M1132.2,516.0
+ L1132.2,231.2 M1132.4,516.0 L1132.4,230.9 M1132.6,516.0 L1132.6,230.8 M1132.8,516.0 L1132.8,230.9 M1133.0,516.0
+ L1133.0,231.3 M1133.1,516.0 L1133.1,232.1 M1133.3,516.0 L1133.3,233.0 M1133.5,516.0 L1133.5,234.4 M1133.7,516.0
+ L1133.7,236.0 M1133.9,516.0 L1133.9,238.0 M1134.0,516.0 L1134.0,240.5 M1134.2,516.0 L1134.2,243.5 M1134.4,516.0
+ L1134.4,247.2 M1134.6,516.0 L1134.6,251.8 M1134.8,516.0 L1134.8,257.6 M1134.9,516.0 L1134.9,265.2 M1135.1,516.0
+ L1135.1,276.2 M1135.3,516.0 L1135.3,295.2 M1135.5,516.0 M1135.7,516.0 L1135.7,295.3 M1135.8,516.0 L1135.8,276.3
+ M1136.0,516.0 L1136.0,265.4 M1136.2,516.0 L1136.2,257.8 M1136.4,516.0 L1136.4,252.1 M1136.6,516.0 L1136.6,247.5
+ M1136.7,516.0 L1136.7,243.9 M1136.9,516.0 L1136.9,240.9 M1137.1,516.0 L1137.1,238.5 M1137.3,516.0 L1137.3,236.5
+ M1137.5,516.0 L1137.5,234.9 '/> <path stroke='rgb(222, 125, 0)' d='M1137.6,516.0 L1137.6,233.7 M1137.8,516.0 L1137.8,232.7 M1138.0,516.0 L1138.0,232.1 M1138.2,516.0 L1138.2,231.7
+ M1138.4,516.0 L1138.4,231.6 M1138.6,516.0 L1138.6,231.8 M1138.7,516.0 L1138.7,232.2 M1138.9,516.0 L1138.9,232.9
+ M1139.1,516.0 L1139.1,233.9 M1139.3,516.0 L1139.3,235.2 M1139.5,516.0 L1139.5,236.8 M1139.6,516.0 L1139.6,238.9
+ M1139.8,516.0 L1139.8,241.4 M1140.0,516.0 L1140.0,244.4 M1140.2,516.0 L1140.2,248.1 M1140.4,516.0 L1140.4,252.6
+ M1140.5,516.0 L1140.5,258.4 M1140.7,516.0 L1140.7,266.0 M1140.9,516.0 L1140.9,277.0 M1141.1,516.0 L1141.1,296.0
+ M1141.3,516.0 M1141.4,516.0 L1141.4,296.1 M1141.6,516.0 L1141.6,277.1 M1141.8,516.0 L1141.8,266.2 M1142.0,516.0
+ L1142.0,258.6 M1142.2,516.0 L1142.2,252.9 M1142.3,516.0 L1142.3,248.4 M1142.5,516.0 L1142.5,244.7 M1142.7,516.0
+ L1142.7,241.8 M1142.9,516.0 L1142.9,239.3 M1143.1,516.0 L1143.1,237.3 M1143.2,516.0 L1143.2,235.7 M1143.4,516.0
+ L1143.4,234.5 M1143.6,516.0 L1143.6,233.5 M1143.8,516.0 L1143.8,232.9 M1144.0,516.0 L1144.0,232.5 M1144.1,516.0
+ L1144.1,232.4 M1144.3,516.0 L1144.3,232.6 M1144.5,516.0 L1144.5,233.0 M1144.7,516.0 L1144.7,233.7 M1144.9,516.0
+ L1144.9,234.7 M1145.0,516.0 L1145.0,236.0 M1145.2,516.0 L1145.2,237.6 M1145.4,516.0 L1145.4,239.7 M1145.6,516.0
+ L1145.6,242.2 M1145.8,516.0 L1145.8,245.2 M1145.9,516.0 L1145.9,248.9 M1146.1,516.0 L1146.1,253.4 M1146.3,516.0
+ L1146.3,259.2 M1146.5,516.0 L1146.5,266.8 M1146.7,516.0 L1146.7,277.8 M1146.9,516.0 L1146.9,296.8 M1147.0,516.0
+ M1147.2,516.0 L1147.2,296.9 M1147.4,516.0 L1147.4,277.9 M1147.6,516.0 L1147.6,267.0 M1147.8,516.0 L1147.8,259.4
+ M1147.9,516.0 L1147.9,253.7 M1148.1,516.0 L1148.1,249.2 M1148.3,516.0 L1148.3,245.5 M1148.5,516.0 L1148.5,242.6
+ M1148.7,516.0 L1148.7,240.1 M1148.8,516.0 L1148.8,238.1 M1149.0,516.0 L1149.0,236.5 M1149.2,516.0 L1149.2,235.3
+ M1149.4,516.0 L1149.4,234.3 M1149.6,516.0 L1149.6,233.7 M1149.7,516.0 L1149.7,233.3 M1149.9,516.0 L1149.9,233.2
+ M1150.1,516.0 L1150.1,233.4 M1150.3,516.0 L1150.3,233.8 M1150.5,516.0 L1150.5,234.5 M1150.6,516.0 L1150.6,235.5
+ M1150.8,516.0 L1150.8,236.8 M1151.0,516.0 L1151.0,238.4 M1151.2,516.0 L1151.2,240.5 M1151.4,516.0 L1151.4,242.9
+ M1151.5,516.0 L1151.5,246.0 M1151.7,516.0 L1151.7,249.6 M1151.9,516.0 L1151.9,254.2 M1152.1,516.0 L1152.1,260.0
+ M1152.3,516.0 L1152.3,267.6 M1152.4,516.0 L1152.4,278.6 M1152.6,516.0 L1152.6,297.6 M1152.8,516.0 M1153.0,516.0
+ L1153.0,297.7 M1153.2,516.0 L1153.2,278.7 M1153.3,516.0 L1153.3,267.8 M1153.5,516.0 L1153.5,260.2 M1153.7,516.0
+ L1153.7,254.4 M1153.9,516.0 L1153.9,249.9 M1154.1,516.0 L1154.1,246.3 M1154.2,516.0 L1154.2,243.3 M1154.4,516.0
+ L1154.4,240.9 M1154.6,516.0 L1154.6,238.9 M1154.8,516.0 L1154.8,237.3 M1155.0,516.0 L1155.0,236.0 M1155.2,516.0
+ L1155.2,235.1 M1155.3,516.0 L1155.3,234.4 M1155.5,516.0 L1155.5,234.1 M1155.7,516.0 L1155.7,234.0 M1155.9,516.0
+ L1155.9,234.1 M1156.1,516.0 L1156.1,234.5 M1156.2,516.0 L1156.2,235.2 M1156.4,516.0 L1156.4,236.2 M1156.6,516.0
+ L1156.6,237.5 M1156.8,516.0 L1156.8,239.2 M1157.0,516.0 L1157.0,241.2 M1157.1,516.0 L1157.1,243.7 M1157.3,516.0
+ L1157.3,246.7 M1157.5,516.0 L1157.5,250.4 M1157.7,516.0 L1157.7,255.0 M1157.9,516.0 L1157.9,260.7 M1158.0,516.0
+ L1158.0,268.4 M1158.2,516.0 L1158.2,279.4 M1158.4,516.0 L1158.4,298.4 M1158.6,516.0 M1158.8,516.0 L1158.8,298.4
+ M1158.9,516.0 L1158.9,279.5 M1159.1,516.0 L1159.1,268.5 M1159.3,516.0 L1159.3,260.9 M1159.5,516.0 L1159.5,255.2
+ M1159.7,516.0 L1159.7,250.7 M1159.8,516.0 L1159.8,247.1 M1160.0,516.0 L1160.0,244.1 M1160.2,516.0 L1160.2,241.6
+ M1160.4,516.0 L1160.4,239.7 M1160.6,516.0 L1160.6,238.1 M1160.7,516.0 L1160.7,236.8 M1160.9,516.0 L1160.9,235.8
+ M1161.1,516.0 L1161.1,235.2 M1161.3,516.0 L1161.3,234.8 M1161.5,516.0 L1161.5,234.7 M1161.6,516.0 L1161.6,234.9
+ M1161.8,516.0 L1161.8,235.3 M1162.0,516.0 L1162.0,236.0 M1162.2,516.0 L1162.2,237.0 M1162.4,516.0 L1162.4,238.3
+ M1162.5,516.0 L1162.5,239.9 M1162.7,516.0 L1162.7,242.0 M1162.9,516.0 L1162.9,244.4 M1163.1,516.0 L1163.1,247.5
+ M1163.3,516.0 L1163.3,251.1 M1163.5,516.0 L1163.5,255.7 M1163.6,516.0 L1163.6,261.5 M1163.8,516.0 L1163.8,269.1
+ M1164.0,516.0 L1164.0,280.1 M1164.2,516.0 L1164.2,299.1 M1164.4,516.0 M1164.5,516.0 L1164.5,299.2 M1164.7,516.0
+ L1164.7,280.2 M1164.9,516.0 L1164.9,269.3 M1165.1,516.0 L1165.1,261.7 M1165.3,516.0 L1165.3,255.9 M1165.4,516.0
+ L1165.4,251.4 M1165.6,516.0 L1165.6,247.8 M1165.8,516.0 L1165.8,244.8 M1166.0,516.0 L1166.0,242.4 M1166.2,516.0
+ L1166.2,240.4 M1166.3,516.0 L1166.3,238.8 M1166.5,516.0 L1166.5,237.5 M1166.7,516.0 L1166.7,236.6 M1166.9,516.0
+ L1166.9,235.9 M1167.1,516.0 L1167.1,235.5 M1167.2,516.0 L1167.2,235.4 M1167.4,516.0 L1167.4,235.6 M1167.6,516.0
+ L1167.6,236.0 M1167.8,516.0 L1167.8,236.7 M1168.0,516.0 L1168.0,237.7 M1168.1,516.0 L1168.1,239.0 M1168.3,516.0
+ L1168.3,240.7 M1168.5,516.0 L1168.5,242.7 M1168.7,516.0 L1168.7,245.2 M1168.9,516.0 L1168.9,248.2 M1169.0,516.0
+ L1169.0,251.9 M1169.2,516.0 L1169.2,256.4 M1169.4,516.0 L1169.4,262.2 M1169.6,516.0 L1169.6,269.8 M1169.8,516.0
+ L1169.8,280.8 M1169.9,516.0 L1169.9,299.8 M1170.1,516.0 M1170.3,516.0 L1170.3,299.9 M1170.5,516.0 L1170.5,280.9
+ M1170.7,516.0 L1170.7,270.0 M1170.8,516.0 L1170.8,262.4 M1171.0,516.0 L1171.0,256.6 M1171.2,516.0 L1171.2,252.1
+ M1171.4,516.0 L1171.4,248.5 M1171.6,516.0 L1171.6,245.5 M1171.8,516.0 L1171.8,243.1 M1171.9,516.0 L1171.9,241.1
+ M1172.1,516.0 L1172.1,239.5 M1172.3,516.0 L1172.3,238.2 M1172.5,516.0 L1172.5,237.3 M1172.7,516.0 L1172.7,236.6
+ M1172.8,516.0 L1172.8,236.2 M1173.0,516.0 L1173.0,236.1 M1173.2,516.0 L1173.2,236.3 M1173.4,516.0 L1173.4,236.7
+ M1173.6,516.0 L1173.6,237.4 M1173.7,516.0 L1173.7,238.4 M1173.9,516.0 L1173.9,239.7 M1174.1,516.0 L1174.1,241.4
+ M1174.3,516.0 L1174.3,243.4 M1174.5,516.0 L1174.5,245.9 M1174.6,516.0 L1174.6,248.9 M1174.8,516.0 L1174.8,252.6
+ M1175.0,516.0 L1175.0,257.1 M1175.2,516.0 L1175.2,262.9 M1175.4,516.0 L1175.4,270.5 M1175.5,516.0 L1175.5,281.5
+ M1175.7,516.0 L1175.7,300.5 M1175.9,516.0 '/></g>
+ </g>
+ <g id="gnuplot_plot_2b" ><title>gnuplot_plot_2b</title>
+<g fill="none" color="black" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,516.0 L1175.9,516.0 '/></g>
+ </g>
+<g fill="none" color="#FFFFFF" stroke="rgb( 0, 0, 0)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(916.1,506.6)" stroke="none" fill="rgb(0,0,0)" font-family="Microsoft Sans Serif:Bold" font-size="10.00" text-anchor="start">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >B = 1.000</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 38, 38, 38)' d='M714.0,516.0 L1175.9,516.0 M714.0,84.1 L1175.9,84.1 M714.0,516.0 L714.0,84.1 M1175.9,516.0 L1175.9,84.1
+ '/></g>
+<g fill="none" color="black" stroke="rgb( 38, 38, 38)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+</g>
+</svg>
+
diff --git a/chapter04/win_tri.svg b/chapter04/win_tri.svg
new file mode 100644
index 0000000..feae72d
--- /dev/null
+++ b/chapter04/win_tri.svg
@@ -0,0 +1,1599 @@
+<?xml version="1.0" encoding="windows-1252" standalone="no"?>
+<svg
+ viewBox="0 0 1200 600"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+>
+
+<title>Window function and its Fourier transform &#8211; Triangular</title>
+<desc>Produced by GNUPLOT 5.2 patchlevel 6 </desc>
+
+<g id="gnuplot_canvas">
+
+<rect x="0" y="0" width="1200" height="600" fill="#ffffff"/>
+<defs>
+
+ <circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
+ <path id='gpPt0' stroke-width='0.179' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
+ <path id='gpPt1' stroke-width='0.179' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
+ <path id='gpPt2' stroke-width='0.179' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
+ <rect id='gpPt3' stroke-width='0.179' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
+ <rect id='gpPt4' stroke-width='0.179' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
+ <circle id='gpPt5' stroke-width='0.179' stroke='currentColor' cx='0' cy='0' r='1'/>
+ <use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
+ <path id='gpPt7' stroke-width='0.179' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
+ <use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
+ <use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
+ <use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
+ <use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
+ <use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
+ <path id='gpPt13' stroke-width='0.179' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
+ <use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
+ <filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
+ <feFlood flood-color='#FFFFFF' flood-opacity='1' result='bgnd'/>
+ <feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
+ </filter>
+ <filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
+ <feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
+ <feComposite in='SourceGraphic' in2='grey' operator='atop'/>
+ </filter>
+</defs>
+<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g stroke='none' shape-rendering='crispEdges'>
+ <polygon fill = 'rgb(255, 255, 255)' points = '96.0,516.0 557.8,516.0 557.8,84.2 96.0,84.2 '/>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,516.0 L557.9,516.0 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,516.0 L111.6,516.0 M557.9,516.0 L542.3,516.0 '/> <g transform="translate(85.5,522.5)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,474.9 L557.9,474.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,474.9 L111.6,474.9 M557.9,474.9 L542.3,474.9 '/> <g transform="translate(85.5,481.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.1</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,433.7 L557.9,433.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,433.7 L111.6,433.7 M557.9,433.7 L542.3,433.7 '/> <g transform="translate(85.5,440.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.2</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,392.6 L557.9,392.6 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,392.6 L111.6,392.6 M557.9,392.6 L542.3,392.6 '/> <g transform="translate(85.5,399.1)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.3</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,351.5 L557.9,351.5 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,351.5 L111.6,351.5 M557.9,351.5 L542.3,351.5 '/> <g transform="translate(85.5,358.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.4</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,310.3 L557.9,310.3 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,310.3 L111.6,310.3 M557.9,310.3 L542.3,310.3 '/> <g transform="translate(85.5,316.8)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.5</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,269.2 L557.9,269.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,269.2 L111.6,269.2 M557.9,269.2 L542.3,269.2 '/> <g transform="translate(85.5,275.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.6</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,228.1 L557.9,228.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,228.1 L111.6,228.1 M557.9,228.1 L542.3,228.1 '/> <g transform="translate(85.5,234.6)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.7</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,186.9 L557.9,186.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,186.9 L111.6,186.9 M557.9,186.9 L542.3,186.9 '/> <g transform="translate(85.5,193.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.8</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,145.8 L557.9,145.8 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,145.8 L111.6,145.8 M557.9,145.8 L542.3,145.8 '/> <g transform="translate(85.5,152.3)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0.9</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,104.7 L557.9,104.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,104.7 L111.6,104.7 M557.9,104.7 L542.3,104.7 '/> <g transform="translate(85.5,111.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >1</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M96.0,516.0 L96.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,516.0 L96.0,500.4 M96.0,84.1 L96.0,99.7 '/> <g transform="translate(96.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" > 0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M153.7,516.0 L153.7,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M153.7,516.0 L153.7,500.4 M153.7,84.1 L153.7,99.7 '/> <g transform="translate(153.7,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M211.5,516.0 L211.5,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M211.5,516.0 L211.5,500.4 M211.5,84.1 L211.5,99.7 '/> <g transform="translate(211.5,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M269.2,516.0 L269.2,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M269.2,516.0 L269.2,500.4 M269.2,84.1 L269.2,99.7 '/> <g transform="translate(269.2,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M327.0,516.0 L327.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M327.0,516.0 L327.0,500.4 M327.0,84.1 L327.0,99.7 '/> <g transform="translate(327.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M384.7,516.0 L384.7,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M384.7,516.0 L384.7,500.4 M384.7,84.1 L384.7,99.7 '/> <g transform="translate(384.7,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M442.4,516.0 L442.4,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M442.4,516.0 L442.4,500.4 M442.4,84.1 L442.4,99.7 '/> <g transform="translate(442.4,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M500.2,516.0 L500.2,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M500.2,516.0 L500.2,500.4 M500.2,84.1 L500.2,99.7 '/> <g transform="translate(500.2,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M557.9,516.0 L557.9,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M557.9,516.0 L557.9,500.4 M557.9,84.1 L557.9,99.7 '/> <g transform="translate(557.9,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text xml:space="preserve"><tspan font-family="Microsoft Sans Serif" font-weight="bold" xml:space="preserve"> N</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(40.6,300.1) rotate(-90)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >amplitude</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(326.9,581.3)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >samples</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(326.9,39.9)" stroke="none" fill="rgb(0,0,0)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >Triangular window</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+ <g id="gnuplot_plot_1a" ><title>gnuplot_plot_1a</title>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g stroke='none' shape-rendering='crispEdges'>
+ <polygon fill = 'rgb( 0, 102, 153)' points = '96.0,516.0 96.0,516.0 96.9,514.4 97.8,512.8 98.7,511.2 99.6,509.6 100.5,508.0 101.4,506.4 102.3,504.7 103.2,503.1 104.1,501.5 105.0,499.9 105.9,498.3 106.8,496.7 107.7,495.1 108.6,493.5
+109.5,491.9 110.4,490.3 111.3,488.7 112.2,487.1 113.1,485.5 114.0,483.9 114.9,482.3 115.8,480.6 116.7,479.0 117.7,477.4 118.6,475.8 119.5,474.2 120.4,472.6 121.3,471.0 122.2,469.4 123.1,467.8
+124.0,466.2 124.9,464.6 125.8,463.0 126.7,461.4 127.6,459.8 128.5,458.2 129.4,456.5 130.3,454.9 131.2,453.3 132.1,451.7 133.0,450.1 133.9,448.5 134.8,446.9 135.7,445.3 136.6,443.7 137.5,442.1
+138.4,440.5 139.3,438.9 140.2,437.3 141.1,435.7 142.0,434.0 142.9,432.4 143.8,430.8 144.7,429.2 145.6,427.6 146.5,426.0 147.4,424.4 148.3,422.8 149.2,421.2 150.1,419.6 151.0,418.0 151.9,416.4
+152.8,414.8 153.7,413.2 154.6,411.6 155.5,409.9 156.4,408.3 157.3,406.7 158.2,405.1 159.2,403.5 160.1,401.9 161.0,400.3 161.9,398.7 162.8,397.1 163.7,395.5 164.6,393.9 165.5,392.3 166.4,390.7
+167.3,389.1 168.2,387.5 169.1,385.8 170.0,384.2 170.9,382.6 171.8,381.0 172.7,379.4 173.6,377.8 174.5,376.2 175.4,374.6 176.3,373.0 177.2,371.4 178.1,369.8 179.0,368.2 179.9,366.6 180.8,365.0
+181.7,363.4 182.6,361.7 183.5,360.1 184.4,358.5 185.3,356.9 186.2,355.3 187.1,353.7 188.0,352.1 188.9,350.5 189.8,348.9 190.7,347.3 191.6,345.7 192.5,344.1 193.4,342.5 194.3,340.9 195.2,339.3
+196.1,337.6 197.0,336.0 197.9,334.4 198.8,332.8 199.7,331.2 200.6,329.6 201.6,328.0 202.5,326.4 203.4,324.8 204.3,323.2 205.2,321.6 206.1,320.0 207.0,318.4 207.9,316.8 208.8,315.2 209.7,313.5
+210.6,311.9 211.5,310.3 212.4,308.7 213.3,307.1 214.2,305.5 215.1,303.9 216.0,302.3 216.9,300.7 217.8,299.1 218.7,297.5 219.6,295.9 220.5,294.3 221.4,292.7 222.3,291.0 223.2,289.4 224.1,287.8
+225.0,286.2 225.9,284.6 226.8,283.0 227.7,281.4 228.6,279.8 229.5,278.2 230.4,276.6 231.3,275.0 232.2,273.4 233.1,271.8 234.0,270.2 234.9,268.6 235.8,266.9 236.7,265.3 237.6,263.7 238.5,262.1
+239.4,260.5 240.3,258.9 241.2,257.3 242.1,255.7 243.1,254.1 244.0,252.5 244.9,250.9 245.8,249.3 246.7,247.7 247.6,246.1 248.5,244.5 249.4,242.8 250.3,241.2 251.2,239.6 252.1,238.0 253.0,236.4
+253.9,234.8 254.8,233.2 255.7,231.6 256.6,230.0 257.5,228.4 258.4,226.8 259.3,225.2 260.2,223.6 261.1,222.0 262.0,220.4 262.9,218.7 263.8,217.1 264.7,215.5 265.6,213.9 266.5,212.3 267.4,210.7
+268.3,209.1 269.2,207.5 270.1,205.9 271.0,204.3 271.9,202.7 272.8,201.1 273.7,199.5 274.6,197.9 275.5,196.3 276.4,194.6 277.3,193.0 278.2,191.4 279.1,189.8 280.0,188.2 280.9,186.6 281.8,185.0
+282.7,183.4 283.6,181.8 284.5,180.2 285.5,178.6 286.4,177.0 287.3,175.4 288.2,173.8 289.1,172.2 290.0,170.5 290.9,168.9 291.8,167.3 292.7,165.7 293.6,164.1 294.5,162.5 295.4,160.9 296.3,159.3
+297.2,157.7 298.1,156.1 299.0,154.5 299.9,152.9 300.8,151.3 301.7,149.7 302.6,148.0 303.5,146.4 304.4,144.8 305.3,143.2 306.2,141.6 307.1,140.0 308.0,138.4 308.9,136.8 309.8,135.2 310.7,133.6
+311.6,132.0 312.5,130.4 313.4,128.8 314.3,127.2 315.2,125.6 316.1,123.9 317.0,122.3 317.9,120.7 318.8,119.1 319.7,117.5 320.6,115.9 321.5,114.3 322.4,112.7 323.3,111.1 324.2,109.5 325.1,107.9
+326.0,106.3 327.0,104.7 327.9,106.3 328.8,107.9 329.7,109.5 330.6,111.1 331.5,112.7 332.4,114.3 333.3,115.9 334.2,117.5 335.1,119.1 336.0,120.7 336.9,122.3 337.8,123.9 338.7,125.6 339.6,127.2
+340.5,128.8 341.4,130.4 342.3,132.0 343.2,133.6 344.1,135.2 345.0,136.8 345.9,138.4 346.8,140.0 347.7,141.6 348.6,143.2 349.5,144.8 350.4,146.4 351.3,148.0 352.2,149.7 353.1,151.3 354.0,152.9
+354.9,154.5 355.8,156.1 356.7,157.7 357.6,159.3 358.5,160.9 359.4,162.5 360.3,164.1 361.2,165.7 362.1,167.3 363.0,168.9 363.9,170.5 364.8,172.2 365.7,173.8 366.6,175.4 367.5,177.0 368.4,178.6
+369.4,180.2 370.3,181.8 371.2,183.4 372.1,185.0 373.0,186.6 373.9,188.2 374.8,189.8 375.7,191.4 376.6,193.0 377.5,194.6 378.4,196.3 379.3,197.9 380.2,199.5 381.1,201.1 382.0,202.7 382.9,204.3
+383.8,205.9 384.7,207.5 385.6,209.1 386.5,210.7 387.4,212.3 388.3,213.9 389.2,215.5 390.1,217.1 391.0,218.7 391.9,220.4 392.8,222.0 393.7,223.6 394.6,225.2 395.5,226.8 396.4,228.4 397.3,230.0
+398.2,231.6 399.1,233.2 400.0,234.8 400.9,236.4 401.8,238.0 402.7,239.6 403.6,241.2 404.5,242.8 405.4,244.5 406.3,246.1 407.2,247.7 408.1,249.3 409.0,250.9 409.9,252.5 410.8,254.1 411.8,255.7
+412.7,257.3 413.6,258.9 414.5,260.5 415.4,262.1 416.3,263.7 417.2,265.3 418.1,266.9 419.0,268.6 419.9,270.2 420.8,271.8 421.7,273.4 422.6,275.0 423.5,276.6 424.4,278.2 425.3,279.8 426.2,281.4
+427.1,283.0 428.0,284.6 428.9,286.2 429.8,287.8 430.7,289.4 431.6,291.0 432.5,292.7 433.4,294.3 434.3,295.9 435.2,297.5 436.1,299.1 437.0,300.7 437.9,302.3 438.8,303.9 439.7,305.5 440.6,307.1
+441.5,308.7 442.4,310.3 443.3,311.9 444.2,313.5 445.1,315.2 446.0,316.8 446.9,318.4 447.8,320.0 448.7,321.6 449.6,323.2 450.5,324.8 451.4,326.4 452.3,328.0 453.3,329.6 454.2,331.2 455.1,332.8
+456.0,334.4 456.9,336.0 457.8,337.6 458.7,339.3 459.6,340.9 460.5,342.5 461.4,344.1 462.3,345.7 463.2,347.3 464.1,348.9 465.0,350.5 465.9,352.1 466.8,353.7 467.7,355.3 468.6,356.9 469.5,358.5
+470.4,360.1 471.3,361.7 472.2,363.4 473.1,365.0 474.0,366.6 474.9,368.2 475.8,369.8 476.7,371.4 477.6,373.0 478.5,374.6 479.4,376.2 480.3,377.8 481.2,379.4 482.1,381.0 483.0,382.6 483.9,384.2
+484.8,385.8 485.7,387.5 486.6,389.1 487.5,390.7 488.4,392.3 489.3,393.9 490.2,395.5 491.1,397.1 492.0,398.7 492.9,400.3 493.8,401.9 494.7,403.5 495.7,405.1 496.6,406.7 497.5,408.3 498.4,409.9
+499.3,411.6 500.2,413.2 501.1,414.8 502.0,416.4 502.9,418.0 503.8,419.6 504.7,421.2 505.6,422.8 506.5,424.4 507.4,426.0 508.3,427.6 509.2,429.2 510.1,430.8 511.0,432.4 511.9,434.0 512.8,435.7
+513.7,437.3 514.6,438.9 515.5,440.5 516.4,442.1 517.3,443.7 518.2,445.3 519.1,446.9 520.0,448.5 520.9,450.1 521.8,451.7 522.7,453.3 523.6,454.9 524.5,456.5 525.4,458.2 526.3,459.8 527.2,461.4
+528.1,463.0 529.0,464.6 529.9,466.2 530.8,467.8 531.7,469.4 532.6,471.0 533.5,472.6 534.4,474.2 535.3,475.8 536.2,477.4 537.2,479.0 538.1,480.6 539.0,482.3 539.9,483.9 540.8,485.5 541.7,487.1
+542.6,488.7 543.5,490.3 544.4,491.9 545.3,493.5 546.2,495.1 547.1,496.7 548.0,498.3 548.9,499.9 549.8,501.5 550.7,503.1 551.6,504.7 552.5,506.4 553.4,508.0 554.3,509.6 555.2,511.2 556.1,512.8
+557.0,514.4 557.9,516.0 557.9,516.0 557.0,516.0 556.1,516.0 555.2,516.0 554.3,516.0 553.4,516.0 552.5,516.0 551.6,516.0 550.7,516.0 549.8,516.0 548.9,516.0 548.0,516.0 547.1,516.0 546.2,516.0
+545.3,516.0 544.4,516.0 543.5,516.0 542.6,516.0 541.7,516.0 540.8,516.0 539.9,516.0 539.0,516.0 538.1,516.0 537.2,516.0 536.2,516.0 535.3,516.0 534.4,516.0 533.5,516.0 532.6,516.0 531.7,516.0
+530.8,516.0 529.9,516.0 529.0,516.0 528.1,516.0 527.2,516.0 526.3,516.0 525.4,516.0 524.5,516.0 523.6,516.0 522.7,516.0 521.8,516.0 520.9,516.0 520.0,516.0 519.1,516.0 518.2,516.0 517.3,516.0
+516.4,516.0 515.5,516.0 514.6,516.0 513.7,516.0 512.8,516.0 511.9,516.0 511.0,516.0 510.1,516.0 509.2,516.0 508.3,516.0 507.4,516.0 506.5,516.0 505.6,516.0 504.7,516.0 503.8,516.0 502.9,516.0
+502.0,516.0 501.1,516.0 500.2,516.0 499.3,516.0 498.4,516.0 497.5,516.0 496.6,516.0 495.7,516.0 494.7,516.0 493.8,516.0 492.9,516.0 492.0,516.0 491.1,516.0 490.2,516.0 489.3,516.0 488.4,516.0
+487.5,516.0 486.6,516.0 485.7,516.0 484.8,516.0 483.9,516.0 483.0,516.0 482.1,516.0 481.2,516.0 480.3,516.0 479.4,516.0 478.5,516.0 477.6,516.0 476.7,516.0 475.8,516.0 474.9,516.0 474.0,516.0
+473.1,516.0 472.2,516.0 471.3,516.0 470.4,516.0 469.5,516.0 468.6,516.0 467.7,516.0 466.8,516.0 465.9,516.0 465.0,516.0 464.1,516.0 463.2,516.0 462.3,516.0 461.4,516.0 460.5,516.0 459.6,516.0
+458.7,516.0 457.8,516.0 456.9,516.0 456.0,516.0 455.1,516.0 454.2,516.0 453.3,516.0 452.3,516.0 451.4,516.0 450.5,516.0 449.6,516.0 448.7,516.0 447.8,516.0 446.9,516.0 446.0,516.0 445.1,516.0
+444.2,516.0 443.3,516.0 442.4,516.0 441.5,516.0 440.6,516.0 439.7,516.0 438.8,516.0 437.9,516.0 437.0,516.0 436.1,516.0 435.2,516.0 434.3,516.0 433.4,516.0 432.5,516.0 431.6,516.0 430.7,516.0
+429.8,516.0 428.9,516.0 428.0,516.0 427.1,516.0 426.2,516.0 425.3,516.0 424.4,516.0 423.5,516.0 422.6,516.0 421.7,516.0 420.8,516.0 419.9,516.0 419.0,516.0 418.1,516.0 417.2,516.0 416.3,516.0
+415.4,516.0 414.5,516.0 413.6,516.0 412.7,516.0 411.8,516.0 410.8,516.0 409.9,516.0 409.0,516.0 408.1,516.0 407.2,516.0 406.3,516.0 405.4,516.0 404.5,516.0 403.6,516.0 402.7,516.0 401.8,516.0
+400.9,516.0 400.0,516.0 399.1,516.0 398.2,516.0 397.3,516.0 396.4,516.0 395.5,516.0 394.6,516.0 393.7,516.0 392.8,516.0 391.9,516.0 391.0,516.0 390.1,516.0 389.2,516.0 388.3,516.0 387.4,516.0
+386.5,516.0 385.6,516.0 384.7,516.0 383.8,516.0 382.9,516.0 382.0,516.0 381.1,516.0 380.2,516.0 379.3,516.0 378.4,516.0 377.5,516.0 376.6,516.0 375.7,516.0 374.8,516.0 373.9,516.0 373.0,516.0
+372.1,516.0 371.2,516.0 370.3,516.0 369.4,516.0 368.4,516.0 367.5,516.0 366.6,516.0 365.7,516.0 364.8,516.0 363.9,516.0 363.0,516.0 362.1,516.0 361.2,516.0 360.3,516.0 359.4,516.0 358.5,516.0
+357.6,516.0 356.7,516.0 355.8,516.0 354.9,516.0 354.0,516.0 353.1,516.0 352.2,516.0 351.3,516.0 350.4,516.0 349.5,516.0 348.6,516.0 347.7,516.0 346.8,516.0 345.9,516.0 345.0,516.0 344.1,516.0
+343.2,516.0 342.3,516.0 341.4,516.0 340.5,516.0 339.6,516.0 338.7,516.0 337.8,516.0 336.9,516.0 336.0,516.0 335.1,516.0 334.2,516.0 333.3,516.0 332.4,516.0 331.5,516.0 330.6,516.0 329.7,516.0
+328.8,516.0 327.9,516.0 327.0,516.0 326.0,516.0 325.1,516.0 324.2,516.0 323.3,516.0 322.4,516.0 321.5,516.0 320.6,516.0 319.7,516.0 318.8,516.0 317.9,516.0 317.0,516.0 316.1,516.0 315.2,516.0
+314.3,516.0 313.4,516.0 312.5,516.0 311.6,516.0 310.7,516.0 309.8,516.0 308.9,516.0 308.0,516.0 307.1,516.0 306.2,516.0 305.3,516.0 304.4,516.0 303.5,516.0 302.6,516.0 301.7,516.0 300.8,516.0
+299.9,516.0 299.0,516.0 298.1,516.0 297.2,516.0 296.3,516.0 295.4,516.0 294.5,516.0 293.6,516.0 292.7,516.0 291.8,516.0 290.9,516.0 290.0,516.0 289.1,516.0 288.2,516.0 287.3,516.0 286.4,516.0
+285.5,516.0 284.5,516.0 283.6,516.0 282.7,516.0 281.8,516.0 280.9,516.0 280.0,516.0 279.1,516.0 278.2,516.0 277.3,516.0 276.4,516.0 275.5,516.0 274.6,516.0 273.7,516.0 272.8,516.0 271.9,516.0
+271.0,516.0 270.1,516.0 269.2,516.0 268.3,516.0 267.4,516.0 266.5,516.0 265.6,516.0 264.7,516.0 263.8,516.0 262.9,516.0 262.0,516.0 261.1,516.0 260.2,516.0 259.3,516.0 258.4,516.0 257.5,516.0
+256.6,516.0 255.7,516.0 254.8,516.0 253.9,516.0 253.0,516.0 252.1,516.0 251.2,516.0 250.3,516.0 249.4,516.0 248.5,516.0 247.6,516.0 246.7,516.0 245.8,516.0 244.9,516.0 244.0,516.0 243.1,516.0
+242.1,516.0 241.2,516.0 240.3,516.0 239.4,516.0 238.5,516.0 237.6,516.0 236.7,516.0 235.8,516.0 234.9,516.0 234.0,516.0 233.1,516.0 232.2,516.0 231.3,516.0 230.4,516.0 229.5,516.0 228.6,516.0
+227.7,516.0 226.8,516.0 225.9,516.0 225.0,516.0 224.1,516.0 223.2,516.0 222.3,516.0 221.4,516.0 220.5,516.0 219.6,516.0 218.7,516.0 217.8,516.0 216.9,516.0 216.0,516.0 215.1,516.0 214.2,516.0
+213.3,516.0 212.4,516.0 211.5,516.0 210.6,516.0 209.7,516.0 208.8,516.0 207.9,516.0 207.0,516.0 206.1,516.0 205.2,516.0 204.3,516.0 203.4,516.0 202.5,516.0 201.6,516.0 200.6,516.0 199.7,516.0
+198.8,516.0 197.9,516.0 197.0,516.0 196.1,516.0 195.2,516.0 194.3,516.0 193.4,516.0 192.5,516.0 191.6,516.0 190.7,516.0 189.8,516.0 188.9,516.0 188.0,516.0 187.1,516.0 186.2,516.0 185.3,516.0
+184.4,516.0 183.5,516.0 182.6,516.0 181.7,516.0 180.8,516.0 179.9,516.0 179.0,516.0 178.1,516.0 177.2,516.0 176.3,516.0 175.4,516.0 174.5,516.0 173.6,516.0 172.7,516.0 171.8,516.0 170.9,516.0
+170.0,516.0 169.1,516.0 168.2,516.0 167.3,516.0 166.4,516.0 165.5,516.0 164.6,516.0 163.7,516.0 162.8,516.0 161.9,516.0 161.0,516.0 160.1,516.0 159.2,516.0 158.2,516.0 157.3,516.0 156.4,516.0
+155.5,516.0 154.6,516.0 153.7,516.0 152.8,516.0 151.9,516.0 151.0,516.0 150.1,516.0 149.2,516.0 148.3,516.0 147.4,516.0 146.5,516.0 145.6,516.0 144.7,516.0 143.8,516.0 142.9,516.0 142.0,516.0
+141.1,516.0 140.2,516.0 139.3,516.0 138.4,516.0 137.5,516.0 136.6,516.0 135.7,516.0 134.8,516.0 133.9,516.0 133.0,516.0 132.1,516.0 131.2,516.0 130.3,516.0 129.4,516.0 128.5,516.0 127.6,516.0
+126.7,516.0 125.8,516.0 124.9,516.0 124.0,516.0 123.1,516.0 122.2,516.0 121.3,516.0 120.4,516.0 119.5,516.0 118.6,516.0 117.7,516.0 116.7,516.0 115.8,516.0 114.9,516.0 114.0,516.0 113.1,516.0
+112.2,516.0 111.3,516.0 110.4,516.0 109.5,516.0 108.6,516.0 107.7,516.0 106.8,516.0 105.9,516.0 105.0,516.0 104.1,516.0 103.2,516.0 102.3,516.0 101.4,516.0 100.5,516.0 99.6,516.0 98.7,516.0
+97.8,516.0 96.9,516.0 96.0,516.0 96.0,516.0 '/>
+ </g>
+ <path stroke='rgb( 0, 102, 153)' d='M96.0,516.0 L96.9,514.4 L97.8,512.8 L98.7,511.2 L99.6,509.6 L100.5,508.0 L101.4,506.4 L102.3,504.7
+ L103.2,503.1 L104.1,501.5 L105.0,499.9 L105.9,498.3 L106.8,496.7 L107.7,495.1 L108.6,493.5 L109.5,491.9
+ L110.4,490.3 L111.3,488.7 L112.2,487.1 L113.1,485.5 L114.0,483.9 L114.9,482.3 L115.8,480.6 L116.7,479.0
+ L117.7,477.4 L118.6,475.8 L119.5,474.2 L120.4,472.6 L121.3,471.0 L122.2,469.4 L123.1,467.8 L124.0,466.2
+ L124.9,464.6 L125.8,463.0 L126.7,461.4 L127.6,459.8 L128.5,458.2 L129.4,456.5 L130.3,454.9 L131.2,453.3
+ L132.1,451.7 L133.0,450.1 L133.9,448.5 L134.8,446.9 L135.7,445.3 L136.6,443.7 L137.5,442.1 L138.4,440.5
+ L139.3,438.9 L140.2,437.3 L141.1,435.7 L142.0,434.0 L142.9,432.4 L143.8,430.8 L144.7,429.2 L145.6,427.6
+ L146.5,426.0 L147.4,424.4 L148.3,422.8 L149.2,421.2 L150.1,419.6 L151.0,418.0 L151.9,416.4 L152.8,414.8
+ L153.7,413.2 L154.6,411.6 L155.5,409.9 L156.4,408.3 L157.3,406.7 L158.2,405.1 L159.2,403.5 L160.1,401.9
+ L161.0,400.3 L161.9,398.7 L162.8,397.1 L163.7,395.5 L164.6,393.9 L165.5,392.3 L166.4,390.7 L167.3,389.1
+ L168.2,387.5 L169.1,385.8 L170.0,384.2 L170.9,382.6 L171.8,381.0 L172.7,379.4 L173.6,377.8 L174.5,376.2
+ L175.4,374.6 L176.3,373.0 L177.2,371.4 L178.1,369.8 L179.0,368.2 L179.9,366.6 L180.8,365.0 L181.7,363.4
+ L182.6,361.7 L183.5,360.1 L184.4,358.5 L185.3,356.9 L186.2,355.3 L187.1,353.7 L188.0,352.1 L188.9,350.5
+ L189.8,348.9 L190.7,347.3 L191.6,345.7 L192.5,344.1 L193.4,342.5 L194.3,340.9 L195.2,339.3 L196.1,337.6
+ L197.0,336.0 L197.9,334.4 L198.8,332.8 L199.7,331.2 L200.6,329.6 L201.6,328.0 L202.5,326.4 L203.4,324.8
+ L204.3,323.2 L205.2,321.6 L206.1,320.0 L207.0,318.4 L207.9,316.8 L208.8,315.2 L209.7,313.5 L210.6,311.9
+ L211.5,310.3 L212.4,308.7 L213.3,307.1 L214.2,305.5 L215.1,303.9 L216.0,302.3 L216.9,300.7 L217.8,299.1
+ L218.7,297.5 L219.6,295.9 L220.5,294.3 L221.4,292.7 L222.3,291.0 L223.2,289.4 L224.1,287.8 L225.0,286.2
+ L225.9,284.6 L226.8,283.0 L227.7,281.4 L228.6,279.8 L229.5,278.2 L230.4,276.6 L231.3,275.0 L232.2,273.4
+ L233.1,271.8 L234.0,270.2 L234.9,268.6 L235.8,266.9 L236.7,265.3 L237.6,263.7 L238.5,262.1 L239.4,260.5
+ L240.3,258.9 L241.2,257.3 L242.1,255.7 L243.1,254.1 L244.0,252.5 L244.9,250.9 L245.8,249.3 L246.7,247.7
+ L247.6,246.1 L248.5,244.5 L249.4,242.8 L250.3,241.2 L251.2,239.6 L252.1,238.0 L253.0,236.4 L253.9,234.8
+ L254.8,233.2 L255.7,231.6 L256.6,230.0 L257.5,228.4 L258.4,226.8 L259.3,225.2 L260.2,223.6 L261.1,222.0
+ L262.0,220.4 L262.9,218.7 L263.8,217.1 L264.7,215.5 L265.6,213.9 L266.5,212.3 L267.4,210.7 L268.3,209.1
+ L269.2,207.5 L270.1,205.9 L271.0,204.3 L271.9,202.7 L272.8,201.1 L273.7,199.5 L274.6,197.9 L275.5,196.3
+ L276.4,194.6 L277.3,193.0 L278.2,191.4 L279.1,189.8 L280.0,188.2 L280.9,186.6 L281.8,185.0 L282.7,183.4
+ L283.6,181.8 L284.5,180.2 L285.5,178.6 L286.4,177.0 L287.3,175.4 L288.2,173.8 L289.1,172.2 L290.0,170.5
+ L290.9,168.9 L291.8,167.3 L292.7,165.7 L293.6,164.1 L294.5,162.5 L295.4,160.9 L296.3,159.3 L297.2,157.7
+ L298.1,156.1 L299.0,154.5 L299.9,152.9 L300.8,151.3 L301.7,149.7 L302.6,148.0 L303.5,146.4 L304.4,144.8
+ L305.3,143.2 L306.2,141.6 L307.1,140.0 L308.0,138.4 L308.9,136.8 L309.8,135.2 L310.7,133.6 L311.6,132.0
+ L312.5,130.4 L313.4,128.8 L314.3,127.2 L315.2,125.6 L316.1,123.9 L317.0,122.3 L317.9,120.7 L318.8,119.1
+ L319.7,117.5 L320.6,115.9 L321.5,114.3 L322.4,112.7 L323.3,111.1 L324.2,109.5 L325.1,107.9 L326.0,106.3
+ L327.0,104.7 L327.9,106.3 L328.8,107.9 L329.7,109.5 L330.6,111.1 L331.5,112.7 L332.4,114.3 L333.3,115.9
+ L334.2,117.5 L335.1,119.1 L336.0,120.7 L336.9,122.3 L337.8,123.9 L338.7,125.6 L339.6,127.2 L340.5,128.8
+ L341.4,130.4 L342.3,132.0 L343.2,133.6 L344.1,135.2 L345.0,136.8 L345.9,138.4 L346.8,140.0 L347.7,141.6
+ L348.6,143.2 L349.5,144.8 L350.4,146.4 L351.3,148.0 L352.2,149.7 L353.1,151.3 L354.0,152.9 L354.9,154.5
+ L355.8,156.1 L356.7,157.7 L357.6,159.3 L358.5,160.9 L359.4,162.5 L360.3,164.1 L361.2,165.7 L362.1,167.3
+ L363.0,168.9 L363.9,170.5 L364.8,172.2 L365.7,173.8 L366.6,175.4 L367.5,177.0 L368.4,178.6 L369.4,180.2
+ L370.3,181.8 L371.2,183.4 L372.1,185.0 L373.0,186.6 L373.9,188.2 L374.8,189.8 L375.7,191.4 L376.6,193.0
+ L377.5,194.6 L378.4,196.3 L379.3,197.9 L380.2,199.5 L381.1,201.1 L382.0,202.7 L382.9,204.3 L383.8,205.9
+ L384.7,207.5 L385.6,209.1 L386.5,210.7 L387.4,212.3 L388.3,213.9 L389.2,215.5 L390.1,217.1 L391.0,218.7
+ L391.9,220.4 L392.8,222.0 L393.7,223.6 L394.6,225.2 L395.5,226.8 L396.4,228.4 L397.3,230.0 L398.2,231.6
+ L399.1,233.2 L400.0,234.8 L400.9,236.4 L401.8,238.0 L402.7,239.6 L403.6,241.2 L404.5,242.8 L405.4,244.5
+ L406.3,246.1 L407.2,247.7 L408.1,249.3 L409.0,250.9 L409.9,252.5 L410.8,254.1 L411.8,255.7 L412.7,257.3
+ L413.6,258.9 L414.5,260.5 L415.4,262.1 L416.3,263.7 L417.2,265.3 L418.1,266.9 L419.0,268.6 L419.9,270.2
+ L420.8,271.8 L421.7,273.4 L422.6,275.0 L423.5,276.6 L424.4,278.2 L425.3,279.8 L426.2,281.4 L427.1,283.0
+ L428.0,284.6 L428.9,286.2 L429.8,287.8 L430.7,289.4 L431.6,291.0 L432.5,292.7 L433.4,294.3 L434.3,295.9
+ L435.2,297.5 L436.1,299.1 L437.0,300.7 L437.9,302.3 L438.8,303.9 L439.7,305.5 L440.6,307.1 L441.5,308.7
+ L442.4,310.3 L443.3,311.9 L444.2,313.5 L445.1,315.2 L446.0,316.8 L446.9,318.4 L447.8,320.0 L448.7,321.6
+ L449.6,323.2 L450.5,324.8 L451.4,326.4 L452.3,328.0 L453.3,329.6 L454.2,331.2 L455.1,332.8 L456.0,334.4
+ L456.9,336.0 L457.8,337.6 L458.7,339.3 L459.6,340.9 L460.5,342.5 L461.4,344.1 L462.3,345.7 L463.2,347.3
+ L464.1,348.9 L465.0,350.5 L465.9,352.1 L466.8,353.7 L467.7,355.3 L468.6,356.9 L469.5,358.5 L470.4,360.1
+ L471.3,361.7 L472.2,363.4 L473.1,365.0 L474.0,366.6 L474.9,368.2 L475.8,369.8 L476.7,371.4 L477.6,373.0
+ L478.5,374.6 L479.4,376.2 L480.3,377.8 L481.2,379.4 L482.1,381.0 L483.0,382.6 L483.9,384.2 L484.8,385.8
+ L485.7,387.5 L486.6,389.1 L487.5,390.7 L488.4,392.3 L489.3,393.9 L490.2,395.5 L491.1,397.1 L492.0,398.7
+ L492.9,400.3 L493.8,401.9 L494.7,403.5 L495.7,405.1 L496.6,406.7 L497.5,408.3 L498.4,409.9 L499.3,411.6
+ L500.2,413.2 L501.1,414.8 L502.0,416.4 L502.9,418.0 L503.8,419.6 L504.7,421.2 L505.6,422.8 L506.5,424.4
+ L507.4,426.0 L508.3,427.6 L509.2,429.2 L510.1,430.8 L511.0,432.4 L511.9,434.0 L512.8,435.7 L513.7,437.3
+ L514.6,438.9 L515.5,440.5 L516.4,442.1 L517.3,443.7 L518.2,445.3 L519.1,446.9 L520.0,448.5 L520.9,450.1
+ L521.8,451.7 L522.7,453.3 L523.6,454.9 L524.5,456.5 L525.4,458.2 L526.3,459.8 L527.2,461.4 L528.1,463.0
+ L529.0,464.6 L529.9,466.2 L530.8,467.8 L531.7,469.4 L532.6,471.0 L533.5,472.6 L534.4,474.2 L535.3,475.8
+ L536.2,477.4 L537.2,479.0 L538.1,480.6 L539.0,482.3 L539.9,483.9 L540.8,485.5 L541.7,487.1 L542.6,488.7
+ L543.5,490.3 L544.4,491.9 L545.3,493.5 L546.2,495.1 L547.1,496.7 L548.0,498.3 L548.9,499.9 L549.8,501.5
+ L550.7,503.1 L551.6,504.7 L552.5,506.4 L553.4,508.0 L554.3,509.6 L555.2,511.2 L556.1,512.8 L557.0,514.4
+ L557.9,516.0 L557.0,516.0 L556.1,516.0 L555.2,516.0 L554.3,516.0 L553.4,516.0 L552.5,516.0 L551.6,516.0
+ L550.7,516.0 L549.8,516.0 L548.9,516.0 L548.0,516.0 L547.1,516.0 L546.2,516.0 L545.3,516.0 L544.4,516.0
+ L543.5,516.0 L542.6,516.0 L541.7,516.0 L540.8,516.0 L539.9,516.0 L539.0,516.0 L538.1,516.0 L537.2,516.0
+ L536.2,516.0 L535.3,516.0 L534.4,516.0 L533.5,516.0 L532.6,516.0 L531.7,516.0 L530.8,516.0 L529.9,516.0
+ L529.0,516.0 L528.1,516.0 L527.2,516.0 L526.3,516.0 L525.4,516.0 L524.5,516.0 L523.6,516.0 L522.7,516.0
+ L521.8,516.0 L520.9,516.0 L520.0,516.0 L519.1,516.0 L518.2,516.0 L517.3,516.0 L516.4,516.0 L515.5,516.0
+ L514.6,516.0 L513.7,516.0 L512.8,516.0 L511.9,516.0 L511.0,516.0 L510.1,516.0 L509.2,516.0 L508.3,516.0
+ L507.4,516.0 L506.5,516.0 L505.6,516.0 L504.7,516.0 L503.8,516.0 L502.9,516.0 L502.0,516.0 L501.1,516.0
+ L500.2,516.0 L499.3,516.0 L498.4,516.0 L497.5,516.0 L496.6,516.0 L495.7,516.0 L494.7,516.0 L493.8,516.0
+ L492.9,516.0 L492.0,516.0 L491.1,516.0 L490.2,516.0 L489.3,516.0 L488.4,516.0 L487.5,516.0 L486.6,516.0
+ L485.7,516.0 L484.8,516.0 L483.9,516.0 L483.0,516.0 L482.1,516.0 L481.2,516.0 L480.3,516.0 L479.4,516.0
+ L478.5,516.0 L477.6,516.0 L476.7,516.0 L475.8,516.0 L474.9,516.0 L474.0,516.0 L473.1,516.0 L472.2,516.0
+ L471.3,516.0 L470.4,516.0 L469.5,516.0 L468.6,516.0 L467.7,516.0 L466.8,516.0 L465.9,516.0 L465.0,516.0
+ L464.1,516.0 L463.2,516.0 L462.3,516.0 L461.4,516.0 L460.5,516.0 L459.6,516.0 L458.7,516.0 L457.8,516.0
+ L456.9,516.0 L456.0,516.0 L455.1,516.0 L454.2,516.0 L453.3,516.0 L452.3,516.0 L451.4,516.0 L450.5,516.0
+ L449.6,516.0 L448.7,516.0 L447.8,516.0 L446.9,516.0 L446.0,516.0 L445.1,516.0 L444.2,516.0 L443.3,516.0
+ L442.4,516.0 L441.5,516.0 L440.6,516.0 L439.7,516.0 L438.8,516.0 L437.9,516.0 L437.0,516.0 L436.1,516.0
+ L435.2,516.0 L434.3,516.0 L433.4,516.0 L432.5,516.0 L431.6,516.0 L430.7,516.0 L429.8,516.0 L428.9,516.0
+ L428.0,516.0 L427.1,516.0 L426.2,516.0 L425.3,516.0 L424.4,516.0 L423.5,516.0 L422.6,516.0 L421.7,516.0
+ L420.8,516.0 L419.9,516.0 L419.0,516.0 L418.1,516.0 L417.2,516.0 L416.3,516.0 L415.4,516.0 L414.5,516.0
+ L413.6,516.0 L412.7,516.0 L411.8,516.0 L410.8,516.0 L409.9,516.0 L409.0,516.0 L408.1,516.0 L407.2,516.0
+ L406.3,516.0 L405.4,516.0 L404.5,516.0 L403.6,516.0 L402.7,516.0 L401.8,516.0 L400.9,516.0 L400.0,516.0
+ L399.1,516.0 L398.2,516.0 L397.3,516.0 L396.4,516.0 L395.5,516.0 L394.6,516.0 L393.7,516.0 L392.8,516.0
+ L391.9,516.0 L391.0,516.0 L390.1,516.0 L389.2,516.0 L388.3,516.0 L387.4,516.0 L386.5,516.0 L385.6,516.0
+ L384.7,516.0 L383.8,516.0 L382.9,516.0 L382.0,516.0 L381.1,516.0 L380.2,516.0 L379.3,516.0 L378.4,516.0
+ L377.5,516.0 L376.6,516.0 L375.7,516.0 L374.8,516.0 L373.9,516.0 L373.0,516.0 L372.1,516.0 L371.2,516.0
+ L370.3,516.0 L369.4,516.0 L368.4,516.0 L367.5,516.0 L366.6,516.0 L365.7,516.0 L364.8,516.0 L363.9,516.0
+ L363.0,516.0 L362.1,516.0 L361.2,516.0 L360.3,516.0 L359.4,516.0 L358.5,516.0 L357.6,516.0 L356.7,516.0
+ L355.8,516.0 L354.9,516.0 L354.0,516.0 L353.1,516.0 L352.2,516.0 L351.3,516.0 L350.4,516.0 L349.5,516.0
+ L348.6,516.0 L347.7,516.0 L346.8,516.0 L345.9,516.0 L345.0,516.0 L344.1,516.0 L343.2,516.0 L342.3,516.0
+ L341.4,516.0 L340.5,516.0 L339.6,516.0 L338.7,516.0 L337.8,516.0 L336.9,516.0 L336.0,516.0 L335.1,516.0
+ L334.2,516.0 L333.3,516.0 L332.4,516.0 L331.5,516.0 L330.6,516.0 L329.7,516.0 L328.8,516.0 L327.9,516.0
+ L327.0,516.0 L326.0,516.0 L325.1,516.0 L324.2,516.0 L323.3,516.0 L322.4,516.0 L321.5,516.0 L320.6,516.0
+ L319.7,516.0 L318.8,516.0 L317.9,516.0 L317.0,516.0 L316.1,516.0 L315.2,516.0 L314.3,516.0 L313.4,516.0
+ L312.5,516.0 L311.6,516.0 L310.7,516.0 L309.8,516.0 L308.9,516.0 L308.0,516.0 L307.1,516.0 L306.2,516.0
+ L305.3,516.0 L304.4,516.0 L303.5,516.0 L302.6,516.0 L301.7,516.0 L300.8,516.0 L299.9,516.0 L299.0,516.0
+ L298.1,516.0 L297.2,516.0 L296.3,516.0 L295.4,516.0 L294.5,516.0 L293.6,516.0 L292.7,516.0 L291.8,516.0
+ L290.9,516.0 L290.0,516.0 L289.1,516.0 L288.2,516.0 L287.3,516.0 L286.4,516.0 L285.5,516.0 L284.5,516.0
+ L283.6,516.0 L282.7,516.0 L281.8,516.0 L280.9,516.0 L280.0,516.0 L279.1,516.0 L278.2,516.0 L277.3,516.0
+ L276.4,516.0 L275.5,516.0 L274.6,516.0 L273.7,516.0 L272.8,516.0 L271.9,516.0 L271.0,516.0 L270.1,516.0
+ L269.2,516.0 L268.3,516.0 L267.4,516.0 L266.5,516.0 L265.6,516.0 L264.7,516.0 L263.8,516.0 L262.9,516.0
+ L262.0,516.0 L261.1,516.0 L260.2,516.0 L259.3,516.0 L258.4,516.0 L257.5,516.0 L256.6,516.0 L255.7,516.0
+ L254.8,516.0 L253.9,516.0 L253.0,516.0 L252.1,516.0 L251.2,516.0 L250.3,516.0 L249.4,516.0 L248.5,516.0
+ L247.6,516.0 L246.7,516.0 L245.8,516.0 L244.9,516.0 L244.0,516.0 L243.1,516.0 L242.1,516.0 L241.2,516.0
+ L240.3,516.0 L239.4,516.0 L238.5,516.0 L237.6,516.0 L236.7,516.0 L235.8,516.0 L234.9,516.0 L234.0,516.0
+ L233.1,516.0 L232.2,516.0 L231.3,516.0 L230.4,516.0 L229.5,516.0 L228.6,516.0 L227.7,516.0 L226.8,516.0
+ L225.9,516.0 L225.0,516.0 L224.1,516.0 L223.2,516.0 L222.3,516.0 L221.4,516.0 L220.5,516.0 L219.6,516.0
+ L218.7,516.0 L217.8,516.0 L216.9,516.0 L216.0,516.0 L215.1,516.0 L214.2,516.0 L213.3,516.0 L212.4,516.0
+ L211.5,516.0 L210.6,516.0 L209.7,516.0 L208.8,516.0 L207.9,516.0 L207.0,516.0 L206.1,516.0 L205.2,516.0
+ L204.3,516.0 L203.4,516.0 L202.5,516.0 L201.6,516.0 L200.6,516.0 L199.7,516.0 L198.8,516.0 L197.9,516.0
+ L197.0,516.0 L196.1,516.0 L195.2,516.0 L194.3,516.0 L193.4,516.0 L192.5,516.0 L191.6,516.0 L190.7,516.0
+ L189.8,516.0 L188.9,516.0 L188.0,516.0 L187.1,516.0 L186.2,516.0 L185.3,516.0 L184.4,516.0 L183.5,516.0
+ L182.6,516.0 L181.7,516.0 L180.8,516.0 L179.9,516.0 L179.0,516.0 L178.1,516.0 L177.2,516.0 L176.3,516.0
+ L175.4,516.0 L174.5,516.0 L173.6,516.0 L172.7,516.0 L171.8,516.0 L170.9,516.0 L170.0,516.0 L169.1,516.0
+ L168.2,516.0 L167.3,516.0 L166.4,516.0 L165.5,516.0 L164.6,516.0 L163.7,516.0 L162.8,516.0 L161.9,516.0
+ L161.0,516.0 L160.1,516.0 L159.2,516.0 L158.2,516.0 L157.3,516.0 L156.4,516.0 L155.5,516.0 L154.6,516.0
+ L153.7,516.0 L152.8,516.0 L151.9,516.0 L151.0,516.0 L150.1,516.0 L149.2,516.0 L148.3,516.0 L147.4,516.0
+ L146.5,516.0 L145.6,516.0 L144.7,516.0 L143.8,516.0 L142.9,516.0 L142.0,516.0 L141.1,516.0 L140.2,516.0
+ L139.3,516.0 L138.4,516.0 L137.5,516.0 L136.6,516.0 L135.7,516.0 L134.8,516.0 L133.9,516.0 L133.0,516.0
+ L132.1,516.0 L131.2,516.0 L130.3,516.0 L129.4,516.0 L128.5,516.0 L127.6,516.0 L126.7,516.0 L125.8,516.0
+ L124.9,516.0 L124.0,516.0 L123.1,516.0 L122.2,516.0 L121.3,516.0 L120.4,516.0 L119.5,516.0 L118.6,516.0
+ L117.7,516.0 L116.7,516.0 L115.8,516.0 L114.9,516.0 L114.0,516.0 L113.1,516.0 L112.2,516.0 L111.3,516.0
+ L110.4,516.0 L109.5,516.0 L108.6,516.0 L107.7,516.0 L106.8,516.0 L105.9,516.0 L105.0,516.0 L104.1,516.0
+ L103.2,516.0 L102.3,516.0 L101.4,516.0 L100.5,516.0 L99.6,516.0 L98.7,516.0 L97.8,516.0 L96.9,516.0
+ L96.0,516.0 '/></g>
+ </g>
+ <g id="gnuplot_plot_2a" ><title>gnuplot_plot_2a</title>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M96.0,516.0 L96.9,514.4 L97.8,512.8 L98.7,511.2 L99.6,509.6 L100.5,508.0 L101.4,506.4 L102.3,504.7
+ L103.2,503.1 L104.1,501.5 L105.0,499.9 L105.9,498.3 L106.8,496.7 L107.7,495.1 L108.6,493.5 L109.5,491.9
+ L110.4,490.3 L111.3,488.7 L112.2,487.1 L113.1,485.5 L114.0,483.9 L114.9,482.3 L115.8,480.6 L116.7,479.0
+ L117.7,477.4 L118.6,475.8 L119.5,474.2 L120.4,472.6 L121.3,471.0 L122.2,469.4 L123.1,467.8 L124.0,466.2
+ L124.9,464.6 L125.8,463.0 L126.7,461.4 L127.6,459.8 L128.5,458.2 L129.4,456.5 L130.3,454.9 L131.2,453.3
+ L132.1,451.7 L133.0,450.1 L133.9,448.5 L134.8,446.9 L135.7,445.3 L136.6,443.7 L137.5,442.1 L138.4,440.5
+ L139.3,438.9 L140.2,437.3 L141.1,435.7 L142.0,434.0 L142.9,432.4 L143.8,430.8 L144.7,429.2 L145.6,427.6
+ L146.5,426.0 L147.4,424.4 L148.3,422.8 L149.2,421.2 L150.1,419.6 L151.0,418.0 L151.9,416.4 L152.8,414.8
+ L153.7,413.2 L154.6,411.6 L155.5,409.9 L156.4,408.3 L157.3,406.7 L158.2,405.1 L159.2,403.5 L160.1,401.9
+ L161.0,400.3 L161.9,398.7 L162.8,397.1 L163.7,395.5 L164.6,393.9 L165.5,392.3 L166.4,390.7 L167.3,389.1
+ L168.2,387.5 L169.1,385.8 L170.0,384.2 L170.9,382.6 L171.8,381.0 L172.7,379.4 L173.6,377.8 L174.5,376.2
+ L175.4,374.6 L176.3,373.0 L177.2,371.4 L178.1,369.8 L179.0,368.2 L179.9,366.6 L180.8,365.0 L181.7,363.4
+ L182.6,361.7 L183.5,360.1 L184.4,358.5 L185.3,356.9 L186.2,355.3 L187.1,353.7 L188.0,352.1 L188.9,350.5
+ L189.8,348.9 L190.7,347.3 L191.6,345.7 L192.5,344.1 L193.4,342.5 L194.3,340.9 L195.2,339.3 L196.1,337.6
+ L197.0,336.0 L197.9,334.4 L198.8,332.8 L199.7,331.2 L200.6,329.6 L201.6,328.0 L202.5,326.4 L203.4,324.8
+ L204.3,323.2 L205.2,321.6 L206.1,320.0 L207.0,318.4 L207.9,316.8 L208.8,315.2 L209.7,313.5 L210.6,311.9
+ L211.5,310.3 L212.4,308.7 L213.3,307.1 L214.2,305.5 L215.1,303.9 L216.0,302.3 L216.9,300.7 L217.8,299.1
+ L218.7,297.5 L219.6,295.9 L220.5,294.3 L221.4,292.7 L222.3,291.0 L223.2,289.4 L224.1,287.8 L225.0,286.2
+ L225.9,284.6 L226.8,283.0 L227.7,281.4 L228.6,279.8 L229.5,278.2 L230.4,276.6 L231.3,275.0 L232.2,273.4
+ L233.1,271.8 L234.0,270.2 L234.9,268.6 L235.8,266.9 L236.7,265.3 L237.6,263.7 L238.5,262.1 L239.4,260.5
+ L240.3,258.9 L241.2,257.3 L242.1,255.7 L243.1,254.1 L244.0,252.5 L244.9,250.9 L245.8,249.3 L246.7,247.7
+ L247.6,246.1 L248.5,244.5 L249.4,242.8 L250.3,241.2 L251.2,239.6 L252.1,238.0 L253.0,236.4 L253.9,234.8
+ L254.8,233.2 L255.7,231.6 L256.6,230.0 L257.5,228.4 L258.4,226.8 L259.3,225.2 L260.2,223.6 L261.1,222.0
+ L262.0,220.4 L262.9,218.7 L263.8,217.1 L264.7,215.5 L265.6,213.9 L266.5,212.3 L267.4,210.7 L268.3,209.1
+ L269.2,207.5 L270.1,205.9 L271.0,204.3 L271.9,202.7 L272.8,201.1 L273.7,199.5 L274.6,197.9 L275.5,196.3
+ L276.4,194.6 L277.3,193.0 L278.2,191.4 L279.1,189.8 L280.0,188.2 L280.9,186.6 L281.8,185.0 L282.7,183.4
+ L283.6,181.8 L284.5,180.2 L285.5,178.6 L286.4,177.0 L287.3,175.4 L288.2,173.8 L289.1,172.2 L290.0,170.5
+ L290.9,168.9 L291.8,167.3 L292.7,165.7 L293.6,164.1 L294.5,162.5 L295.4,160.9 L296.3,159.3 L297.2,157.7
+ L298.1,156.1 L299.0,154.5 L299.9,152.9 L300.8,151.3 L301.7,149.7 L302.6,148.0 L303.5,146.4 L304.4,144.8
+ L305.3,143.2 L306.2,141.6 L307.1,140.0 L308.0,138.4 L308.9,136.8 L309.8,135.2 L310.7,133.6 L311.6,132.0
+ L312.5,130.4 L313.4,128.8 L314.3,127.2 L315.2,125.6 L316.1,123.9 L317.0,122.3 L317.9,120.7 L318.8,119.1
+ L319.7,117.5 L320.6,115.9 L321.5,114.3 L322.4,112.7 L323.3,111.1 L324.2,109.5 L325.1,107.9 L326.0,106.3
+ L327.0,104.7 L327.9,106.3 L328.8,107.9 L329.7,109.5 L330.6,111.1 L331.5,112.7 L332.4,114.3 L333.3,115.9
+ L334.2,117.5 L335.1,119.1 L336.0,120.7 L336.9,122.3 L337.8,123.9 L338.7,125.6 L339.6,127.2 L340.5,128.8
+ L341.4,130.4 L342.3,132.0 L343.2,133.6 L344.1,135.2 L345.0,136.8 L345.9,138.4 L346.8,140.0 L347.7,141.6
+ L348.6,143.2 L349.5,144.8 L350.4,146.4 L351.3,148.0 L352.2,149.7 L353.1,151.3 L354.0,152.9 L354.9,154.5
+ L355.8,156.1 L356.7,157.7 L357.6,159.3 L358.5,160.9 L359.4,162.5 L360.3,164.1 L361.2,165.7 L362.1,167.3
+ L363.0,168.9 L363.9,170.5 L364.8,172.2 L365.7,173.8 L366.6,175.4 L367.5,177.0 L368.4,178.6 L369.4,180.2
+ L370.3,181.8 L371.2,183.4 L372.1,185.0 L373.0,186.6 L373.9,188.2 L374.8,189.8 L375.7,191.4 L376.6,193.0
+ L377.5,194.6 L378.4,196.3 L379.3,197.9 L380.2,199.5 L381.1,201.1 L382.0,202.7 L382.9,204.3 L383.8,205.9
+ L384.7,207.5 L385.6,209.1 L386.5,210.7 L387.4,212.3 L388.3,213.9 L389.2,215.5 L390.1,217.1 L391.0,218.7
+ L391.9,220.4 L392.8,222.0 L393.7,223.6 L394.6,225.2 L395.5,226.8 L396.4,228.4 L397.3,230.0 L398.2,231.6
+ L399.1,233.2 L400.0,234.8 L400.9,236.4 L401.8,238.0 L402.7,239.6 L403.6,241.2 L404.5,242.8 L405.4,244.5
+ L406.3,246.1 L407.2,247.7 L408.1,249.3 L409.0,250.9 L409.9,252.5 L410.8,254.1 L411.8,255.7 L412.7,257.3
+ L413.6,258.9 L414.5,260.5 L415.4,262.1 L416.3,263.7 L417.2,265.3 L418.1,266.9 L419.0,268.6 L419.9,270.2
+ L420.8,271.8 L421.7,273.4 L422.6,275.0 L423.5,276.6 L424.4,278.2 L425.3,279.8 L426.2,281.4 L427.1,283.0
+ L428.0,284.6 L428.9,286.2 L429.8,287.8 L430.7,289.4 L431.6,291.0 L432.5,292.7 L433.4,294.3 L434.3,295.9
+ L435.2,297.5 L436.1,299.1 L437.0,300.7 L437.9,302.3 L438.8,303.9 L439.7,305.5 L440.6,307.1 L441.5,308.7
+ L442.4,310.3 L443.3,311.9 L444.2,313.5 L445.1,315.2 L446.0,316.8 L446.9,318.4 L447.8,320.0 L448.7,321.6
+ L449.6,323.2 L450.5,324.8 L451.4,326.4 L452.3,328.0 L453.3,329.6 L454.2,331.2 L455.1,332.8 L456.0,334.4
+ L456.9,336.0 L457.8,337.6 L458.7,339.3 L459.6,340.9 L460.5,342.5 L461.4,344.1 L462.3,345.7 L463.2,347.3
+ L464.1,348.9 L465.0,350.5 L465.9,352.1 L466.8,353.7 L467.7,355.3 L468.6,356.9 L469.5,358.5 L470.4,360.1
+ L471.3,361.7 L472.2,363.4 L473.1,365.0 L474.0,366.6 L474.9,368.2 L475.8,369.8 L476.7,371.4 L477.6,373.0
+ L478.5,374.6 L479.4,376.2 L480.3,377.8 L481.2,379.4 L482.1,381.0 L483.0,382.6 L483.9,384.2 L484.8,385.8
+ L485.7,387.5 L486.6,389.1 L487.5,390.7 L488.4,392.3 L489.3,393.9 L490.2,395.5 L491.1,397.1 L492.0,398.7
+ L492.9,400.3 L493.8,401.9 L494.7,403.5 L495.7,405.1 L496.6,406.7 L497.5,408.3 L498.4,409.9 L499.3,411.6
+ L500.2,413.2 L501.1,414.8 L502.0,416.4 L502.9,418.0 L503.8,419.6 L504.7,421.2 L505.6,422.8 L506.5,424.4
+ L507.4,426.0 L508.3,427.6 L509.2,429.2 L510.1,430.8 L511.0,432.4 L511.9,434.0 L512.8,435.7 L513.7,437.3
+ L514.6,438.9 L515.5,440.5 L516.4,442.1 L517.3,443.7 L518.2,445.3 L519.1,446.9 L520.0,448.5 L520.9,450.1
+ L521.8,451.7 L522.7,453.3 L523.6,454.9 L524.5,456.5 L525.4,458.2 L526.3,459.8 L527.2,461.4 L528.1,463.0
+ L529.0,464.6 L529.9,466.2 L530.8,467.8 L531.7,469.4 L532.6,471.0 L533.5,472.6 L534.4,474.2 L535.3,475.8
+ L536.2,477.4 L537.2,479.0 L538.1,480.6 L539.0,482.3 L539.9,483.9 L540.8,485.5 L541.7,487.1 L542.6,488.7
+ L543.5,490.3 L544.4,491.9 L545.3,493.5 L546.2,495.1 L547.1,496.7 L548.0,498.3 L548.9,499.9 L549.8,501.5
+ L550.7,503.1 L551.6,504.7 L552.5,506.4 L553.4,508.0 L554.3,509.6 L555.2,511.2 L556.1,512.8 L557.0,514.4
+ L557.9,516.0 L557.0,516.0 L556.1,516.0 L555.2,516.0 L554.3,516.0 L553.4,516.0 L552.5,516.0 L551.6,516.0
+ L550.7,516.0 L549.8,516.0 L548.9,516.0 L548.0,516.0 L547.1,516.0 L546.2,516.0 L545.3,516.0 L544.4,516.0
+ L543.5,516.0 L542.6,516.0 L541.7,516.0 L540.8,516.0 L539.9,516.0 L539.0,516.0 L538.1,516.0 L537.2,516.0
+ L536.2,516.0 L535.3,516.0 L534.4,516.0 L533.5,516.0 L532.6,516.0 L531.7,516.0 L530.8,516.0 L529.9,516.0
+ L529.0,516.0 L528.1,516.0 L527.2,516.0 L526.3,516.0 L525.4,516.0 L524.5,516.0 L523.6,516.0 L522.7,516.0
+ L521.8,516.0 L520.9,516.0 L520.0,516.0 L519.1,516.0 L518.2,516.0 L517.3,516.0 L516.4,516.0 L515.5,516.0
+ L514.6,516.0 L513.7,516.0 L512.8,516.0 L511.9,516.0 L511.0,516.0 L510.1,516.0 L509.2,516.0 L508.3,516.0
+ L507.4,516.0 L506.5,516.0 L505.6,516.0 L504.7,516.0 L503.8,516.0 L502.9,516.0 L502.0,516.0 L501.1,516.0
+ L500.2,516.0 L499.3,516.0 L498.4,516.0 L497.5,516.0 L496.6,516.0 L495.7,516.0 L494.7,516.0 L493.8,516.0
+ L492.9,516.0 L492.0,516.0 L491.1,516.0 L490.2,516.0 L489.3,516.0 L488.4,516.0 L487.5,516.0 L486.6,516.0
+ L485.7,516.0 L484.8,516.0 L483.9,516.0 L483.0,516.0 L482.1,516.0 L481.2,516.0 L480.3,516.0 L479.4,516.0
+ L478.5,516.0 L477.6,516.0 L476.7,516.0 L475.8,516.0 L474.9,516.0 L474.0,516.0 L473.1,516.0 L472.2,516.0
+ L471.3,516.0 L470.4,516.0 L469.5,516.0 L468.6,516.0 L467.7,516.0 L466.8,516.0 L465.9,516.0 L465.0,516.0
+ L464.1,516.0 L463.2,516.0 L462.3,516.0 L461.4,516.0 L460.5,516.0 L459.6,516.0 L458.7,516.0 L457.8,516.0
+ L456.9,516.0 L456.0,516.0 L455.1,516.0 L454.2,516.0 L453.3,516.0 L452.3,516.0 L451.4,516.0 L450.5,516.0
+ L449.6,516.0 L448.7,516.0 L447.8,516.0 L446.9,516.0 L446.0,516.0 L445.1,516.0 L444.2,516.0 L443.3,516.0
+ L442.4,516.0 L441.5,516.0 L440.6,516.0 L439.7,516.0 L438.8,516.0 L437.9,516.0 L437.0,516.0 L436.1,516.0
+ L435.2,516.0 L434.3,516.0 L433.4,516.0 L432.5,516.0 L431.6,516.0 L430.7,516.0 L429.8,516.0 L428.9,516.0
+ L428.0,516.0 L427.1,516.0 L426.2,516.0 L425.3,516.0 L424.4,516.0 L423.5,516.0 L422.6,516.0 L421.7,516.0
+ L420.8,516.0 L419.9,516.0 L419.0,516.0 L418.1,516.0 L417.2,516.0 L416.3,516.0 L415.4,516.0 L414.5,516.0
+ L413.6,516.0 L412.7,516.0 L411.8,516.0 L410.8,516.0 L409.9,516.0 L409.0,516.0 L408.1,516.0 L407.2,516.0
+ L406.3,516.0 L405.4,516.0 L404.5,516.0 L403.6,516.0 L402.7,516.0 L401.8,516.0 L400.9,516.0 L400.0,516.0
+ L399.1,516.0 L398.2,516.0 L397.3,516.0 L396.4,516.0 L395.5,516.0 L394.6,516.0 L393.7,516.0 L392.8,516.0
+ L391.9,516.0 L391.0,516.0 L390.1,516.0 L389.2,516.0 L388.3,516.0 L387.4,516.0 L386.5,516.0 L385.6,516.0
+ L384.7,516.0 L383.8,516.0 L382.9,516.0 L382.0,516.0 L381.1,516.0 L380.2,516.0 L379.3,516.0 L378.4,516.0
+ L377.5,516.0 L376.6,516.0 L375.7,516.0 L374.8,516.0 L373.9,516.0 L373.0,516.0 L372.1,516.0 L371.2,516.0
+ L370.3,516.0 L369.4,516.0 L368.4,516.0 L367.5,516.0 L366.6,516.0 L365.7,516.0 L364.8,516.0 L363.9,516.0
+ L363.0,516.0 L362.1,516.0 L361.2,516.0 L360.3,516.0 L359.4,516.0 L358.5,516.0 L357.6,516.0 L356.7,516.0
+ L355.8,516.0 L354.9,516.0 L354.0,516.0 L353.1,516.0 L352.2,516.0 L351.3,516.0 L350.4,516.0 L349.5,516.0
+ L348.6,516.0 L347.7,516.0 L346.8,516.0 L345.9,516.0 L345.0,516.0 L344.1,516.0 L343.2,516.0 L342.3,516.0
+ L341.4,516.0 L340.5,516.0 L339.6,516.0 L338.7,516.0 L337.8,516.0 L336.9,516.0 L336.0,516.0 L335.1,516.0
+ L334.2,516.0 L333.3,516.0 L332.4,516.0 L331.5,516.0 L330.6,516.0 L329.7,516.0 L328.8,516.0 L327.9,516.0
+ L327.0,516.0 L326.0,516.0 L325.1,516.0 L324.2,516.0 L323.3,516.0 L322.4,516.0 L321.5,516.0 L320.6,516.0
+ L319.7,516.0 L318.8,516.0 L317.9,516.0 L317.0,516.0 L316.1,516.0 L315.2,516.0 L314.3,516.0 L313.4,516.0
+ L312.5,516.0 L311.6,516.0 L310.7,516.0 L309.8,516.0 L308.9,516.0 L308.0,516.0 L307.1,516.0 L306.2,516.0
+ L305.3,516.0 L304.4,516.0 L303.5,516.0 L302.6,516.0 L301.7,516.0 L300.8,516.0 L299.9,516.0 L299.0,516.0
+ L298.1,516.0 L297.2,516.0 L296.3,516.0 L295.4,516.0 L294.5,516.0 L293.6,516.0 L292.7,516.0 L291.8,516.0
+ L290.9,516.0 L290.0,516.0 L289.1,516.0 L288.2,516.0 L287.3,516.0 L286.4,516.0 L285.5,516.0 L284.5,516.0
+ L283.6,516.0 L282.7,516.0 L281.8,516.0 L280.9,516.0 L280.0,516.0 L279.1,516.0 L278.2,516.0 L277.3,516.0
+ L276.4,516.0 L275.5,516.0 L274.6,516.0 L273.7,516.0 L272.8,516.0 L271.9,516.0 L271.0,516.0 L270.1,516.0
+ L269.2,516.0 L268.3,516.0 L267.4,516.0 L266.5,516.0 L265.6,516.0 L264.7,516.0 L263.8,516.0 L262.9,516.0
+ L262.0,516.0 L261.1,516.0 L260.2,516.0 L259.3,516.0 L258.4,516.0 L257.5,516.0 L256.6,516.0 L255.7,516.0
+ L254.8,516.0 L253.9,516.0 L253.0,516.0 L252.1,516.0 L251.2,516.0 L250.3,516.0 L249.4,516.0 L248.5,516.0
+ L247.6,516.0 L246.7,516.0 L245.8,516.0 L244.9,516.0 L244.0,516.0 L243.1,516.0 L242.1,516.0 L241.2,516.0
+ L240.3,516.0 L239.4,516.0 L238.5,516.0 L237.6,516.0 L236.7,516.0 L235.8,516.0 L234.9,516.0 L234.0,516.0
+ L233.1,516.0 L232.2,516.0 L231.3,516.0 L230.4,516.0 L229.5,516.0 L228.6,516.0 L227.7,516.0 L226.8,516.0
+ L225.9,516.0 L225.0,516.0 L224.1,516.0 L223.2,516.0 L222.3,516.0 L221.4,516.0 L220.5,516.0 L219.6,516.0
+ L218.7,516.0 L217.8,516.0 L216.9,516.0 L216.0,516.0 L215.1,516.0 L214.2,516.0 L213.3,516.0 L212.4,516.0
+ L211.5,516.0 L210.6,516.0 L209.7,516.0 L208.8,516.0 L207.9,516.0 L207.0,516.0 L206.1,516.0 L205.2,516.0
+ L204.3,516.0 L203.4,516.0 L202.5,516.0 L201.6,516.0 L200.6,516.0 L199.7,516.0 L198.8,516.0 L197.9,516.0
+ L197.0,516.0 L196.1,516.0 L195.2,516.0 L194.3,516.0 L193.4,516.0 L192.5,516.0 L191.6,516.0 L190.7,516.0
+ L189.8,516.0 L188.9,516.0 L188.0,516.0 L187.1,516.0 L186.2,516.0 L185.3,516.0 L184.4,516.0 L183.5,516.0
+ L182.6,516.0 L181.7,516.0 L180.8,516.0 L179.9,516.0 L179.0,516.0 L178.1,516.0 L177.2,516.0 L176.3,516.0
+ L175.4,516.0 L174.5,516.0 L173.6,516.0 L172.7,516.0 L171.8,516.0 L170.9,516.0 L170.0,516.0 L169.1,516.0
+ L168.2,516.0 L167.3,516.0 L166.4,516.0 L165.5,516.0 L164.6,516.0 L163.7,516.0 L162.8,516.0 L161.9,516.0
+ L161.0,516.0 L160.1,516.0 L159.2,516.0 L158.2,516.0 L157.3,516.0 L156.4,516.0 L155.5,516.0 L154.6,516.0
+ L153.7,516.0 L152.8,516.0 L151.9,516.0 L151.0,516.0 L150.1,516.0 L149.2,516.0 L148.3,516.0 L147.4,516.0
+ L146.5,516.0 L145.6,516.0 L144.7,516.0 L143.8,516.0 L142.9,516.0 L142.0,516.0 L141.1,516.0 L140.2,516.0
+ L139.3,516.0 L138.4,516.0 L137.5,516.0 L136.6,516.0 L135.7,516.0 L134.8,516.0 L133.9,516.0 L133.0,516.0
+ L132.1,516.0 L131.2,516.0 L130.3,516.0 L129.4,516.0 L128.5,516.0 L127.6,516.0 L126.7,516.0 L125.8,516.0
+ L124.9,516.0 L124.0,516.0 L123.1,516.0 L122.2,516.0 L121.3,516.0 L120.4,516.0 L119.5,516.0 L118.6,516.0
+ L117.7,516.0 L116.7,516.0 L115.8,516.0 L114.9,516.0 L114.0,516.0 L113.1,516.0 L112.2,516.0 L111.3,516.0
+ L110.4,516.0 L109.5,516.0 L108.6,516.0 L107.7,516.0 L106.8,516.0 L105.9,516.0 L105.0,516.0 L104.1,516.0
+ L103.2,516.0 L102.3,516.0 L101.4,516.0 L100.5,516.0 L99.6,516.0 L98.7,516.0 L97.8,516.0 L96.9,516.0
+ L96.0,516.0 '/></g>
+ </g>
+<g fill="none" color="#FFFFFF" stroke="rgb( 0, 0, 0)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="black" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 38, 38, 38)' d='M96.0,516.0 L557.9,516.0 M96.0,84.1 L557.9,84.1 M96.0,516.0 L96.0,84.1 M557.9,516.0 L557.9,84.1
+ '/></g>
+<g fill="none" color="black" stroke="rgb( 38, 38, 38)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g stroke='none' shape-rendering='crispEdges'>
+ <polygon fill = 'rgb(255, 255, 255)' points = '714.0,516.0 1175.8,516.0 1175.8,84.2 714.0,84.2 '/>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,516.0 L1175.9,516.0 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,516.0 L729.6,516.0 M1175.9,516.0 L1160.3,516.0 '/> <g transform="translate(703.5,522.5)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-130</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,484.2 L1175.9,484.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,484.2 L729.6,484.2 M1175.9,484.2 L1160.3,484.2 '/> <g transform="translate(703.5,490.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-120</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,452.5 L1175.9,452.5 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,452.5 L729.6,452.5 M1175.9,452.5 L1160.3,452.5 '/> <g transform="translate(703.5,459.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-110</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,420.7 L1175.9,420.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,420.7 L729.6,420.7 M1175.9,420.7 L1160.3,420.7 '/> <g transform="translate(703.5,427.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-100</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,389.0 L1175.9,389.0 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,389.0 L729.6,389.0 M1175.9,389.0 L1160.3,389.0 '/> <g transform="translate(703.5,395.5)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-90</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,357.2 L1175.9,357.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,357.2 L729.6,357.2 M1175.9,357.2 L1160.3,357.2 '/> <g transform="translate(703.5,363.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-80</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,325.5 L1175.9,325.5 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,325.5 L729.6,325.5 M1175.9,325.5 L1160.3,325.5 '/> <g transform="translate(703.5,332.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-70</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,293.7 L1175.9,293.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,293.7 L729.6,293.7 M1175.9,293.7 L1160.3,293.7 '/> <g transform="translate(703.5,300.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-60</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,261.9 L1175.9,261.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,261.9 L729.6,261.9 M1175.9,261.9 L1160.3,261.9 '/> <g transform="translate(703.5,268.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-50</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,230.2 L1175.9,230.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,230.2 L729.6,230.2 M1175.9,230.2 L1160.3,230.2 '/> <g transform="translate(703.5,236.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-40</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,198.4 L1175.9,198.4 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,198.4 L729.6,198.4 M1175.9,198.4 L1160.3,198.4 '/> <g transform="translate(703.5,204.9)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-30</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,166.7 L1175.9,166.7 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,166.7 L729.6,166.7 M1175.9,166.7 L1160.3,166.7 '/> <g transform="translate(703.5,173.2)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-20</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,134.9 L1175.9,134.9 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,134.9 L729.6,134.9 M1175.9,134.9 L1160.3,134.9 '/> <g transform="translate(703.5,141.4)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-10</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,103.2 L1175.9,103.2 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,103.2 L729.6,103.2 M1175.9,103.2 L1160.3,103.2 '/> <g transform="translate(703.5,109.7)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="end">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M714.0,516.0 L714.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,516.0 L714.0,500.4 M714.0,84.1 L714.0,99.7 '/> <g transform="translate(714.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-40</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M829.5,516.0 L829.5,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M829.5,516.0 L829.5,500.4 M829.5,84.1 L829.5,99.7 '/> <g transform="translate(829.5,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >-20</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M945.0,516.0 L945.0,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M945.0,516.0 L945.0,500.4 M945.0,84.1 L945.0,99.7 '/> <g transform="translate(945.0,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >0</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M1060.4,516.0 L1060.4,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M1060.4,516.0 L1060.4,500.4 M1060.4,84.1 L1060.4,99.7 '/> <g transform="translate(1060.4,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >20</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' opacity='0.25' class="gridline" d='M1175.9,516.0 L1175.9,84.1 '/></g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M1175.9,516.0 L1175.9,500.4 M1175.9,84.1 L1175.9,99.7 '/> <g transform="translate(1175.9,545.0)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="20.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >40</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(648.1,300.1) rotate(-90)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >decibels</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(944.9,581.3)" stroke="none" fill="rgb(38,38,38)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >bins</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(944.9,39.9)" stroke="none" fill="rgb(0,0,0)" font-family="Microsoft Sans Serif:Bold" font-size="28.00" text-anchor="middle">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >Fourier transform</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+ <g id="gnuplot_plot_1b" ><title>gnuplot_plot_1b</title>
+<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb(222, 125, 0)' d='M714.0,516.0 M714.2,516.0 L714.2,497.8 M714.4,516.0 L714.4,459.6 M714.5,516.0 L714.5,437.3 M714.7,516.0
+ L714.7,421.6 M714.9,516.0 L714.9,409.4 M715.1,516.0 L715.1,399.6 M715.3,516.0 L715.3,391.3 M715.4,516.0
+ L715.4,384.2 M715.6,516.0 L715.6,378.1 M715.8,516.0 L715.8,372.6 M716.0,516.0 L716.0,367.8 M716.2,516.0
+ L716.2,363.5 M716.3,516.0 L716.3,359.6 M716.5,516.0 L716.5,356.1 M716.7,516.0 L716.7,352.9 M716.9,516.0
+ L716.9,350.0 M717.1,516.0 L717.1,347.4 M717.2,516.0 L717.2,345.0 M717.4,516.0 L717.4,342.8 M717.6,516.0
+ L717.6,340.9 M717.8,516.0 L717.8,339.1 M718.0,516.0 L718.0,337.6 M718.1,516.0 L718.1,336.1 M718.3,516.0
+ L718.3,334.9 M718.5,516.0 L718.5,333.8 M718.7,516.0 L718.7,332.9 M718.9,516.0 L718.9,332.1 M719.1,516.0
+ L719.1,331.4 M719.2,516.0 L719.2,330.9 M719.4,516.0 L719.4,330.5 M719.6,516.0 L719.6,330.3 M719.8,516.0
+ L719.8,330.2 M720.0,516.0 L720.0,330.2 M720.1,516.0 L720.1,330.4 M720.3,516.0 L720.3,330.6 M720.5,516.0
+ L720.5,331.1 M720.7,516.0 L720.7,331.6 M720.9,516.0 L720.9,332.3 M721.0,516.0 L721.0,333.2 M721.2,516.0
+ L721.2,334.2 M721.4,516.0 L721.4,335.3 M721.6,516.0 L721.6,336.7 M721.8,516.0 L721.8,338.2 M721.9,516.0
+ L721.9,339.8 M722.1,516.0 L722.1,341.7 M722.3,516.0 L722.3,343.8 M722.5,516.0 L722.5,346.1 M722.7,516.0
+ L722.7,348.6 M722.8,516.0 L722.8,351.4 M723.0,516.0 L723.0,354.5 M723.2,516.0 L723.2,357.9 M723.4,516.0
+ L723.4,361.7 M723.6,516.0 L723.6,365.9 M723.7,516.0 L723.7,370.7 M723.9,516.0 L723.9,376.0 M724.1,516.0
+ L724.1,382.1 M724.3,516.0 L724.3,389.1 M724.5,516.0 L724.5,397.3 M724.6,516.0 L724.6,407.0 M724.8,516.0
+ L724.8,419.1 M725.0,516.0 L725.0,434.8 M725.2,516.0 L725.2,457.0 M725.4,516.0 L725.4,495.1 M725.5,516.0
+ M725.7,516.0 L725.7,495.0 M725.9,516.0 L725.9,456.8 M726.1,516.0 L726.1,434.5 M726.3,516.0 L726.3,418.7
+ M726.4,516.0 L726.4,406.6 M726.6,516.0 L726.6,396.7 M726.8,516.0 L726.8,388.5 M727.0,516.0 L727.0,381.4
+ M727.2,516.0 L727.2,375.2 M727.4,516.0 L727.4,369.8 M727.5,516.0 L727.5,365.0 M727.7,516.0 L727.7,360.6
+ M727.9,516.0 L727.9,356.7 M728.1,516.0 L728.1,353.2 M728.3,516.0 L728.3,350.0 M728.4,516.0 L728.4,347.1
+ M728.6,516.0 L728.6,344.5 M728.8,516.0 L728.8,342.1 M729.0,516.0 L729.0,340.0 M729.2,516.0 L729.2,338.0
+ M729.3,516.0 L729.3,336.3 M729.5,516.0 L729.5,334.7 M729.7,516.0 L729.7,333.3 M729.9,516.0 L729.9,332.0
+ M730.1,516.0 L730.1,330.9 M730.2,516.0 L730.2,330.0 M730.4,516.0 L730.4,329.2 M730.6,516.0 L730.6,328.5
+ M730.8,516.0 L730.8,328.0 M731.0,516.0 L731.0,327.6 M731.1,516.0 L731.1,327.4 M731.3,516.0 L731.3,327.3
+ M731.5,516.0 L731.5,327.3 M731.7,516.0 L731.7,327.4 M731.9,516.0 L731.9,327.7 M732.0,516.0 L732.0,328.2
+ M732.2,516.0 L732.2,328.7 M732.4,516.0 L732.4,329.4 M732.6,516.0 L732.6,330.3 M732.8,516.0 L732.8,331.3
+ M732.9,516.0 L732.9,332.4 M733.1,516.0 L733.1,333.7 M733.3,516.0 L733.3,335.2 M733.5,516.0 L733.5,336.9
+ M733.7,516.0 L733.7,338.8 M733.8,516.0 L733.8,340.8 M734.0,516.0 L734.0,343.1 M734.2,516.0 L734.2,345.6
+ M734.4,516.0 L734.4,348.4 M734.6,516.0 L734.6,351.5 M734.7,516.0 L734.7,355.0 M734.9,516.0 L734.9,358.8
+ M735.1,516.0 L735.1,363.0 M735.3,516.0 L735.3,367.7 M735.5,516.0 L735.5,373.1 M735.7,516.0 L735.7,379.1
+ M735.8,516.0 L735.8,386.1 M736.0,516.0 L736.0,394.3 M736.2,516.0 L736.2,404.1 M736.4,516.0 L736.4,416.1
+ M736.6,516.0 L736.6,431.8 M736.7,516.0 L736.7,454.0 M736.9,516.0 L736.9,492.1 M737.1,516.0 M737.3,516.0
+ L737.3,492.0 M737.5,516.0 L737.5,453.8 M737.6,516.0 L737.6,431.5 M737.8,516.0 L737.8,415.7 M738.0,516.0
+ L738.0,403.6 M738.2,516.0 L738.2,393.7 M738.4,516.0 L738.4,385.5 M738.5,516.0 L738.5,378.4 M738.7,516.0
+ L738.7,372.2 M738.9,516.0 L738.9,366.8 M739.1,516.0 L739.1,361.9 M739.3,516.0 L739.3,357.6 M739.4,516.0
+ L739.4,353.7 M739.6,516.0 L739.6,350.2 M739.8,516.0 L739.8,347.0 M740.0,516.0 L740.0,344.1 M740.2,516.0
+ L740.2,341.5 M740.3,516.0 L740.3,339.1 M740.5,516.0 L740.5,336.9 M740.7,516.0 L740.7,335.0 M740.9,516.0
+ L740.9,333.2 M741.1,516.0 L741.1,331.6 M741.2,516.0 L741.2,330.2 M741.4,516.0 L741.4,329.0 M741.6,516.0
+ L741.6,327.9 M741.8,516.0 L741.8,326.9 M742.0,516.0 L742.0,326.1 M742.1,516.0 L742.1,325.5 M742.3,516.0
+ L742.3,325.0 M742.5,516.0 L742.5,324.6 M742.7,516.0 L742.7,324.3 M742.9,516.0 L742.9,324.2 M743.0,516.0
+ L743.0,324.2 M743.2,516.0 L743.2,324.4 M743.4,516.0 L743.4,324.7 M743.6,516.0 L743.6,325.1 M743.8,516.0
+ L743.8,325.6 M744.0,516.0 L744.0,326.3 M744.1,516.0 L744.1,327.2 M744.3,516.0 L744.3,328.2 M744.5,516.0
+ L744.5,329.3 M744.7,516.0 L744.7,330.6 M744.9,516.0 L744.9,332.1 M745.0,516.0 L745.0,333.8 M745.2,516.0
+ L745.2,335.7 M745.4,516.0 L745.4,337.7 M745.6,516.0 L745.6,340.0 M745.8,516.0 L745.8,342.5 M745.9,516.0
+ L745.9,345.3 M746.1,516.0 L746.1,348.4 M746.3,516.0 L746.3,351.8 M746.5,516.0 L746.5,355.6 M746.7,516.0
+ L746.7,359.9 M746.8,516.0 L746.8,364.6 M747.0,516.0 L747.0,369.9 M747.2,516.0 L747.2,376.0 M747.4,516.0
+ L747.4,383.0 M747.6,516.0 L747.6,391.2 M747.7,516.0 L747.7,400.9 M747.9,516.0 L747.9,413.0 M748.1,516.0
+ L748.1,428.6 M748.3,516.0 L748.3,450.8 M748.5,516.0 L748.5,489.0 M748.6,516.0 M748.8,516.0 L748.8,488.9
+ M749.0,516.0 L749.0,450.6 M749.2,516.0 L749.2,428.3 M749.4,516.0 L749.4,412.6 M749.5,516.0 L749.5,400.4
+ M749.7,516.0 L749.7,390.5 M749.9,516.0 L749.9,382.3 M750.1,516.0 L750.1,375.2 M750.3,516.0 L750.3,369.0
+ M750.4,516.0 L750.4,363.6 M750.6,516.0 L750.6,358.8 M750.8,516.0 L750.8,354.4 M751.0,516.0 L751.0,350.5
+ M751.2,516.0 L751.2,347.0 M751.3,516.0 L751.3,343.8 M751.5,516.0 L751.5,340.9 M751.7,516.0 L751.7,338.3
+ M751.9,516.0 L751.9,335.9 M752.1,516.0 L752.1,333.7 M752.3,516.0 L752.3,331.8 M752.4,516.0 L752.4,330.0
+ M752.6,516.0 L752.6,328.4 M752.8,516.0 L752.8,327.0 M753.0,516.0 L753.0,325.7 M753.2,516.0 L753.2,324.7
+ M753.3,516.0 L753.3,323.7 M753.5,516.0 L753.5,322.9 M753.7,516.0 L753.7,322.2 M753.9,516.0 L753.9,321.7
+ M754.1,516.0 L754.1,321.3 M754.2,516.0 L754.2,321.1 M754.4,516.0 L754.4,321.0 M754.6,516.0 L754.6,321.0
+ M754.8,516.0 L754.8,321.1 M755.0,516.0 L755.0,321.4 M755.1,516.0 L755.1,321.8 M755.3,516.0 L755.3,322.4
+ M755.5,516.0 L755.5,323.1 M755.7,516.0 L755.7,323.9 M755.9,516.0 L755.9,324.9 M756.0,516.0 L756.0,326.1
+ M756.2,516.0 L756.2,327.4 M756.4,516.0 L756.4,328.9 M756.6,516.0 L756.6,330.5 M756.8,516.0 L756.8,332.4
+ M756.9,516.0 L756.9,334.4 M757.1,516.0 L757.1,336.7 M757.3,516.0 L757.3,339.2 M757.5,516.0 L757.5,342.0
+ M757.7,516.0 L757.7,345.1 M757.8,516.0 L757.8,348.5 M758.0,516.0 L758.0,352.3 M758.2,516.0 L758.2,356.6
+ M758.4,516.0 L758.4,361.3 M758.6,516.0 L758.6,366.6 M758.7,516.0 L758.7,372.7 M758.9,516.0 L758.9,379.7
+ M759.1,516.0 L759.1,387.8 M759.3,516.0 L759.3,397.6 M759.5,516.0 L759.5,409.6 M759.6,516.0 L759.6,425.3
+ M759.8,516.0 L759.8,447.5 M760.0,516.0 L760.0,485.6 M760.2,516.0 M760.4,516.0 L760.4,485.5 M760.6,516.0
+ L760.6,447.3 '/> <path stroke='rgb(222, 125, 0)' d='M760.7,516.0 L760.7,425.0 M760.9,516.0 L760.9,409.2 M761.1,516.0 L761.1,397.0 M761.3,516.0 L761.3,387.2
+ M761.5,516.0 L761.5,378.9 M761.6,516.0 L761.6,371.8 M761.8,516.0 L761.8,365.7 M762.0,516.0 L762.0,360.2
+ M762.2,516.0 L762.2,355.4 M762.4,516.0 L762.4,351.0 M762.5,516.0 L762.5,347.1 M762.7,516.0 L762.7,343.6
+ M762.9,516.0 L762.9,340.4 M763.1,516.0 L763.1,337.5 M763.3,516.0 L763.3,334.9 M763.4,516.0 L763.4,332.5
+ M763.6,516.0 L763.6,330.3 M763.8,516.0 L763.8,328.4 M764.0,516.0 L764.0,326.6 M764.2,516.0 L764.2,325.0
+ M764.3,516.0 L764.3,323.6 M764.5,516.0 L764.5,322.3 M764.7,516.0 L764.7,321.2 M764.9,516.0 L764.9,320.3
+ M765.1,516.0 L765.1,319.5 M765.2,516.0 L765.2,318.8 M765.4,516.0 L765.4,318.3 M765.6,516.0 L765.6,317.9
+ M765.8,516.0 L765.8,317.6 M766.0,516.0 L766.0,317.5 M766.1,516.0 L766.1,317.5 M766.3,516.0 L766.3,317.7
+ M766.5,516.0 L766.5,317.9 M766.7,516.0 L766.7,318.4 M766.9,516.0 L766.9,318.9 M767.0,516.0 L767.0,319.6
+ M767.2,516.0 L767.2,320.4 M767.4,516.0 L767.4,321.4 M767.6,516.0 L767.6,322.6 M767.8,516.0 L767.8,323.9
+ M767.9,516.0 L767.9,325.4 M768.1,516.0 L768.1,327.0 M768.3,516.0 L768.3,328.9 M768.5,516.0 L768.5,330.9
+ M768.7,516.0 L768.7,333.2 M768.9,516.0 L768.9,335.7 M769.0,516.0 L769.0,338.5 M769.2,516.0 L769.2,341.6
+ M769.4,516.0 L769.4,345.0 M769.6,516.0 L769.6,348.8 M769.8,516.0 L769.8,353.0 M769.9,516.0 L769.9,357.8
+ M770.1,516.0 L770.1,363.1 M770.3,516.0 L770.3,369.2 M770.5,516.0 L770.5,376.1 M770.7,516.0 L770.7,384.3
+ M770.8,516.0 L770.8,394.0 M771.0,516.0 L771.0,406.1 M771.2,516.0 L771.2,421.8 M771.4,516.0 L771.4,444.0
+ M771.6,516.0 L771.6,482.1 M771.7,516.0 M771.9,516.0 L771.9,481.9 M772.1,516.0 L772.1,443.7 M772.3,516.0
+ L772.3,421.4 M772.5,516.0 L772.5,405.6 M772.6,516.0 L772.6,393.5 M772.8,516.0 L772.8,383.6 M773.0,516.0
+ L773.0,375.3 M773.2,516.0 L773.2,368.2 M773.4,516.0 L773.4,362.1 M773.5,516.0 L773.5,356.6 M773.7,516.0
+ L773.7,351.8 M773.9,516.0 L773.9,347.4 M774.1,516.0 L774.1,343.5 M774.3,516.0 L774.3,340.0 M774.4,516.0
+ L774.4,336.8 M774.6,516.0 L774.6,333.9 M774.8,516.0 L774.8,331.3 M775.0,516.0 L775.0,328.9 M775.2,516.0
+ L775.2,326.7 M775.3,516.0 L775.3,324.7 M775.5,516.0 L775.5,323.0 M775.7,516.0 L775.7,321.4 M775.9,516.0
+ L775.9,319.9 M776.1,516.0 L776.1,318.7 M776.2,516.0 L776.2,317.6 M776.4,516.0 L776.4,316.6 M776.6,516.0
+ L776.6,315.8 M776.8,516.0 L776.8,315.1 M777.0,516.0 L777.0,314.6 M777.2,516.0 L777.2,314.2 M777.3,516.0
+ L777.3,314.0 M777.5,516.0 L777.5,313.8 M777.7,516.0 L777.7,313.8 M777.9,516.0 L777.9,314.0 M778.1,516.0
+ L778.1,314.3 M778.2,516.0 L778.2,314.7 M778.4,516.0 L778.4,315.2 M778.6,516.0 L778.6,315.9 M778.8,516.0
+ L778.8,316.7 M779.0,516.0 L779.0,317.7 M779.1,516.0 L779.1,318.9 M779.3,516.0 L779.3,320.2 M779.5,516.0
+ L779.5,321.6 M779.7,516.0 L779.7,323.3 M779.9,516.0 L779.9,325.1 M780.0,516.0 L780.0,327.2 M780.2,516.0
+ L780.2,329.5 M780.4,516.0 L780.4,332.0 M780.6,516.0 L780.6,334.8 M780.8,516.0 L780.8,337.9 M780.9,516.0
+ L780.9,341.3 M781.1,516.0 L781.1,345.1 M781.3,516.0 L781.3,349.3 M781.5,516.0 L781.5,354.0 M781.7,516.0
+ L781.7,359.3 M781.8,516.0 L781.8,365.4 M782.0,516.0 L782.0,372.4 M782.2,516.0 L782.2,380.5 M782.4,516.0
+ L782.4,390.3 M782.6,516.0 L782.6,402.3 M782.7,516.0 L782.7,418.0 M782.9,516.0 L782.9,440.2 M783.1,516.0
+ L783.1,478.3 M783.3,516.0 M783.5,516.0 L783.5,478.1 M783.6,516.0 L783.6,439.9 M783.8,516.0 L783.8,417.6
+ M784.0,516.0 L784.0,401.8 M784.2,516.0 L784.2,389.6 M784.4,516.0 L784.4,379.8 M784.5,516.0 L784.5,371.5
+ M784.7,516.0 L784.7,364.4 M784.9,516.0 L784.9,358.2 M785.1,516.0 L785.1,352.8 M785.3,516.0 L785.3,347.9
+ M785.5,516.0 L785.5,343.6 M785.6,516.0 L785.6,339.7 M785.8,516.0 L785.8,336.1 M786.0,516.0 L786.0,332.9
+ M786.2,516.0 L786.2,330.0 M786.4,516.0 L786.4,327.4 M786.5,516.0 L786.5,325.0 M786.7,516.0 L786.7,322.8
+ M786.9,516.0 L786.9,320.8 M787.1,516.0 L787.1,319.1 M787.3,516.0 L787.3,317.5 M787.4,516.0 L787.4,316.0
+ M787.6,516.0 L787.6,314.8 M787.8,516.0 L787.8,313.7 M788.0,516.0 L788.0,312.7 M788.2,516.0 L788.2,311.9
+ M788.3,516.0 L788.3,311.2 M788.5,516.0 L788.5,310.7 M788.7,516.0 L788.7,310.3 M788.9,516.0 L788.9,310.0
+ M789.1,516.0 L789.1,309.9 M789.2,516.0 L789.2,309.9 M789.4,516.0 L789.4,310.0 M789.6,516.0 L789.6,310.3
+ M789.8,516.0 L789.8,310.7 M790.0,516.0 L790.0,311.3 M790.1,516.0 L790.1,311.9 M790.3,516.0 L790.3,312.8
+ M790.5,516.0 L790.5,313.7 M790.7,516.0 L790.7,314.9 M790.9,516.0 L790.9,316.2 M791.0,516.0 L791.0,317.7
+ M791.2,516.0 L791.2,319.3 M791.4,516.0 L791.4,321.1 M791.6,516.0 L791.6,323.2 M791.8,516.0 L791.8,325.5
+ M791.9,516.0 L791.9,328.0 M792.1,516.0 L792.1,330.8 M792.3,516.0 L792.3,333.8 M792.5,516.0 L792.5,337.2
+ M792.7,516.0 L792.7,341.0 M792.8,516.0 L792.8,345.2 M793.0,516.0 L793.0,350.0 M793.2,516.0 L793.2,355.3
+ M793.4,516.0 L793.4,361.3 M793.6,516.0 L793.6,368.3 M793.7,516.0 L793.7,376.4 M793.9,516.0 L793.9,386.2
+ M794.1,516.0 L794.1,398.2 M794.3,516.0 L794.3,413.9 M794.5,516.0 L794.5,436.1 M794.7,516.0 L794.7,474.2
+ M794.8,516.0 M795.0,516.0 L795.0,474.0 M795.2,516.0 L795.2,435.8 M795.4,516.0 L795.4,413.5 M795.6,516.0
+ L795.6,397.7 M795.7,516.0 L795.7,385.5 M795.9,516.0 L795.9,375.6 M796.1,516.0 L796.1,367.4 M796.3,516.0
+ L796.3,360.3 M796.5,516.0 L796.5,354.1 M796.6,516.0 L796.6,348.6 M796.8,516.0 L796.8,343.8 M797.0,516.0
+ L797.0,339.4 M797.2,516.0 L797.2,335.5 M797.4,516.0 L797.4,332.0 M797.5,516.0 L797.5,328.8 M797.7,516.0
+ L797.7,325.9 M797.9,516.0 L797.9,323.2 M798.1,516.0 L798.1,320.8 M798.3,516.0 L798.3,318.6 M798.4,516.0
+ L798.4,316.7 M798.6,516.0 L798.6,314.9 M798.8,516.0 L798.8,313.3 M799.0,516.0 L799.0,311.8 M799.2,516.0
+ L799.2,310.6 M799.3,516.0 L799.3,309.5 M799.5,516.0 L799.5,308.5 M799.7,516.0 L799.7,307.7 M799.9,516.0
+ L799.9,307.0 M800.1,516.0 L800.1,306.5 M800.2,516.0 L800.2,306.1 M800.4,516.0 L800.4,305.8 M800.6,516.0
+ L800.6,305.6 M800.8,516.0 L800.8,305.6 M801.0,516.0 L801.0,305.8 M801.1,516.0 L801.1,306.0 M801.3,516.0
+ L801.3,306.4 M801.5,516.0 L801.5,307.0 M801.7,516.0 L801.7,307.7 M801.9,516.0 L801.9,308.5 M802.0,516.0
+ L802.0,309.5 M802.2,516.0 L802.2,310.6 M802.4,516.0 L802.4,311.9 M802.6,516.0 L802.6,313.3 M802.8,516.0
+ L802.8,315.0 M803.0,516.0 L803.0,316.8 M803.1,516.0 L803.1,318.9 M803.3,516.0 L803.3,321.1 M803.5,516.0
+ L803.5,323.7 M803.7,516.0 L803.7,326.4 M803.9,516.0 L803.9,329.5 M804.0,516.0 L804.0,332.9 M804.2,516.0
+ L804.2,336.7 M804.4,516.0 L804.4,340.9 M804.6,516.0 L804.6,345.6 M804.8,516.0 L804.8,350.9 M804.9,516.0
+ L804.9,357.0 M805.1,516.0 L805.1,363.9 M805.3,516.0 L805.3,372.1 M805.5,516.0 L805.5,381.8 M805.7,516.0
+ L805.7,393.8 M805.8,516.0 L805.8,409.5 M806.0,516.0 L806.0,431.7 M806.2,516.0 L806.2,469.8 M806.4,516.0
+ M806.6,516.0 L806.6,469.6 M806.7,516.0 L806.7,431.4 M806.9,516.0 L806.9,409.1 M807.1,516.0 L807.1,393.3
+ M807.3,516.0 L807.3,381.1 '/> <path stroke='rgb(222, 125, 0)' d='M807.5,516.0 L807.5,371.2 M807.6,516.0 L807.6,362.9 M807.8,516.0 L807.8,355.8 M808.0,516.0 L808.0,349.6
+ M808.2,516.0 L808.2,344.2 M808.4,516.0 L808.4,339.3 M808.5,516.0 L808.5,335.0 M808.7,516.0 L808.7,331.0
+ M808.9,516.0 L808.9,327.5 M809.1,516.0 L809.1,324.3 M809.3,516.0 L809.3,321.4 M809.4,516.0 L809.4,318.7
+ M809.6,516.0 L809.6,316.3 M809.8,516.0 L809.8,314.1 M810.0,516.0 L810.0,312.1 M810.2,516.0 L810.2,310.3
+ M810.3,516.0 L810.3,308.7 M810.5,516.0 L810.5,307.3 M810.7,516.0 L810.7,306.0 M810.9,516.0 L810.9,304.9
+ M811.1,516.0 L811.1,303.9 M811.3,516.0 L811.3,303.1 M811.4,516.0 L811.4,302.4 M811.6,516.0 L811.6,301.9
+ M811.8,516.0 L811.8,301.5 M812.0,516.0 L812.0,301.2 M812.2,516.0 L812.2,301.0 M812.3,516.0 L812.3,301.0
+ M812.5,516.0 L812.5,301.2 M812.7,516.0 L812.7,301.4 M812.9,516.0 L812.9,301.8 M813.1,516.0 L813.1,302.3
+ M813.2,516.0 L813.2,303.0 M813.4,516.0 L813.4,303.8 M813.6,516.0 L813.6,304.8 M813.8,516.0 L813.8,305.9
+ M814.0,516.0 L814.0,307.2 M814.1,516.0 L814.1,308.7 M814.3,516.0 L814.3,310.3 M814.5,516.0 L814.5,312.2
+ M814.7,516.0 L814.7,314.2 M814.9,516.0 L814.9,316.5 M815.0,516.0 L815.0,319.0 M815.2,516.0 L815.2,321.7
+ M815.4,516.0 L815.4,324.8 M815.6,516.0 L815.6,328.2 M815.8,516.0 L815.8,332.0 M815.9,516.0 L815.9,336.2
+ M816.1,516.0 L816.1,340.9 M816.3,516.0 L816.3,346.2 M816.5,516.0 L816.5,352.2 M816.7,516.0 L816.7,359.2
+ M816.8,516.0 L816.8,367.3 M817.0,516.0 L817.0,377.0 M817.2,516.0 L817.2,389.1 M817.4,516.0 L817.4,404.7
+ M817.6,516.0 L817.6,426.9 M817.7,516.0 L817.7,465.0 M817.9,516.0 M818.1,516.0 L818.1,464.8 M818.3,516.0
+ L818.3,426.6 M818.5,516.0 L818.5,404.2 M818.6,516.0 L818.6,388.4 M818.8,516.0 L818.8,376.3 M819.0,516.0
+ L819.0,366.4 M819.2,516.0 L819.2,358.1 M819.4,516.0 L819.4,351.0 M819.6,516.0 L819.6,344.8 M819.7,516.0
+ L819.7,339.3 M819.9,516.0 L819.9,334.4 M820.1,516.0 L820.1,330.1 M820.3,516.0 L820.3,326.1 M820.5,516.0
+ L820.5,322.6 M820.6,516.0 L820.6,319.4 M820.8,516.0 L820.8,316.4 M821.0,516.0 L821.0,313.8 M821.2,516.0
+ L821.2,311.4 M821.4,516.0 L821.4,309.2 M821.5,516.0 L821.5,307.2 M821.7,516.0 L821.7,305.4 M821.9,516.0
+ L821.9,303.8 M822.1,516.0 L822.1,302.3 M822.3,516.0 L822.3,301.0 M822.4,516.0 L822.4,299.9 M822.6,516.0
+ L822.6,298.9 M822.8,516.0 L822.8,298.1 M823.0,516.0 L823.0,297.4 M823.2,516.0 L823.2,296.9 M823.3,516.0
+ L823.3,296.5 M823.5,516.0 L823.5,296.2 M823.7,516.0 L823.7,296.0 M823.9,516.0 L823.9,296.0 M824.1,516.0
+ L824.1,296.1 M824.2,516.0 L824.2,296.4 M824.4,516.0 L824.4,296.8 M824.6,516.0 L824.6,297.3 M824.8,516.0
+ L824.8,298.0 M825.0,516.0 L825.0,298.8 M825.1,516.0 L825.1,299.7 M825.3,516.0 L825.3,300.9 M825.5,516.0
+ L825.5,302.1 M825.7,516.0 L825.7,303.6 M825.9,516.0 L825.9,305.2 M826.0,516.0 L826.0,307.0 M826.2,516.0
+ L826.2,309.1 M826.4,516.0 L826.4,311.3 M826.6,516.0 L826.6,313.8 M826.8,516.0 L826.8,316.6 M826.9,516.0
+ L826.9,319.6 M827.1,516.0 L827.1,323.0 M827.3,516.0 L827.3,326.8 M827.5,516.0 L827.5,331.0 M827.7,516.0
+ L827.7,335.7 M827.9,516.0 L827.9,341.0 M828.0,516.0 L828.0,347.0 M828.2,516.0 L828.2,354.0 M828.4,516.0
+ L828.4,362.1 M828.6,516.0 L828.6,371.8 M828.8,516.0 L828.8,383.8 M828.9,516.0 L828.9,399.5 M829.1,516.0
+ L829.1,421.6 M829.3,516.0 L829.3,459.7 M829.5,516.0 M829.7,516.0 L829.7,459.6 M829.8,516.0 L829.8,421.3
+ M830.0,516.0 L830.0,399.0 M830.2,516.0 L830.2,383.2 M830.4,516.0 L830.4,371.0 M830.6,516.0 L830.6,361.1
+ M830.7,516.0 L830.7,352.8 M830.9,516.0 L830.9,345.6 M831.1,516.0 L831.1,339.4 M831.3,516.0 L831.3,334.0
+ M831.5,516.0 L831.5,329.1 M831.6,516.0 L831.6,324.7 M831.8,516.0 L831.8,320.8 M832.0,516.0 L832.0,317.2
+ M832.2,516.0 L832.2,314.0 M832.4,516.0 L832.4,311.1 M832.5,516.0 L832.5,308.4 M832.7,516.0 L832.7,306.0
+ M832.9,516.0 L832.9,303.8 M833.1,516.0 L833.1,301.8 M833.3,516.0 L833.3,300.0 M833.4,516.0 L833.4,298.3
+ M833.6,516.0 L833.6,296.9 M833.8,516.0 L833.8,295.6 M834.0,516.0 L834.0,294.5 M834.2,516.0 L834.2,293.5
+ M834.3,516.0 L834.3,292.6 M834.5,516.0 L834.5,291.9 M834.7,516.0 L834.7,291.4 M834.9,516.0 L834.9,291.0
+ M835.1,516.0 L835.1,290.7 M835.2,516.0 L835.2,290.5 M835.4,516.0 L835.4,290.5 M835.6,516.0 L835.6,290.6
+ M835.8,516.0 L835.8,290.8 M836.0,516.0 L836.0,291.2 M836.2,516.0 L836.2,291.7 M836.3,516.0 L836.3,292.4
+ M836.5,516.0 L836.5,293.2 M836.7,516.0 L836.7,294.1 M836.9,516.0 L836.9,295.3 M837.1,516.0 L837.1,296.5
+ M837.2,516.0 L837.2,298.0 M837.4,516.0 L837.4,299.6 M837.6,516.0 L837.6,301.4 M837.8,516.0 L837.8,303.4
+ M838.0,516.0 L838.0,305.7 M838.1,516.0 L838.1,308.2 M838.3,516.0 L838.3,310.9 M838.5,516.0 L838.5,314.0
+ M838.7,516.0 L838.7,317.3 M838.9,516.0 L838.9,321.1 M839.0,516.0 L839.0,325.3 M839.2,516.0 L839.2,330.0
+ M839.4,516.0 L839.4,335.3 M839.6,516.0 L839.6,341.3 M839.8,516.0 L839.8,348.2 M839.9,516.0 L839.9,356.3
+ M840.1,516.0 L840.1,366.1 M840.3,516.0 L840.3,378.1 M840.5,516.0 L840.5,393.7 M840.7,516.0 L840.7,415.8
+ M840.8,516.0 L840.8,453.9 M841.0,516.0 M841.2,516.0 L841.2,453.7 M841.4,516.0 L841.4,415.5 M841.6,516.0
+ L841.6,393.1 M841.7,516.0 L841.7,377.3 M841.9,516.0 L841.9,365.1 M842.1,516.0 L842.1,355.2 M842.3,516.0
+ L842.3,346.9 M842.5,516.0 L842.5,339.7 M842.6,516.0 L842.6,333.5 M842.8,516.0 L842.8,328.0 M843.0,516.0
+ L843.0,323.2 M843.2,516.0 L843.2,318.8 M843.4,516.0 L843.4,314.8 M843.5,516.0 L843.5,311.3 M843.7,516.0
+ L843.7,308.0 M843.9,516.0 L843.9,305.1 M844.1,516.0 L844.1,302.4 M844.3,516.0 L844.3,300.0 M844.5,516.0
+ L844.5,297.8 M844.6,516.0 L844.6,295.8 M844.8,516.0 L844.8,293.9 M845.0,516.0 L845.0,292.3 M845.2,516.0
+ L845.2,290.8 M845.4,516.0 L845.4,289.5 M845.5,516.0 L845.5,288.4 M845.7,516.0 L845.7,287.4 M845.9,516.0
+ L845.9,286.6 M846.1,516.0 L846.1,285.8 M846.3,516.0 L846.3,285.3 M846.4,516.0 L846.4,284.8 M846.6,516.0
+ L846.6,284.5 M846.8,516.0 L846.8,284.4 M847.0,516.0 L847.0,284.3 M847.2,516.0 L847.2,284.4 M847.3,516.0
+ L847.3,284.7 M847.5,516.0 L847.5,285.0 M847.7,516.0 L847.7,285.5 M847.9,516.0 L847.9,286.2 M848.1,516.0
+ L848.1,287.0 M848.2,516.0 L848.2,287.9 M848.4,516.0 L848.4,289.0 M848.6,516.0 L848.6,290.3 M848.8,516.0
+ L848.8,291.7 M849.0,516.0 L849.0,293.3 M849.1,516.0 L849.1,295.1 M849.3,516.0 L849.3,297.1 M849.5,516.0
+ L849.5,299.4 M849.7,516.0 L849.7,301.8 M849.9,516.0 L849.9,304.6 M850.0,516.0 L850.0,307.6 M850.2,516.0
+ L850.2,311.0 M850.4,516.0 L850.4,314.7 M850.6,516.0 L850.6,318.9 M850.8,516.0 L850.8,323.6 M850.9,516.0
+ L850.9,328.9 M851.1,516.0 L851.1,334.9 M851.3,516.0 L851.3,341.8 M851.5,516.0 L851.5,349.9 M851.7,516.0
+ L851.7,359.6 M851.8,516.0 L851.8,371.6 M852.0,516.0 L852.0,387.2 M852.2,516.0 L852.2,409.4 M852.4,516.0
+ L852.4,447.4 M852.6,516.0 M852.8,516.0 L852.8,447.2 M852.9,516.0 L852.9,408.9 M853.1,516.0 L853.1,386.6
+ M853.3,516.0 L853.3,370.8 M853.5,516.0 L853.5,358.5 M853.7,516.0 L853.7,348.6 M853.8,516.0 L853.8,340.3
+ M854.0,516.0 L854.0,333.1 '/> <path stroke='rgb(222, 125, 0)' d='M854.2,516.0 L854.2,326.9 M854.4,516.0 L854.4,321.4 M854.6,516.0 L854.6,316.5 M854.7,516.0 L854.7,312.1
+ M854.9,516.0 L854.9,308.2 M855.1,516.0 L855.1,304.6 M855.3,516.0 L855.3,301.4 M855.5,516.0 L855.5,298.4
+ M855.6,516.0 L855.6,295.7 M855.8,516.0 L855.8,293.3 M856.0,516.0 L856.0,291.0 M856.2,516.0 L856.2,289.0
+ M856.4,516.0 L856.4,287.2 M856.5,516.0 L856.5,285.5 M856.7,516.0 L856.7,284.1 M856.9,516.0 L856.9,282.7
+ M857.1,516.0 L857.1,281.6 M857.3,516.0 L857.3,280.6 M857.4,516.0 L857.4,279.7 M857.6,516.0 L857.6,279.0
+ M857.8,516.0 L857.8,278.4 M858.0,516.0 L858.0,278.0 M858.2,516.0 L858.2,277.6 M858.3,516.0 L858.3,277.5
+ M858.5,516.0 L858.5,277.4 M858.7,516.0 L858.7,277.5 M858.9,516.0 L858.9,277.7 M859.1,516.0 L859.1,278.1
+ M859.2,516.0 L859.2,278.6 M859.4,516.0 L859.4,279.2 M859.6,516.0 L859.6,280.0 M859.8,516.0 L859.8,280.9
+ M860.0,516.0 L860.0,282.0 M860.1,516.0 L860.1,283.2 M860.3,516.0 L860.3,284.7 M860.5,516.0 L860.5,286.3
+ M860.7,516.0 L860.7,288.0 M860.9,516.0 L860.9,290.0 M861.1,516.0 L861.1,292.3 M861.2,516.0 L861.2,294.7
+ M861.4,516.0 L861.4,297.4 M861.6,516.0 L861.6,300.5 M861.8,516.0 L861.8,303.8 M862.0,516.0 L862.0,307.5
+ M862.1,516.0 L862.1,311.7 M862.3,516.0 L862.3,316.4 M862.5,516.0 L862.5,321.6 M862.7,516.0 L862.7,327.6
+ M862.9,516.0 L862.9,334.5 M863.0,516.0 L863.0,342.6 M863.2,516.0 L863.2,352.3 M863.4,516.0 L863.4,364.3
+ M863.6,516.0 L863.6,379.9 M863.8,516.0 L863.8,402.0 M863.9,516.0 L863.9,440.1 M864.1,516.0 M864.3,516.0
+ L864.3,439.8 M864.5,516.0 L864.5,401.5 M864.7,516.0 L864.7,379.2 M864.8,516.0 L864.8,363.3 M865.0,516.0
+ L865.0,351.1 M865.2,516.0 L865.2,341.2 M865.4,516.0 L865.4,332.8 M865.6,516.0 L865.6,325.7 M865.7,516.0
+ L865.7,319.4 M865.9,516.0 L865.9,313.9 M866.1,516.0 L866.1,309.0 M866.3,516.0 L866.3,304.6 M866.5,516.0
+ L866.5,300.6 M866.6,516.0 L866.6,297.0 M866.8,516.0 L866.8,293.7 M867.0,516.0 L867.0,290.8 M867.2,516.0
+ L867.2,288.1 M867.4,516.0 L867.4,285.6 M867.5,516.0 L867.5,283.4 M867.7,516.0 L867.7,281.3 M867.9,516.0
+ L867.9,279.5 M868.1,516.0 L868.1,277.8 M868.3,516.0 L868.3,276.3 M868.4,516.0 L868.4,275.0 M868.6,516.0
+ L868.6,273.8 M868.8,516.0 L868.8,272.8 M869.0,516.0 L869.0,271.9 M869.2,516.0 L869.2,271.2 M869.3,516.0
+ L869.3,270.6 M869.5,516.0 L869.5,270.1 M869.7,516.0 L869.7,269.8 M869.9,516.0 L869.9,269.6 M870.1,516.0
+ L870.1,269.5 M870.3,516.0 L870.3,269.6 M870.4,516.0 L870.4,269.8 M870.6,516.0 L870.6,270.1 M870.8,516.0
+ L870.8,270.6 M871.0,516.0 L871.0,271.2 M871.2,516.0 L871.2,272.0 M871.3,516.0 L871.3,272.9 M871.5,516.0
+ L871.5,273.9 M871.7,516.0 L871.7,275.2 M871.9,516.0 L871.9,276.6 M872.1,516.0 L872.1,278.1 M872.2,516.0
+ L872.2,279.9 M872.4,516.0 L872.4,281.9 M872.6,516.0 L872.6,284.1 M872.8,516.0 L872.8,286.5 M873.0,516.0
+ L873.0,289.2 M873.1,516.0 L873.1,292.2 M873.3,516.0 L873.3,295.6 M873.5,516.0 L873.5,299.3 M873.7,516.0
+ L873.7,303.4 M873.9,516.0 L873.9,308.1 M874.0,516.0 L874.0,313.3 M874.2,516.0 L874.2,319.3 M874.4,516.0
+ L874.4,326.2 M874.6,516.0 L874.6,334.2 M874.8,516.0 L874.8,343.9 M874.9,516.0 L874.9,355.9 M875.1,516.0
+ L875.1,371.5 M875.3,516.0 L875.3,393.6 M875.5,516.0 L875.5,431.6 M875.7,516.0 M875.8,516.0 L875.8,431.3
+ M876.0,516.0 L876.0,393.0 M876.2,516.0 L876.2,370.6 M876.4,516.0 L876.4,354.7 M876.6,516.0 L876.6,342.5
+ M876.7,516.0 L876.7,332.5 M876.9,516.0 L876.9,324.2 M877.1,516.0 L877.1,317.0 M877.3,516.0 L877.3,310.7
+ M877.5,516.0 L877.5,305.2 M877.6,516.0 L877.6,300.3 M877.8,516.0 L877.8,295.8 M878.0,516.0 L878.0,291.8
+ M878.2,516.0 L878.2,288.2 M878.4,516.0 L878.4,284.9 M878.6,516.0 L878.6,281.9 M878.7,516.0 L878.7,279.2
+ M878.9,516.0 L878.9,276.7 M879.1,516.0 L879.1,274.4 M879.3,516.0 L879.3,272.4 M879.5,516.0 L879.5,270.5
+ M879.6,516.0 L879.6,268.8 M879.8,516.0 L879.8,267.3 M880.0,516.0 L880.0,266.0 M880.2,516.0 L880.2,264.8
+ M880.4,516.0 L880.4,263.7 M880.5,516.0 L880.5,262.8 M880.7,516.0 L880.7,262.0 M880.9,516.0 L880.9,261.4
+ M881.1,516.0 L881.1,260.9 M881.3,516.0 L881.3,260.6 M881.4,516.0 L881.4,260.4 M881.6,516.0 L881.6,260.3
+ M881.8,516.0 L881.8,260.3 M882.0,516.0 L882.0,260.5 M882.2,516.0 L882.2,260.8 M882.3,516.0 L882.3,261.2
+ M882.5,516.0 L882.5,261.8 M882.7,516.0 L882.7,262.6 M882.9,516.0 L882.9,263.5 M883.1,516.0 L883.1,264.5
+ M883.2,516.0 L883.2,265.7 M883.4,516.0 L883.4,267.1 M883.6,516.0 L883.6,268.6 M883.8,516.0 L883.8,270.4
+ M884.0,516.0 L884.0,272.3 M884.1,516.0 L884.1,274.5 M884.3,516.0 L884.3,276.9 M884.5,516.0 L884.5,279.6
+ M884.7,516.0 L884.7,282.6 M884.9,516.0 L884.9,285.9 M885.0,516.0 L885.0,289.6 M885.2,516.0 L885.2,293.7
+ M885.4,516.0 L885.4,298.3 M885.6,516.0 L885.6,303.5 M885.8,516.0 L885.8,309.5 M885.9,516.0 L885.9,316.3
+ M886.1,516.0 L886.1,324.4 M886.3,516.0 L886.3,334.0 M886.5,516.0 L886.5,345.9 M886.7,516.0 L886.7,361.5
+ M886.9,516.0 L886.9,383.6 M887.0,516.0 L887.0,421.6 M887.2,516.0 M887.4,516.0 L887.4,421.2 M887.6,516.0
+ L887.6,382.9 M887.8,516.0 L887.8,360.5 M887.9,516.0 L887.9,344.6 M888.1,516.0 L888.1,332.3 M888.3,516.0
+ L888.3,322.3 M888.5,516.0 L888.5,313.9 M888.7,516.0 L888.7,306.7 M888.8,516.0 L888.8,300.4 M889.0,516.0
+ L889.0,294.8 M889.2,516.0 L889.2,289.9 M889.4,516.0 L889.4,285.4 M889.6,516.0 L889.6,281.4 M889.7,516.0
+ L889.7,277.7 M889.9,516.0 L889.9,274.4 M890.1,516.0 L890.1,271.4 M890.3,516.0 L890.3,268.6 M890.5,516.0
+ L890.5,266.1 M890.6,516.0 L890.6,263.8 M890.8,516.0 L890.8,261.7 M891.0,516.0 L891.0,259.8 M891.2,516.0
+ L891.2,258.1 M891.4,516.0 L891.4,256.6 M891.5,516.0 L891.5,255.2 M891.7,516.0 L891.7,253.9 M891.9,516.0
+ L891.9,252.8 M892.1,516.0 L892.1,251.9 M892.3,516.0 L892.3,251.1 M892.4,516.0 L892.4,250.5 M892.6,516.0
+ L892.6,249.9 M892.8,516.0 L892.8,249.5 M893.0,516.0 L893.0,249.3 M893.2,516.0 L893.2,249.2 M893.3,516.0
+ L893.3,249.2 M893.5,516.0 L893.5,249.3 M893.7,516.0 L893.7,249.6 M893.9,516.0 L893.9,250.0 M894.1,516.0
+ L894.1,250.6 M894.2,516.0 L894.2,251.2 M894.4,516.0 L894.4,252.1 M894.6,516.0 L894.6,253.1 M894.8,516.0
+ L894.8,254.3 M895.0,516.0 L895.0,255.6 M895.2,516.0 L895.2,257.1 M895.3,516.0 L895.3,258.8 M895.5,516.0
+ L895.5,260.7 M895.7,516.0 L895.7,262.9 M895.9,516.0 L895.9,265.3 M896.1,516.0 L896.1,267.9 M896.2,516.0
+ L896.2,270.8 M896.4,516.0 L896.4,274.1 M896.6,516.0 L896.6,277.7 M896.8,516.0 L896.8,281.8 M897.0,516.0
+ L897.0,286.4 M897.1,516.0 L897.1,291.6 M897.3,516.0 L897.3,297.5 M897.5,516.0 L897.5,304.3 M897.7,516.0
+ L897.7,312.3 M897.9,516.0 L897.9,321.9 M898.0,516.0 L898.0,333.8 M898.2,516.0 L898.2,349.3 M898.4,516.0
+ L898.4,371.3 M898.6,516.0 L898.6,409.3 M898.8,516.0 M898.9,516.0 L898.9,408.9 M899.1,516.0 L899.1,370.5
+ M899.3,516.0 L899.3,348.0 M899.5,516.0 L899.5,332.1 M899.7,516.0 L899.7,319.7 M899.8,516.0 L899.8,309.7
+ M900.0,516.0 L900.0,301.3 M900.2,516.0 L900.2,294.0 M900.4,516.0 L900.4,287.7 M900.6,516.0 L900.6,282.1
+ M900.7,516.0 L900.7,277.1 '/> <path stroke='rgb(222, 125, 0)' d='M900.9,516.0 L900.9,272.6 M901.1,516.0 L901.1,268.5 M901.3,516.0 L901.3,264.8 M901.5,516.0 L901.5,261.4
+ M901.6,516.0 L901.6,258.3 M901.8,516.0 L901.8,255.5 M902.0,516.0 L902.0,253.0 M902.2,516.0 L902.2,250.6
+ M902.4,516.0 L902.4,248.5 M902.5,516.0 L902.5,246.5 M902.7,516.0 L902.7,244.8 M902.9,516.0 L902.9,243.2
+ M903.1,516.0 L903.1,241.7 M903.3,516.0 L903.3,240.4 M903.5,516.0 L903.5,239.3 M903.6,516.0 L903.6,238.3
+ M903.8,516.0 L903.8,237.5 M904.0,516.0 L904.0,236.8 M904.2,516.0 L904.2,236.2 M904.4,516.0 L904.4,235.7
+ M904.5,516.0 L904.5,235.4 M904.7,516.0 L904.7,235.2 M904.9,516.0 L904.9,235.2 M905.1,516.0 L905.1,235.3
+ M905.3,516.0 L905.3,235.5 M905.4,516.0 L905.4,235.9 M905.6,516.0 L905.6,236.4 M905.8,516.0 L905.8,237.0
+ M906.0,516.0 L906.0,237.8 M906.2,516.0 L906.2,238.7 M906.3,516.0 L906.3,239.8 M906.5,516.0 L906.5,241.1
+ M906.7,516.0 L906.7,242.6 M906.9,516.0 L906.9,244.2 M907.1,516.0 L907.1,246.1 M907.2,516.0 L907.2,248.1
+ M907.4,516.0 L907.4,250.5 M907.6,516.0 L907.6,253.0 M907.8,516.0 L907.8,255.9 M908.0,516.0 L908.0,259.1
+ M908.1,516.0 L908.1,262.7 M908.3,516.0 L908.3,266.7 M908.5,516.0 L908.5,271.2 M908.7,516.0 L908.7,276.3
+ M908.9,516.0 L908.9,282.2 M909.0,516.0 L909.0,288.9 M909.2,516.0 L909.2,296.9 M909.4,516.0 L909.4,306.4
+ M909.6,516.0 L909.6,318.2 M909.8,516.0 L909.8,333.6 M909.9,516.0 L909.9,355.6 M910.1,516.0 L910.1,393.5
+ M910.3,516.0 M910.5,516.0 L910.5,392.9 M910.7,516.0 L910.7,354.5 M910.8,516.0 L910.8,331.9 M911.0,516.0
+ L911.0,315.9 M911.2,516.0 L911.2,303.5 M911.4,516.0 L911.4,293.4 M911.6,516.0 L911.6,284.9 M911.8,516.0
+ L911.8,277.6 M911.9,516.0 L911.9,271.1 M912.1,516.0 L912.1,265.5 M912.3,516.0 L912.3,260.4 M912.5,516.0
+ L912.5,255.8 M912.7,516.0 L912.7,251.6 M912.8,516.0 L912.8,247.8 M913.0,516.0 L913.0,244.4 M913.2,516.0
+ L913.2,241.2 M913.4,516.0 L913.4,238.3 M913.6,516.0 L913.6,235.7 M913.7,516.0 L913.7,233.3 M913.9,516.0
+ L913.9,231.0 M914.1,516.0 L914.1,229.0 M914.3,516.0 L914.3,227.1 M914.5,516.0 L914.5,225.4 M914.6,516.0
+ L914.6,223.9 M914.8,516.0 L914.8,222.5 M915.0,516.0 L915.0,221.3 M915.2,516.0 L915.2,220.2 M915.4,516.0
+ L915.4,219.3 M915.5,516.0 L915.5,218.5 M915.7,516.0 L915.7,217.8 M915.9,516.0 L915.9,217.3 M916.1,516.0
+ L916.1,216.9 M916.3,516.0 L916.3,216.6 M916.4,516.0 L916.4,216.4 M916.6,516.0 L916.6,216.4 M916.8,516.0
+ L916.8,216.5 M917.0,516.0 L917.0,216.8 M917.2,516.0 L917.2,217.2 M917.3,516.0 L917.3,217.7 M917.5,516.0
+ L917.5,218.4 M917.7,516.0 L917.7,219.2 M917.9,516.0 L917.9,220.2 M918.1,516.0 L918.1,221.4 M918.2,516.0
+ L918.2,222.7 M918.4,516.0 L918.4,224.3 M918.6,516.0 L918.6,226.0 M918.8,516.0 L918.8,228.0 M919.0,516.0
+ L919.0,230.2 M919.1,516.0 L919.1,232.6 M919.3,516.0 L919.3,235.4 M919.5,516.0 L919.5,238.5 M919.7,516.0
+ L919.7,241.9 M919.9,516.0 L919.9,245.8 M920.1,516.0 L920.1,250.2 M920.2,516.0 L920.2,255.2 M920.4,516.0
+ L920.4,260.9 M920.6,516.0 L920.6,267.5 M920.8,516.0 L920.8,275.3 M921.0,516.0 L921.0,284.7 M921.1,516.0
+ L921.1,296.4 M921.3,516.0 L921.3,311.7 M921.5,516.0 L921.5,333.5 M921.7,516.0 L921.7,371.3 M921.9,516.0
+ M922.0,516.0 L922.0,370.4 M922.2,516.0 L922.2,331.8 M922.4,516.0 L922.4,309.1 M922.6,516.0 L922.6,293.0
+ M922.8,516.0 L922.8,280.4 M922.9,516.0 L922.9,270.1 M923.1,516.0 L923.1,261.5 M923.3,516.0 L923.3,254.0
+ M923.5,516.0 L923.5,247.4 M923.7,516.0 L923.7,241.5 M923.8,516.0 L923.8,236.3 M924.0,516.0 L924.0,231.5
+ M924.2,516.0 L924.2,227.2 M924.4,516.0 L924.4,223.3 M924.6,516.0 L924.6,219.6 M924.7,516.0 L924.7,216.3
+ M924.9,516.0 L924.9,213.2 M925.1,516.0 L925.1,210.4 M925.3,516.0 L925.3,207.8 M925.5,516.0 L925.5,205.4
+ M925.6,516.0 L925.6,203.1 M925.8,516.0 L925.8,201.1 M926.0,516.0 L926.0,199.2 M926.2,516.0 L926.2,197.5
+ M926.4,516.0 L926.4,195.9 M926.5,516.0 L926.5,194.4 M926.7,516.0 L926.7,193.2 M926.9,516.0 L926.9,192.0
+ M927.1,516.0 L927.1,191.0 M927.3,516.0 L927.3,190.1 M927.4,516.0 L927.4,189.3 M927.6,516.0 L927.6,188.7
+ M927.8,516.0 L927.8,188.2 M928.0,516.0 L928.0,187.8 M928.2,516.0 L928.2,187.5 M928.4,516.0 L928.4,187.4
+ M928.5,516.0 L928.5,187.4 M928.7,516.0 L928.7,187.5 M928.9,516.0 L928.9,187.8 M929.1,516.0 L929.1,188.2
+ M929.3,516.0 L929.3,188.8 M929.4,516.0 L929.4,189.5 M929.6,516.0 L929.6,190.4 M929.8,516.0 L929.8,191.5
+ M930.0,516.0 L930.0,192.7 M930.2,516.0 L930.2,194.2 M930.3,516.0 L930.3,195.8 M930.5,516.0 L930.5,197.7
+ M930.7,516.0 L930.7,199.9 M930.9,516.0 L930.9,202.3 M931.1,516.0 L931.1,205.1 M931.2,516.0 L931.2,208.2
+ M931.4,516.0 L931.4,211.8 M931.6,516.0 L931.6,215.8 M931.8,516.0 L931.8,220.4 M932.0,516.0 L932.0,225.8
+ M932.1,516.0 L932.1,232.1 M932.3,516.0 L932.3,239.5 M932.5,516.0 L932.5,248.5 M932.7,516.0 L932.7,259.8
+ M932.9,516.0 L932.9,274.7 M933.0,516.0 L933.0,296.1 M933.2,516.0 L933.2,333.5 M933.4,516.0 M933.6,516.0
+ L933.6,331.7 M933.8,516.0 L933.8,292.7 M933.9,516.0 L933.9,269.5 M934.1,516.0 L934.1,252.9 M934.3,516.0
+ L934.3,239.9 M934.5,516.0 L934.5,229.1 M934.7,516.0 L934.7,219.9 M934.8,516.0 L934.8,211.9 M935.0,516.0
+ L935.0,204.8 M935.2,516.0 L935.2,198.4 M935.4,516.0 L935.4,192.6 M935.6,516.0 L935.6,187.3 M935.7,516.0
+ L935.7,182.4 M935.9,516.0 L935.9,177.8 M936.1,516.0 L936.1,173.5 M936.3,516.0 L936.3,169.6 M936.5,516.0
+ L936.5,165.8 M936.7,516.0 L936.7,162.3 M936.8,516.0 L936.8,159.0 M937.0,516.0 L937.0,155.8 M937.2,516.0
+ L937.2,152.8 M937.4,516.0 L937.4,150.0 M937.6,516.0 L937.6,147.3 M937.7,516.0 L937.7,144.7 M937.9,516.0
+ L937.9,142.3 M938.1,516.0 L938.1,140.0 M938.3,516.0 L938.3,137.8 M938.5,516.0 L938.5,135.6 M938.6,516.0
+ L938.6,133.6 M938.8,516.0 L938.8,131.7 M939.0,516.0 L939.0,129.8 M939.2,516.0 L939.2,128.1 M939.4,516.0
+ L939.4,126.4 M939.5,516.0 L939.5,124.8 M939.7,516.0 L939.7,123.2 M939.9,516.0 L939.9,121.8 M940.1,516.0
+ L940.1,120.4 M940.3,516.0 L940.3,119.0 M940.4,516.0 L940.4,117.8 M940.6,516.0 L940.6,116.6 M940.8,516.0
+ L940.8,115.4 M941.0,516.0 L941.0,114.3 M941.2,516.0 L941.2,113.3 M941.3,516.0 L941.3,112.3 M941.5,516.0
+ L941.5,111.4 M941.7,516.0 L941.7,110.5 M941.9,516.0 L941.9,109.7 M942.1,516.0 L942.1,108.9 M942.2,516.0
+ L942.2,108.2 M942.4,516.0 L942.4,107.6 M942.6,516.0 L942.6,107.0 M942.8,516.0 L942.8,106.4 M943.0,516.0
+ L943.0,105.9 M943.1,516.0 L943.1,105.4 M943.3,516.0 L943.3,105.0 M943.5,516.0 L943.5,104.6 M943.7,516.0
+ L943.7,104.2 M943.9,516.0 L943.9,104.0 M944.0,516.0 L944.0,103.7 M944.2,516.0 L944.2,103.5 M944.4,516.0
+ L944.4,103.4 M944.6,516.0 L944.6,103.2 M944.8,516.0 L944.8,103.2 M945.0,516.0 L945.0,103.2 M945.1,516.0
+ L945.1,103.2 M945.3,516.0 L945.3,103.2 M945.5,516.0 L945.5,103.4 M945.7,516.0 L945.7,103.5 M945.9,516.0
+ L945.9,103.7 M946.0,516.0 L946.0,104.0 M946.2,516.0 L946.2,104.2 M946.4,516.0 L946.4,104.6 M946.6,516.0
+ L946.6,105.0 M946.8,516.0 L946.8,105.4 M946.9,516.0 L946.9,105.9 M947.1,516.0 L947.1,106.4 M947.3,516.0
+ L947.3,107.0 '/> <path stroke='rgb(222, 125, 0)' d='M947.5,516.0 L947.5,107.6 M947.7,516.0 L947.7,108.2 M947.8,516.0 L947.8,108.9 M948.0,516.0 L948.0,109.7
+ M948.2,516.0 L948.2,110.5 M948.4,516.0 L948.4,111.4 M948.6,516.0 L948.6,112.3 M948.7,516.0 L948.7,113.3
+ M948.9,516.0 L948.9,114.3 M949.1,516.0 L949.1,115.4 M949.3,516.0 L949.3,116.6 M949.5,516.0 L949.5,117.8
+ M949.6,516.0 L949.6,119.0 M949.8,516.0 L949.8,120.4 M950.0,516.0 L950.0,121.8 M950.2,516.0 L950.2,123.2
+ M950.4,516.0 L950.4,124.8 M950.5,516.0 L950.5,126.4 M950.7,516.0 L950.7,128.1 M950.9,516.0 L950.9,129.8
+ M951.1,516.0 L951.1,131.7 M951.3,516.0 L951.3,133.6 M951.4,516.0 L951.4,135.6 M951.6,516.0 L951.6,137.8
+ M951.8,516.0 L951.8,140.0 M952.0,516.0 L952.0,142.3 M952.2,516.0 L952.2,144.7 M952.3,516.0 L952.3,147.3
+ M952.5,516.0 L952.5,150.0 M952.7,516.0 L952.7,152.8 M952.9,516.0 L952.9,155.8 M953.1,516.0 L953.1,159.0
+ M953.2,516.0 L953.2,162.3 M953.4,516.0 L953.4,165.8 M953.6,516.0 L953.6,169.6 M953.8,516.0 L953.8,173.5
+ M954.0,516.0 L954.0,177.8 M954.2,516.0 L954.2,182.4 M954.3,516.0 L954.3,187.3 M954.5,516.0 L954.5,192.6
+ M954.7,516.0 L954.7,198.4 M954.9,516.0 L954.9,204.8 M955.1,516.0 L955.1,211.9 M955.2,516.0 L955.2,219.9
+ M955.4,516.0 L955.4,229.1 M955.6,516.0 L955.6,239.9 M955.8,516.0 L955.8,252.9 M956.0,516.0 L956.0,269.5
+ M956.1,516.0 L956.1,292.7 M956.3,516.0 L956.3,331.7 M956.5,516.0 M956.7,516.0 L956.7,333.5 M956.9,516.0
+ L956.9,296.1 M957.0,516.0 L957.0,274.7 M957.2,516.0 L957.2,259.8 M957.4,516.0 L957.4,248.5 M957.6,516.0
+ L957.6,239.5 M957.8,516.0 L957.8,232.1 M957.9,516.0 L957.9,225.8 M958.1,516.0 L958.1,220.4 M958.3,516.0
+ L958.3,215.8 M958.5,516.0 L958.5,211.8 M958.7,516.0 L958.7,208.2 M958.8,516.0 L958.8,205.1 M959.0,516.0
+ L959.0,202.3 M959.2,516.0 L959.2,199.9 M959.4,516.0 L959.4,197.7 M959.6,516.0 L959.6,195.8 M959.7,516.0
+ L959.7,194.2 M959.9,516.0 L959.9,192.7 M960.1,516.0 L960.1,191.5 M960.3,516.0 L960.3,190.4 M960.5,516.0
+ L960.5,189.5 M960.6,516.0 L960.6,188.8 M960.8,516.0 L960.8,188.2 M961.0,516.0 L961.0,187.8 M961.2,516.0
+ L961.2,187.5 M961.4,516.0 L961.4,187.4 M961.5,516.0 L961.5,187.4 M961.7,516.0 L961.7,187.5 M961.9,516.0
+ L961.9,187.8 M962.1,516.0 L962.1,188.2 M962.3,516.0 L962.3,188.7 M962.5,516.0 L962.5,189.3 M962.6,516.0
+ L962.6,190.1 M962.8,516.0 L962.8,191.0 M963.0,516.0 L963.0,192.0 M963.2,516.0 L963.2,193.2 M963.4,516.0
+ L963.4,194.4 M963.5,516.0 L963.5,195.9 M963.7,516.0 L963.7,197.5 M963.9,516.0 L963.9,199.2 M964.1,516.0
+ L964.1,201.1 M964.3,516.0 L964.3,203.1 M964.4,516.0 L964.4,205.4 M964.6,516.0 L964.6,207.8 M964.8,516.0
+ L964.8,210.4 M965.0,516.0 L965.0,213.2 M965.2,516.0 L965.2,216.3 M965.3,516.0 L965.3,219.6 M965.5,516.0
+ L965.5,223.3 M965.7,516.0 L965.7,227.2 M965.9,516.0 L965.9,231.5 M966.1,516.0 L966.1,236.3 M966.2,516.0
+ L966.2,241.5 M966.4,516.0 L966.4,247.4 M966.6,516.0 L966.6,254.0 M966.8,516.0 L966.8,261.5 M967.0,516.0
+ L967.0,270.1 M967.1,516.0 L967.1,280.4 M967.3,516.0 L967.3,293.0 M967.5,516.0 L967.5,309.1 M967.7,516.0
+ L967.7,331.8 M967.9,516.0 L967.9,370.4 M968.0,516.0 M968.2,516.0 L968.2,371.3 M968.4,516.0 L968.4,333.5
+ M968.6,516.0 L968.6,311.7 M968.8,516.0 L968.8,296.4 M968.9,516.0 L968.9,284.7 M969.1,516.0 L969.1,275.3
+ M969.3,516.0 L969.3,267.5 M969.5,516.0 L969.5,260.9 M969.7,516.0 L969.7,255.2 M969.8,516.0 L969.8,250.2
+ M970.0,516.0 L970.0,245.8 M970.2,516.0 L970.2,241.9 M970.4,516.0 L970.4,238.5 M970.6,516.0 L970.6,235.4
+ M970.8,516.0 L970.8,232.6 M970.9,516.0 L970.9,230.2 M971.1,516.0 L971.1,228.0 M971.3,516.0 L971.3,226.0
+ M971.5,516.0 L971.5,224.3 M971.7,516.0 L971.7,222.7 M971.8,516.0 L971.8,221.4 M972.0,516.0 L972.0,220.2
+ M972.2,516.0 L972.2,219.2 M972.4,516.0 L972.4,218.4 M972.6,516.0 L972.6,217.7 M972.7,516.0 L972.7,217.2
+ M972.9,516.0 L972.9,216.8 M973.1,516.0 L973.1,216.5 M973.3,516.0 L973.3,216.4 M973.5,516.0 L973.5,216.4
+ M973.6,516.0 L973.6,216.6 M973.8,516.0 L973.8,216.9 M974.0,516.0 L974.0,217.3 M974.2,516.0 L974.2,217.8
+ M974.4,516.0 L974.4,218.5 M974.5,516.0 L974.5,219.3 M974.7,516.0 L974.7,220.2 M974.9,516.0 L974.9,221.3
+ M975.1,516.0 L975.1,222.5 M975.3,516.0 L975.3,223.9 M975.4,516.0 L975.4,225.4 M975.6,516.0 L975.6,227.1
+ M975.8,516.0 L975.8,229.0 M976.0,516.0 L976.0,231.0 M976.2,516.0 L976.2,233.3 M976.3,516.0 L976.3,235.7
+ M976.5,516.0 L976.5,238.3 M976.7,516.0 L976.7,241.2 M976.9,516.0 L976.9,244.4 M977.1,516.0 L977.1,247.8
+ M977.2,516.0 L977.2,251.6 M977.4,516.0 L977.4,255.8 M977.6,516.0 L977.6,260.4 M977.8,516.0 L977.8,265.5
+ M978.0,516.0 L978.0,271.1 M978.1,516.0 L978.1,277.6 M978.3,516.0 L978.3,284.9 M978.5,516.0 L978.5,293.4
+ M978.7,516.0 L978.7,303.5 M978.9,516.0 L978.9,315.9 M979.1,516.0 L979.1,331.9 M979.2,516.0 L979.2,354.5
+ M979.4,516.0 L979.4,392.9 M979.6,516.0 M979.8,516.0 L979.8,393.5 M980.0,516.0 L980.0,355.6 M980.1,516.0
+ L980.1,333.6 M980.3,516.0 L980.3,318.2 M980.5,516.0 L980.5,306.4 M980.7,516.0 L980.7,296.9 M980.9,516.0
+ L980.9,288.9 M981.0,516.0 L981.0,282.2 M981.2,516.0 L981.2,276.3 M981.4,516.0 L981.4,271.2 M981.6,516.0
+ L981.6,266.7 M981.8,516.0 L981.8,262.7 M981.9,516.0 L981.9,259.1 M982.1,516.0 L982.1,255.9 M982.3,516.0
+ L982.3,253.0 M982.5,516.0 L982.5,250.5 M982.7,516.0 L982.7,248.1 M982.8,516.0 L982.8,246.1 M983.0,516.0
+ L983.0,244.2 M983.2,516.0 L983.2,242.6 M983.4,516.0 L983.4,241.1 M983.6,516.0 L983.6,239.8 M983.7,516.0
+ L983.7,238.7 M983.9,516.0 L983.9,237.8 M984.1,516.0 L984.1,237.0 M984.3,516.0 L984.3,236.4 M984.5,516.0
+ L984.5,235.9 M984.6,516.0 L984.6,235.5 M984.8,516.0 L984.8,235.3 M985.0,516.0 L985.0,235.2 M985.2,516.0
+ L985.2,235.2 M985.4,516.0 L985.4,235.4 M985.5,516.0 L985.5,235.7 M985.7,516.0 L985.7,236.2 M985.9,516.0
+ L985.9,236.8 M986.1,516.0 L986.1,237.5 M986.3,516.0 L986.3,238.3 M986.4,516.0 L986.4,239.3 M986.6,516.0
+ L986.6,240.4 M986.8,516.0 L986.8,241.7 M987.0,516.0 L987.0,243.2 M987.2,516.0 L987.2,244.8 M987.4,516.0
+ L987.4,246.5 M987.5,516.0 L987.5,248.5 M987.7,516.0 L987.7,250.6 M987.9,516.0 L987.9,253.0 M988.1,516.0
+ L988.1,255.5 M988.3,516.0 L988.3,258.3 M988.4,516.0 L988.4,261.4 M988.6,516.0 L988.6,264.8 M988.8,516.0
+ L988.8,268.5 M989.0,516.0 L989.0,272.6 M989.2,516.0 L989.2,277.1 M989.3,516.0 L989.3,282.1 M989.5,516.0
+ L989.5,287.7 M989.7,516.0 L989.7,294.0 M989.9,516.0 L989.9,301.3 M990.1,516.0 L990.1,309.7 M990.2,516.0
+ L990.2,319.7 M990.4,516.0 L990.4,332.1 M990.6,516.0 L990.6,348.0 M990.8,516.0 L990.8,370.5 M991.0,516.0
+ L991.0,408.9 M991.1,516.0 M991.3,516.0 L991.3,409.3 M991.5,516.0 L991.5,371.3 M991.7,516.0 L991.7,349.3
+ M991.9,516.0 L991.9,333.8 M992.0,516.0 L992.0,321.9 M992.2,516.0 L992.2,312.3 M992.4,516.0 L992.4,304.3
+ M992.6,516.0 L992.6,297.5 M992.8,516.0 L992.8,291.6 M992.9,516.0 L992.9,286.4 M993.1,516.0 L993.1,281.8
+ M993.3,516.0 L993.3,277.7 M993.5,516.0 L993.5,274.1 M993.7,516.0 L993.7,270.8 M993.8,516.0 L993.8,267.9
+ M994.0,516.0 L994.0,265.3 '/> <path stroke='rgb(222, 125, 0)' d='M994.2,516.0 L994.2,262.9 M994.4,516.0 L994.4,260.7 M994.6,516.0 L994.6,258.8 M994.7,516.0 L994.7,257.1
+ M994.9,516.0 L994.9,255.6 M995.1,516.0 L995.1,254.3 M995.3,516.0 L995.3,253.1 M995.5,516.0 L995.5,252.1
+ M995.7,516.0 L995.7,251.2 M995.8,516.0 L995.8,250.6 M996.0,516.0 L996.0,250.0 M996.2,516.0 L996.2,249.6
+ M996.4,516.0 L996.4,249.3 M996.6,516.0 L996.6,249.2 M996.7,516.0 L996.7,249.2 M996.9,516.0 L996.9,249.3
+ M997.1,516.0 L997.1,249.5 M997.3,516.0 L997.3,249.9 M997.5,516.0 L997.5,250.5 M997.6,516.0 L997.6,251.1
+ M997.8,516.0 L997.8,251.9 M998.0,516.0 L998.0,252.8 M998.2,516.0 L998.2,253.9 M998.4,516.0 L998.4,255.2
+ M998.5,516.0 L998.5,256.6 M998.7,516.0 L998.7,258.1 M998.9,516.0 L998.9,259.8 M999.1,516.0 L999.1,261.7
+ M999.3,516.0 L999.3,263.8 M999.4,516.0 L999.4,266.1 M999.6,516.0 L999.6,268.6 M999.8,516.0 L999.8,271.4
+ M1000.0,516.0 L1000.0,274.4 M1000.2,516.0 L1000.2,277.7 M1000.3,516.0 L1000.3,281.4 M1000.5,516.0 L1000.5,285.4
+ M1000.7,516.0 L1000.7,289.9 M1000.9,516.0 L1000.9,294.8 M1001.1,516.0 L1001.1,300.4 M1001.2,516.0 L1001.2,306.7
+ M1001.4,516.0 L1001.4,313.9 M1001.6,516.0 L1001.6,322.3 M1001.8,516.0 L1001.8,332.3 M1002.0,516.0 L1002.0,344.6
+ M1002.1,516.0 L1002.1,360.5 M1002.3,516.0 L1002.3,382.9 M1002.5,516.0 L1002.5,421.2 M1002.7,516.0 M1002.9,516.0
+ L1002.9,421.6 M1003.0,516.0 L1003.0,383.6 M1003.2,516.0 L1003.2,361.5 M1003.4,516.0 L1003.4,345.9 M1003.6,516.0
+ L1003.6,334.0 M1003.8,516.0 L1003.8,324.4 M1004.0,516.0 L1004.0,316.3 M1004.1,516.0 L1004.1,309.5 M1004.3,516.0
+ L1004.3,303.5 M1004.5,516.0 L1004.5,298.3 M1004.7,516.0 L1004.7,293.7 M1004.9,516.0 L1004.9,289.6 M1005.0,516.0
+ L1005.0,285.9 M1005.2,516.0 L1005.2,282.6 M1005.4,516.0 L1005.4,279.6 M1005.6,516.0 L1005.6,276.9 M1005.8,516.0
+ L1005.8,274.5 M1005.9,516.0 L1005.9,272.3 M1006.1,516.0 L1006.1,270.4 M1006.3,516.0 L1006.3,268.6 M1006.5,516.0
+ L1006.5,267.1 M1006.7,516.0 L1006.7,265.7 M1006.8,516.0 L1006.8,264.5 M1007.0,516.0 L1007.0,263.5 M1007.2,516.0
+ L1007.2,262.6 M1007.4,516.0 L1007.4,261.8 M1007.6,516.0 L1007.6,261.2 M1007.7,516.0 L1007.7,260.8 M1007.9,516.0
+ L1007.9,260.5 M1008.1,516.0 L1008.1,260.3 M1008.3,516.0 L1008.3,260.3 M1008.5,516.0 L1008.5,260.4 M1008.6,516.0
+ L1008.6,260.6 M1008.8,516.0 L1008.8,260.9 M1009.0,516.0 L1009.0,261.4 M1009.2,516.0 L1009.2,262.0 M1009.4,516.0
+ L1009.4,262.8 M1009.5,516.0 L1009.5,263.7 M1009.7,516.0 L1009.7,264.8 M1009.9,516.0 L1009.9,266.0 M1010.1,516.0
+ L1010.1,267.3 M1010.3,516.0 L1010.3,268.8 M1010.4,516.0 L1010.4,270.5 M1010.6,516.0 L1010.6,272.4 M1010.8,516.0
+ L1010.8,274.4 M1011.0,516.0 L1011.0,276.7 M1011.2,516.0 L1011.2,279.2 M1011.3,516.0 L1011.3,281.9 M1011.5,516.0
+ L1011.5,284.9 M1011.7,516.0 L1011.7,288.2 M1011.9,516.0 L1011.9,291.8 M1012.1,516.0 L1012.1,295.8 M1012.3,516.0
+ L1012.3,300.3 M1012.4,516.0 L1012.4,305.2 M1012.6,516.0 L1012.6,310.7 M1012.8,516.0 L1012.8,317.0 M1013.0,516.0
+ L1013.0,324.2 M1013.2,516.0 L1013.2,332.5 M1013.3,516.0 L1013.3,342.5 M1013.5,516.0 L1013.5,354.7 M1013.7,516.0
+ L1013.7,370.6 M1013.9,516.0 L1013.9,393.0 M1014.1,516.0 L1014.1,431.3 M1014.2,516.0 M1014.4,516.0 L1014.4,431.6
+ M1014.6,516.0 L1014.6,393.6 M1014.8,516.0 L1014.8,371.5 M1015.0,516.0 L1015.0,355.9 M1015.1,516.0 L1015.1,343.9
+ M1015.3,516.0 L1015.3,334.2 M1015.5,516.0 L1015.5,326.2 M1015.7,516.0 L1015.7,319.3 M1015.9,516.0 L1015.9,313.3
+ M1016.0,516.0 L1016.0,308.1 M1016.2,516.0 L1016.2,303.4 M1016.4,516.0 L1016.4,299.3 M1016.6,516.0 L1016.6,295.6
+ M1016.8,516.0 L1016.8,292.2 M1016.9,516.0 L1016.9,289.2 M1017.1,516.0 L1017.1,286.5 M1017.3,516.0 L1017.3,284.1
+ M1017.5,516.0 L1017.5,281.9 M1017.7,516.0 L1017.7,279.9 M1017.8,516.0 L1017.8,278.1 M1018.0,516.0 L1018.0,276.6
+ M1018.2,516.0 L1018.2,275.2 M1018.4,516.0 L1018.4,273.9 M1018.6,516.0 L1018.6,272.9 M1018.7,516.0 L1018.7,272.0
+ M1018.9,516.0 L1018.9,271.2 M1019.1,516.0 L1019.1,270.6 M1019.3,516.0 L1019.3,270.1 M1019.5,516.0 L1019.5,269.8
+ M1019.6,516.0 L1019.6,269.6 M1019.8,516.0 L1019.8,269.5 M1020.0,516.0 L1020.0,269.6 M1020.2,516.0 L1020.2,269.8
+ M1020.4,516.0 L1020.4,270.1 M1020.6,516.0 L1020.6,270.6 M1020.7,516.0 L1020.7,271.2 M1020.9,516.0 L1020.9,271.9
+ M1021.1,516.0 L1021.1,272.8 M1021.3,516.0 L1021.3,273.8 M1021.5,516.0 L1021.5,275.0 M1021.6,516.0 L1021.6,276.3
+ M1021.8,516.0 L1021.8,277.8 M1022.0,516.0 L1022.0,279.5 M1022.2,516.0 L1022.2,281.3 M1022.4,516.0 L1022.4,283.4
+ M1022.5,516.0 L1022.5,285.6 M1022.7,516.0 L1022.7,288.1 M1022.9,516.0 L1022.9,290.8 M1023.1,516.0 L1023.1,293.7
+ M1023.3,516.0 L1023.3,297.0 M1023.4,516.0 L1023.4,300.6 M1023.6,516.0 L1023.6,304.6 M1023.8,516.0 L1023.8,309.0
+ M1024.0,516.0 L1024.0,313.9 M1024.2,516.0 L1024.2,319.4 M1024.3,516.0 L1024.3,325.7 M1024.5,516.0 L1024.5,332.8
+ M1024.7,516.0 L1024.7,341.2 M1024.9,516.0 L1024.9,351.1 M1025.1,516.0 L1025.1,363.3 M1025.2,516.0 L1025.2,379.2
+ M1025.4,516.0 L1025.4,401.5 M1025.6,516.0 L1025.6,439.8 M1025.8,516.0 M1026.0,516.0 L1026.0,440.1 M1026.1,516.0
+ L1026.1,402.0 M1026.3,516.0 L1026.3,379.9 M1026.5,516.0 L1026.5,364.3 M1026.7,516.0 L1026.7,352.3 M1026.9,516.0
+ L1026.9,342.6 M1027.0,516.0 L1027.0,334.5 M1027.2,516.0 L1027.2,327.6 M1027.4,516.0 L1027.4,321.6 M1027.6,516.0
+ L1027.6,316.4 M1027.8,516.0 L1027.8,311.7 M1027.9,516.0 L1027.9,307.5 M1028.1,516.0 L1028.1,303.8 M1028.3,516.0
+ L1028.3,300.5 M1028.5,516.0 L1028.5,297.4 M1028.7,516.0 L1028.7,294.7 M1028.8,516.0 L1028.8,292.3 M1029.0,516.0
+ L1029.0,290.0 M1029.2,516.0 L1029.2,288.0 M1029.4,516.0 L1029.4,286.3 M1029.6,516.0 L1029.6,284.7 M1029.8,516.0
+ L1029.8,283.2 M1029.9,516.0 L1029.9,282.0 M1030.1,516.0 L1030.1,280.9 M1030.3,516.0 L1030.3,280.0 M1030.5,516.0
+ L1030.5,279.2 M1030.7,516.0 L1030.7,278.6 M1030.8,516.0 L1030.8,278.1 M1031.0,516.0 L1031.0,277.7 M1031.2,516.0
+ L1031.2,277.5 M1031.4,516.0 L1031.4,277.4 M1031.6,516.0 L1031.6,277.5 M1031.7,516.0 L1031.7,277.6 M1031.9,516.0
+ L1031.9,278.0 M1032.1,516.0 L1032.1,278.4 M1032.3,516.0 L1032.3,279.0 M1032.5,516.0 L1032.5,279.7 M1032.6,516.0
+ L1032.6,280.6 M1032.8,516.0 L1032.8,281.6 M1033.0,516.0 L1033.0,282.7 M1033.2,516.0 L1033.2,284.1 M1033.4,516.0
+ L1033.4,285.5 M1033.5,516.0 L1033.5,287.2 M1033.7,516.0 L1033.7,289.0 M1033.9,516.0 L1033.9,291.0 M1034.1,516.0
+ L1034.1,293.3 M1034.3,516.0 L1034.3,295.7 M1034.4,516.0 L1034.4,298.4 M1034.6,516.0 L1034.6,301.4 M1034.8,516.0
+ L1034.8,304.6 M1035.0,516.0 L1035.0,308.2 M1035.2,516.0 L1035.2,312.1 M1035.3,516.0 L1035.3,316.5 M1035.5,516.0
+ L1035.5,321.4 M1035.7,516.0 L1035.7,326.9 M1035.9,516.0 L1035.9,333.1 M1036.1,516.0 L1036.1,340.3 M1036.2,516.0
+ L1036.2,348.6 M1036.4,516.0 L1036.4,358.5 M1036.6,516.0 L1036.6,370.8 M1036.8,516.0 L1036.8,386.6 M1037.0,516.0
+ L1037.0,408.9 M1037.1,516.0 L1037.1,447.2 M1037.3,516.0 M1037.5,516.0 L1037.5,447.4 M1037.7,516.0 L1037.7,409.4
+ M1037.9,516.0 L1037.9,387.2 M1038.1,516.0 L1038.1,371.6 M1038.2,516.0 L1038.2,359.6 M1038.4,516.0 L1038.4,349.9
+ M1038.6,516.0 L1038.6,341.8 M1038.8,516.0 L1038.8,334.9 M1039.0,516.0 L1039.0,328.9 M1039.1,516.0 L1039.1,323.6
+ M1039.3,516.0 L1039.3,318.9 M1039.5,516.0 L1039.5,314.7 M1039.7,516.0 L1039.7,311.0 M1039.9,516.0 L1039.9,307.6
+ M1040.0,516.0 L1040.0,304.6 M1040.2,516.0 L1040.2,301.8 M1040.4,516.0 L1040.4,299.4 M1040.6,516.0 L1040.6,297.1
+ M1040.8,516.0 L1040.8,295.1 '/> <path stroke='rgb(222, 125, 0)' d='M1040.9,516.0 L1040.9,293.3 M1041.1,516.0 L1041.1,291.7 M1041.3,516.0 L1041.3,290.3 M1041.5,516.0 L1041.5,289.0
+ M1041.7,516.0 L1041.7,287.9 M1041.8,516.0 L1041.8,287.0 M1042.0,516.0 L1042.0,286.2 M1042.2,516.0 L1042.2,285.5
+ M1042.4,516.0 L1042.4,285.0 M1042.6,516.0 L1042.6,284.7 M1042.7,516.0 L1042.7,284.4 M1042.9,516.0 L1042.9,284.3
+ M1043.1,516.0 L1043.1,284.4 M1043.3,516.0 L1043.3,284.5 M1043.5,516.0 L1043.5,284.8 M1043.6,516.0 L1043.6,285.3
+ M1043.8,516.0 L1043.8,285.8 M1044.0,516.0 L1044.0,286.6 M1044.2,516.0 L1044.2,287.4 M1044.4,516.0 L1044.4,288.4
+ M1044.5,516.0 L1044.5,289.5 M1044.7,516.0 L1044.7,290.8 M1044.9,516.0 L1044.9,292.3 M1045.1,516.0 L1045.1,293.9
+ M1045.3,516.0 L1045.3,295.8 M1045.4,516.0 L1045.4,297.8 M1045.6,516.0 L1045.6,300.0 M1045.8,516.0 L1045.8,302.4
+ M1046.0,516.0 L1046.0,305.1 M1046.2,516.0 L1046.2,308.0 M1046.4,516.0 L1046.4,311.3 M1046.5,516.0 L1046.5,314.8
+ M1046.7,516.0 L1046.7,318.8 M1046.9,516.0 L1046.9,323.2 M1047.1,516.0 L1047.1,328.0 M1047.3,516.0 L1047.3,333.5
+ M1047.4,516.0 L1047.4,339.7 M1047.6,516.0 L1047.6,346.9 M1047.8,516.0 L1047.8,355.2 M1048.0,516.0 L1048.0,365.1
+ M1048.2,516.0 L1048.2,377.3 M1048.3,516.0 L1048.3,393.1 M1048.5,516.0 L1048.5,415.5 M1048.7,516.0 L1048.7,453.7
+ M1048.9,516.0 M1049.1,516.0 L1049.1,453.9 M1049.2,516.0 L1049.2,415.8 M1049.4,516.0 L1049.4,393.7 M1049.6,516.0
+ L1049.6,378.1 M1049.8,516.0 L1049.8,366.1 M1050.0,516.0 L1050.0,356.3 M1050.1,516.0 L1050.1,348.2 M1050.3,516.0
+ L1050.3,341.3 M1050.5,516.0 L1050.5,335.3 M1050.7,516.0 L1050.7,330.0 M1050.9,516.0 L1050.9,325.3 M1051.0,516.0
+ L1051.0,321.1 M1051.2,516.0 L1051.2,317.3 M1051.4,516.0 L1051.4,314.0 M1051.6,516.0 L1051.6,310.9 M1051.8,516.0
+ L1051.8,308.2 M1051.9,516.0 L1051.9,305.7 M1052.1,516.0 L1052.1,303.4 M1052.3,516.0 L1052.3,301.4 M1052.5,516.0
+ L1052.5,299.6 M1052.7,516.0 L1052.7,298.0 M1052.8,516.0 L1052.8,296.5 M1053.0,516.0 L1053.0,295.3 M1053.2,516.0
+ L1053.2,294.1 M1053.4,516.0 L1053.4,293.2 M1053.6,516.0 L1053.6,292.4 M1053.7,516.0 L1053.7,291.7 M1053.9,516.0
+ L1053.9,291.2 M1054.1,516.0 L1054.1,290.8 M1054.3,516.0 L1054.3,290.6 M1054.5,516.0 L1054.5,290.5 M1054.7,516.0
+ L1054.7,290.5 M1054.8,516.0 L1054.8,290.7 M1055.0,516.0 L1055.0,291.0 M1055.2,516.0 L1055.2,291.4 M1055.4,516.0
+ L1055.4,291.9 M1055.6,516.0 L1055.6,292.6 M1055.7,516.0 L1055.7,293.5 M1055.9,516.0 L1055.9,294.5 M1056.1,516.0
+ L1056.1,295.6 M1056.3,516.0 L1056.3,296.9 M1056.5,516.0 L1056.5,298.3 M1056.6,516.0 L1056.6,300.0 M1056.8,516.0
+ L1056.8,301.8 M1057.0,516.0 L1057.0,303.8 M1057.2,516.0 L1057.2,306.0 M1057.4,516.0 L1057.4,308.4 M1057.5,516.0
+ L1057.5,311.1 M1057.7,516.0 L1057.7,314.0 M1057.9,516.0 L1057.9,317.2 M1058.1,516.0 L1058.1,320.8 M1058.3,516.0
+ L1058.3,324.7 M1058.4,516.0 L1058.4,329.1 M1058.6,516.0 L1058.6,334.0 M1058.8,516.0 L1058.8,339.4 M1059.0,516.0
+ L1059.0,345.6 M1059.2,516.0 L1059.2,352.8 M1059.3,516.0 L1059.3,361.1 M1059.5,516.0 L1059.5,371.0 M1059.7,516.0
+ L1059.7,383.2 M1059.9,516.0 L1059.9,399.0 M1060.1,516.0 L1060.1,421.3 M1060.2,516.0 L1060.2,459.6 M1060.4,516.0
+ M1060.6,516.0 L1060.6,459.7 M1060.8,516.0 L1060.8,421.6 M1061.0,516.0 L1061.0,399.5 M1061.1,516.0 L1061.1,383.8
+ M1061.3,516.0 L1061.3,371.8 M1061.5,516.0 L1061.5,362.1 M1061.7,516.0 L1061.7,354.0 M1061.9,516.0 L1061.9,347.0
+ M1062.0,516.0 L1062.0,341.0 M1062.2,516.0 L1062.2,335.7 M1062.4,516.0 L1062.4,331.0 M1062.6,516.0 L1062.6,326.8
+ M1062.8,516.0 L1062.8,323.0 M1063.0,516.0 L1063.0,319.6 M1063.1,516.0 L1063.1,316.6 M1063.3,516.0 L1063.3,313.8
+ M1063.5,516.0 L1063.5,311.3 M1063.7,516.0 L1063.7,309.1 M1063.9,516.0 L1063.9,307.0 M1064.0,516.0 L1064.0,305.2
+ M1064.2,516.0 L1064.2,303.6 M1064.4,516.0 L1064.4,302.1 M1064.6,516.0 L1064.6,300.9 M1064.8,516.0 L1064.8,299.7
+ M1064.9,516.0 L1064.9,298.8 M1065.1,516.0 L1065.1,298.0 M1065.3,516.0 L1065.3,297.3 M1065.5,516.0 L1065.5,296.8
+ M1065.7,516.0 L1065.7,296.4 M1065.8,516.0 L1065.8,296.1 M1066.0,516.0 L1066.0,296.0 M1066.2,516.0 L1066.2,296.0
+ M1066.4,516.0 L1066.4,296.2 M1066.6,516.0 L1066.6,296.5 M1066.7,516.0 L1066.7,296.9 M1066.9,516.0 L1066.9,297.4
+ M1067.1,516.0 L1067.1,298.1 M1067.3,516.0 L1067.3,298.9 M1067.5,516.0 L1067.5,299.9 M1067.6,516.0 L1067.6,301.0
+ M1067.8,516.0 L1067.8,302.3 M1068.0,516.0 L1068.0,303.8 M1068.2,516.0 L1068.2,305.4 M1068.4,516.0 L1068.4,307.2
+ M1068.5,516.0 L1068.5,309.2 M1068.7,516.0 L1068.7,311.4 M1068.9,516.0 L1068.9,313.8 M1069.1,516.0 L1069.1,316.4
+ M1069.3,516.0 L1069.3,319.4 M1069.4,516.0 L1069.4,322.6 M1069.6,516.0 L1069.6,326.1 M1069.8,516.0 L1069.8,330.1
+ M1070.0,516.0 L1070.0,334.4 M1070.2,516.0 L1070.2,339.3 M1070.3,516.0 L1070.3,344.8 M1070.5,516.0 L1070.5,351.0
+ M1070.7,516.0 L1070.7,358.1 M1070.9,516.0 L1070.9,366.4 M1071.1,516.0 L1071.1,376.3 M1071.3,516.0 L1071.3,388.4
+ M1071.4,516.0 L1071.4,404.2 M1071.6,516.0 L1071.6,426.6 M1071.8,516.0 L1071.8,464.8 M1072.0,516.0 M1072.2,516.0
+ L1072.2,465.0 M1072.3,516.0 L1072.3,426.9 M1072.5,516.0 L1072.5,404.7 M1072.7,516.0 L1072.7,389.1 M1072.9,516.0
+ L1072.9,377.0 M1073.1,516.0 L1073.1,367.3 M1073.2,516.0 L1073.2,359.2 M1073.4,516.0 L1073.4,352.2 M1073.6,516.0
+ L1073.6,346.2 M1073.8,516.0 L1073.8,340.9 M1074.0,516.0 L1074.0,336.2 M1074.1,516.0 L1074.1,332.0 M1074.3,516.0
+ L1074.3,328.2 M1074.5,516.0 L1074.5,324.8 M1074.7,516.0 L1074.7,321.7 M1074.9,516.0 L1074.9,319.0 M1075.0,516.0
+ L1075.0,316.5 M1075.2,516.0 L1075.2,314.2 M1075.4,516.0 L1075.4,312.2 M1075.6,516.0 L1075.6,310.3 M1075.8,516.0
+ L1075.8,308.7 M1075.9,516.0 L1075.9,307.2 M1076.1,516.0 L1076.1,305.9 M1076.3,516.0 L1076.3,304.8 M1076.5,516.0
+ L1076.5,303.8 M1076.7,516.0 L1076.7,303.0 M1076.8,516.0 L1076.8,302.3 M1077.0,516.0 L1077.0,301.8 M1077.2,516.0
+ L1077.2,301.4 M1077.4,516.0 L1077.4,301.2 M1077.6,516.0 L1077.6,301.0 M1077.7,516.0 L1077.7,301.0 M1077.9,516.0
+ L1077.9,301.2 M1078.1,516.0 L1078.1,301.5 M1078.3,516.0 L1078.3,301.9 M1078.5,516.0 L1078.5,302.4 M1078.6,516.0
+ L1078.6,303.1 M1078.8,516.0 L1078.8,303.9 M1079.0,516.0 L1079.0,304.9 M1079.2,516.0 L1079.2,306.0 M1079.4,516.0
+ L1079.4,307.3 M1079.6,516.0 L1079.6,308.7 M1079.7,516.0 L1079.7,310.3 M1079.9,516.0 L1079.9,312.1 M1080.1,516.0
+ L1080.1,314.1 M1080.3,516.0 L1080.3,316.3 M1080.5,516.0 L1080.5,318.7 M1080.6,516.0 L1080.6,321.4 M1080.8,516.0
+ L1080.8,324.3 M1081.0,516.0 L1081.0,327.5 M1081.2,516.0 L1081.2,331.0 M1081.4,516.0 L1081.4,335.0 M1081.5,516.0
+ L1081.5,339.3 M1081.7,516.0 L1081.7,344.2 M1081.9,516.0 L1081.9,349.6 M1082.1,516.0 L1082.1,355.8 M1082.3,516.0
+ L1082.3,362.9 M1082.4,516.0 L1082.4,371.2 M1082.6,516.0 L1082.6,381.1 M1082.8,516.0 L1082.8,393.3 M1083.0,516.0
+ L1083.0,409.1 M1083.2,516.0 L1083.2,431.4 M1083.3,516.0 L1083.3,469.6 M1083.5,516.0 M1083.7,516.0 L1083.7,469.8
+ M1083.9,516.0 L1083.9,431.7 M1084.1,516.0 L1084.1,409.5 M1084.2,516.0 L1084.2,393.8 M1084.4,516.0 L1084.4,381.8
+ M1084.6,516.0 L1084.6,372.1 M1084.8,516.0 L1084.8,363.9 M1085.0,516.0 L1085.0,357.0 M1085.1,516.0 L1085.1,350.9
+ M1085.3,516.0 L1085.3,345.6 M1085.5,516.0 L1085.5,340.9 M1085.7,516.0 L1085.7,336.7 M1085.9,516.0 L1085.9,332.9
+ M1086.0,516.0 L1086.0,329.5 M1086.2,516.0 L1086.2,326.4 M1086.4,516.0 L1086.4,323.7 M1086.6,516.0 L1086.6,321.1
+ M1086.8,516.0 L1086.8,318.9 M1086.9,516.0 L1086.9,316.8 M1087.1,516.0 L1087.1,315.0 M1087.3,516.0 L1087.3,313.3
+ M1087.5,516.0 L1087.5,311.9 '/> <path stroke='rgb(222, 125, 0)' d='M1087.7,516.0 L1087.7,310.6 M1087.9,516.0 L1087.9,309.5 M1088.0,516.0 L1088.0,308.5 M1088.2,516.0 L1088.2,307.7
+ M1088.4,516.0 L1088.4,307.0 M1088.6,516.0 L1088.6,306.4 M1088.8,516.0 L1088.8,306.0 M1088.9,516.0 L1088.9,305.8
+ M1089.1,516.0 L1089.1,305.6 M1089.3,516.0 L1089.3,305.6 M1089.5,516.0 L1089.5,305.8 M1089.7,516.0 L1089.7,306.1
+ M1089.8,516.0 L1089.8,306.5 M1090.0,516.0 L1090.0,307.0 M1090.2,516.0 L1090.2,307.7 M1090.4,516.0 L1090.4,308.5
+ M1090.6,516.0 L1090.6,309.5 M1090.7,516.0 L1090.7,310.6 M1090.9,516.0 L1090.9,311.8 M1091.1,516.0 L1091.1,313.3
+ M1091.3,516.0 L1091.3,314.9 M1091.5,516.0 L1091.5,316.7 M1091.6,516.0 L1091.6,318.6 M1091.8,516.0 L1091.8,320.8
+ M1092.0,516.0 L1092.0,323.2 M1092.2,516.0 L1092.2,325.9 M1092.4,516.0 L1092.4,328.8 M1092.5,516.0 L1092.5,332.0
+ M1092.7,516.0 L1092.7,335.5 M1092.9,516.0 L1092.9,339.4 M1093.1,516.0 L1093.1,343.8 M1093.3,516.0 L1093.3,348.6
+ M1093.4,516.0 L1093.4,354.1 M1093.6,516.0 L1093.6,360.3 M1093.8,516.0 L1093.8,367.4 M1094.0,516.0 L1094.0,375.6
+ M1094.2,516.0 L1094.2,385.5 M1094.3,516.0 L1094.3,397.7 M1094.5,516.0 L1094.5,413.5 M1094.7,516.0 L1094.7,435.8
+ M1094.9,516.0 L1094.9,474.0 M1095.1,516.0 M1095.2,516.0 L1095.2,474.2 M1095.4,516.0 L1095.4,436.1 M1095.6,516.0
+ L1095.6,413.9 M1095.8,516.0 L1095.8,398.2 M1096.0,516.0 L1096.0,386.2 M1096.2,516.0 L1096.2,376.4 M1096.3,516.0
+ L1096.3,368.3 M1096.5,516.0 L1096.5,361.3 M1096.7,516.0 L1096.7,355.3 M1096.9,516.0 L1096.9,350.0 M1097.1,516.0
+ L1097.1,345.2 M1097.2,516.0 L1097.2,341.0 M1097.4,516.0 L1097.4,337.2 M1097.6,516.0 L1097.6,333.8 M1097.8,516.0
+ L1097.8,330.8 M1098.0,516.0 L1098.0,328.0 M1098.1,516.0 L1098.1,325.5 M1098.3,516.0 L1098.3,323.2 M1098.5,516.0
+ L1098.5,321.1 M1098.7,516.0 L1098.7,319.3 M1098.9,516.0 L1098.9,317.7 M1099.0,516.0 L1099.0,316.2 M1099.2,516.0
+ L1099.2,314.9 M1099.4,516.0 L1099.4,313.7 M1099.6,516.0 L1099.6,312.8 M1099.8,516.0 L1099.8,311.9 M1099.9,516.0
+ L1099.9,311.3 M1100.1,516.0 L1100.1,310.7 M1100.3,516.0 L1100.3,310.3 M1100.5,516.0 L1100.5,310.0 M1100.7,516.0
+ L1100.7,309.9 M1100.8,516.0 L1100.8,309.9 M1101.0,516.0 L1101.0,310.0 M1101.2,516.0 L1101.2,310.3 M1101.4,516.0
+ L1101.4,310.7 M1101.6,516.0 L1101.6,311.2 M1101.7,516.0 L1101.7,311.9 M1101.9,516.0 L1101.9,312.7 M1102.1,516.0
+ L1102.1,313.7 M1102.3,516.0 L1102.3,314.8 M1102.5,516.0 L1102.5,316.0 M1102.6,516.0 L1102.6,317.5 M1102.8,516.0
+ L1102.8,319.1 M1103.0,516.0 L1103.0,320.8 M1103.2,516.0 L1103.2,322.8 M1103.4,516.0 L1103.4,325.0 M1103.5,516.0
+ L1103.5,327.4 M1103.7,516.0 L1103.7,330.0 M1103.9,516.0 L1103.9,332.9 M1104.1,516.0 L1104.1,336.1 M1104.3,516.0
+ L1104.3,339.7 M1104.4,516.0 L1104.4,343.6 M1104.6,516.0 L1104.6,347.9 M1104.8,516.0 L1104.8,352.8 M1105.0,516.0
+ L1105.0,358.2 M1105.2,516.0 L1105.2,364.4 M1105.4,516.0 L1105.4,371.5 M1105.5,516.0 L1105.5,379.8 M1105.7,516.0
+ L1105.7,389.6 M1105.9,516.0 L1105.9,401.8 M1106.1,516.0 L1106.1,417.6 M1106.3,516.0 L1106.3,439.9 M1106.4,516.0
+ L1106.4,478.1 M1106.6,516.0 M1106.8,516.0 L1106.8,478.3 M1107.0,516.0 L1107.0,440.2 M1107.2,516.0 L1107.2,418.0
+ M1107.3,516.0 L1107.3,402.3 M1107.5,516.0 L1107.5,390.3 M1107.7,516.0 L1107.7,380.5 M1107.9,516.0 L1107.9,372.4
+ M1108.1,516.0 L1108.1,365.4 M1108.2,516.0 L1108.2,359.3 M1108.4,516.0 L1108.4,354.0 M1108.6,516.0 L1108.6,349.3
+ M1108.8,516.0 L1108.8,345.1 M1109.0,516.0 L1109.0,341.3 M1109.1,516.0 L1109.1,337.9 M1109.3,516.0 L1109.3,334.8
+ M1109.5,516.0 L1109.5,332.0 M1109.7,516.0 L1109.7,329.5 M1109.9,516.0 L1109.9,327.2 M1110.0,516.0 L1110.0,325.1
+ M1110.2,516.0 L1110.2,323.3 M1110.4,516.0 L1110.4,321.6 M1110.6,516.0 L1110.6,320.2 M1110.8,516.0 L1110.8,318.9
+ M1110.9,516.0 L1110.9,317.7 M1111.1,516.0 L1111.1,316.7 M1111.3,516.0 L1111.3,315.9 M1111.5,516.0 L1111.5,315.2
+ M1111.7,516.0 L1111.7,314.7 M1111.8,516.0 L1111.8,314.3 M1112.0,516.0 L1112.0,314.0 M1112.2,516.0 L1112.2,313.8
+ M1112.4,516.0 L1112.4,313.8 M1112.6,516.0 L1112.6,314.0 M1112.7,516.0 L1112.7,314.2 M1112.9,516.0 L1112.9,314.6
+ M1113.1,516.0 L1113.1,315.1 M1113.3,516.0 L1113.3,315.8 M1113.5,516.0 L1113.5,316.6 M1113.7,516.0 L1113.7,317.6
+ M1113.8,516.0 L1113.8,318.7 M1114.0,516.0 L1114.0,319.9 M1114.2,516.0 L1114.2,321.4 M1114.4,516.0 L1114.4,323.0
+ M1114.6,516.0 L1114.6,324.7 M1114.7,516.0 L1114.7,326.7 M1114.9,516.0 L1114.9,328.9 M1115.1,516.0 L1115.1,331.3
+ M1115.3,516.0 L1115.3,333.9 M1115.5,516.0 L1115.5,336.8 M1115.6,516.0 L1115.6,340.0 M1115.8,516.0 L1115.8,343.5
+ M1116.0,516.0 L1116.0,347.4 M1116.2,516.0 L1116.2,351.8 M1116.4,516.0 L1116.4,356.6 M1116.5,516.0 L1116.5,362.1
+ M1116.7,516.0 L1116.7,368.2 M1116.9,516.0 L1116.9,375.3 M1117.1,516.0 L1117.1,383.6 M1117.3,516.0 L1117.3,393.5
+ M1117.4,516.0 L1117.4,405.6 M1117.6,516.0 L1117.6,421.4 M1117.8,516.0 L1117.8,443.7 M1118.0,516.0 L1118.0,481.9
+ M1118.2,516.0 M1118.3,516.0 L1118.3,482.1 M1118.5,516.0 L1118.5,444.0 M1118.7,516.0 L1118.7,421.8 M1118.9,516.0
+ L1118.9,406.1 M1119.1,516.0 L1119.1,394.0 M1119.2,516.0 L1119.2,384.3 M1119.4,516.0 L1119.4,376.1 M1119.6,516.0
+ L1119.6,369.2 M1119.8,516.0 L1119.8,363.1 M1120.0,516.0 L1120.0,357.8 M1120.1,516.0 L1120.1,353.0 M1120.3,516.0
+ L1120.3,348.8 M1120.5,516.0 L1120.5,345.0 M1120.7,516.0 L1120.7,341.6 M1120.9,516.0 L1120.9,338.5 M1121.0,516.0
+ L1121.0,335.7 M1121.2,516.0 L1121.2,333.2 M1121.4,516.0 L1121.4,330.9 M1121.6,516.0 L1121.6,328.9 M1121.8,516.0
+ L1121.8,327.0 M1122.0,516.0 L1122.0,325.4 M1122.1,516.0 L1122.1,323.9 M1122.3,516.0 L1122.3,322.6 M1122.5,516.0
+ L1122.5,321.4 M1122.7,516.0 L1122.7,320.4 M1122.9,516.0 L1122.9,319.6 M1123.0,516.0 L1123.0,318.9 M1123.2,516.0
+ L1123.2,318.4 M1123.4,516.0 L1123.4,317.9 M1123.6,516.0 L1123.6,317.7 M1123.8,516.0 L1123.8,317.5 M1123.9,516.0
+ L1123.9,317.5 M1124.1,516.0 L1124.1,317.6 M1124.3,516.0 L1124.3,317.9 M1124.5,516.0 L1124.5,318.3 M1124.7,516.0
+ L1124.7,318.8 M1124.8,516.0 L1124.8,319.5 M1125.0,516.0 L1125.0,320.3 M1125.2,516.0 L1125.2,321.2 M1125.4,516.0
+ L1125.4,322.3 M1125.6,516.0 L1125.6,323.6 M1125.7,516.0 L1125.7,325.0 M1125.9,516.0 L1125.9,326.6 M1126.1,516.0
+ L1126.1,328.4 M1126.3,516.0 L1126.3,330.3 M1126.5,516.0 L1126.5,332.5 M1126.6,516.0 L1126.6,334.9 M1126.8,516.0
+ L1126.8,337.5 M1127.0,516.0 L1127.0,340.4 M1127.2,516.0 L1127.2,343.6 M1127.4,516.0 L1127.4,347.1 M1127.5,516.0
+ L1127.5,351.0 M1127.7,516.0 L1127.7,355.4 M1127.9,516.0 L1127.9,360.2 M1128.1,516.0 L1128.1,365.7 M1128.3,516.0
+ L1128.3,371.8 M1128.4,516.0 L1128.4,378.9 M1128.6,516.0 L1128.6,387.2 M1128.8,516.0 L1128.8,397.0 M1129.0,516.0
+ L1129.0,409.2 M1129.2,516.0 L1129.2,425.0 M1129.3,516.0 L1129.3,447.3 M1129.5,516.0 L1129.5,485.5 M1129.7,516.0
+ M1129.9,516.0 L1129.9,485.6 M1130.1,516.0 L1130.1,447.5 M1130.3,516.0 L1130.3,425.3 M1130.4,516.0 L1130.4,409.6
+ M1130.6,516.0 L1130.6,397.6 M1130.8,516.0 L1130.8,387.8 M1131.0,516.0 L1131.0,379.7 M1131.2,516.0 L1131.2,372.7
+ M1131.3,516.0 L1131.3,366.6 M1131.5,516.0 L1131.5,361.3 M1131.7,516.0 L1131.7,356.6 M1131.9,516.0 L1131.9,352.3
+ M1132.1,516.0 L1132.1,348.5 M1132.2,516.0 L1132.2,345.1 M1132.4,516.0 L1132.4,342.0 M1132.6,516.0 L1132.6,339.2
+ M1132.8,516.0 L1132.8,336.7 M1133.0,516.0 L1133.0,334.4 M1133.1,516.0 L1133.1,332.4 M1133.3,516.0 L1133.3,330.5
+ M1133.5,516.0 L1133.5,328.9 M1133.7,516.0 L1133.7,327.4 M1133.9,516.0 L1133.9,326.1 M1134.0,516.0 L1134.0,324.9
+ M1134.2,516.0 L1134.2,323.9 '/> <path stroke='rgb(222, 125, 0)' d='M1134.4,516.0 L1134.4,323.1 M1134.6,516.0 L1134.6,322.4 M1134.8,516.0 L1134.8,321.8 M1134.9,516.0 L1134.9,321.4
+ M1135.1,516.0 L1135.1,321.1 M1135.3,516.0 L1135.3,321.0 M1135.5,516.0 L1135.5,321.0 M1135.7,516.0 L1135.7,321.1
+ M1135.8,516.0 L1135.8,321.3 M1136.0,516.0 L1136.0,321.7 M1136.2,516.0 L1136.2,322.2 M1136.4,516.0 L1136.4,322.9
+ M1136.6,516.0 L1136.6,323.7 M1136.7,516.0 L1136.7,324.7 M1136.9,516.0 L1136.9,325.7 M1137.1,516.0 L1137.1,327.0
+ M1137.3,516.0 L1137.3,328.4 M1137.5,516.0 L1137.5,330.0 M1137.6,516.0 L1137.6,331.8 M1137.8,516.0 L1137.8,333.7
+ M1138.0,516.0 L1138.0,335.9 M1138.2,516.0 L1138.2,338.3 M1138.4,516.0 L1138.4,340.9 M1138.6,516.0 L1138.6,343.8
+ M1138.7,516.0 L1138.7,347.0 M1138.9,516.0 L1138.9,350.5 M1139.1,516.0 L1139.1,354.4 M1139.3,516.0 L1139.3,358.8
+ M1139.5,516.0 L1139.5,363.6 M1139.6,516.0 L1139.6,369.0 M1139.8,516.0 L1139.8,375.2 M1140.0,516.0 L1140.0,382.3
+ M1140.2,516.0 L1140.2,390.5 M1140.4,516.0 L1140.4,400.4 M1140.5,516.0 L1140.5,412.6 M1140.7,516.0 L1140.7,428.3
+ M1140.9,516.0 L1140.9,450.6 M1141.1,516.0 L1141.1,488.9 M1141.3,516.0 M1141.4,516.0 L1141.4,489.0 M1141.6,516.0
+ L1141.6,450.8 M1141.8,516.0 L1141.8,428.6 M1142.0,516.0 L1142.0,413.0 M1142.2,516.0 L1142.2,400.9 M1142.3,516.0
+ L1142.3,391.2 M1142.5,516.0 L1142.5,383.0 M1142.7,516.0 L1142.7,376.0 M1142.9,516.0 L1142.9,369.9 M1143.1,516.0
+ L1143.1,364.6 M1143.2,516.0 L1143.2,359.9 M1143.4,516.0 L1143.4,355.6 M1143.6,516.0 L1143.6,351.8 M1143.8,516.0
+ L1143.8,348.4 M1144.0,516.0 L1144.0,345.3 M1144.1,516.0 L1144.1,342.5 M1144.3,516.0 L1144.3,340.0 M1144.5,516.0
+ L1144.5,337.7 M1144.7,516.0 L1144.7,335.7 M1144.9,516.0 L1144.9,333.8 M1145.0,516.0 L1145.0,332.1 M1145.2,516.0
+ L1145.2,330.6 M1145.4,516.0 L1145.4,329.3 M1145.6,516.0 L1145.6,328.2 M1145.8,516.0 L1145.8,327.2 M1145.9,516.0
+ L1145.9,326.3 M1146.1,516.0 L1146.1,325.6 M1146.3,516.0 L1146.3,325.1 M1146.5,516.0 L1146.5,324.7 M1146.7,516.0
+ L1146.7,324.4 M1146.9,516.0 L1146.9,324.2 M1147.0,516.0 L1147.0,324.2 M1147.2,516.0 L1147.2,324.3 M1147.4,516.0
+ L1147.4,324.6 M1147.6,516.0 L1147.6,325.0 M1147.8,516.0 L1147.8,325.5 M1147.9,516.0 L1147.9,326.1 M1148.1,516.0
+ L1148.1,326.9 M1148.3,516.0 L1148.3,327.9 M1148.5,516.0 L1148.5,329.0 M1148.7,516.0 L1148.7,330.2 M1148.8,516.0
+ L1148.8,331.6 M1149.0,516.0 L1149.0,333.2 M1149.2,516.0 L1149.2,335.0 M1149.4,516.0 L1149.4,336.9 M1149.6,516.0
+ L1149.6,339.1 M1149.7,516.0 L1149.7,341.5 M1149.9,516.0 L1149.9,344.1 M1150.1,516.0 L1150.1,347.0 M1150.3,516.0
+ L1150.3,350.2 M1150.5,516.0 L1150.5,353.7 M1150.6,516.0 L1150.6,357.6 M1150.8,516.0 L1150.8,361.9 M1151.0,516.0
+ L1151.0,366.8 M1151.2,516.0 L1151.2,372.2 M1151.4,516.0 L1151.4,378.4 M1151.5,516.0 L1151.5,385.5 M1151.7,516.0
+ L1151.7,393.7 M1151.9,516.0 L1151.9,403.6 M1152.1,516.0 L1152.1,415.7 M1152.3,516.0 L1152.3,431.5 M1152.4,516.0
+ L1152.4,453.8 M1152.6,516.0 L1152.6,492.0 M1152.8,516.0 M1153.0,516.0 L1153.0,492.1 M1153.2,516.0 L1153.2,454.0
+ M1153.3,516.0 L1153.3,431.8 M1153.5,516.0 L1153.5,416.1 M1153.7,516.0 L1153.7,404.1 M1153.9,516.0 L1153.9,394.3
+ M1154.1,516.0 L1154.1,386.1 M1154.2,516.0 L1154.2,379.1 M1154.4,516.0 L1154.4,373.1 M1154.6,516.0 L1154.6,367.7
+ M1154.8,516.0 L1154.8,363.0 M1155.0,516.0 L1155.0,358.8 M1155.2,516.0 L1155.2,355.0 M1155.3,516.0 L1155.3,351.5
+ M1155.5,516.0 L1155.5,348.4 M1155.7,516.0 L1155.7,345.6 M1155.9,516.0 L1155.9,343.1 M1156.1,516.0 L1156.1,340.8
+ M1156.2,516.0 L1156.2,338.8 M1156.4,516.0 L1156.4,336.9 M1156.6,516.0 L1156.6,335.2 M1156.8,516.0 L1156.8,333.7
+ M1157.0,516.0 L1157.0,332.4 M1157.1,516.0 L1157.1,331.3 M1157.3,516.0 L1157.3,330.3 M1157.5,516.0 L1157.5,329.4
+ M1157.7,516.0 L1157.7,328.7 M1157.9,516.0 L1157.9,328.2 M1158.0,516.0 L1158.0,327.7 M1158.2,516.0 L1158.2,327.4
+ M1158.4,516.0 L1158.4,327.3 M1158.6,516.0 L1158.6,327.3 M1158.8,516.0 L1158.8,327.4 M1158.9,516.0 L1158.9,327.6
+ M1159.1,516.0 L1159.1,328.0 M1159.3,516.0 L1159.3,328.5 M1159.5,516.0 L1159.5,329.2 M1159.7,516.0 L1159.7,330.0
+ M1159.8,516.0 L1159.8,330.9 M1160.0,516.0 L1160.0,332.0 M1160.2,516.0 L1160.2,333.3 M1160.4,516.0 L1160.4,334.7
+ M1160.6,516.0 L1160.6,336.3 M1160.7,516.0 L1160.7,338.0 M1160.9,516.0 L1160.9,340.0 M1161.1,516.0 L1161.1,342.1
+ M1161.3,516.0 L1161.3,344.5 M1161.5,516.0 L1161.5,347.1 M1161.6,516.0 L1161.6,350.0 M1161.8,516.0 L1161.8,353.2
+ M1162.0,516.0 L1162.0,356.7 M1162.2,516.0 L1162.2,360.6 M1162.4,516.0 L1162.4,365.0 M1162.5,516.0 L1162.5,369.8
+ M1162.7,516.0 L1162.7,375.2 M1162.9,516.0 L1162.9,381.4 M1163.1,516.0 L1163.1,388.5 M1163.3,516.0 L1163.3,396.7
+ M1163.5,516.0 L1163.5,406.6 M1163.6,516.0 L1163.6,418.7 M1163.8,516.0 L1163.8,434.5 M1164.0,516.0 L1164.0,456.8
+ M1164.2,516.0 L1164.2,495.0 M1164.4,516.0 M1164.5,516.0 L1164.5,495.1 M1164.7,516.0 L1164.7,457.0 M1164.9,516.0
+ L1164.9,434.8 M1165.1,516.0 L1165.1,419.1 M1165.3,516.0 L1165.3,407.0 M1165.4,516.0 L1165.4,397.3 M1165.6,516.0
+ L1165.6,389.1 M1165.8,516.0 L1165.8,382.1 M1166.0,516.0 L1166.0,376.0 M1166.2,516.0 L1166.2,370.7 M1166.3,516.0
+ L1166.3,365.9 M1166.5,516.0 L1166.5,361.7 M1166.7,516.0 L1166.7,357.9 M1166.9,516.0 L1166.9,354.5 M1167.1,516.0
+ L1167.1,351.4 M1167.2,516.0 L1167.2,348.6 M1167.4,516.0 L1167.4,346.1 M1167.6,516.0 L1167.6,343.8 M1167.8,516.0
+ L1167.8,341.7 M1168.0,516.0 L1168.0,339.8 M1168.1,516.0 L1168.1,338.2 M1168.3,516.0 L1168.3,336.7 M1168.5,516.0
+ L1168.5,335.3 M1168.7,516.0 L1168.7,334.2 M1168.9,516.0 L1168.9,333.2 M1169.0,516.0 L1169.0,332.3 M1169.2,516.0
+ L1169.2,331.6 M1169.4,516.0 L1169.4,331.1 M1169.6,516.0 L1169.6,330.6 M1169.8,516.0 L1169.8,330.4 M1169.9,516.0
+ L1169.9,330.2 M1170.1,516.0 L1170.1,330.2 M1170.3,516.0 L1170.3,330.3 M1170.5,516.0 L1170.5,330.5 M1170.7,516.0
+ L1170.7,330.9 M1170.8,516.0 L1170.8,331.4 M1171.0,516.0 L1171.0,332.1 M1171.2,516.0 L1171.2,332.9 M1171.4,516.0
+ L1171.4,333.8 M1171.6,516.0 L1171.6,334.9 M1171.8,516.0 L1171.8,336.1 M1171.9,516.0 L1171.9,337.6 M1172.1,516.0
+ L1172.1,339.1 M1172.3,516.0 L1172.3,340.9 M1172.5,516.0 L1172.5,342.8 M1172.7,516.0 L1172.7,345.0 M1172.8,516.0
+ L1172.8,347.4 M1173.0,516.0 L1173.0,350.0 M1173.2,516.0 L1173.2,352.9 M1173.4,516.0 L1173.4,356.1 M1173.6,516.0
+ L1173.6,359.6 M1173.7,516.0 L1173.7,363.5 M1173.9,516.0 L1173.9,367.8 M1174.1,516.0 L1174.1,372.6 M1174.3,516.0
+ L1174.3,378.1 M1174.5,516.0 L1174.5,384.2 M1174.6,516.0 L1174.6,391.3 M1174.8,516.0 L1174.8,399.6 M1175.0,516.0
+ L1175.0,409.4 M1175.2,516.0 L1175.2,421.6 M1175.4,516.0 L1175.4,437.3 M1175.5,516.0 L1175.5,459.6 M1175.7,516.0
+ L1175.7,497.8 M1175.9,516.0 '/></g>
+ </g>
+ <g id="gnuplot_plot_2b" ><title>gnuplot_plot_2b</title>
+<g fill="none" color="black" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 0, 0, 0)' d='M714.0,516.0 L1175.9,516.0 '/></g>
+ </g>
+<g fill="none" color="#FFFFFF" stroke="rgb( 0, 0, 0)" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="2.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <g transform="translate(916.1,506.6)" stroke="none" fill="rgb(0,0,0)" font-family="Microsoft Sans Serif:Bold" font-size="10.00" text-anchor="start">
+ <text><tspan font-family="Microsoft Sans Serif" font-weight="bold" >B = 1.333</tspan></text>
+ </g>
+</g>
+<g fill="none" color="black" stroke="rgb( 0, 0, 0)" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
+ <path stroke='rgb( 38, 38, 38)' d='M714.0,516.0 L1175.9,516.0 M714.0,84.1 L1175.9,84.1 M714.0,516.0 L714.0,84.1 M1175.9,516.0 L1175.9,84.1
+ '/></g>
+<g fill="none" color="black" stroke="rgb( 38, 38, 38)" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
+</g>
+</g>
+</svg>
+
diff --git a/common/settings.tex b/common/settings.tex
index ba83d93..0e8e28c 100644
--- a/common/settings.tex
+++ b/common/settings.tex
@@ -107,6 +107,15 @@
};
};
}
+\tikzmath{
+ function asinc(\x, \y) {
+ if abs(\x) < .001 then { % (|x| < .001) ~ (x = 0)
+ return 1;
+ } else {
+ return sin(\y * deg(\x) / 2)/(\y * sin(deg(\x)/2));
+ };
+ };
+}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Symbols