diff --git a/LAHRIRI_WOLFF_CR_SAR_audio.pdf b/LAHRIRI_WOLFF_CR_SAR_audio.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..4886d0c04984287fda9c7cf5839907006649b6eb
Binary files /dev/null and b/LAHRIRI_WOLFF_CR_SAR_audio.pdf differ
diff --git a/Partie1/quesion2.m b/Partie1/quesion2.m
new file mode 100644
index 0000000000000000000000000000000000000000..ab9a1231ae014e9c0ba9a1c2c76cf0c2b30227d0
--- /dev/null
+++ b/Partie1/quesion2.m
@@ -0,0 +1,31 @@
+% Charger les fichiers audio
+[y1, Fs1] = audioread('single_tone_piano1.wav');
+[y2, Fs2] = audioread('single_tone_piano2.wav');
+
+% Calculer la FFT
+N1 = length(y1);
+N2 = length(y2);
+f1 = (-N1/2:N1/2-1)*(Fs1/N1);
+f2 = (-N2/2:N2/2-1)*(Fs2/N2);
+
+Y1 = fftshift(abs(fft(y1)));
+Y2 = fftshift(abs(fft(y2)));
+
+% Affichage
+figure;
+subplot(2,1,1);
+plot(f1, 20*log10(Y1));
+title('Spectre du Piano 1');
+xlabel('Fréquence (Hz)');
+ylabel('Amplitude (dB)');
+xlim([0 2000]); % zoom sur la zone utile
+
+subplot(2,1,2);
+plot(f2, 20*log10(Y2));
+title('Spectre du Piano 2');
+xlabel('Fréquence (Hz)');
+ylabel('Amplitude (dB)');
+xlim([0 2000]); % zoom aussi
+
+% Sauvegarder la figure
+saveas(gcf, 'spectre_pianos.png');
\ No newline at end of file
diff --git a/Partie1/question1.m b/Partie1/question1.m
new file mode 100644
index 0000000000000000000000000000000000000000..1f8790edbc555057863144fc1b1ba156edaf0824
--- /dev/null
+++ b/Partie1/question1.m
@@ -0,0 +1,72 @@
+% --- Paramètres ---
+clear; close all; clc
+
+% Charger les sons d'instruments
+[instru1, Fs1] = audioread('single_tone_guitar_nylon_string_a2.wav');   % Exemple instrument à cordes
+[instru2, Fs2] = audioread('single_tone_violin-a3.wav');    % Exemple instrument à cordes
+[instru3, Fs3] = audioread('single_tone_cello-a3.wav');     % Exemple instrument à vent
+
+% Assurer que ce sont des signaux mono
+if size(instru1,2) > 1, instru1 = mean(instru1,2); end
+if size(instru2,2) > 1, instru2 = mean(instru2,2); end
+if size(instru3,2) > 1, instru3 = mean(instru3,2); end
+
+% Découper pour avoir la même durée
+N = 2^14; % Nombre d'échantillons (choisi ici pour avoir une puissance de 2)
+instru1 = instru1(1:N);
+instru2 = instru2(1:N);
+instru3 = instru3(1:N);
+
+% --- Calcul FFT ---
+f1 = (-N/2:N/2-1)*(Fs1/N); % Axe fréquentiel
+f2 = (-N/2:N/2-1)*(Fs2/N);
+f3 = (-N/2:N/2-1)*(Fs3/N);
+
+FFT1 = fftshift(fft(instru1));
+FFT2 = fftshift(fft(instru2));
+FFT3 = fftshift(fft(instru3));
+
+% --- Calcul de l'amplitude en dB ---
+Amp1 = 20*log10(abs(FFT1));
+Amp2 = 20*log10(abs(FFT2));
+Amp3 = 20*log10(abs(FFT3));
+
+% --- Affichage ---
+figure;
+subplot(3,1,1)
+plot(f1, Amp1);
+xlim([0 5000]); % Limiter entre 0 et 5000 Hz (à adapter si besoin)
+xlabel('Fréquence (Hz)');
+ylabel('Amplitude (dB)');
+title('Spectre de la Guitare');
+grid on
+
+subplot(3,1,2)
+plot(f2, Amp2);
+xlim([0 5000]);
+xlabel('Fréquence (Hz)');
+ylabel('Amplitude (dB)');
+title('Spectre du Violon');
+grid on
+
+subplot(3,1,3)
+plot(f3, Amp3);
+xlim([0 5000]);
+xlabel('Fréquence (Hz)');
+ylabel('Amplitude (dB)');
+title('Spectre de la contrebasse');
+grid on
+
+% --- Détermination de la fréquence fondamentale ---
+% Chercher le maximum dans la partie positive
+[~, idx1] = max(Amp1(N/2:end));
+[~, idx2] = max(Amp2(N/2:end));
+[~, idx3] = max(Amp3(N/2:end));
+
+f_fondamentale1 = f1(N/2 + idx1 - 1);
+f_fondamentale2 = f2(N/2 + idx2 - 1);
+f_fondamentale3 = f3(N/2 + idx3 - 1);
+
+fprintf('Fréquence fondamentale guitare : %.2f Hz\n', f_fondamentale1);
+fprintf('Fréquence fondamentale violon  : %.2f Hz\n', f_fondamentale2);
+fprintf('Fréquence fondamentale flûte   : %.2f Hz\n', f_fondamentale3);
\ No newline at end of file
diff --git a/Partie1/question3.m b/Partie1/question3.m
new file mode 100644
index 0000000000000000000000000000000000000000..78a7a178203ddf54073017ee3360c6747373f540
--- /dev/null
+++ b/Partie1/question3.m
@@ -0,0 +1,42 @@
+% Charger le son
+[y, Fs] = audioread('single_tone_piano1.wav');
+
+% FFT
+N = 2^nextpow2(length(y));
+Y = fft(y, N);
+P = abs(Y(1:N/2+1));
+f = Fs*(0:(N/2))/N;
+
+% Trouver la fondamentale (plus fort pic sous 500 Hz)
+[~, loc_f1] = max(P(f < 500)); % Suppose que f1 est sous 500Hz
+f1 = f(loc_f1);
+
+% Initialiser
+freq_harm = zeros(1,8);
+amp_harm = zeros(1,8);
+
+% Chercher 8 harmoniques autour de nf1
+for n = 1:8
+    [~, idx] = min(abs(f - n*f1)); % Trouver l'index proche de n*f1
+    freq_harm(n) = f(idx);
+    amp_harm(n) = P(idx);
+end
+
+% Durée du son
+duration = 2; % secondes
+t = 0:1/Fs:duration;
+
+% Signal synthétisé
+synth = zeros(size(t));
+for k = 1:8
+    synth = synth + amp_harm(k) * cos(2*pi*freq_harm(k)*t);
+end
+
+% Normaliser
+synth = synth / max(abs(synth));
+
+% Jouer le son
+sound(synth, Fs);
+
+% Sauvegarder si besoin
+audiowrite('piano_synthetise.wav', synth, Fs);
\ No newline at end of file
diff --git a/Partie1/question4.m b/Partie1/question4.m
new file mode 100644
index 0000000000000000000000000000000000000000..e6548d50549705d1ebfa78c7f2655eb84a2b6f28
--- /dev/null
+++ b/Partie1/question4.m
@@ -0,0 +1,28 @@
+% Définir les durées relatives
+attackTime = 0.1;   % secondes
+decayTime = 0.2;    % secondes
+sustainLevel = 0.6; % entre 0 et 1
+releaseTime = 0.5;  % secondes
+
+% Créer l'enveloppe
+attackSamples = round(attackTime*Fs);
+decaySamples = round(decayTime*Fs);
+sustainSamples = round((duration - attackTime - decayTime - releaseTime)*Fs);
+releaseSamples = round(releaseTime*Fs);
+
+envelope = [linspace(0,1,attackSamples), ...
+            linspace(1,sustainLevel,decaySamples), ...
+            sustainLevel*ones(1,sustainSamples), ...
+            linspace(sustainLevel,0,releaseSamples)];
+
+% Ajuster au vecteur temps t
+envelope = [envelope, zeros(1, length(t) - length(envelope))];
+
+% Appliquer l'enveloppe au signal synthétisé
+synth_adsr = synth .* envelope;
+
+% Jouer le son
+sound(synth_adsr, Fs);
+
+% Sauvegarder
+audiowrite('piano_synthetise_adsr.wav', synth_adsr, Fs);
\ No newline at end of file
diff --git a/Partie2/question22.m b/Partie2/question22.m
new file mode 100644
index 0000000000000000000000000000000000000000..b25ae664c2354a58a38e46ec0a92813a351f761e
--- /dev/null
+++ b/Partie2/question22.m
@@ -0,0 +1,31 @@
+N = 1024;
+fe = 1000;
+t = (0: N - 1) / fe;
+x = sign(sin(2 * pi * 5 * t));   % signal carré 5 Hz
+
+% Filtrage passe-bas
+b = [0.5, 0.5];
+a = 1;
+y = filter(b, a, x);
+
+% FFT
+Xf = fftshift(fft(x)) / N;
+Yf = fftshift(fft(y)) / N;
+f = (-N / 2 : N / 2 - 1) * (fe / N);
+
+% Affichage avec subplot
+figure;
+
+subplot(2,1,1);
+plot(f, 20 * log10(abs(Xf) + 1e-12), 'b');
+xlabel('Fréquence (Hz)');
+ylabel('Amplitude (dB)');
+title('Spectre du signal d’entrée (x[k])');
+grid on;
+
+subplot(2,1,2);
+plot(f, 20 * log10(abs(Yf) + 1e-12), 'r');
+xlabel('Fréquence (Hz)');
+ylabel('Amplitude (dB)');
+title('Spectre du signal de sortie (y[k]) après filtrage');
+grid on;
diff --git a/Partie2/test_effet_reverb.m b/Partie2/test_effet_reverb.m
new file mode 100644
index 0000000000000000000000000000000000000000..5011b7c9472ca2e895002c96217a419ff5df8dbe
--- /dev/null
+++ b/Partie2/test_effet_reverb.m
@@ -0,0 +1,25 @@
+% test_effet_reverb.m
+% Script de test de la fonction effet_reverb avec mesure de temps
+
+% --- Étape 1 : Chargement du signal audio source ---
+[x, fe] = audioread('nylon-guitar.wav');  % x : signal source, fe : fréquence d'échantillonnage
+
+% --- Étape 2 : Simulation de la pièce ---
+addpath('C:\Users\infos\OneDrive\Bureau\IMT\Electrical Engineering IMT\SAR\synth_add\student_pack\src');
+z = simule_piece(x, fe);  % réponse simulée de la pièce
+
+% --- Étape 3 : Estimation de la réponse impulsionnelle ---
+[Rzx, ~] = xcorr(z, x, 'none');
+h = Rzx / max(abs(Rzx));  % normalisation facultative
+
+% Application de la réverbération avec mesure de temps ---
+tic;                             % démarrage du chronomètre
+y = effet_reverb(x, h);          % application de la réverbération
+temps_execution = toc;           % arrêt du chronomètre
+
+% Affichage du temps d'exécution ---
+fprintf('Temps d''exécution de effet_reverb : %.6f secondes\n', temps_execution);
+
+% --- Étape 6 : Écoute et export du signal ---
+sound(y, fe);                                 % écoute dans MATLAB
+audiowrite('nylon-guitar-reverbe.wav', y, fe); % export dans un fichier .wav
diff --git a/Partie3/Q314.eps b/Partie3/Q314.eps
new file mode 100644
index 0000000000000000000000000000000000000000..a095b22ddf00f13372d711ff7f670711c629cb54
--- /dev/null
+++ b/Partie3/Q314.eps
@@ -0,0 +1,2120 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (MATLAB, The Mathworks, Inc. Version 24.2.0.2923080 \(R2024b\) Update 6. Operating System: Windows 10)
+%%Title: (C:/Users/infos/OneDrive/Bureau/IMT/Electrical Engineering IMT/SAR/synth_add/Q314.eps)
+%%CreationDate: 2025-05-19T15:55:59
+%%Pages: (atend)
+%%BoundingBox:     0     0   420   315
+%%LanguageLevel: 3
+%%EndComments
+%%BeginProlog
+%%BeginResource: procset (Apache XML Graphics Std ProcSet) 1.2 0
+%%Version: 1.2 0
+%%Copyright: (Copyright 2001-2003,2010 The Apache Software Foundation. License terms: http://www.apache.org/licenses/LICENSE-2.0)
+/bd{bind def}bind def
+/ld{load def}bd
+/GR/grestore ld
+/GS/gsave ld
+/RM/rmoveto ld
+/C/curveto ld
+/t/show ld
+/L/lineto ld
+/ML/setmiterlimit ld
+/CT/concat ld
+/f/fill ld
+/N/newpath ld
+/S/stroke ld
+/CC/setcmykcolor ld
+/A/ashow ld
+/cp/closepath ld
+/RC/setrgbcolor ld
+/LJ/setlinejoin ld
+/GC/setgray ld
+/LW/setlinewidth ld
+/M/moveto ld
+/re {4 2 roll M
+1 index 0 rlineto
+0 exch rlineto
+neg 0 rlineto
+cp } bd
+/_ctm matrix def
+/_tm matrix def
+/BT { _ctm currentmatrix pop matrix _tm copy pop 0 0 moveto } bd
+/ET { _ctm setmatrix } bd
+/iTm { _ctm setmatrix _tm concat } bd
+/Tm { _tm astore pop iTm 0 0 moveto } bd
+/ux 0.0 def
+/uy 0.0 def
+/F {
+  /Tp exch def
+  /Tf exch def
+  Tf findfont Tp scalefont setfont
+  /cf Tf def  /cs Tp def
+} bd
+/ULS {currentpoint /uy exch def /ux exch def} bd
+/ULE {
+  /Tcx currentpoint pop def
+  gsave
+  newpath
+  cf findfont cs scalefont dup
+  /FontMatrix get 0 get /Ts exch def /FontInfo get dup
+  /UnderlinePosition get Ts mul /To exch def
+  /UnderlineThickness get Ts mul /Tt exch def
+  ux uy To add moveto  Tcx uy To add lineto
+  Tt setlinewidth stroke
+  grestore
+} bd
+/OLE {
+  /Tcx currentpoint pop def
+  gsave
+  newpath
+  cf findfont cs scalefont dup
+  /FontMatrix get 0 get /Ts exch def /FontInfo get dup
+  /UnderlinePosition get Ts mul /To exch def
+  /UnderlineThickness get Ts mul /Tt exch def
+  ux uy To add cs add moveto Tcx uy To add cs add lineto
+  Tt setlinewidth stroke
+  grestore
+} bd
+/SOE {
+  /Tcx currentpoint pop def
+  gsave
+  newpath
+  cf findfont cs scalefont dup
+  /FontMatrix get 0 get /Ts exch def /FontInfo get dup
+  /UnderlinePosition get Ts mul /To exch def
+  /UnderlineThickness get Ts mul /Tt exch def
+  ux uy To add cs 10 mul 26 idiv add moveto Tcx uy To add cs 10 mul 26 idiv add lineto
+  Tt setlinewidth stroke
+  grestore
+} bd
+/QT {
+/Y22 exch store
+/X22 exch store
+/Y21 exch store
+/X21 exch store
+currentpoint
+/Y21 load 2 mul add 3 div exch
+/X21 load 2 mul add 3 div exch
+/X21 load 2 mul /X22 load add 3 div
+/Y21 load 2 mul /Y22 load add 3 div
+/X22 load /Y22 load curveto
+} bd
+/SSPD {
+dup length /d exch dict def
+{
+/v exch def
+/k exch def
+currentpagedevice k known {
+/cpdv currentpagedevice k get def
+v cpdv ne {
+/upd false def
+/nullv v type /nulltype eq def
+/nullcpdv cpdv type /nulltype eq def
+nullv nullcpdv or
+{
+/upd true def
+} {
+/sametype v type cpdv type eq def
+sametype {
+v type /arraytype eq {
+/vlen v length def
+/cpdvlen cpdv length def
+vlen cpdvlen eq {
+0 1 vlen 1 sub {
+/i exch def
+/obj v i get def
+/cpdobj cpdv i get def
+obj cpdobj ne {
+/upd true def
+exit
+} if
+} for
+} {
+/upd true def
+} ifelse
+} {
+v type /dicttype eq {
+v {
+/dv exch def
+/dk exch def
+/cpddv cpdv dk get def
+dv cpddv ne {
+/upd true def
+exit
+} if
+} forall
+} {
+/upd true def
+} ifelse
+} ifelse
+} if
+} ifelse
+upd true eq {
+d k v put
+} if
+} if
+} if
+} forall
+d length 0 gt {
+d setpagedevice
+} if
+} bd
+/RE { % /NewFontName [NewEncodingArray] /FontName RE -
+  findfont dup length dict begin
+  {
+    1 index /FID ne
+    {def} {pop pop} ifelse
+  } forall
+  /Encoding exch def
+  /FontName 1 index def
+  currentdict definefont pop
+  end
+} bind def
+%%EndResource
+%%BeginResource: procset (Apache XML Graphics EPS ProcSet) 1.0 0
+%%Version: 1.0 0
+%%Copyright: (Copyright 2002-2003 The Apache Software Foundation. License terms: http://www.apache.org/licenses/LICENSE-2.0)
+/BeginEPSF { %def
+/b4_Inc_state save def         % Save state for cleanup
+/dict_count countdictstack def % Count objects on dict stack
+/op_count count 1 sub def      % Count objects on operand stack
+userdict begin                 % Push userdict on dict stack
+/showpage { } def              % Redefine showpage, { } = null proc
+0 setgray 0 setlinecap         % Prepare graphics state
+1 setlinewidth 0 setlinejoin
+10 setmiterlimit [ ] 0 setdash newpath
+/languagelevel where           % If level not equal to 1 then
+{pop languagelevel             % set strokeadjust and
+1 ne                           % overprint to their defaults.
+{false setstrokeadjust false setoverprint
+} if
+} if
+} bd
+/EndEPSF { %def
+count op_count sub {pop} repeat            % Clean up stacks
+countdictstack dict_count sub {end} repeat
+b4_Inc_state restore
+} bd
+%%EndResource
+%FOPBeginFontDict
+%%IncludeResource: font Courier-Oblique
+%%IncludeResource: font Courier-BoldOblique
+%%IncludeResource: font Courier-Bold
+%%IncludeResource: font ZapfDingbats
+%%IncludeResource: font Symbol
+%%IncludeResource: font Helvetica
+%%IncludeResource: font Helvetica-Oblique
+%%IncludeResource: font Helvetica-Bold
+%%IncludeResource: font Helvetica-BoldOblique
+%%IncludeResource: font Times-Roman
+%%IncludeResource: font Times-Italic
+%%IncludeResource: font Times-Bold
+%%IncludeResource: font Times-BoldItalic
+%%IncludeResource: font Courier
+%FOPEndFontDict
+%%BeginResource: encoding WinAnsiEncoding
+/WinAnsiEncoding [
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /space /exclam /quotedbl
+/numbersign /dollar /percent /ampersand /quotesingle
+/parenleft /parenright /asterisk /plus /comma
+/hyphen /period /slash /zero /one
+/two /three /four /five /six
+/seven /eight /nine /colon /semicolon
+/less /equal /greater /question /at
+/A /B /C /D /E
+/F /G /H /I /J
+/K /L /M /N /O
+/P /Q /R /S /T
+/U /V /W /X /Y
+/Z /bracketleft /backslash /bracketright /asciicircum
+/underscore /quoteleft /a /b /c
+/d /e /f /g /h
+/i /j /k /l /m
+/n /o /p /q /r
+/s /t /u /v /w
+/x /y /z /braceleft /bar
+/braceright /asciitilde /bullet /Euro /bullet
+/quotesinglbase /florin /quotedblbase /ellipsis /dagger
+/daggerdbl /circumflex /perthousand /Scaron /guilsinglleft
+/OE /bullet /Zcaron /bullet /bullet
+/quoteleft /quoteright /quotedblleft /quotedblright /bullet
+/endash /emdash /asciitilde /trademark /scaron
+/guilsinglright /oe /bullet /zcaron /Ydieresis
+/space /exclamdown /cent /sterling /currency
+/yen /brokenbar /section /dieresis /copyright
+/ordfeminine /guillemotleft /logicalnot /sfthyphen /registered
+/macron /degree /plusminus /twosuperior /threesuperior
+/acute /mu /paragraph /middot /cedilla
+/onesuperior /ordmasculine /guillemotright /onequarter /onehalf
+/threequarters /questiondown /Agrave /Aacute /Acircumflex
+/Atilde /Adieresis /Aring /AE /Ccedilla
+/Egrave /Eacute /Ecircumflex /Edieresis /Igrave
+/Iacute /Icircumflex /Idieresis /Eth /Ntilde
+/Ograve /Oacute /Ocircumflex /Otilde /Odieresis
+/multiply /Oslash /Ugrave /Uacute /Ucircumflex
+/Udieresis /Yacute /Thorn /germandbls /agrave
+/aacute /acircumflex /atilde /adieresis /aring
+/ae /ccedilla /egrave /eacute /ecircumflex
+/edieresis /igrave /iacute /icircumflex /idieresis
+/eth /ntilde /ograve /oacute /ocircumflex
+/otilde /odieresis /divide /oslash /ugrave
+/uacute /ucircumflex /udieresis /yacute /thorn
+/ydieresis
+] def
+%%EndResource
+%FOPBeginFontReencode
+/Courier-Oblique findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Courier-Oblique exch definefont pop
+/Courier-BoldOblique findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Courier-BoldOblique exch definefont pop
+/Courier-Bold findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Courier-Bold exch definefont pop
+/Helvetica findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Helvetica exch definefont pop
+/Helvetica-Oblique findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Helvetica-Oblique exch definefont pop
+/Helvetica-Bold findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Helvetica-Bold exch definefont pop
+/Helvetica-BoldOblique findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Helvetica-BoldOblique exch definefont pop
+/Times-Roman findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Times-Roman exch definefont pop
+/Times-Italic findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Times-Italic exch definefont pop
+/Times-Bold findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Times-Bold exch definefont pop
+/Times-BoldItalic findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Times-BoldItalic exch definefont pop
+/Courier findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Courier exch definefont pop
+%FOPEndFontReencode
+%%EndProlog
+%%Page: 1 1
+%%PageBoundingBox: 0 0 420 315
+%%BeginPageSetup
+[1 0 0 -1 0 315] CT
+%%EndPageSetup
+GS
+[0.5 0 0 0.5 0 0] CT
+1 GC
+N
+0 0 840 630 re
+f
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+1 GC
+N
+0 0 840 630 re
+f
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+1 GC
+N
+109 561 M
+760 561 L
+760 47 L
+109 47 L
+cp
+f
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+109 561 M
+109 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+239.2 561 M
+239.2 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+369.4 561 M
+369.4 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+499.6 561 M
+499.6 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+629.8 561 M
+629.8 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 561 M
+760 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 561 M
+109 561 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 475.333 M
+109 475.333 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 389.667 M
+109 389.667 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 304 M
+109 304 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 218.333 M
+109 218.333 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 132.667 M
+109 132.667 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 47 M
+109 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 561 M
+760 561 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 47 M
+760 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 561 M
+109 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+239.2 561 M
+239.2 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+369.4 561 M
+369.4 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+499.6 561 M
+499.6 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+629.8 561 M
+629.8 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 561 M
+760 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 47 M
+109 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+239.2 47 M
+239.2 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+369.4 47 M
+369.4 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+499.6 47 M
+499.6 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+629.8 47 M
+629.8 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 47 M
+760 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 54.5 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-6 21 moveto 
+1 -1 scale
+(0) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 119.6 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-14 21 moveto 
+1 -1 scale
+(0.2) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 184.7 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-14 21 moveto 
+1 -1 scale
+(0.4) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 249.8 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-14 21 moveto 
+1 -1 scale
+(0.6) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 314.89999 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-14 21 moveto 
+1 -1 scale
+(0.8) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 380 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-6 21 moveto 
+1 -1 scale
+(1) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 168.5 310] CT
+0.149 GC
+/Helvetica 22 F
+GS
+[1 0 0 1 0 0] CT
+0 0 moveto 
+1 -1 scale
+(Frequence reduite ) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 261 310] CT
+0.149 GC
+N
+1.391 0 M
+1.125 0 1.125 -0.297 QT
+3 -7.766 L
+3.078 -8.141 3.109 -8.359 QT
+3.109 -8.719 1.672 -8.719 QT
+1.453 -8.719 1.453 -9 QT
+1.469 -9.063 1.5 -9.195 QT
+1.531 -9.328 1.594 -9.406 QT
+1.656 -9.484 1.766 -9.484 QT
+4.734 -9.719 L
+5 -9.719 5 -9.438 QT
+2.844 -0.813 L
+4.578 -1.391 6.047 -2.633 QT
+7.516 -3.875 8.531 -5.547 QT
+9.547 -7.219 9.984 -9.031 QT
+10.078 -9.328 10.336 -9.523 QT
+10.594 -9.719 10.922 -9.719 QT
+11.203 -9.719 11.383 -9.547 QT
+11.563 -9.375 11.563 -9.094 QT
+11.563 -8.734 11.273 -8.008 QT
+10.984 -7.281 10.703 -6.719 QT
+9.844 -4.984 8.406 -3.547 QT
+7.5 -2.641 6.461 -1.945 QT
+5.422 -1.25 4.297 -0.758 QT
+3.172 -0.266 1.906 0 QT
+1.391 0 L
+cp
+f
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 561 M
+109 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 561 M
+760 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 561 M
+115.51 561 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 475.333 M
+115.51 475.333 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 389.667 M
+115.51 389.667 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 304 M
+115.51 304 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 218.333 M
+115.51 218.333 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 132.667 M
+115.51 132.667 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 47 M
+115.51 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 561 M
+753.49 561 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 475.333 M
+753.49 475.333 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 389.667 M
+753.49 389.667 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 304 M
+753.49 304 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 218.333 M
+753.49 218.333 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 132.667 M
+753.49 132.667 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 47 M
+753.49 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 50.5 280.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-28 8 moveto 
+1 -1 scale
+(0.5) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.5 237.66667] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-12 8 moveto 
+1 -1 scale
+(1) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.5 194.83333] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-28 8 moveto 
+1 -1 scale
+(1.5) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.5 152] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-12 8 moveto 
+1 -1 scale
+(2) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.5 109.16666] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-28 8 moveto 
+1 -1 scale
+(2.5) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.5 66.33334] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-12 8 moveto 
+1 -1 scale
+(3) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.5 23.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-28 8 moveto 
+1 -1 scale
+(3.5) t 
+GR
+GR
+GS
+[0 -0.5 0.5 0 33.5 151.99988] CT
+0.149 GC
+/Helvetica 22 F
+GS
+[1 0 0 1 0 0] CT
+-60.5 -5 moveto 
+1 -1 scale
+(|\\hat{h}\(\\nu\)|) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 217.25021 22.125] CT
+/Helvetica-Bold 22 F
+GS
+[1 0 0 1 0 0] CT
+-274.5 -5 moveto 
+1 -1 scale
+(Comparaison du module de la reponse en frequence) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0 1 RC
+1 LJ
+4 LW
+N
+109 545.882 M
+110.274 545.836 L
+111.548 545.698 L
+112.822 545.466 L
+114.096 545.14 L
+115.37 544.718 L
+116.644 544.199 L
+117.918 543.58 L
+119.192 542.858 L
+120.466 542.03 L
+121.74 541.091 L
+123.014 540.038 L
+124.288 538.865 L
+125.562 537.565 L
+126.836 536.133 L
+128.11 534.56 L
+129.384 532.837 L
+130.658 530.956 L
+131.932 528.904 L
+133.205 526.67 L
+134.479 524.238 L
+135.753 521.594 L
+137.027 518.718 L
+138.301 515.59 L
+139.575 512.188 L
+140.849 508.482 L
+142.123 504.444 L
+143.397 500.038 L
+144.671 495.223 L
+145.945 489.953 L
+147.219 484.172 L
+148.493 477.817 L
+149.767 470.815 L
+151.041 463.079 L
+152.315 454.506 L
+153.589 444.975 L
+154.863 434.344 L
+156.137 422.445 L
+157.411 409.076 L
+158.685 394.004 L
+159.959 376.953 L
+161.233 357.612 L
+162.507 335.636 L
+163.781 310.675 L
+165.055 282.433 L
+166.329 250.78 L
+167.603 215.979 L
+168.877 179.04 L
+170.151 142.198 L
+171.425 109.283 L
+172.699 85.446 L
+173.973 75.639 L
+175.247 82.235 L
+176.521 103.614 L
+177.795 135.149 L
+179.068 171.565 L
+180.342 208.711 L
+181.616 244.053 L
+182.89 276.374 L
+184.164 305.297 L
+185.438 330.893 L
+186.712 353.439 L
+187.986 373.279 L
+189.26 390.761 L
+190.534 406.206 L
+191.808 419.896 L
+193.082 432.072 L
+194.356 442.942 L
+195.63 452.68 L
+196.904 461.435 L
+198.178 469.33 L
+199.452 476.471 L
+200.726 482.949 L
+202 488.839 L
+203.274 494.207 L
+204.548 499.109 L
+205.822 503.594 L
+207.096 507.703 L
+208.37 511.472 L
+209.644 514.933 L
+210.918 518.113 L
+212.192 521.038 L
+213.466 523.727 L
+214.74 526.2 L
+216.014 528.472 L
+217.288 530.56 L
+218.562 532.474 L
+219.836 534.227 L
+221.11 535.83 L
+222.384 537.289 L
+223.658 538.615 L
+224.932 539.813 L
+226.205 540.89 L
+227.479 541.851 L
+228.753 542.701 L
+230.027 543.444 L
+231.301 544.083 L
+232.575 544.622 L
+233.849 545.063 L
+235.123 545.408 L
+236.397 545.659 L
+237.671 545.816 L
+238.945 545.88 L
+240.219 545.853 L
+241.493 545.733 L
+242.767 545.52 L
+244.041 545.213 L
+245.315 544.81 L
+246.589 544.311 L
+247.863 543.712 L
+249.137 543.011 L
+250.411 542.204 L
+251.685 541.288 L
+252.959 540.258 L
+254.233 539.109 L
+255.507 537.835 L
+256.781 536.43 L
+258.055 534.886 L
+259.329 533.194 L
+260.603 531.345 L
+261.877 529.329 L
+263.151 527.132 L
+264.425 524.741 L
+265.699 522.141 L
+266.973 519.313 L
+268.247 516.237 L
+269.521 512.891 L
+270.795 509.249 L
+272.068 505.28 L
+273.342 500.951 L
+274.616 496.221 L
+275.89 491.046 L
+277.164 485.372 L
+278.438 479.138 L
+279.712 472.272 L
+280.986 464.69 L
+282.26 456.293 L
+283.534 446.964 L
+284.808 436.566 L
+286.082 424.935 L
+287.356 411.878 L
+288.63 397.167 L
+289.904 380.536 L
+291.178 361.679 L
+292.452 340.259 L
+293.726 315.922 L
+295 288.354 L
+296.274 257.379 L
+297.548 223.157 L
+298.822 186.513 L
+300.096 149.398 L
+301.37 115.315 L
+302.644 89.228 L
+303.918 76.31 L
+305.192 79.624 L
+306.466 98.353 L
+307.74 128.292 L
+309.014 164.114 L
+310.288 201.367 L
+311.562 237.202 L
+312.836 270.178 L
+314.11 299.785 L
+315.384 326.029 L
+316.658 349.157 L
+317.932 369.51 L
+319.205 387.437 L
+320.479 403.266 L
+321.753 417.286 L
+323.027 429.747 L
+324.301 440.864 L
+325.575 450.816 L
+326.849 459.756 L
+328.123 467.814 L
+329.397 475.099 L
+330.671 481.703 L
+331.945 487.705 L
+333.219 493.173 L
+334.493 498.164 L
+335.767 502.728 L
+337.041 506.909 L
+338.315 510.743 L
+339.589 514.264 L
+340.863 517.498 L
+342.137 520.472 L
+343.411 523.207 L
+344.685 525.722 L
+345.959 528.033 L
+347.233 530.156 L
+348.507 532.104 L
+349.781 533.889 L
+351.055 535.521 L
+352.329 537.008 L
+353.603 538.36 L
+354.877 539.583 L
+356.151 540.684 L
+357.425 541.668 L
+358.699 542.54 L
+359.973 543.304 L
+361.247 543.964 L
+362.521 544.522 L
+363.795 544.983 L
+365.068 545.347 L
+366.342 545.616 L
+367.616 545.792 L
+368.89 545.875 L
+370.164 545.866 L
+371.438 545.764 L
+372.712 545.57 L
+373.986 545.282 L
+375.26 544.898 L
+376.534 544.419 L
+377.808 543.84 L
+379.082 543.159 L
+380.356 542.374 L
+381.63 541.48 L
+382.904 540.473 L
+384.178 539.349 L
+385.452 538.1 L
+386.726 536.722 L
+388 535.206 L
+389.274 533.545 L
+390.548 531.728 L
+391.822 529.746 L
+393.096 527.586 L
+394.37 525.235 L
+395.644 522.678 L
+396.918 519.897 L
+398.192 516.873 L
+399.466 513.583 L
+400.74 510.003 L
+402.014 506.102 L
+403.288 501.847 L
+404.562 497.201 L
+405.836 492.119 L
+407.11 486.549 L
+408.384 480.433 L
+409.658 473.699 L
+410.931 466.268 L
+412.205 458.043 L
+413.479 448.911 L
+414.753 438.739 L
+416.027 427.369 L
+417.301 414.614 L
+418.575 400.254 L
+419.849 384.03 L
+421.123 365.645 L
+422.397 344.765 L
+423.671 321.039 L
+424.945 294.138 L
+426.219 263.846 L
+427.493 230.234 L
+428.767 193.962 L
+430.041 156.715 L
+431.315 121.666 L
+432.589 93.543 L
+433.863 77.643 L
+435.137 77.643 L
+436.411 93.543 L
+437.685 121.666 L
+438.959 156.715 L
+440.233 193.962 L
+441.507 230.234 L
+442.781 263.846 L
+444.055 294.138 L
+445.329 321.039 L
+446.603 344.765 L
+447.877 365.645 L
+449.151 384.03 L
+450.425 400.254 L
+451.699 414.614 L
+452.973 427.369 L
+454.247 438.739 L
+455.521 448.911 L
+456.795 458.043 L
+458.068 466.268 L
+459.342 473.699 L
+460.616 480.433 L
+461.89 486.549 L
+463.164 492.119 L
+464.438 497.201 L
+465.712 501.847 L
+466.986 506.102 L
+468.26 510.003 L
+469.534 513.583 L
+470.808 516.873 L
+472.082 519.897 L
+473.356 522.678 L
+474.63 525.235 L
+475.904 527.586 L
+477.178 529.746 L
+478.452 531.728 L
+479.726 533.545 L
+481 535.206 L
+482.274 536.722 L
+483.548 538.1 L
+484.822 539.349 L
+486.096 540.473 L
+487.37 541.48 L
+488.644 542.374 L
+489.918 543.159 L
+491.192 543.84 L
+492.466 544.419 L
+493.74 544.898 L
+495.014 545.282 L
+496.288 545.57 L
+497.562 545.764 L
+498.836 545.866 L
+500.11 545.875 L
+501.384 545.792 L
+502.658 545.616 L
+503.932 545.347 L
+505.205 544.983 L
+506.479 544.522 L
+507.753 543.964 L
+509.027 543.304 L
+510.301 542.54 L
+511.575 541.668 L
+512.849 540.684 L
+514.123 539.583 L
+515.397 538.36 L
+516.671 537.008 L
+517.945 535.521 L
+519.219 533.889 L
+520.493 532.104 L
+521.767 530.156 L
+523.041 528.033 L
+524.315 525.722 L
+525.589 523.207 L
+526.863 520.472 L
+528.137 517.498 L
+529.411 514.264 L
+530.685 510.743 L
+531.959 506.909 L
+533.233 502.728 L
+534.507 498.164 L
+535.781 493.173 L
+537.055 487.705 L
+538.329 481.703 L
+539.603 475.099 L
+540.877 467.814 L
+542.151 459.756 L
+543.425 450.816 L
+544.699 440.864 L
+545.973 429.747 L
+547.247 417.286 L
+548.521 403.266 L
+549.794 387.437 L
+551.068 369.51 L
+552.342 349.157 L
+553.616 326.029 L
+554.89 299.785 L
+556.164 270.178 L
+557.438 237.202 L
+558.712 201.367 L
+559.986 164.114 L
+561.26 128.292 L
+562.534 98.353 L
+563.808 79.624 L
+565.082 76.31 L
+566.356 89.228 L
+567.63 115.315 L
+568.904 149.398 L
+570.178 186.513 L
+571.452 223.157 L
+572.726 257.379 L
+574 288.354 L
+575.274 315.922 L
+576.548 340.259 L
+577.822 361.679 L
+579.096 380.536 L
+580.37 397.167 L
+581.644 411.878 L
+582.918 424.935 L
+584.192 436.566 L
+585.466 446.964 L
+586.74 456.293 L
+588.014 464.69 L
+589.288 472.272 L
+590.562 479.138 L
+591.836 485.372 L
+593.11 491.046 L
+594.384 496.221 L
+595.658 500.951 L
+596.932 505.28 L
+598.206 509.249 L
+599.479 512.891 L
+600.753 516.237 L
+602.027 519.313 L
+603.301 522.141 L
+604.575 524.741 L
+605.849 527.132 L
+607.123 529.329 L
+608.397 531.345 L
+609.671 533.194 L
+610.945 534.886 L
+612.219 536.43 L
+613.493 537.835 L
+614.767 539.109 L
+616.041 540.258 L
+617.315 541.288 L
+618.589 542.204 L
+619.863 543.011 L
+621.137 543.712 L
+622.411 544.311 L
+623.685 544.81 L
+624.959 545.213 L
+626.233 545.52 L
+627.507 545.733 L
+628.781 545.853 L
+630.055 545.88 L
+631.329 545.816 L
+632.603 545.659 L
+633.877 545.408 L
+635.151 545.063 L
+636.425 544.622 L
+637.699 544.083 L
+638.973 543.444 L
+640.247 542.701 L
+641.521 541.851 L
+642.794 540.89 L
+644.068 539.813 L
+645.342 538.615 L
+646.616 537.289 L
+647.89 535.83 L
+649.164 534.227 L
+650.438 532.474 L
+651.712 530.56 L
+652.986 528.472 L
+654.26 526.2 L
+655.534 523.727 L
+656.808 521.038 L
+658.082 518.113 L
+659.356 514.933 L
+660.63 511.472 L
+661.904 507.703 L
+663.178 503.594 L
+664.452 499.109 L
+665.726 494.207 L
+667 488.839 L
+668.274 482.949 L
+669.548 476.471 L
+670.822 469.33 L
+672.096 461.435 L
+673.37 452.68 L
+674.644 442.942 L
+675.918 432.072 L
+677.192 419.896 L
+678.466 406.206 L
+679.74 390.761 L
+681.014 373.279 L
+682.288 353.439 L
+683.562 330.893 L
+684.836 305.297 L
+686.11 276.374 L
+687.384 244.053 L
+688.658 208.711 L
+689.932 171.565 L
+691.205 135.149 L
+692.479 103.614 L
+693.753 82.235 L
+695.027 75.639 L
+696.301 85.446 L
+697.575 109.283 L
+698.849 142.198 L
+700.123 179.04 L
+701.397 215.979 L
+702.671 250.78 L
+703.945 282.433 L
+705.219 310.675 L
+706.493 335.636 L
+707.767 357.612 L
+709.041 376.953 L
+710.315 394.004 L
+711.589 409.076 L
+712.863 422.445 L
+714.137 434.344 L
+715.411 444.975 L
+716.685 454.506 L
+717.959 463.079 L
+719.233 470.815 L
+720.507 477.817 L
+721.781 484.172 L
+723.055 489.953 L
+724.329 495.223 L
+725.603 500.038 L
+726.877 504.444 L
+728.151 508.482 L
+729.425 512.188 L
+730.699 515.59 L
+731.973 518.718 L
+733.247 521.594 L
+734.521 524.238 L
+735.795 526.67 L
+737.068 528.904 L
+738.342 530.956 L
+739.616 532.837 L
+740.89 534.56 L
+742.164 536.133 L
+743.438 537.565 L
+744.712 538.865 L
+745.986 540.038 L
+747.26 541.091 L
+748.534 542.03 L
+749.808 542.858 L
+751.082 543.58 L
+752.356 544.199 L
+753.63 544.718 L
+754.904 545.14 L
+756.178 545.466 L
+757.452 545.698 L
+758.726 545.836 L
+760 545.882 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+1 0 0 RC
+[12 12] 0 setdash
+2 LJ
+3 LW
+N
+109 545.882 M
+110.274 545.836 L
+111.548 545.698 L
+112.822 545.467 L
+114.096 545.143 L
+115.37 544.723 L
+116.644 544.206 L
+117.918 543.589 L
+119.192 542.87 L
+120.466 542.045 L
+121.74 541.111 L
+123.014 540.062 L
+124.288 538.893 L
+125.562 537.6 L
+126.836 536.174 L
+128.11 534.608 L
+129.384 532.894 L
+130.658 531.021 L
+131.932 528.979 L
+133.205 526.756 L
+134.479 524.337 L
+135.753 521.707 L
+137.027 518.847 L
+138.301 515.737 L
+139.575 512.354 L
+140.849 508.671 L
+142.123 504.658 L
+143.397 500.281 L
+144.671 495.498 L
+145.945 490.264 L
+147.219 484.526 L
+148.493 478.22 L
+149.767 471.274 L
+151.041 463.602 L
+152.315 455.103 L
+153.589 445.66 L
+154.863 435.131 L
+156.137 423.351 L
+157.411 410.124 L
+158.685 395.218 L
+159.959 378.363 L
+161.233 359.253 L
+162.507 337.546 L
+163.781 312.895 L
+165.055 284.994 L
+166.329 253.696 L
+167.603 219.215 L
+168.877 182.471 L
+170.151 145.556 L
+171.425 112.127 L
+172.699 87.224 L
+173.973 75.89 L
+175.247 80.832 L
+176.521 100.837 L
+177.795 131.507 L
+179.068 167.558 L
+180.342 204.703 L
+181.616 240.254 L
+182.89 272.881 L
+184.164 302.138 L
+185.438 328.058 L
+186.712 350.901 L
+187.986 371.008 L
+189.26 388.726 L
+190.534 404.377 L
+191.808 418.246 L
+193.082 430.58 L
+194.356 441.587 L
+195.63 451.447 L
+196.904 460.308 L
+198.178 468.297 L
+199.452 475.523 L
+200.726 482.075 L
+202 488.033 L
+203.274 493.462 L
+204.548 498.419 L
+205.822 502.953 L
+207.096 507.107 L
+208.37 510.918 L
+209.644 514.418 L
+210.918 517.634 L
+212.192 520.591 L
+213.466 523.311 L
+214.74 525.813 L
+216.014 528.113 L
+217.288 530.225 L
+218.562 532.164 L
+219.836 533.94 L
+221.11 535.565 L
+222.384 537.046 L
+223.658 538.391 L
+224.932 539.609 L
+226.205 540.705 L
+227.479 541.685 L
+228.753 542.553 L
+230.027 543.314 L
+231.301 543.971 L
+232.575 544.528 L
+233.849 544.986 L
+235.123 545.349 L
+236.397 545.617 L
+237.671 545.792 L
+238.945 545.875 L
+240.219 545.866 L
+241.493 545.765 L
+242.767 545.571 L
+244.041 545.284 L
+245.315 544.902 L
+246.589 544.424 L
+247.863 543.848 L
+249.137 543.17 L
+250.411 542.388 L
+251.685 541.498 L
+252.959 540.495 L
+254.233 539.375 L
+255.507 538.133 L
+256.781 536.76 L
+258.055 535.251 L
+259.329 533.598 L
+260.603 531.79 L
+261.877 529.817 L
+263.151 527.668 L
+264.425 525.329 L
+265.699 522.785 L
+266.973 520.019 L
+268.247 517.012 L
+269.521 513.741 L
+270.795 510.182 L
+272.068 506.305 L
+273.342 502.078 L
+274.616 497.462 L
+275.89 492.415 L
+277.164 486.886 L
+278.438 480.815 L
+279.712 474.134 L
+280.986 466.764 L
+282.26 458.609 L
+283.534 449.559 L
+284.808 439.483 L
+286.082 428.225 L
+287.356 415.603 L
+288.63 401.398 L
+289.904 385.358 L
+291.178 367.189 L
+292.452 346.563 L
+293.726 323.13 L
+295 296.559 L
+296.274 266.62 L
+297.548 233.351 L
+298.822 197.338 L
+300.096 160.146 L
+301.37 124.779 L
+302.644 95.814 L
+303.918 78.542 L
+305.192 76.889 L
+306.466 91.262 L
+307.74 118.305 L
+309.014 152.801 L
+310.288 189.921 L
+311.562 226.335 L
+312.836 260.224 L
+314.11 290.845 L
+315.384 318.076 L
+316.658 342.112 L
+317.932 363.271 L
+319.205 381.904 L
+320.479 398.346 L
+321.753 412.896 L
+323.027 425.816 L
+324.301 437.331 L
+325.575 447.631 L
+326.849 456.874 L
+328.123 465.199 L
+329.397 472.718 L
+330.671 479.53 L
+331.945 485.717 L
+333.219 491.35 L
+334.493 496.489 L
+335.767 501.187 L
+337.041 505.489 L
+338.315 509.433 L
+339.589 513.053 L
+340.863 516.38 L
+342.137 519.438 L
+343.411 522.25 L
+344.685 524.837 L
+345.959 527.216 L
+347.233 529.402 L
+348.507 531.409 L
+349.781 533.249 L
+351.055 534.933 L
+352.329 536.47 L
+353.603 537.869 L
+354.877 539.137 L
+356.151 540.281 L
+357.425 541.307 L
+358.699 542.219 L
+359.973 543.022 L
+361.247 543.72 L
+362.521 544.317 L
+363.795 544.814 L
+365.068 545.215 L
+366.342 545.521 L
+367.616 545.733 L
+368.89 545.853 L
+370.164 545.88 L
+371.438 545.816 L
+372.712 545.66 L
+373.986 545.41 L
+375.26 545.066 L
+376.534 544.627 L
+377.808 544.09 L
+379.082 543.454 L
+380.356 542.714 L
+381.63 541.867 L
+382.904 540.91 L
+384.178 539.838 L
+385.452 538.645 L
+386.726 537.325 L
+388 535.872 L
+389.274 534.277 L
+390.548 532.532 L
+391.822 530.627 L
+393.096 528.55 L
+394.37 526.288 L
+395.644 523.828 L
+396.918 521.154 L
+398.192 518.245 L
+399.466 515.083 L
+400.74 511.642 L
+402.014 507.896 L
+403.288 503.813 L
+404.562 499.358 L
+405.836 494.489 L
+407.11 489.159 L
+408.384 483.312 L
+409.658 476.884 L
+410.931 469.8 L
+412.205 461.972 L
+413.479 453.294 L
+414.753 443.646 L
+416.027 432.881 L
+417.301 420.829 L
+418.575 407.285 L
+419.849 392.012 L
+421.123 374.732 L
+422.397 355.13 L
+423.671 332.862 L
+424.945 307.582 L
+426.219 279.006 L
+427.493 247.037 L
+428.767 212 L
+430.041 175.009 L
+431.315 138.446 L
+432.589 106.29 L
+433.863 83.736 L
+435.137 75.556 L
+436.411 83.736 L
+437.685 106.29 L
+438.959 138.446 L
+440.233 175.009 L
+441.507 212 L
+442.781 247.037 L
+444.055 279.006 L
+445.329 307.582 L
+446.603 332.862 L
+447.877 355.13 L
+449.151 374.732 L
+450.425 392.012 L
+451.699 407.285 L
+452.973 420.829 L
+454.247 432.881 L
+455.521 443.646 L
+456.795 453.294 L
+458.068 461.972 L
+459.342 469.8 L
+460.616 476.884 L
+461.89 483.312 L
+463.164 489.159 L
+464.438 494.489 L
+465.712 499.358 L
+466.986 503.813 L
+468.26 507.896 L
+469.534 511.642 L
+470.808 515.083 L
+472.082 518.245 L
+473.356 521.154 L
+474.63 523.828 L
+475.904 526.288 L
+477.178 528.55 L
+478.452 530.627 L
+479.726 532.532 L
+481 534.277 L
+482.274 535.872 L
+483.548 537.325 L
+484.822 538.645 L
+486.096 539.838 L
+487.37 540.91 L
+488.644 541.867 L
+489.918 542.714 L
+491.192 543.454 L
+492.466 544.09 L
+493.74 544.627 L
+495.014 545.066 L
+496.288 545.41 L
+497.562 545.66 L
+498.836 545.816 L
+500.11 545.88 L
+501.384 545.853 L
+502.658 545.733 L
+503.932 545.521 L
+505.205 545.215 L
+506.479 544.814 L
+507.753 544.317 L
+509.027 543.72 L
+510.301 543.022 L
+511.575 542.219 L
+512.849 541.307 L
+514.123 540.281 L
+515.397 539.137 L
+516.671 537.869 L
+517.945 536.47 L
+519.219 534.933 L
+520.493 533.249 L
+521.767 531.409 L
+523.041 529.402 L
+524.315 527.216 L
+525.589 524.837 L
+526.863 522.25 L
+528.137 519.438 L
+529.411 516.38 L
+530.685 513.053 L
+531.959 509.433 L
+533.233 505.489 L
+534.507 501.187 L
+535.781 496.489 L
+537.055 491.35 L
+538.329 485.717 L
+539.603 479.53 L
+540.877 472.718 L
+542.151 465.199 L
+543.425 456.874 L
+544.699 447.631 L
+545.973 437.331 L
+547.247 425.816 L
+548.521 412.896 L
+549.794 398.346 L
+551.068 381.904 L
+552.342 363.271 L
+553.616 342.112 L
+554.89 318.076 L
+556.164 290.845 L
+557.438 260.224 L
+558.712 226.335 L
+559.986 189.921 L
+561.26 152.801 L
+562.534 118.305 L
+563.808 91.262 L
+565.082 76.889 L
+566.356 78.542 L
+567.63 95.814 L
+568.904 124.779 L
+570.178 160.146 L
+571.452 197.338 L
+572.726 233.351 L
+574 266.62 L
+575.274 296.559 L
+576.548 323.13 L
+577.822 346.563 L
+579.096 367.189 L
+580.37 385.358 L
+581.644 401.398 L
+582.918 415.603 L
+584.192 428.225 L
+585.466 439.483 L
+586.74 449.559 L
+588.014 458.609 L
+589.288 466.764 L
+590.562 474.134 L
+591.836 480.815 L
+593.11 486.886 L
+594.384 492.415 L
+595.658 497.462 L
+596.932 502.078 L
+598.206 506.305 L
+599.479 510.182 L
+600.753 513.741 L
+602.027 517.012 L
+603.301 520.019 L
+604.575 522.785 L
+605.849 525.329 L
+607.123 527.668 L
+608.397 529.817 L
+609.671 531.79 L
+610.945 533.598 L
+612.219 535.251 L
+613.493 536.76 L
+614.767 538.133 L
+616.041 539.375 L
+617.315 540.495 L
+618.589 541.498 L
+619.863 542.388 L
+621.137 543.17 L
+622.411 543.848 L
+623.685 544.424 L
+624.959 544.902 L
+626.233 545.284 L
+627.507 545.571 L
+628.781 545.765 L
+630.055 545.866 L
+631.329 545.875 L
+632.603 545.792 L
+633.877 545.617 L
+635.151 545.349 L
+636.425 544.986 L
+637.699 544.528 L
+638.973 543.971 L
+640.247 543.314 L
+641.521 542.553 L
+642.794 541.685 L
+644.068 540.705 L
+645.342 539.609 L
+646.616 538.391 L
+647.89 537.046 L
+649.164 535.565 L
+650.438 533.94 L
+651.712 532.164 L
+652.986 530.225 L
+654.26 528.113 L
+655.534 525.813 L
+656.808 523.311 L
+658.082 520.591 L
+659.356 517.634 L
+660.63 514.418 L
+661.904 510.918 L
+663.178 507.107 L
+664.452 502.953 L
+665.726 498.419 L
+667 493.462 L
+668.274 488.033 L
+669.548 482.075 L
+670.822 475.523 L
+672.096 468.297 L
+673.37 460.308 L
+674.644 451.447 L
+675.918 441.587 L
+677.192 430.58 L
+678.466 418.246 L
+679.74 404.377 L
+681.014 388.726 L
+682.288 371.008 L
+683.562 350.901 L
+684.836 328.058 L
+686.11 302.138 L
+687.384 272.881 L
+688.658 240.254 L
+689.932 204.703 L
+691.205 167.558 L
+692.479 131.507 L
+693.753 100.837 L
+695.027 80.832 L
+696.301 75.89 L
+697.575 87.224 L
+698.849 112.127 L
+700.123 145.556 L
+701.397 182.471 L
+702.671 219.215 L
+703.945 253.696 L
+705.219 284.994 L
+706.493 312.895 L
+707.767 337.546 L
+709.041 359.253 L
+710.315 378.363 L
+711.589 395.218 L
+712.863 410.124 L
+714.137 423.351 L
+715.411 435.131 L
+716.685 445.66 L
+717.959 455.103 L
+719.233 463.602 L
+720.507 471.274 L
+721.781 478.22 L
+723.055 484.526 L
+724.329 490.264 L
+725.603 495.498 L
+726.877 500.281 L
+728.151 504.658 L
+729.425 508.671 L
+730.699 512.354 L
+731.973 515.737 L
+733.247 518.847 L
+734.521 521.707 L
+735.795 524.337 L
+737.068 526.756 L
+738.342 528.979 L
+739.616 531.021 L
+740.89 532.894 L
+742.164 534.608 L
+743.438 536.174 L
+744.712 537.6 L
+745.986 538.893 L
+747.26 540.062 L
+748.534 541.111 L
+749.808 542.045 L
+751.082 542.87 L
+752.356 543.589 L
+753.63 544.206 L
+754.904 544.723 L
+756.178 545.143 L
+757.452 545.467 L
+758.726 545.698 L
+760 545.836 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+1 GC
+N
+744 116 M
+744 63 L
+527 63 L
+527 116 L
+cp
+f
+GR
+GS
+[0.5 0 0 0.5 298.66898 38.78436] CT
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+0 7.5 moveto 
+1 -1 scale
+(Theorique) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0 1 RC
+1 LJ
+4 LW
+N
+532.986 77.569 M
+592.848 77.569 L
+S
+GR
+GS
+[0.5 0 0 0.5 298.66898 50.71564] CT
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+0 7.5 moveto 
+1 -1 scale
+(Numerique \(TFD\)) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+1 0 0 RC
+[12 12] 0 setdash
+2 LJ
+3 LW
+N
+532.986 101.431 M
+592.848 101.431 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+10.0 ML
+N
+527 116 M
+527 63 L
+744 63 L
+744 116 L
+cp
+S
+GR
+%%Trailer
+%%Pages: 1
+%%EOF
diff --git a/Partie3/Q319.eps b/Partie3/Q319.eps
new file mode 100644
index 0000000000000000000000000000000000000000..76f901579fce161c16865364ad08fac5ae7c8a15
--- /dev/null
+++ b/Partie3/Q319.eps
@@ -0,0 +1,5246 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (MATLAB, The Mathworks, Inc. Version 24.2.0.2923080 \(R2024b\) Update 6. Operating System: Windows 10)
+%%Title: (C:/Users/infos/OneDrive/Bureau/IMT/Electrical Engineering IMT/SAR/synth_add/Q319.eps)
+%%CreationDate: 2025-05-21T15:52:51
+%%Pages: (atend)
+%%BoundingBox:     0     0   420   315
+%%LanguageLevel: 3
+%%EndComments
+%%BeginProlog
+%%BeginResource: procset (Apache XML Graphics Std ProcSet) 1.2 0
+%%Version: 1.2 0
+%%Copyright: (Copyright 2001-2003,2010 The Apache Software Foundation. License terms: http://www.apache.org/licenses/LICENSE-2.0)
+/bd{bind def}bind def
+/ld{load def}bd
+/GR/grestore ld
+/GS/gsave ld
+/RM/rmoveto ld
+/C/curveto ld
+/t/show ld
+/L/lineto ld
+/ML/setmiterlimit ld
+/CT/concat ld
+/f/fill ld
+/N/newpath ld
+/S/stroke ld
+/CC/setcmykcolor ld
+/A/ashow ld
+/cp/closepath ld
+/RC/setrgbcolor ld
+/LJ/setlinejoin ld
+/GC/setgray ld
+/LW/setlinewidth ld
+/M/moveto ld
+/re {4 2 roll M
+1 index 0 rlineto
+0 exch rlineto
+neg 0 rlineto
+cp } bd
+/_ctm matrix def
+/_tm matrix def
+/BT { _ctm currentmatrix pop matrix _tm copy pop 0 0 moveto } bd
+/ET { _ctm setmatrix } bd
+/iTm { _ctm setmatrix _tm concat } bd
+/Tm { _tm astore pop iTm 0 0 moveto } bd
+/ux 0.0 def
+/uy 0.0 def
+/F {
+  /Tp exch def
+  /Tf exch def
+  Tf findfont Tp scalefont setfont
+  /cf Tf def  /cs Tp def
+} bd
+/ULS {currentpoint /uy exch def /ux exch def} bd
+/ULE {
+  /Tcx currentpoint pop def
+  gsave
+  newpath
+  cf findfont cs scalefont dup
+  /FontMatrix get 0 get /Ts exch def /FontInfo get dup
+  /UnderlinePosition get Ts mul /To exch def
+  /UnderlineThickness get Ts mul /Tt exch def
+  ux uy To add moveto  Tcx uy To add lineto
+  Tt setlinewidth stroke
+  grestore
+} bd
+/OLE {
+  /Tcx currentpoint pop def
+  gsave
+  newpath
+  cf findfont cs scalefont dup
+  /FontMatrix get 0 get /Ts exch def /FontInfo get dup
+  /UnderlinePosition get Ts mul /To exch def
+  /UnderlineThickness get Ts mul /Tt exch def
+  ux uy To add cs add moveto Tcx uy To add cs add lineto
+  Tt setlinewidth stroke
+  grestore
+} bd
+/SOE {
+  /Tcx currentpoint pop def
+  gsave
+  newpath
+  cf findfont cs scalefont dup
+  /FontMatrix get 0 get /Ts exch def /FontInfo get dup
+  /UnderlinePosition get Ts mul /To exch def
+  /UnderlineThickness get Ts mul /Tt exch def
+  ux uy To add cs 10 mul 26 idiv add moveto Tcx uy To add cs 10 mul 26 idiv add lineto
+  Tt setlinewidth stroke
+  grestore
+} bd
+/QT {
+/Y22 exch store
+/X22 exch store
+/Y21 exch store
+/X21 exch store
+currentpoint
+/Y21 load 2 mul add 3 div exch
+/X21 load 2 mul add 3 div exch
+/X21 load 2 mul /X22 load add 3 div
+/Y21 load 2 mul /Y22 load add 3 div
+/X22 load /Y22 load curveto
+} bd
+/SSPD {
+dup length /d exch dict def
+{
+/v exch def
+/k exch def
+currentpagedevice k known {
+/cpdv currentpagedevice k get def
+v cpdv ne {
+/upd false def
+/nullv v type /nulltype eq def
+/nullcpdv cpdv type /nulltype eq def
+nullv nullcpdv or
+{
+/upd true def
+} {
+/sametype v type cpdv type eq def
+sametype {
+v type /arraytype eq {
+/vlen v length def
+/cpdvlen cpdv length def
+vlen cpdvlen eq {
+0 1 vlen 1 sub {
+/i exch def
+/obj v i get def
+/cpdobj cpdv i get def
+obj cpdobj ne {
+/upd true def
+exit
+} if
+} for
+} {
+/upd true def
+} ifelse
+} {
+v type /dicttype eq {
+v {
+/dv exch def
+/dk exch def
+/cpddv cpdv dk get def
+dv cpddv ne {
+/upd true def
+exit
+} if
+} forall
+} {
+/upd true def
+} ifelse
+} ifelse
+} if
+} ifelse
+upd true eq {
+d k v put
+} if
+} if
+} if
+} forall
+d length 0 gt {
+d setpagedevice
+} if
+} bd
+/RE { % /NewFontName [NewEncodingArray] /FontName RE -
+  findfont dup length dict begin
+  {
+    1 index /FID ne
+    {def} {pop pop} ifelse
+  } forall
+  /Encoding exch def
+  /FontName 1 index def
+  currentdict definefont pop
+  end
+} bind def
+%%EndResource
+%%BeginResource: procset (Apache XML Graphics EPS ProcSet) 1.0 0
+%%Version: 1.0 0
+%%Copyright: (Copyright 2002-2003 The Apache Software Foundation. License terms: http://www.apache.org/licenses/LICENSE-2.0)
+/BeginEPSF { %def
+/b4_Inc_state save def         % Save state for cleanup
+/dict_count countdictstack def % Count objects on dict stack
+/op_count count 1 sub def      % Count objects on operand stack
+userdict begin                 % Push userdict on dict stack
+/showpage { } def              % Redefine showpage, { } = null proc
+0 setgray 0 setlinecap         % Prepare graphics state
+1 setlinewidth 0 setlinejoin
+10 setmiterlimit [ ] 0 setdash newpath
+/languagelevel where           % If level not equal to 1 then
+{pop languagelevel             % set strokeadjust and
+1 ne                           % overprint to their defaults.
+{false setstrokeadjust false setoverprint
+} if
+} if
+} bd
+/EndEPSF { %def
+count op_count sub {pop} repeat            % Clean up stacks
+countdictstack dict_count sub {end} repeat
+b4_Inc_state restore
+} bd
+%%EndResource
+%FOPBeginFontDict
+%%IncludeResource: font Courier-Oblique
+%%IncludeResource: font Courier-BoldOblique
+%%IncludeResource: font Courier-Bold
+%%IncludeResource: font ZapfDingbats
+%%IncludeResource: font Symbol
+%%IncludeResource: font Helvetica
+%%IncludeResource: font Helvetica-Oblique
+%%IncludeResource: font Helvetica-Bold
+%%IncludeResource: font Helvetica-BoldOblique
+%%IncludeResource: font Times-Roman
+%%IncludeResource: font Times-Italic
+%%IncludeResource: font Times-Bold
+%%IncludeResource: font Times-BoldItalic
+%%IncludeResource: font Courier
+%FOPEndFontDict
+%%BeginResource: encoding WinAnsiEncoding
+/WinAnsiEncoding [
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /space /exclam /quotedbl
+/numbersign /dollar /percent /ampersand /quotesingle
+/parenleft /parenright /asterisk /plus /comma
+/hyphen /period /slash /zero /one
+/two /three /four /five /six
+/seven /eight /nine /colon /semicolon
+/less /equal /greater /question /at
+/A /B /C /D /E
+/F /G /H /I /J
+/K /L /M /N /O
+/P /Q /R /S /T
+/U /V /W /X /Y
+/Z /bracketleft /backslash /bracketright /asciicircum
+/underscore /quoteleft /a /b /c
+/d /e /f /g /h
+/i /j /k /l /m
+/n /o /p /q /r
+/s /t /u /v /w
+/x /y /z /braceleft /bar
+/braceright /asciitilde /bullet /Euro /bullet
+/quotesinglbase /florin /quotedblbase /ellipsis /dagger
+/daggerdbl /circumflex /perthousand /Scaron /guilsinglleft
+/OE /bullet /Zcaron /bullet /bullet
+/quoteleft /quoteright /quotedblleft /quotedblright /bullet
+/endash /emdash /asciitilde /trademark /scaron
+/guilsinglright /oe /bullet /zcaron /Ydieresis
+/space /exclamdown /cent /sterling /currency
+/yen /brokenbar /section /dieresis /copyright
+/ordfeminine /guillemotleft /logicalnot /sfthyphen /registered
+/macron /degree /plusminus /twosuperior /threesuperior
+/acute /mu /paragraph /middot /cedilla
+/onesuperior /ordmasculine /guillemotright /onequarter /onehalf
+/threequarters /questiondown /Agrave /Aacute /Acircumflex
+/Atilde /Adieresis /Aring /AE /Ccedilla
+/Egrave /Eacute /Ecircumflex /Edieresis /Igrave
+/Iacute /Icircumflex /Idieresis /Eth /Ntilde
+/Ograve /Oacute /Ocircumflex /Otilde /Odieresis
+/multiply /Oslash /Ugrave /Uacute /Ucircumflex
+/Udieresis /Yacute /Thorn /germandbls /agrave
+/aacute /acircumflex /atilde /adieresis /aring
+/ae /ccedilla /egrave /eacute /ecircumflex
+/edieresis /igrave /iacute /icircumflex /idieresis
+/eth /ntilde /ograve /oacute /ocircumflex
+/otilde /odieresis /divide /oslash /ugrave
+/uacute /ucircumflex /udieresis /yacute /thorn
+/ydieresis
+] def
+%%EndResource
+%FOPBeginFontReencode
+/Courier-Oblique findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Courier-Oblique exch definefont pop
+/Courier-BoldOblique findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Courier-BoldOblique exch definefont pop
+/Courier-Bold findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Courier-Bold exch definefont pop
+/Helvetica findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Helvetica exch definefont pop
+/Helvetica-Oblique findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Helvetica-Oblique exch definefont pop
+/Helvetica-Bold findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Helvetica-Bold exch definefont pop
+/Helvetica-BoldOblique findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Helvetica-BoldOblique exch definefont pop
+/Times-Roman findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Times-Roman exch definefont pop
+/Times-Italic findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Times-Italic exch definefont pop
+/Times-Bold findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Times-Bold exch definefont pop
+/Times-BoldItalic findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Times-BoldItalic exch definefont pop
+/Courier findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Courier exch definefont pop
+%FOPEndFontReencode
+%%EndProlog
+%%Page: 1 1
+%%PageBoundingBox: 0 0 420 315
+%%BeginPageSetup
+[1 0 0 -1 0 315] CT
+%%EndPageSetup
+GS
+[0.5 0 0 0.5 0 0] CT
+1 GC
+N
+0 0 840 630 re
+f
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+1 GC
+N
+0 0 840 630 re
+f
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+1 GC
+N
+109 561 M
+760 561 L
+760 47 L
+109 47 L
+cp
+f
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+109 561 M
+109 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+434.5 561 M
+434.5 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 561 M
+760 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 561 M
+109 561 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 509.6 M
+109 509.6 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 458.2 M
+109 458.2 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 406.8 M
+109 406.8 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 355.4 M
+109 355.4 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 304 M
+109 304 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 252.6 M
+109 252.6 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 201.2 M
+109 201.2 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 149.8 M
+109 149.8 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 98.4 M
+109 98.4 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 47 M
+109 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 561 M
+760 561 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 47 M
+760 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 561 M
+109 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+434.5 561 M
+434.5 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 561 M
+760 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 47 M
+109 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+434.5 47 M
+434.5 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 47 M
+760 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 54.5 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-17.5 21 moveto 
+1 -1 scale
+(-0.5) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 217.25 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-6 21 moveto 
+1 -1 scale
+(0) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 380 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-14 21 moveto 
+1 -1 scale
+(0.5) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 168.5 310] CT
+0.149 GC
+/Helvetica 22 F
+GS
+[1 0 0 1 0 0] CT
+0 0 moveto 
+1 -1 scale
+(Fr\351quence r\351duite ) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 261 310] CT
+0.149 GC
+N
+1.391 0 M
+1.125 0 1.125 -0.297 QT
+3 -7.766 L
+3.078 -8.141 3.109 -8.359 QT
+3.109 -8.719 1.672 -8.719 QT
+1.453 -8.719 1.453 -9 QT
+1.469 -9.063 1.5 -9.195 QT
+1.531 -9.328 1.594 -9.406 QT
+1.656 -9.484 1.766 -9.484 QT
+4.734 -9.719 L
+5 -9.719 5 -9.438 QT
+2.844 -0.813 L
+4.578 -1.391 6.047 -2.633 QT
+7.516 -3.875 8.531 -5.547 QT
+9.547 -7.219 9.984 -9.031 QT
+10.078 -9.328 10.336 -9.523 QT
+10.594 -9.719 10.922 -9.719 QT
+11.203 -9.719 11.383 -9.547 QT
+11.563 -9.375 11.563 -9.094 QT
+11.563 -8.734 11.273 -8.008 QT
+10.984 -7.281 10.703 -6.719 QT
+9.844 -4.984 8.406 -3.547 QT
+7.5 -2.641 6.461 -1.945 QT
+5.422 -1.25 4.297 -0.758 QT
+3.172 -0.266 1.906 0 QT
+1.391 0 L
+cp
+f
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 561 M
+109 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 561 M
+760 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 561 M
+115.51 561 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 509.6 M
+115.51 509.6 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 458.2 M
+115.51 458.2 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 406.8 M
+115.51 406.8 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 355.4 M
+115.51 355.4 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 304 M
+115.51 304 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 252.6 M
+115.51 252.6 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 201.2 M
+115.51 201.2 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 149.8 M
+115.51 149.8 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 98.4 M
+115.51 98.4 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 47 M
+115.51 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 561 M
+753.49 561 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 509.6 M
+753.49 509.6 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 458.2 M
+753.49 458.2 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 406.8 M
+753.49 406.8 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 355.4 M
+753.49 355.4 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 304 M
+753.49 304 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 252.6 M
+753.49 252.6 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 201.2 M
+753.49 201.2 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 149.8 M
+753.49 149.8 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 98.4 M
+753.49 98.4 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 47 M
+753.49 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 50.49999 280.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-12 8 moveto 
+1 -1 scale
+(0) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.49999 254.8] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-28 8 moveto 
+1 -1 scale
+(0.1) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.49999 229.10001] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-28 8 moveto 
+1 -1 scale
+(0.2) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.49999 203.39999] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-28 8 moveto 
+1 -1 scale
+(0.3) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.49999 177.7] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-28 8 moveto 
+1 -1 scale
+(0.4) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.49999 152] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-28 8 moveto 
+1 -1 scale
+(0.5) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.49999 126.3] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-28 8 moveto 
+1 -1 scale
+(0.6) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.49999 100.60001] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-28 8 moveto 
+1 -1 scale
+(0.7) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.49999 74.89999] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-28 8 moveto 
+1 -1 scale
+(0.8) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.49999 49.2] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-28 8 moveto 
+1 -1 scale
+(0.9) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.49999 23.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-12 8 moveto 
+1 -1 scale
+(1) t 
+GR
+GR
+GS
+[0 -0.5 0.5 0 26 167.5] CT
+0.149 GC
+/Helvetica 22 F
+GS
+[1 0 0 1 0 0] CT
+0 0 moveto 
+1 -1 scale
+(|H) t 
+GR
+GR
+GS
+[0 -0.5 0.5 0 31.5 156.5] CT
+0.149 GC
+/Helvetica 17.6 F
+GS
+[1 0 0 1 0 0] CT
+0 0 moveto 
+1 -1 scale
+(r) t 
+GR
+GR
+GS
+[0 -0.5 0.5 0 26 153.5] CT
+0.149 GC
+/Helvetica 22 F
+GS
+[1 0 0 1 0 0] CT
+0 0 moveto 
+1 -1 scale
+(\() t 
+GR
+GR
+GS
+[0 -0.5 0.5 0 26 149.5] CT
+0.149 GC
+N
+/f-2087076129{1.391 0 M
+1.125 0 1.125 -0.297 QT
+3 -7.766 L
+3.078 -8.141 3.109 -8.359 QT
+3.109 -8.719 1.672 -8.719 QT
+1.453 -8.719 1.453 -9 QT
+1.469 -9.063 1.5 -9.195 QT
+1.531 -9.328 1.594 -9.406 QT
+1.656 -9.484 1.766 -9.484 QT
+4.734 -9.719 L
+5 -9.719 5 -9.438 QT
+2.844 -0.813 L
+4.578 -1.391 6.047 -2.633 QT
+7.516 -3.875 8.531 -5.547 QT
+9.547 -7.219 9.984 -9.031 QT
+10.078 -9.328 10.336 -9.523 QT
+10.594 -9.719 10.922 -9.719 QT
+11.203 -9.719 11.383 -9.547 QT
+11.563 -9.375 11.563 -9.094 QT
+11.563 -8.734 11.273 -8.008 QT
+10.984 -7.281 10.703 -6.719 QT
+9.844 -4.984 8.406 -3.547 QT
+7.5 -2.641 6.461 -1.945 QT
+5.422 -1.25 4.297 -0.758 QT
+3.172 -0.266 1.906 0 QT
+1.391 0 L
+cp}def
+f-2087076129
+f
+GR
+GS
+[0 -0.5 0.5 0 26 144] CT
+0.149 GC
+/Helvetica 22 F
+GS
+[1 0 0 1 0 0] CT
+0 0 moveto 
+1 -1 scale
+(\)|) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 142 14.5] CT
+/Helvetica-Bold 22 F
+GS
+[1 0 0 1 0 0] CT
+0 0 moveto 
+1 -1 scale
+(Module lin\351aire du filtre h) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 275.5 20] CT
+/Helvetica-Bold 17.6 F
+GS
+[1 0 0 1 0 0] CT
+0 0 moveto 
+1 -1 scale
+(r) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 279 14.5] CT
+/Helvetica-Bold 22 F
+GS
+[1 0 0 1 0 0] CT
+0 0 moveto 
+1 -1 scale
+(\(k\)) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0 1 RC
+1 LJ
+3 LW
+N
+109 561 M
+109.159 560.606 L
+109.318 560.212 L
+109.477 559.817 L
+109.636 559.423 L
+109.795 559.029 L
+109.954 558.635 L
+110.113 558.242 L
+110.272 557.848 L
+110.431 557.455 L
+110.59 557.061 L
+110.749 556.668 L
+110.908 556.276 L
+111.067 555.883 L
+111.226 555.491 L
+111.385 555.099 L
+111.544 554.708 L
+111.703 554.316 L
+111.862 553.926 L
+112.021 553.535 L
+112.179 553.145 L
+112.338 552.756 L
+112.497 552.367 L
+112.656 551.978 L
+112.815 551.59 L
+112.974 551.203 L
+113.133 550.816 L
+113.292 550.429 L
+113.451 550.044 L
+113.61 549.658 L
+113.769 549.274 L
+113.928 548.89 L
+114.087 548.507 L
+114.246 548.125 L
+114.405 547.743 L
+114.564 547.362 L
+114.723 546.982 L
+114.882 546.603 L
+115.041 546.224 L
+115.2 545.846 L
+115.359 545.47 L
+115.518 545.094 L
+115.677 544.719 L
+115.836 544.345 L
+115.995 543.971 L
+116.154 543.599 L
+116.313 543.228 L
+116.472 542.858 L
+116.631 542.489 L
+116.79 542.121 L
+116.949 541.754 L
+117.108 541.388 L
+117.267 541.023 L
+117.426 540.66 L
+117.585 540.297 L
+117.744 539.936 L
+117.903 539.576 L
+118.062 539.217 L
+118.221 538.859 L
+118.379 538.503 L
+118.538 538.148 L
+118.697 537.794 L
+118.856 537.442 L
+119.015 537.091 L
+119.174 536.741 L
+119.333 536.393 L
+119.492 536.046 L
+119.651 535.7 L
+119.81 535.356 L
+119.969 535.014 L
+120.128 534.673 L
+120.287 534.333 L
+120.446 533.995 L
+120.605 533.658 L
+120.764 533.323 L
+120.923 532.99 L
+121.082 532.658 L
+121.241 532.328 L
+121.4 532 L
+121.559 531.673 L
+121.718 531.348 L
+121.877 531.024 L
+122.036 530.702 L
+122.195 530.382 L
+122.354 530.064 L
+122.513 529.748 L
+122.672 529.433 L
+122.831 529.12 L
+122.99 528.809 L
+123.149 528.5 L
+123.308 528.192 L
+123.467 527.887 L
+123.626 527.583 L
+123.785 527.281 L
+123.944 526.982 L
+124.103 526.684 L
+124.262 526.388 L
+124.421 526.094 L
+124.579 525.802 L
+124.738 525.513 L
+124.897 525.225 L
+125.056 524.939 L
+125.215 524.655 L
+125.374 524.374 L
+125.533 524.094 L
+125.692 523.817 L
+125.851 523.541 L
+126.01 523.268 L
+126.169 522.997 L
+126.328 522.729 L
+126.487 522.462 L
+126.646 522.198 L
+126.805 521.935 L
+126.964 521.676 L
+127.123 521.418 L
+127.282 521.162 L
+127.441 520.909 L
+127.6 520.659 L
+127.759 520.41 L
+127.918 520.164 L
+128.077 519.92 L
+128.236 519.679 L
+128.395 519.44 L
+128.554 519.203 L
+128.713 518.969 L
+128.872 518.737 L
+129.031 518.507 L
+129.19 518.28 L
+129.349 518.056 L
+129.508 517.834 L
+129.667 517.614 L
+129.826 517.397 L
+129.985 517.182 L
+130.144 516.97 L
+130.303 516.761 L
+130.462 516.554 L
+130.621 516.349 L
+130.779 516.147 L
+130.938 515.948 L
+131.097 515.751 L
+131.256 515.557 L
+131.415 515.366 L
+131.574 515.177 L
+131.733 514.99 L
+131.892 514.807 L
+132.051 514.626 L
+132.21 514.448 L
+132.369 514.272 L
+132.528 514.099 L
+132.687 513.929 L
+132.846 513.761 L
+133.005 513.597 L
+133.164 513.435 L
+133.323 513.275 L
+133.482 513.119 L
+133.641 512.965 L
+133.8 512.814 L
+133.959 512.666 L
+134.118 512.52 L
+134.277 512.378 L
+134.436 512.238 L
+134.595 512.101 L
+134.754 511.967 L
+134.913 511.835 L
+135.072 511.707 L
+135.231 511.581 L
+135.39 511.458 L
+135.549 511.338 L
+135.708 511.221 L
+135.867 511.107 L
+136.026 510.996 L
+136.185 510.887 L
+136.344 510.782 L
+136.503 510.679 L
+136.662 510.579 L
+136.821 510.482 L
+136.979 510.388 L
+137.138 510.298 L
+137.297 510.209 L
+137.456 510.124 L
+137.615 510.042 L
+137.774 509.963 L
+137.933 509.887 L
+138.092 509.813 L
+138.251 509.743 L
+138.41 509.676 L
+138.569 509.611 L
+138.728 509.55 L
+138.887 509.492 L
+139.046 509.436 L
+139.205 509.384 L
+139.364 509.334 L
+139.523 509.288 L
+139.682 509.244 L
+139.841 509.204 L
+140 509.166 L
+140.159 509.132 L
+140.318 509.101 L
+140.477 509.072 L
+140.636 509.047 L
+140.795 509.025 L
+140.954 509.005 L
+141.113 508.989 L
+141.272 508.976 L
+141.431 508.965 L
+141.59 508.958 L
+141.749 508.954 L
+141.908 508.953 L
+142.067 508.955 L
+142.226 508.959 L
+142.385 508.967 L
+142.544 508.978 L
+142.703 508.992 L
+142.862 509.009 L
+143.021 509.029 L
+143.179 509.053 L
+143.338 509.079 L
+143.497 509.108 L
+143.656 509.14 L
+143.815 509.175 L
+143.974 509.213 L
+144.133 509.255 L
+144.292 509.299 L
+144.451 509.346 L
+144.61 509.397 L
+144.769 509.45 L
+144.928 509.506 L
+145.087 509.566 L
+145.246 509.628 L
+145.405 509.694 L
+145.564 509.762 L
+145.723 509.833 L
+145.882 509.908 L
+146.041 509.985 L
+146.2 510.066 L
+146.359 510.149 L
+146.518 510.235 L
+146.677 510.325 L
+146.836 510.417 L
+146.995 510.512 L
+147.154 510.611 L
+147.313 510.712 L
+147.472 510.816 L
+147.631 510.923 L
+147.79 511.033 L
+147.949 511.146 L
+148.108 511.262 L
+148.267 511.381 L
+148.426 511.503 L
+148.585 511.628 L
+148.744 511.755 L
+148.903 511.886 L
+149.062 512.02 L
+149.221 512.156 L
+149.379 512.295 L
+149.538 512.437 L
+149.697 512.582 L
+149.856 512.73 L
+150.015 512.881 L
+150.174 513.034 L
+150.333 513.191 L
+150.492 513.35 L
+150.651 513.512 L
+150.81 513.677 L
+150.969 513.845 L
+151.128 514.015 L
+151.287 514.189 L
+151.446 514.365 L
+151.605 514.543 L
+151.764 514.725 L
+151.923 514.909 L
+152.082 515.096 L
+152.241 515.286 L
+152.4 515.479 L
+152.559 515.674 L
+152.718 515.872 L
+152.877 516.073 L
+153.036 516.276 L
+153.195 516.482 L
+153.354 516.691 L
+153.513 516.902 L
+153.672 517.116 L
+153.831 517.333 L
+153.99 517.552 L
+154.149 517.774 L
+154.308 517.998 L
+154.467 518.225 L
+154.626 518.455 L
+154.785 518.687 L
+154.944 518.922 L
+155.103 519.159 L
+155.262 519.399 L
+155.421 519.641 L
+155.579 519.886 L
+155.738 520.133 L
+155.897 520.382 L
+156.056 520.635 L
+156.215 520.889 L
+156.374 521.146 L
+156.533 521.406 L
+156.692 521.667 L
+156.851 521.932 L
+157.01 522.198 L
+157.169 522.467 L
+157.328 522.738 L
+157.487 523.012 L
+157.646 523.288 L
+157.805 523.566 L
+157.964 523.846 L
+158.123 524.129 L
+158.282 524.414 L
+158.441 524.702 L
+158.6 524.991 L
+158.759 525.283 L
+158.918 525.577 L
+159.077 525.873 L
+159.236 526.171 L
+159.395 526.471 L
+159.554 526.774 L
+159.713 527.078 L
+159.872 527.385 L
+160.031 527.694 L
+160.19 528.004 L
+160.349 528.317 L
+160.508 528.632 L
+160.667 528.949 L
+160.826 529.268 L
+160.985 529.589 L
+161.144 529.911 L
+161.303 530.236 L
+161.462 530.563 L
+161.621 530.891 L
+161.779 531.222 L
+161.938 531.554 L
+162.097 531.888 L
+162.256 532.224 L
+162.415 532.562 L
+162.574 532.902 L
+162.733 533.243 L
+162.892 533.586 L
+163.051 533.931 L
+163.21 534.278 L
+163.369 534.626 L
+163.528 534.976 L
+163.687 535.327 L
+163.846 535.681 L
+164.005 536.035 L
+164.164 536.392 L
+164.323 536.75 L
+164.482 537.11 L
+164.641 537.471 L
+164.8 537.833 L
+164.959 538.198 L
+165.118 538.563 L
+165.277 538.93 L
+165.436 539.299 L
+165.595 539.669 L
+165.754 540.04 L
+165.913 540.413 L
+166.072 540.787 L
+166.231 541.163 L
+166.39 541.54 L
+166.549 541.918 L
+166.708 542.297 L
+166.867 542.678 L
+167.026 543.06 L
+167.185 543.443 L
+167.344 543.827 L
+167.503 544.212 L
+167.662 544.599 L
+167.821 544.987 L
+167.979 545.376 L
+168.138 545.766 L
+168.297 546.156 L
+168.456 546.549 L
+168.615 546.942 L
+168.774 547.336 L
+168.933 547.731 L
+169.092 548.127 L
+169.251 548.523 L
+169.41 548.921 L
+169.569 549.32 L
+169.728 549.72 L
+169.887 550.12 L
+170.046 550.521 L
+170.205 550.923 L
+170.364 551.326 L
+170.523 551.729 L
+170.682 552.134 L
+170.841 552.539 L
+171 552.944 L
+171.159 553.351 L
+171.318 553.758 L
+171.477 554.165 L
+171.636 554.573 L
+171.795 554.982 L
+171.954 555.391 L
+172.113 555.801 L
+172.272 556.212 L
+172.431 556.622 L
+172.59 557.034 L
+172.749 557.445 L
+172.908 557.857 L
+173.067 558.27 L
+173.226 558.683 L
+173.385 559.096 L
+173.544 559.509 L
+173.703 559.923 L
+173.862 560.337 L
+174.021 560.751 L
+174.179 560.834 L
+174.338 560.419 L
+174.497 560.005 L
+174.656 559.59 L
+174.815 559.174 L
+174.974 558.759 L
+175.133 558.344 L
+175.292 557.928 L
+175.451 557.513 L
+175.61 557.098 L
+175.769 556.682 L
+175.928 556.267 L
+176.087 555.852 L
+176.246 555.436 L
+176.405 555.021 L
+176.564 554.606 L
+176.723 554.191 L
+176.882 553.777 L
+177.041 553.362 L
+177.2 552.948 L
+177.359 552.534 L
+177.518 552.12 L
+177.677 551.707 L
+177.836 551.294 L
+177.995 550.881 L
+178.154 550.469 L
+178.313 550.057 L
+178.472 549.646 L
+178.631 549.234 L
+178.79 548.824 L
+178.949 548.414 L
+179.108 548.004 L
+179.267 547.595 L
+179.426 547.186 L
+179.585 546.779 L
+179.744 546.371 L
+179.903 545.964 L
+180.062 545.558 L
+180.221 545.153 L
+180.379 544.748 L
+180.538 544.344 L
+180.697 543.941 L
+180.856 543.539 L
+181.015 543.137 L
+181.174 542.736 L
+181.333 542.336 L
+181.492 541.937 L
+181.651 541.539 L
+181.81 541.142 L
+181.969 540.745 L
+182.128 540.35 L
+182.287 539.955 L
+182.446 539.562 L
+182.605 539.17 L
+182.764 538.778 L
+182.923 538.388 L
+183.082 537.999 L
+183.241 537.611 L
+183.4 537.224 L
+183.559 536.838 L
+183.718 536.453 L
+183.877 536.07 L
+184.036 535.688 L
+184.195 535.307 L
+184.354 534.927 L
+184.513 534.549 L
+184.672 534.172 L
+184.831 533.796 L
+184.99 533.422 L
+185.149 533.049 L
+185.308 532.677 L
+185.467 532.307 L
+185.626 531.939 L
+185.785 531.571 L
+185.944 531.206 L
+186.103 530.842 L
+186.262 530.479 L
+186.421 530.118 L
+186.579 529.758 L
+186.738 529.401 L
+186.897 529.044 L
+187.056 528.69 L
+187.215 528.337 L
+187.374 527.986 L
+187.533 527.636 L
+187.692 527.288 L
+187.851 526.942 L
+188.01 526.598 L
+188.169 526.255 L
+188.328 525.915 L
+188.487 525.576 L
+188.646 525.239 L
+188.805 524.904 L
+188.964 524.571 L
+189.123 524.239 L
+189.282 523.91 L
+189.441 523.582 L
+189.6 523.257 L
+189.759 522.934 L
+189.918 522.612 L
+190.077 522.293 L
+190.236 521.975 L
+190.395 521.66 L
+190.554 521.347 L
+190.713 521.036 L
+190.872 520.727 L
+191.031 520.42 L
+191.19 520.116 L
+191.349 519.813 L
+191.508 519.513 L
+191.667 519.215 L
+191.826 518.919 L
+191.985 518.626 L
+192.144 518.334 L
+192.303 518.045 L
+192.462 517.759 L
+192.621 517.474 L
+192.779 517.193 L
+192.938 516.913 L
+193.097 516.636 L
+193.256 516.361 L
+193.415 516.089 L
+193.574 515.819 L
+193.733 515.551 L
+193.892 515.286 L
+194.051 515.024 L
+194.21 514.764 L
+194.369 514.506 L
+194.528 514.251 L
+194.687 513.999 L
+194.846 513.749 L
+195.005 513.502 L
+195.164 513.257 L
+195.323 513.015 L
+195.482 512.776 L
+195.641 512.539 L
+195.8 512.305 L
+195.959 512.073 L
+196.118 511.845 L
+196.277 511.618 L
+196.436 511.395 L
+196.595 511.175 L
+196.754 510.957 L
+196.913 510.742 L
+197.072 510.529 L
+197.231 510.32 L
+197.39 510.113 L
+197.549 509.909 L
+197.708 509.708 L
+197.867 509.51 L
+198.026 509.315 L
+198.185 509.123 L
+198.344 508.933 L
+198.503 508.746 L
+198.662 508.563 L
+198.821 508.382 L
+198.979 508.204 L
+199.138 508.029 L
+199.297 507.857 L
+199.456 507.688 L
+199.615 507.522 L
+199.774 507.359 L
+199.933 507.199 L
+200.092 507.042 L
+200.251 506.888 L
+200.41 506.737 L
+200.569 506.589 L
+200.728 506.444 L
+200.887 506.303 L
+201.046 506.164 L
+201.205 506.029 L
+201.364 505.896 L
+201.523 505.767 L
+201.682 505.641 L
+201.841 505.517 L
+202 505.398 L
+202.159 505.281 L
+202.318 505.167 L
+202.477 505.057 L
+202.636 504.949 L
+202.795 504.845 L
+202.954 504.744 L
+203.113 504.647 L
+203.272 504.552 L
+203.431 504.461 L
+203.59 504.373 L
+203.749 504.288 L
+203.908 504.207 L
+204.067 504.128 L
+204.226 504.053 L
+204.385 503.981 L
+204.544 503.913 L
+204.703 503.848 L
+204.862 503.786 L
+205.021 503.727 L
+205.179 503.671 L
+205.338 503.619 L
+205.497 503.57 L
+205.656 503.525 L
+205.815 503.483 L
+205.974 503.444 L
+206.133 503.408 L
+206.292 503.376 L
+206.451 503.347 L
+206.61 503.322 L
+206.769 503.299 L
+206.928 503.281 L
+207.087 503.265 L
+207.246 503.253 L
+207.405 503.244 L
+207.564 503.239 L
+207.723 503.237 L
+207.882 503.238 L
+208.041 503.243 L
+208.2 503.251 L
+208.359 503.262 L
+208.518 503.277 L
+208.677 503.295 L
+208.836 503.316 L
+208.995 503.341 L
+209.154 503.369 L
+209.313 503.401 L
+209.472 503.436 L
+209.631 503.474 L
+209.79 503.516 L
+209.949 503.561 L
+210.108 503.61 L
+210.267 503.662 L
+210.426 503.717 L
+210.585 503.776 L
+210.744 503.838 L
+210.903 503.903 L
+211.062 503.972 L
+211.221 504.045 L
+211.379 504.12 L
+211.538 504.199 L
+211.697 504.281 L
+211.856 504.367 L
+212.015 504.456 L
+212.174 504.549 L
+212.333 504.645 L
+212.492 504.744 L
+212.651 504.846 L
+212.81 504.952 L
+212.969 505.062 L
+213.128 505.174 L
+213.287 505.29 L
+213.446 505.409 L
+213.605 505.532 L
+213.764 505.658 L
+213.923 505.787 L
+214.082 505.92 L
+214.241 506.056 L
+214.4 506.195 L
+214.559 506.338 L
+214.718 506.484 L
+214.877 506.633 L
+215.036 506.785 L
+215.195 506.941 L
+215.354 507.1 L
+215.513 507.263 L
+215.672 507.428 L
+215.831 507.597 L
+215.99 507.769 L
+216.149 507.945 L
+216.308 508.123 L
+216.467 508.305 L
+216.626 508.49 L
+216.785 508.679 L
+216.944 508.87 L
+217.103 509.065 L
+217.262 509.263 L
+217.421 509.464 L
+217.579 509.668 L
+217.738 509.876 L
+217.897 510.087 L
+218.056 510.3 L
+218.215 510.517 L
+218.374 510.737 L
+218.533 510.961 L
+218.692 511.187 L
+218.851 511.416 L
+219.01 511.649 L
+219.169 511.885 L
+219.328 512.123 L
+219.487 512.365 L
+219.646 512.61 L
+219.805 512.858 L
+219.964 513.109 L
+220.123 513.362 L
+220.282 513.619 L
+220.441 513.879 L
+220.6 514.142 L
+220.759 514.408 L
+220.918 514.677 L
+221.077 514.949 L
+221.236 515.223 L
+221.395 515.501 L
+221.554 515.781 L
+221.713 516.065 L
+221.872 516.351 L
+222.031 516.64 L
+222.19 516.932 L
+222.349 517.227 L
+222.508 517.525 L
+222.667 517.825 L
+222.826 518.129 L
+222.985 518.435 L
+223.144 518.744 L
+223.303 519.055 L
+223.462 519.369 L
+223.62 519.687 L
+223.779 520.006 L
+223.938 520.329 L
+224.097 520.654 L
+224.256 520.982 L
+224.415 521.312 L
+224.574 521.645 L
+224.733 521.981 L
+224.892 522.319 L
+225.051 522.66 L
+225.21 523.003 L
+225.369 523.349 L
+225.528 523.698 L
+225.687 524.049 L
+225.846 524.402 L
+226.005 524.758 L
+226.164 525.117 L
+226.323 525.478 L
+226.482 525.841 L
+226.641 526.207 L
+226.8 526.575 L
+226.959 526.945 L
+227.118 527.318 L
+227.277 527.693 L
+227.436 528.07 L
+227.595 528.45 L
+227.754 528.832 L
+227.913 529.216 L
+228.072 529.603 L
+228.231 529.992 L
+228.39 530.382 L
+228.549 530.775 L
+228.708 531.171 L
+228.867 531.568 L
+229.026 531.967 L
+229.185 532.369 L
+229.344 532.773 L
+229.503 533.178 L
+229.662 533.586 L
+229.821 533.996 L
+229.979 534.407 L
+230.138 534.821 L
+230.297 535.237 L
+230.456 535.654 L
+230.615 536.074 L
+230.774 536.495 L
+230.933 536.918 L
+231.092 537.343 L
+231.251 537.77 L
+231.41 538.199 L
+231.569 538.629 L
+231.728 539.061 L
+231.887 539.495 L
+232.046 539.931 L
+232.205 540.368 L
+232.364 540.807 L
+232.523 541.247 L
+232.682 541.689 L
+232.841 542.133 L
+233 542.578 L
+233.159 543.025 L
+233.318 543.474 L
+233.477 543.923 L
+233.636 544.375 L
+233.795 544.827 L
+233.954 545.282 L
+234.113 545.737 L
+234.272 546.194 L
+234.431 546.652 L
+234.59 547.112 L
+234.749 547.573 L
+234.908 548.035 L
+235.067 548.499 L
+235.226 548.963 L
+235.385 549.429 L
+235.544 549.896 L
+235.703 550.364 L
+235.862 550.833 L
+236.021 551.304 L
+236.179 551.775 L
+236.338 552.248 L
+236.497 552.721 L
+236.656 553.196 L
+236.815 553.671 L
+236.974 554.148 L
+237.133 554.625 L
+237.292 555.103 L
+237.451 555.583 L
+237.61 556.063 L
+237.769 556.543 L
+237.928 557.025 L
+238.087 557.507 L
+238.246 557.99 L
+238.405 558.474 L
+238.564 558.958 L
+238.723 559.444 L
+238.882 559.929 L
+239.041 560.416 L
+239.2 560.903 L
+239.359 560.61 L
+239.518 560.122 L
+239.677 559.634 L
+239.836 559.145 L
+239.995 558.655 L
+240.154 558.165 L
+240.313 557.675 L
+240.472 557.185 L
+240.631 556.694 L
+240.79 556.203 L
+240.949 555.711 L
+241.108 555.219 L
+241.267 554.728 L
+241.426 554.235 L
+241.585 553.743 L
+241.744 553.251 L
+241.903 552.758 L
+242.062 552.266 L
+242.221 551.773 L
+242.379 551.28 L
+242.538 550.787 L
+242.697 550.295 L
+242.856 549.802 L
+243.015 549.31 L
+243.174 548.817 L
+243.333 548.325 L
+243.492 547.833 L
+243.651 547.341 L
+243.81 546.849 L
+243.969 546.358 L
+244.128 545.866 L
+244.287 545.376 L
+244.446 544.885 L
+244.605 544.395 L
+244.764 543.905 L
+244.923 543.416 L
+245.082 542.927 L
+245.241 542.438 L
+245.4 541.95 L
+245.559 541.463 L
+245.718 540.976 L
+245.877 540.49 L
+246.036 540.004 L
+246.195 539.519 L
+246.354 539.035 L
+246.513 538.551 L
+246.672 538.068 L
+246.831 537.586 L
+246.99 537.105 L
+247.149 536.624 L
+247.308 536.145 L
+247.467 535.666 L
+247.626 535.188 L
+247.785 534.711 L
+247.944 534.235 L
+248.103 533.76 L
+248.262 533.285 L
+248.421 532.812 L
+248.579 532.34 L
+248.738 531.87 L
+248.897 531.4 L
+249.056 530.931 L
+249.215 530.464 L
+249.374 529.997 L
+249.533 529.532 L
+249.692 529.069 L
+249.851 528.606 L
+250.01 528.145 L
+250.169 527.685 L
+250.328 527.227 L
+250.487 526.77 L
+250.646 526.314 L
+250.805 525.86 L
+250.964 525.407 L
+251.123 524.956 L
+251.282 524.506 L
+251.441 524.058 L
+251.6 523.612 L
+251.759 523.167 L
+251.918 522.724 L
+252.077 522.282 L
+252.236 521.842 L
+252.395 521.404 L
+252.554 520.968 L
+252.713 520.533 L
+252.872 520.1 L
+253.031 519.669 L
+253.19 519.24 L
+253.349 518.813 L
+253.508 518.388 L
+253.667 517.964 L
+253.826 517.543 L
+253.985 517.123 L
+254.144 516.706 L
+254.303 516.29 L
+254.462 515.877 L
+254.62 515.466 L
+254.779 515.057 L
+254.938 514.65 L
+255.097 514.245 L
+255.256 513.842 L
+255.415 513.442 L
+255.574 513.044 L
+255.733 512.648 L
+255.892 512.254 L
+256.051 511.863 L
+256.21 511.474 L
+256.369 511.088 L
+256.528 510.704 L
+256.687 510.322 L
+256.846 509.943 L
+257.005 509.566 L
+257.164 509.192 L
+257.323 508.82 L
+257.482 508.451 L
+257.641 508.084 L
+257.8 507.72 L
+257.959 507.358 L
+258.118 507 L
+258.277 506.643 L
+258.436 506.29 L
+258.595 505.939 L
+258.754 505.591 L
+258.913 505.246 L
+259.072 504.904 L
+259.231 504.564 L
+259.39 504.227 L
+259.549 503.893 L
+259.708 503.562 L
+259.867 503.234 L
+260.026 502.909 L
+260.185 502.586 L
+260.344 502.267 L
+260.503 501.95 L
+260.662 501.637 L
+260.82 501.327 L
+260.979 501.019 L
+261.138 500.715 L
+261.297 500.414 L
+261.456 500.116 L
+261.615 499.821 L
+261.774 499.529 L
+261.933 499.241 L
+262.092 498.955 L
+262.251 498.673 L
+262.41 498.394 L
+262.569 498.118 L
+262.728 497.846 L
+262.887 497.577 L
+263.046 497.311 L
+263.205 497.049 L
+263.364 496.79 L
+263.523 496.534 L
+263.682 496.281 L
+263.841 496.033 L
+264 495.787 L
+264.159 495.545 L
+264.318 495.307 L
+264.477 495.071 L
+264.636 494.84 L
+264.795 494.612 L
+264.954 494.387 L
+265.113 494.166 L
+265.272 493.949 L
+265.431 493.735 L
+265.59 493.525 L
+265.749 493.319 L
+265.908 493.116 L
+266.067 492.917 L
+266.226 492.721 L
+266.385 492.529 L
+266.544 492.341 L
+266.703 492.157 L
+266.862 491.976 L
+267.021 491.799 L
+267.179 491.626 L
+267.338 491.457 L
+267.497 491.291 L
+267.656 491.129 L
+267.815 490.971 L
+267.974 490.817 L
+268.133 490.667 L
+268.292 490.521 L
+268.451 490.379 L
+268.61 490.24 L
+268.769 490.105 L
+268.928 489.975 L
+269.087 489.848 L
+269.246 489.725 L
+269.405 489.607 L
+269.564 489.492 L
+269.723 489.381 L
+269.882 489.274 L
+270.041 489.171 L
+270.2 489.073 L
+270.359 488.978 L
+270.518 488.887 L
+270.677 488.801 L
+270.836 488.718 L
+270.995 488.64 L
+271.154 488.566 L
+271.313 488.495 L
+271.472 488.429 L
+271.631 488.367 L
+271.79 488.309 L
+271.949 488.256 L
+272.108 488.206 L
+272.267 488.161 L
+272.426 488.12 L
+272.585 488.083 L
+272.744 488.05 L
+272.903 488.021 L
+273.062 487.997 L
+273.221 487.977 L
+273.379 487.961 L
+273.538 487.949 L
+273.697 487.942 L
+273.856 487.938 L
+274.015 487.939 L
+274.174 487.945 L
+274.333 487.954 L
+274.492 487.968 L
+274.651 487.986 L
+274.81 488.009 L
+274.969 488.035 L
+275.128 488.066 L
+275.287 488.101 L
+275.446 488.141 L
+275.605 488.185 L
+275.764 488.233 L
+275.923 488.286 L
+276.082 488.342 L
+276.241 488.404 L
+276.4 488.469 L
+276.559 488.539 L
+276.718 488.613 L
+276.877 488.692 L
+277.036 488.774 L
+277.195 488.862 L
+277.354 488.953 L
+277.513 489.049 L
+277.672 489.149 L
+277.831 489.254 L
+277.99 489.363 L
+278.149 489.476 L
+278.308 489.594 L
+278.467 489.716 L
+278.626 489.842 L
+278.785 489.973 L
+278.944 490.108 L
+279.103 490.247 L
+279.262 490.391 L
+279.421 490.539 L
+279.579 490.691 L
+279.738 490.848 L
+279.897 491.009 L
+280.056 491.175 L
+280.215 491.345 L
+280.374 491.519 L
+280.533 491.698 L
+280.692 491.88 L
+280.851 492.068 L
+281.01 492.259 L
+281.169 492.455 L
+281.328 492.655 L
+281.487 492.86 L
+281.646 493.069 L
+281.805 493.282 L
+281.964 493.499 L
+282.123 493.721 L
+282.282 493.947 L
+282.441 494.177 L
+282.6 494.412 L
+282.759 494.651 L
+282.918 494.894 L
+283.077 495.142 L
+283.236 495.393 L
+283.395 495.649 L
+283.554 495.91 L
+283.713 496.174 L
+283.872 496.443 L
+284.031 496.716 L
+284.19 496.993 L
+284.349 497.274 L
+284.508 497.56 L
+284.667 497.849 L
+284.826 498.143 L
+284.985 498.441 L
+285.144 498.744 L
+285.303 499.05 L
+285.462 499.361 L
+285.621 499.676 L
+285.779 499.994 L
+285.938 500.317 L
+286.097 500.644 L
+286.256 500.976 L
+286.415 501.311 L
+286.574 501.65 L
+286.733 501.994 L
+286.892 502.341 L
+287.051 502.692 L
+287.21 503.048 L
+287.369 503.407 L
+287.528 503.771 L
+287.687 504.138 L
+287.846 504.51 L
+288.005 504.885 L
+288.164 505.265 L
+288.323 505.648 L
+288.482 506.035 L
+288.641 506.426 L
+288.8 506.821 L
+288.959 507.22 L
+289.118 507.623 L
+289.277 508.03 L
+289.436 508.44 L
+289.595 508.854 L
+289.754 509.272 L
+289.913 509.694 L
+290.072 510.12 L
+290.231 510.549 L
+290.39 510.982 L
+290.549 511.419 L
+290.708 511.859 L
+290.867 512.303 L
+291.026 512.751 L
+291.185 513.202 L
+291.344 513.658 L
+291.503 514.116 L
+291.662 514.578 L
+291.821 515.044 L
+291.979 515.514 L
+292.138 515.986 L
+292.297 516.463 L
+292.456 516.943 L
+292.615 517.426 L
+292.774 517.913 L
+292.933 518.403 L
+293.092 518.897 L
+293.251 519.394 L
+293.41 519.894 L
+293.569 520.398 L
+293.728 520.905 L
+293.887 521.415 L
+294.046 521.929 L
+294.205 522.446 L
+294.364 522.966 L
+294.523 523.489 L
+294.682 524.016 L
+294.841 524.545 L
+295 525.078 L
+295.159 525.614 L
+295.318 526.153 L
+295.477 526.695 L
+295.636 527.24 L
+295.795 527.789 L
+295.954 528.34 L
+296.113 528.894 L
+296.272 529.451 L
+296.431 530.011 L
+296.59 530.574 L
+296.749 531.14 L
+296.908 531.708 L
+297.067 532.28 L
+297.226 532.854 L
+297.385 533.431 L
+297.544 534.011 L
+297.703 534.594 L
+297.862 535.179 L
+298.021 535.767 L
+298.179 536.357 L
+298.338 536.95 L
+298.497 537.546 L
+298.656 538.144 L
+298.815 538.745 L
+298.974 539.348 L
+299.133 539.954 L
+299.292 540.562 L
+299.451 541.173 L
+299.61 541.786 L
+299.769 542.401 L
+299.928 543.019 L
+300.087 543.639 L
+300.246 544.261 L
+300.405 544.885 L
+300.564 545.512 L
+300.723 546.141 L
+300.882 546.772 L
+301.041 547.405 L
+301.2 548.04 L
+301.359 548.678 L
+301.518 549.317 L
+301.677 549.958 L
+301.836 550.601 L
+301.995 551.247 L
+302.154 551.894 L
+302.313 552.543 L
+302.472 553.193 L
+302.631 553.846 L
+302.79 554.5 L
+302.949 555.156 L
+303.108 555.814 L
+303.267 556.474 L
+303.426 557.135 L
+303.585 557.798 L
+303.744 558.462 L
+303.903 559.128 L
+304.062 559.795 L
+304.221 560.464 L
+304.379 560.866 L
+304.538 560.194 L
+304.697 559.521 L
+304.856 558.847 L
+305.015 558.171 L
+305.174 557.494 L
+305.333 556.816 L
+305.492 556.136 L
+305.651 555.456 L
+305.81 554.774 L
+305.969 554.091 L
+306.128 553.407 L
+306.287 552.722 L
+306.446 552.036 L
+306.605 551.349 L
+306.764 550.662 L
+306.923 549.973 L
+307.082 549.283 L
+307.241 548.593 L
+307.4 547.902 L
+307.559 547.21 L
+307.718 546.518 L
+307.877 545.824 L
+308.036 545.13 L
+308.195 544.436 L
+308.354 543.741 L
+308.513 543.045 L
+308.672 542.349 L
+308.831 541.653 L
+308.99 540.956 L
+309.149 540.258 L
+309.308 539.561 L
+309.467 538.863 L
+309.626 538.165 L
+309.785 537.466 L
+309.944 536.768 L
+310.103 536.069 L
+310.262 535.37 L
+310.421 534.671 L
+310.579 533.972 L
+310.738 533.273 L
+310.897 532.574 L
+311.056 531.875 L
+311.215 531.176 L
+311.374 530.478 L
+311.533 529.779 L
+311.692 529.081 L
+311.851 528.383 L
+312.01 527.686 L
+312.169 526.988 L
+312.328 526.292 L
+312.487 525.595 L
+312.646 524.899 L
+312.805 524.204 L
+312.964 523.509 L
+313.123 522.814 L
+313.282 522.121 L
+313.441 521.427 L
+313.6 520.735 L
+313.759 520.043 L
+313.918 519.353 L
+314.077 518.662 L
+314.236 517.973 L
+314.395 517.285 L
+314.554 516.598 L
+314.713 515.911 L
+314.872 515.226 L
+315.031 514.542 L
+315.19 513.858 L
+315.349 513.176 L
+315.508 512.495 L
+315.667 511.816 L
+315.826 511.137 L
+315.985 510.46 L
+316.144 509.784 L
+316.303 509.11 L
+316.462 508.437 L
+316.621 507.765 L
+316.779 507.095 L
+316.938 506.426 L
+317.097 505.759 L
+317.256 505.094 L
+317.415 504.43 L
+317.574 503.768 L
+317.733 503.108 L
+317.892 502.449 L
+318.051 501.792 L
+318.21 501.138 L
+318.369 500.485 L
+318.528 499.834 L
+318.687 499.184 L
+318.846 498.537 L
+319.005 497.892 L
+319.164 497.249 L
+319.323 496.609 L
+319.482 495.97 L
+319.641 495.333 L
+319.8 494.699 L
+319.959 494.067 L
+320.118 493.438 L
+320.277 492.811 L
+320.436 492.186 L
+320.595 491.564 L
+320.754 490.944 L
+320.913 490.326 L
+321.072 489.712 L
+321.231 489.1 L
+321.39 488.49 L
+321.549 487.883 L
+321.708 487.279 L
+321.867 486.678 L
+322.026 486.079 L
+322.185 485.484 L
+322.344 484.891 L
+322.503 484.301 L
+322.662 483.714 L
+322.82 483.131 L
+322.979 482.55 L
+323.138 481.972 L
+323.297 481.397 L
+323.456 480.826 L
+323.615 480.258 L
+323.774 479.693 L
+323.933 479.131 L
+324.092 478.572 L
+324.251 478.017 L
+324.41 477.466 L
+324.569 476.917 L
+324.728 476.373 L
+324.887 475.831 L
+325.046 475.294 L
+325.205 474.759 L
+325.364 474.229 L
+325.523 473.702 L
+325.682 473.179 L
+325.841 472.659 L
+326 472.144 L
+326.159 471.632 L
+326.318 471.124 L
+326.477 470.62 L
+326.636 470.119 L
+326.795 469.623 L
+326.954 469.131 L
+327.113 468.643 L
+327.272 468.159 L
+327.431 467.679 L
+327.59 467.203 L
+327.749 466.731 L
+327.908 466.263 L
+328.067 465.8 L
+328.226 465.341 L
+328.385 464.887 L
+328.544 464.436 L
+328.703 463.991 L
+328.862 463.549 L
+329.021 463.112 L
+329.179 462.68 L
+329.338 462.252 L
+329.497 461.829 L
+329.656 461.41 L
+329.815 460.996 L
+329.974 460.586 L
+330.133 460.182 L
+330.292 459.782 L
+330.451 459.387 L
+330.61 458.996 L
+330.769 458.611 L
+330.928 458.23 L
+331.087 457.855 L
+331.246 457.484 L
+331.405 457.118 L
+331.564 456.758 L
+331.723 456.402 L
+331.882 456.052 L
+332.041 455.706 L
+332.2 455.366 L
+332.359 455.031 L
+332.518 454.701 L
+332.677 454.377 L
+332.836 454.057 L
+332.995 453.744 L
+333.154 453.435 L
+333.313 453.132 L
+333.472 452.834 L
+333.631 452.542 L
+333.79 452.255 L
+333.949 451.973 L
+334.108 451.698 L
+334.267 451.427 L
+334.426 451.163 L
+334.585 450.904 L
+334.744 450.65 L
+334.903 450.403 L
+335.062 450.161 L
+335.221 449.924 L
+335.379 449.694 L
+335.538 449.469 L
+335.697 449.251 L
+335.856 449.038 L
+336.015 448.831 L
+336.174 448.63 L
+336.333 448.435 L
+336.492 448.245 L
+336.651 448.062 L
+336.81 447.885 L
+336.969 447.714 L
+337.128 447.549 L
+337.287 447.39 L
+337.446 447.238 L
+337.605 447.091 L
+337.764 446.951 L
+337.923 446.817 L
+338.082 446.689 L
+338.241 446.567 L
+338.4 446.452 L
+338.559 446.343 L
+338.718 446.241 L
+338.877 446.144 L
+339.036 446.055 L
+339.195 445.971 L
+339.354 445.894 L
+339.513 445.824 L
+339.672 445.76 L
+339.831 445.703 L
+339.99 445.652 L
+340.149 445.607 L
+340.308 445.57 L
+340.467 445.539 L
+340.626 445.514 L
+340.785 445.496 L
+340.944 445.485 L
+341.103 445.481 L
+341.262 445.483 L
+341.421 445.492 L
+341.579 445.508 L
+341.738 445.531 L
+341.897 445.56 L
+342.056 445.596 L
+342.215 445.639 L
+342.374 445.689 L
+342.533 445.746 L
+342.692 445.81 L
+342.851 445.881 L
+343.01 445.958 L
+343.169 446.043 L
+343.328 446.134 L
+343.487 446.233 L
+343.646 446.338 L
+343.805 446.451 L
+343.964 446.571 L
+344.123 446.697 L
+344.282 446.831 L
+344.441 446.972 L
+344.6 447.12 L
+344.759 447.275 L
+344.918 447.438 L
+345.077 447.607 L
+345.236 447.784 L
+345.395 447.968 L
+345.554 448.159 L
+345.713 448.357 L
+345.872 448.563 L
+346.031 448.775 L
+346.19 448.996 L
+346.349 449.223 L
+346.508 449.458 L
+346.667 449.699 L
+346.826 449.949 L
+346.985 450.205 L
+347.144 450.469 L
+347.303 450.74 L
+347.462 451.019 L
+347.621 451.305 L
+347.779 451.598 L
+347.938 451.899 L
+348.097 452.207 L
+348.256 452.523 L
+348.415 452.846 L
+348.574 453.177 L
+348.733 453.514 L
+348.892 453.86 L
+349.051 454.213 L
+349.21 454.573 L
+349.369 454.941 L
+349.528 455.316 L
+349.687 455.699 L
+349.846 456.089 L
+350.005 456.487 L
+350.164 456.892 L
+350.323 457.305 L
+350.482 457.725 L
+350.641 458.153 L
+350.8 458.588 L
+350.959 459.031 L
+351.118 459.481 L
+351.277 459.939 L
+351.436 460.405 L
+351.595 460.878 L
+351.754 461.359 L
+351.913 461.847 L
+352.072 462.343 L
+352.231 462.846 L
+352.39 463.357 L
+352.549 463.875 L
+352.708 464.402 L
+352.867 464.935 L
+353.026 465.476 L
+353.185 466.025 L
+353.344 466.582 L
+353.503 467.146 L
+353.662 467.717 L
+353.821 468.296 L
+353.979 468.883 L
+354.138 469.477 L
+354.297 470.079 L
+354.456 470.688 L
+354.615 471.305 L
+354.774 471.93 L
+354.933 472.562 L
+355.092 473.202 L
+355.251 473.849 L
+355.41 474.504 L
+355.569 475.166 L
+355.728 475.836 L
+355.887 476.513 L
+356.046 477.198 L
+356.205 477.891 L
+356.364 478.591 L
+356.523 479.298 L
+356.682 480.013 L
+356.841 480.736 L
+357 481.466 L
+357.159 482.204 L
+357.318 482.949 L
+357.477 483.701 L
+357.636 484.461 L
+357.795 485.229 L
+357.954 486.004 L
+358.113 486.786 L
+358.272 487.576 L
+358.431 488.373 L
+358.59 489.178 L
+358.749 489.99 L
+358.908 490.81 L
+359.067 491.637 L
+359.226 492.471 L
+359.385 493.313 L
+359.544 494.162 L
+359.703 495.018 L
+359.862 495.882 L
+360.021 496.753 L
+360.179 497.631 L
+360.338 498.517 L
+360.497 499.41 L
+360.656 500.31 L
+360.815 501.217 L
+360.974 502.132 L
+361.133 503.054 L
+361.292 503.983 L
+361.451 504.919 L
+361.61 505.863 L
+361.769 506.814 L
+361.928 507.771 L
+362.087 508.736 L
+362.246 509.708 L
+362.405 510.688 L
+362.564 511.674 L
+362.723 512.667 L
+362.882 513.667 L
+363.041 514.675 L
+363.2 515.689 L
+363.359 516.711 L
+363.518 517.739 L
+363.677 518.774 L
+363.836 519.817 L
+363.995 520.866 L
+364.154 521.922 L
+364.313 522.985 L
+364.472 524.055 L
+364.631 525.131 L
+364.79 526.215 L
+364.949 527.305 L
+365.108 528.402 L
+365.267 529.506 L
+365.426 530.616 L
+365.585 531.733 L
+365.744 532.857 L
+365.903 533.987 L
+366.062 535.125 L
+366.221 536.268 L
+366.379 537.419 L
+366.538 538.576 L
+366.697 539.739 L
+366.856 540.909 L
+367.015 542.085 L
+367.174 543.268 L
+367.333 544.457 L
+367.492 545.653 L
+367.651 546.855 L
+367.81 548.063 L
+367.969 549.278 L
+368.128 550.499 L
+368.287 551.726 L
+368.446 552.96 L
+368.605 554.199 L
+368.764 555.445 L
+368.923 556.697 L
+369.082 557.956 L
+369.241 559.22 L
+369.4 560.49 L
+369.559 560.233 L
+369.718 558.951 L
+369.877 557.663 L
+370.036 556.368 L
+370.195 555.068 L
+370.354 553.762 L
+370.513 552.45 L
+370.672 551.133 L
+370.831 549.809 L
+370.99 548.48 L
+371.149 547.145 L
+371.308 545.804 L
+371.467 544.458 L
+371.626 543.106 L
+371.785 541.748 L
+371.944 540.385 L
+372.103 539.016 L
+372.262 537.642 L
+372.421 536.263 L
+372.579 534.878 L
+372.738 533.487 L
+372.897 532.091 L
+373.056 530.69 L
+373.215 529.284 L
+373.374 527.873 L
+373.533 526.456 L
+373.692 525.034 L
+373.851 523.607 L
+374.01 522.175 L
+374.169 520.738 L
+374.328 519.295 L
+374.487 517.848 L
+374.646 516.396 L
+374.805 514.939 L
+374.964 513.477 L
+375.123 512.01 L
+375.282 510.539 L
+375.441 509.063 L
+375.6 507.582 L
+375.759 506.096 L
+375.918 504.606 L
+376.077 503.111 L
+376.236 501.612 L
+376.395 500.108 L
+376.554 498.599 L
+376.713 497.086 L
+376.872 495.569 L
+377.031 494.048 L
+377.19 492.522 L
+377.349 490.992 L
+377.508 489.458 L
+377.667 487.919 L
+377.826 486.377 L
+377.985 484.83 L
+378.144 483.279 L
+378.303 481.724 L
+378.462 480.166 L
+378.621 478.603 L
+378.779 477.036 L
+378.938 475.466 L
+379.097 473.892 L
+379.256 472.314 L
+379.415 470.733 L
+379.574 469.147 L
+379.733 467.559 L
+379.892 465.966 L
+380.051 464.37 L
+380.21 462.771 L
+380.369 461.168 L
+380.528 459.562 L
+380.687 457.952 L
+380.846 456.34 L
+381.005 454.724 L
+381.164 453.104 L
+381.323 451.482 L
+381.482 449.857 L
+381.641 448.228 L
+381.8 446.596 L
+381.959 444.962 L
+382.118 443.324 L
+382.277 441.684 L
+382.436 440.041 L
+382.595 438.395 L
+382.754 436.747 L
+382.913 435.095 L
+383.072 433.441 L
+383.231 431.785 L
+383.39 430.126 L
+383.549 428.464 L
+383.708 426.801 L
+383.867 425.134 L
+384.026 423.466 L
+384.185 421.795 L
+384.344 420.122 L
+384.503 418.446 L
+384.662 416.769 L
+384.821 415.089 L
+384.979 413.408 L
+385.138 411.724 L
+385.297 410.038 L
+385.456 408.351 L
+385.615 406.662 L
+385.774 404.971 L
+385.933 403.278 L
+386.092 401.584 L
+386.251 399.888 L
+386.41 398.19 L
+386.569 396.491 L
+386.728 394.79 L
+386.887 393.088 L
+387.046 391.385 L
+387.205 389.68 L
+387.364 387.974 L
+387.523 386.267 L
+387.682 384.559 L
+387.841 382.849 L
+388 381.139 L
+388.159 379.427 L
+388.318 377.714 L
+388.477 376.001 L
+388.636 374.287 L
+388.795 372.572 L
+388.954 370.856 L
+389.113 369.139 L
+389.272 367.422 L
+389.431 365.705 L
+389.59 363.986 L
+389.749 362.268 L
+389.908 360.548 L
+390.067 358.829 L
+390.226 357.109 L
+390.385 355.389 L
+390.544 353.669 L
+390.703 351.948 L
+390.862 350.228 L
+391.021 348.507 L
+391.179 346.786 L
+391.338 345.066 L
+391.497 343.345 L
+391.656 341.625 L
+391.815 339.905 L
+391.974 338.185 L
+392.133 336.465 L
+392.292 334.746 L
+392.451 333.027 L
+392.61 331.309 L
+392.769 329.592 L
+392.928 327.875 L
+393.087 326.158 L
+393.246 324.442 L
+393.405 322.727 L
+393.564 321.013 L
+393.723 319.3 L
+393.882 317.588 L
+394.041 315.876 L
+394.2 314.166 L
+394.359 312.457 L
+394.518 310.748 L
+394.677 309.041 L
+394.836 307.336 L
+394.995 305.631 L
+395.154 303.928 L
+395.313 302.227 L
+395.472 300.526 L
+395.631 298.828 L
+395.79 297.131 L
+395.949 295.435 L
+396.108 293.741 L
+396.267 292.049 L
+396.426 290.359 L
+396.585 288.671 L
+396.744 286.984 L
+396.903 285.3 L
+397.062 283.617 L
+397.221 281.936 L
+397.379 280.258 L
+397.538 278.582 L
+397.697 276.908 L
+397.856 275.236 L
+398.015 273.567 L
+398.174 271.9 L
+398.333 270.235 L
+398.492 268.573 L
+398.651 266.914 L
+398.81 265.257 L
+398.969 263.602 L
+399.128 261.951 L
+399.287 260.302 L
+399.446 258.656 L
+399.605 257.013 L
+399.764 255.373 L
+399.923 253.735 L
+400.082 252.101 L
+400.241 250.47 L
+400.4 248.842 L
+400.559 247.217 L
+400.718 245.596 L
+400.877 243.977 L
+401.036 242.362 L
+401.195 240.751 L
+401.354 239.143 L
+401.513 237.538 L
+401.672 235.937 L
+401.831 234.34 L
+401.99 232.746 L
+402.149 231.156 L
+402.308 229.57 L
+402.467 227.988 L
+402.626 226.409 L
+402.785 224.834 L
+402.944 223.264 L
+403.103 221.697 L
+403.262 220.134 L
+403.421 218.576 L
+403.579 217.022 L
+403.738 215.472 L
+403.897 213.926 L
+404.056 212.385 L
+404.215 210.848 L
+404.374 209.315 L
+404.533 207.787 L
+404.692 206.263 L
+404.851 204.744 L
+405.01 203.23 L
+405.169 201.721 L
+405.328 200.216 L
+405.487 198.716 L
+405.646 197.22 L
+405.805 195.73 L
+405.964 194.244 L
+406.123 192.764 L
+406.282 191.289 L
+406.441 189.818 L
+406.6 188.353 L
+406.759 186.893 L
+406.918 185.438 L
+407.077 183.989 L
+407.236 182.545 L
+407.395 181.106 L
+407.554 179.672 L
+407.713 178.245 L
+407.872 176.822 L
+408.031 175.405 L
+408.19 173.994 L
+408.349 172.589 L
+408.508 171.189 L
+408.667 169.795 L
+408.826 168.406 L
+408.985 167.024 L
+409.144 165.648 L
+409.303 164.277 L
+409.462 162.912 L
+409.621 161.554 L
+409.779 160.201 L
+409.938 158.855 L
+410.097 157.515 L
+410.256 156.181 L
+410.415 154.853 L
+410.574 153.532 L
+410.733 152.217 L
+410.892 150.908 L
+411.051 149.606 L
+411.21 148.31 L
+411.369 147.021 L
+411.528 145.738 L
+411.687 144.462 L
+411.846 143.193 L
+412.005 141.93 L
+412.164 140.674 L
+412.323 139.425 L
+412.482 138.183 L
+412.641 136.947 L
+412.8 135.718 L
+412.959 134.497 L
+413.118 133.282 L
+413.277 132.075 L
+413.436 130.874 L
+413.595 129.681 L
+413.754 128.494 L
+413.913 127.315 L
+414.072 126.143 L
+414.231 124.979 L
+414.39 123.822 L
+414.549 122.672 L
+414.708 121.529 L
+414.867 120.394 L
+415.026 119.267 L
+415.185 118.146 L
+415.344 117.034 L
+415.503 115.929 L
+415.662 114.832 L
+415.821 113.742 L
+415.979 112.66 L
+416.138 111.586 L
+416.297 110.519 L
+416.456 109.46 L
+416.615 108.41 L
+416.774 107.367 L
+416.933 106.331 L
+417.092 105.304 L
+417.251 104.285 L
+417.41 103.274 L
+417.569 102.271 L
+417.728 101.276 L
+417.887 100.289 L
+418.046 99.31 L
+418.205 98.34 L
+418.364 97.377 L
+418.523 96.423 L
+418.682 95.477 L
+418.841 94.54 L
+419 93.611 L
+419.159 92.69 L
+419.318 91.778 L
+419.477 90.874 L
+419.636 89.978 L
+419.795 89.091 L
+419.954 88.213 L
+420.113 87.343 L
+420.272 86.482 L
+420.431 85.629 L
+420.59 84.785 L
+420.749 83.95 L
+420.908 83.124 L
+421.067 82.306 L
+421.226 81.497 L
+421.385 80.696 L
+421.544 79.905 L
+421.703 79.122 L
+421.862 78.349 L
+422.021 77.584 L
+422.179 76.828 L
+422.338 76.081 L
+422.497 75.343 L
+422.656 74.614 L
+422.815 73.894 L
+422.974 73.183 L
+423.133 72.481 L
+423.292 71.789 L
+423.451 71.105 L
+423.61 70.431 L
+423.769 69.765 L
+423.928 69.109 L
+424.087 68.462 L
+424.246 67.825 L
+424.405 67.196 L
+424.564 66.577 L
+424.723 65.968 L
+424.882 65.367 L
+425.041 64.776 L
+425.2 64.194 L
+425.359 63.622 L
+425.518 63.059 L
+425.677 62.506 L
+425.836 61.962 L
+425.995 61.427 L
+426.154 60.902 L
+426.313 60.386 L
+426.472 59.88 L
+426.631 59.384 L
+426.79 58.897 L
+426.949 58.419 L
+427.108 57.951 L
+427.267 57.493 L
+427.426 57.044 L
+427.585 56.605 L
+427.744 56.176 L
+427.903 55.756 L
+428.062 55.346 L
+428.221 54.946 L
+428.379 54.555 L
+428.538 54.175 L
+428.697 53.803 L
+428.856 53.442 L
+429.015 53.09 L
+429.174 52.748 L
+429.333 52.416 L
+429.492 52.094 L
+429.651 51.781 L
+429.81 51.479 L
+429.969 51.186 L
+430.128 50.903 L
+430.287 50.629 L
+430.446 50.366 L
+430.605 50.113 L
+430.764 49.869 L
+430.923 49.635 L
+431.082 49.411 L
+431.241 49.197 L
+431.4 48.993 L
+431.559 48.799 L
+431.718 48.615 L
+431.877 48.441 L
+432.036 48.276 L
+432.195 48.122 L
+432.354 47.977 L
+432.513 47.843 L
+432.672 47.718 L
+432.831 47.603 L
+432.99 47.499 L
+433.149 47.404 L
+433.308 47.319 L
+433.467 47.244 L
+433.626 47.18 L
+433.785 47.125 L
+433.944 47.08 L
+434.103 47.045 L
+434.262 47.02 L
+434.421 47.005 L
+434.579 47 L
+434.738 47.005 L
+434.897 47.02 L
+435.056 47.045 L
+435.215 47.08 L
+435.374 47.125 L
+435.533 47.18 L
+435.692 47.244 L
+435.851 47.319 L
+436.01 47.404 L
+436.169 47.499 L
+436.328 47.603 L
+436.487 47.718 L
+436.646 47.843 L
+436.805 47.977 L
+436.964 48.122 L
+437.123 48.276 L
+437.282 48.441 L
+437.441 48.615 L
+437.6 48.799 L
+437.759 48.993 L
+437.918 49.197 L
+438.077 49.411 L
+438.236 49.635 L
+438.395 49.869 L
+438.554 50.113 L
+438.713 50.366 L
+438.872 50.629 L
+439.031 50.903 L
+439.19 51.186 L
+439.349 51.479 L
+439.508 51.781 L
+439.667 52.094 L
+439.826 52.416 L
+439.985 52.748 L
+440.144 53.09 L
+440.303 53.442 L
+440.462 53.803 L
+440.621 54.175 L
+440.779 54.555 L
+440.938 54.946 L
+441.097 55.346 L
+441.256 55.756 L
+441.415 56.176 L
+441.574 56.605 L
+441.733 57.044 L
+441.892 57.493 L
+442.051 57.951 L
+442.21 58.419 L
+442.369 58.897 L
+442.528 59.384 L
+442.687 59.88 L
+442.846 60.386 L
+443.005 60.902 L
+443.164 61.427 L
+443.323 61.962 L
+443.482 62.506 L
+443.641 63.059 L
+443.8 63.622 L
+443.959 64.194 L
+444.118 64.776 L
+444.277 65.367 L
+444.436 65.968 L
+444.595 66.577 L
+444.754 67.196 L
+444.913 67.825 L
+445.072 68.462 L
+445.231 69.109 L
+445.39 69.765 L
+445.549 70.431 L
+445.708 71.105 L
+445.867 71.789 L
+446.026 72.481 L
+446.185 73.183 L
+446.344 73.894 L
+446.503 74.614 L
+446.662 75.343 L
+446.821 76.081 L
+446.979 76.828 L
+447.138 77.584 L
+447.297 78.349 L
+447.456 79.122 L
+447.615 79.905 L
+447.774 80.696 L
+447.933 81.497 L
+448.092 82.306 L
+448.251 83.124 L
+448.41 83.95 L
+448.569 84.785 L
+448.728 85.629 L
+448.887 86.482 L
+449.046 87.343 L
+449.205 88.213 L
+449.364 89.091 L
+449.523 89.978 L
+449.682 90.874 L
+449.841 91.778 L
+450 92.69 L
+450.159 93.611 L
+450.318 94.54 L
+450.477 95.477 L
+450.636 96.423 L
+450.795 97.377 L
+450.954 98.34 L
+451.113 99.31 L
+451.272 100.289 L
+451.431 101.276 L
+451.59 102.271 L
+451.749 103.274 L
+451.908 104.285 L
+452.067 105.304 L
+452.226 106.331 L
+452.385 107.367 L
+452.544 108.41 L
+452.703 109.46 L
+452.862 110.519 L
+453.021 111.586 L
+453.179 112.66 L
+453.338 113.742 L
+453.497 114.832 L
+453.656 115.929 L
+453.815 117.034 L
+453.974 118.146 L
+454.133 119.267 L
+454.292 120.394 L
+454.451 121.529 L
+454.61 122.672 L
+454.769 123.822 L
+454.928 124.979 L
+455.087 126.143 L
+455.246 127.315 L
+455.405 128.494 L
+455.564 129.681 L
+455.723 130.874 L
+455.882 132.075 L
+456.041 133.282 L
+456.2 134.497 L
+456.359 135.718 L
+456.518 136.947 L
+456.677 138.183 L
+456.836 139.425 L
+456.995 140.674 L
+457.154 141.93 L
+457.313 143.193 L
+457.472 144.462 L
+457.631 145.738 L
+457.79 147.021 L
+457.949 148.31 L
+458.108 149.606 L
+458.267 150.908 L
+458.426 152.217 L
+458.585 153.532 L
+458.744 154.853 L
+458.903 156.181 L
+459.062 157.515 L
+459.221 158.855 L
+459.379 160.201 L
+459.538 161.554 L
+459.697 162.912 L
+459.856 164.277 L
+460.015 165.648 L
+460.174 167.024 L
+460.333 168.406 L
+460.492 169.795 L
+460.651 171.189 L
+460.81 172.589 L
+460.969 173.994 L
+461.128 175.405 L
+461.287 176.822 L
+461.446 178.245 L
+461.605 179.672 L
+461.764 181.106 L
+461.923 182.545 L
+462.082 183.989 L
+462.241 185.438 L
+462.4 186.893 L
+462.559 188.353 L
+462.718 189.818 L
+462.877 191.289 L
+463.036 192.764 L
+463.195 194.244 L
+463.354 195.73 L
+463.513 197.22 L
+463.672 198.716 L
+463.831 200.216 L
+463.99 201.721 L
+464.149 203.23 L
+464.308 204.744 L
+464.467 206.263 L
+464.626 207.787 L
+464.785 209.315 L
+464.944 210.848 L
+465.103 212.385 L
+465.262 213.926 L
+465.421 215.472 L
+465.579 217.022 L
+465.738 218.576 L
+465.897 220.134 L
+466.056 221.697 L
+466.215 223.264 L
+466.374 224.834 L
+466.533 226.409 L
+466.692 227.988 L
+466.851 229.57 L
+467.01 231.156 L
+467.169 232.746 L
+467.328 234.34 L
+467.487 235.937 L
+467.646 237.538 L
+467.805 239.143 L
+467.964 240.751 L
+468.123 242.362 L
+468.282 243.977 L
+468.441 245.596 L
+468.6 247.217 L
+468.759 248.842 L
+468.918 250.47 L
+469.077 252.101 L
+469.236 253.735 L
+469.395 255.373 L
+469.554 257.013 L
+469.713 258.656 L
+469.872 260.302 L
+470.031 261.951 L
+470.19 263.602 L
+470.349 265.257 L
+470.508 266.914 L
+470.667 268.573 L
+470.826 270.235 L
+470.985 271.9 L
+471.144 273.567 L
+471.303 275.236 L
+471.462 276.908 L
+471.621 278.582 L
+471.779 280.258 L
+471.938 281.936 L
+472.097 283.617 L
+472.256 285.3 L
+472.415 286.984 L
+472.574 288.671 L
+472.733 290.359 L
+472.892 292.049 L
+473.051 293.741 L
+473.21 295.435 L
+473.369 297.131 L
+473.528 298.828 L
+473.687 300.526 L
+473.846 302.227 L
+474.005 303.928 L
+474.164 305.631 L
+474.323 307.336 L
+474.482 309.041 L
+474.641 310.748 L
+474.8 312.457 L
+474.959 314.166 L
+475.118 315.876 L
+475.277 317.588 L
+475.436 319.3 L
+475.595 321.013 L
+475.754 322.727 L
+475.913 324.442 L
+476.072 326.158 L
+476.231 327.875 L
+476.39 329.592 L
+476.549 331.309 L
+476.708 333.027 L
+476.867 334.746 L
+477.026 336.465 L
+477.185 338.185 L
+477.344 339.905 L
+477.503 341.625 L
+477.662 343.345 L
+477.821 345.066 L
+477.979 346.786 L
+478.138 348.507 L
+478.297 350.228 L
+478.456 351.948 L
+478.615 353.669 L
+478.774 355.389 L
+478.933 357.109 L
+479.092 358.829 L
+479.251 360.548 L
+479.41 362.268 L
+479.569 363.986 L
+479.728 365.705 L
+479.887 367.422 L
+480.046 369.139 L
+480.205 370.856 L
+480.364 372.572 L
+480.523 374.287 L
+480.682 376.001 L
+480.841 377.714 L
+481 379.427 L
+481.159 381.139 L
+481.318 382.849 L
+481.477 384.559 L
+481.636 386.267 L
+481.795 387.974 L
+481.954 389.68 L
+482.113 391.385 L
+482.272 393.088 L
+482.431 394.79 L
+482.59 396.491 L
+482.749 398.19 L
+482.908 399.888 L
+483.067 401.584 L
+483.226 403.278 L
+483.385 404.971 L
+483.544 406.662 L
+483.703 408.351 L
+483.862 410.038 L
+484.021 411.724 L
+484.179 413.408 L
+484.338 415.089 L
+484.497 416.769 L
+484.656 418.446 L
+484.815 420.122 L
+484.974 421.795 L
+485.133 423.466 L
+485.292 425.134 L
+485.451 426.801 L
+485.61 428.464 L
+485.769 430.126 L
+485.928 431.785 L
+486.087 433.441 L
+486.246 435.095 L
+486.405 436.747 L
+486.564 438.395 L
+486.723 440.041 L
+486.882 441.684 L
+487.041 443.324 L
+487.2 444.962 L
+487.359 446.596 L
+487.518 448.228 L
+487.677 449.857 L
+487.836 451.482 L
+487.995 453.104 L
+488.154 454.724 L
+488.313 456.34 L
+488.472 457.952 L
+488.631 459.562 L
+488.79 461.168 L
+488.949 462.771 L
+489.108 464.37 L
+489.267 465.966 L
+489.426 467.559 L
+489.585 469.147 L
+489.744 470.733 L
+489.903 472.314 L
+490.062 473.892 L
+490.221 475.466 L
+490.379 477.036 L
+490.538 478.603 L
+490.697 480.166 L
+490.856 481.724 L
+491.015 483.279 L
+491.174 484.83 L
+491.333 486.377 L
+491.492 487.919 L
+491.651 489.458 L
+491.81 490.992 L
+491.969 492.522 L
+492.128 494.048 L
+492.287 495.569 L
+492.446 497.086 L
+492.605 498.599 L
+492.764 500.108 L
+492.923 501.612 L
+493.082 503.111 L
+493.241 504.606 L
+493.4 506.096 L
+493.559 507.582 L
+493.718 509.063 L
+493.877 510.539 L
+494.036 512.01 L
+494.195 513.477 L
+494.354 514.939 L
+494.513 516.396 L
+494.672 517.848 L
+494.831 519.295 L
+494.99 520.738 L
+495.149 522.175 L
+495.308 523.607 L
+495.467 525.034 L
+495.626 526.456 L
+495.785 527.873 L
+495.944 529.284 L
+496.103 530.69 L
+496.262 532.091 L
+496.421 533.487 L
+496.579 534.878 L
+496.738 536.263 L
+496.897 537.642 L
+497.056 539.016 L
+497.215 540.385 L
+497.374 541.748 L
+497.533 543.106 L
+497.692 544.458 L
+497.851 545.804 L
+498.01 547.145 L
+498.169 548.48 L
+498.328 549.809 L
+498.487 551.133 L
+498.646 552.45 L
+498.805 553.762 L
+498.964 555.068 L
+499.123 556.368 L
+499.282 557.663 L
+499.441 558.951 L
+499.6 560.233 L
+499.759 560.49 L
+499.918 559.22 L
+500.077 557.956 L
+500.236 556.697 L
+500.395 555.445 L
+500.554 554.199 L
+500.713 552.96 L
+500.872 551.726 L
+501.031 550.499 L
+501.19 549.278 L
+501.349 548.063 L
+501.508 546.855 L
+501.667 545.653 L
+501.826 544.457 L
+501.985 543.268 L
+502.144 542.085 L
+502.303 540.909 L
+502.462 539.739 L
+502.621 538.576 L
+502.779 537.419 L
+502.938 536.268 L
+503.097 535.125 L
+503.256 533.987 L
+503.415 532.857 L
+503.574 531.733 L
+503.733 530.616 L
+503.892 529.506 L
+504.051 528.402 L
+504.21 527.305 L
+504.369 526.215 L
+504.528 525.131 L
+504.687 524.055 L
+504.846 522.985 L
+505.005 521.922 L
+505.164 520.866 L
+505.323 519.817 L
+505.482 518.774 L
+505.641 517.739 L
+505.8 516.711 L
+505.959 515.689 L
+506.118 514.675 L
+506.277 513.667 L
+506.436 512.667 L
+506.595 511.674 L
+506.754 510.688 L
+506.913 509.708 L
+507.072 508.736 L
+507.231 507.771 L
+507.39 506.814 L
+507.549 505.863 L
+507.708 504.919 L
+507.867 503.983 L
+508.026 503.054 L
+508.185 502.132 L
+508.344 501.217 L
+508.503 500.31 L
+508.662 499.41 L
+508.821 498.517 L
+508.979 497.631 L
+509.138 496.753 L
+509.297 495.882 L
+509.456 495.018 L
+509.615 494.162 L
+509.774 493.313 L
+509.933 492.471 L
+510.092 491.637 L
+510.251 490.81 L
+510.41 489.99 L
+510.569 489.178 L
+510.728 488.373 L
+510.887 487.576 L
+511.046 486.786 L
+511.205 486.004 L
+511.364 485.229 L
+511.523 484.461 L
+511.682 483.701 L
+511.841 482.949 L
+512 482.204 L
+512.159 481.466 L
+512.318 480.736 L
+512.477 480.013 L
+512.636 479.298 L
+512.795 478.591 L
+512.954 477.891 L
+513.113 477.198 L
+513.272 476.513 L
+513.431 475.836 L
+513.59 475.166 L
+513.749 474.504 L
+513.908 473.849 L
+514.067 473.202 L
+514.226 472.562 L
+514.385 471.93 L
+514.544 471.305 L
+514.703 470.688 L
+514.862 470.079 L
+515.021 469.477 L
+515.18 468.883 L
+515.338 468.296 L
+515.497 467.717 L
+515.656 467.146 L
+515.815 466.582 L
+515.974 466.025 L
+516.133 465.476 L
+516.292 464.935 L
+516.451 464.402 L
+516.61 463.875 L
+516.769 463.357 L
+516.928 462.846 L
+517.087 462.343 L
+517.246 461.847 L
+517.405 461.359 L
+517.564 460.878 L
+517.723 460.405 L
+517.882 459.939 L
+518.041 459.481 L
+518.2 459.031 L
+518.359 458.588 L
+518.518 458.153 L
+518.677 457.725 L
+518.836 457.305 L
+518.995 456.892 L
+519.154 456.487 L
+519.313 456.089 L
+519.472 455.699 L
+519.631 455.316 L
+519.79 454.941 L
+519.949 454.573 L
+520.108 454.213 L
+520.267 453.86 L
+520.426 453.514 L
+520.585 453.177 L
+520.744 452.846 L
+520.903 452.523 L
+521.062 452.207 L
+521.221 451.899 L
+521.38 451.598 L
+521.538 451.305 L
+521.697 451.019 L
+521.856 450.74 L
+522.015 450.469 L
+522.174 450.205 L
+522.333 449.949 L
+522.492 449.699 L
+522.651 449.458 L
+522.81 449.223 L
+522.969 448.996 L
+523.128 448.775 L
+523.287 448.563 L
+523.446 448.357 L
+523.605 448.159 L
+523.764 447.968 L
+523.923 447.784 L
+524.082 447.607 L
+524.241 447.438 L
+524.4 447.275 L
+524.559 447.12 L
+524.718 446.972 L
+524.877 446.831 L
+525.036 446.697 L
+525.195 446.571 L
+525.354 446.451 L
+525.513 446.338 L
+525.672 446.233 L
+525.831 446.134 L
+525.99 446.043 L
+526.149 445.958 L
+526.308 445.881 L
+526.467 445.81 L
+526.626 445.746 L
+526.785 445.689 L
+526.944 445.639 L
+527.103 445.596 L
+527.262 445.56 L
+527.421 445.531 L
+527.579 445.508 L
+527.738 445.492 L
+527.897 445.483 L
+528.056 445.481 L
+528.215 445.485 L
+528.374 445.496 L
+528.533 445.514 L
+528.692 445.539 L
+528.851 445.57 L
+529.01 445.607 L
+529.169 445.652 L
+529.328 445.703 L
+529.487 445.76 L
+529.646 445.824 L
+529.805 445.894 L
+529.964 445.971 L
+530.123 446.055 L
+530.282 446.144 L
+530.441 446.241 L
+530.6 446.343 L
+530.759 446.452 L
+530.918 446.567 L
+531.077 446.689 L
+531.236 446.817 L
+531.395 446.951 L
+531.554 447.091 L
+531.713 447.238 L
+531.872 447.39 L
+532.031 447.549 L
+532.19 447.714 L
+532.349 447.885 L
+532.508 448.062 L
+532.667 448.245 L
+532.826 448.435 L
+532.985 448.63 L
+533.144 448.831 L
+533.303 449.038 L
+533.462 449.251 L
+533.621 449.469 L
+533.779 449.694 L
+533.938 449.924 L
+534.097 450.161 L
+534.256 450.403 L
+534.415 450.65 L
+534.574 450.904 L
+534.733 451.163 L
+534.892 451.427 L
+535.051 451.698 L
+535.21 451.973 L
+535.369 452.255 L
+535.528 452.542 L
+535.687 452.834 L
+535.846 453.132 L
+536.005 453.435 L
+536.164 453.744 L
+536.323 454.057 L
+536.482 454.377 L
+536.641 454.701 L
+536.8 455.031 L
+536.959 455.366 L
+537.118 455.706 L
+537.277 456.052 L
+537.436 456.402 L
+537.595 456.758 L
+537.754 457.118 L
+537.913 457.484 L
+538.072 457.855 L
+538.231 458.23 L
+538.39 458.611 L
+538.549 458.996 L
+538.708 459.387 L
+538.867 459.782 L
+539.026 460.182 L
+539.185 460.586 L
+539.344 460.996 L
+539.503 461.41 L
+539.662 461.829 L
+539.82 462.252 L
+539.979 462.68 L
+540.138 463.112 L
+540.297 463.549 L
+540.456 463.991 L
+540.615 464.436 L
+540.774 464.887 L
+540.933 465.341 L
+541.092 465.8 L
+541.251 466.263 L
+541.41 466.731 L
+541.569 467.203 L
+541.728 467.679 L
+541.887 468.159 L
+542.046 468.643 L
+542.205 469.131 L
+542.364 469.623 L
+542.523 470.119 L
+542.682 470.62 L
+542.841 471.124 L
+543 471.632 L
+543.159 472.144 L
+543.318 472.659 L
+543.477 473.179 L
+543.636 473.702 L
+543.795 474.229 L
+543.954 474.759 L
+544.113 475.294 L
+544.272 475.831 L
+544.431 476.373 L
+544.59 476.917 L
+544.749 477.466 L
+544.908 478.017 L
+545.067 478.572 L
+545.226 479.131 L
+545.385 479.693 L
+545.544 480.258 L
+545.703 480.826 L
+545.862 481.397 L
+546.021 481.972 L
+546.18 482.55 L
+546.338 483.131 L
+546.497 483.714 L
+546.656 484.301 L
+546.815 484.891 L
+546.974 485.484 L
+547.133 486.079 L
+547.292 486.678 L
+547.451 487.279 L
+547.61 487.883 L
+547.769 488.49 L
+547.928 489.1 L
+548.087 489.712 L
+548.246 490.326 L
+548.405 490.944 L
+548.564 491.564 L
+548.723 492.186 L
+548.882 492.811 L
+549.041 493.438 L
+549.2 494.067 L
+549.359 494.699 L
+549.518 495.333 L
+549.677 495.97 L
+549.836 496.609 L
+549.995 497.249 L
+550.154 497.892 L
+550.313 498.537 L
+550.472 499.184 L
+550.631 499.834 L
+550.79 500.485 L
+550.949 501.138 L
+551.108 501.792 L
+551.267 502.449 L
+551.426 503.108 L
+551.585 503.768 L
+551.744 504.43 L
+551.903 505.094 L
+552.062 505.759 L
+552.221 506.426 L
+552.38 507.095 L
+552.538 507.765 L
+552.697 508.437 L
+552.856 509.11 L
+553.015 509.784 L
+553.174 510.46 L
+553.333 511.137 L
+553.492 511.816 L
+553.651 512.495 L
+553.81 513.176 L
+553.969 513.858 L
+554.128 514.542 L
+554.287 515.226 L
+554.446 515.911 L
+554.605 516.598 L
+554.764 517.285 L
+554.923 517.973 L
+555.082 518.662 L
+555.241 519.353 L
+555.4 520.043 L
+555.559 520.735 L
+555.718 521.427 L
+555.877 522.121 L
+556.036 522.814 L
+556.195 523.509 L
+556.354 524.204 L
+556.513 524.899 L
+556.672 525.595 L
+556.831 526.292 L
+556.99 526.988 L
+557.149 527.686 L
+557.308 528.383 L
+557.467 529.081 L
+557.626 529.779 L
+557.785 530.478 L
+557.944 531.176 L
+558.103 531.875 L
+558.262 532.574 L
+558.421 533.273 L
+558.579 533.972 L
+558.738 534.671 L
+558.897 535.37 L
+559.056 536.069 L
+559.215 536.768 L
+559.374 537.466 L
+559.533 538.165 L
+559.692 538.863 L
+559.851 539.561 L
+560.01 540.258 L
+560.169 540.956 L
+560.328 541.653 L
+560.487 542.349 L
+560.646 543.045 L
+560.805 543.741 L
+560.964 544.436 L
+561.123 545.13 L
+561.282 545.824 L
+561.441 546.518 L
+561.6 547.21 L
+561.759 547.902 L
+561.918 548.593 L
+562.077 549.283 L
+562.236 549.973 L
+562.395 550.662 L
+562.554 551.349 L
+562.713 552.036 L
+562.872 552.722 L
+563.031 553.407 L
+563.19 554.091 L
+563.349 554.774 L
+563.508 555.456 L
+563.667 556.136 L
+563.826 556.816 L
+563.985 557.494 L
+564.144 558.171 L
+564.303 558.847 L
+564.462 559.521 L
+564.621 560.194 L
+564.779 560.866 L
+564.938 560.464 L
+565.097 559.795 L
+565.256 559.128 L
+565.415 558.462 L
+565.574 557.798 L
+565.733 557.135 L
+565.892 556.474 L
+566.051 555.814 L
+566.21 555.156 L
+566.369 554.5 L
+566.528 553.846 L
+566.687 553.193 L
+566.846 552.543 L
+567.005 551.894 L
+567.164 551.247 L
+567.323 550.601 L
+567.482 549.958 L
+567.641 549.317 L
+567.8 548.678 L
+567.959 548.04 L
+568.118 547.405 L
+568.277 546.772 L
+568.436 546.141 L
+568.595 545.512 L
+568.754 544.885 L
+568.913 544.261 L
+569.072 543.639 L
+569.231 543.019 L
+569.39 542.401 L
+569.549 541.786 L
+569.708 541.173 L
+569.867 540.562 L
+570.026 539.954 L
+570.185 539.348 L
+570.344 538.745 L
+570.503 538.144 L
+570.662 537.546 L
+570.82 536.95 L
+570.979 536.357 L
+571.138 535.767 L
+571.297 535.179 L
+571.456 534.594 L
+571.615 534.011 L
+571.774 533.431 L
+571.933 532.854 L
+572.092 532.28 L
+572.251 531.708 L
+572.41 531.14 L
+572.569 530.574 L
+572.728 530.011 L
+572.887 529.451 L
+573.046 528.894 L
+573.205 528.34 L
+573.364 527.789 L
+573.523 527.24 L
+573.682 526.695 L
+573.841 526.153 L
+574 525.614 L
+574.159 525.078 L
+574.318 524.545 L
+574.477 524.016 L
+574.636 523.489 L
+574.795 522.966 L
+574.954 522.446 L
+575.113 521.929 L
+575.272 521.415 L
+575.431 520.905 L
+575.59 520.398 L
+575.749 519.894 L
+575.908 519.394 L
+576.067 518.897 L
+576.226 518.403 L
+576.385 517.913 L
+576.544 517.426 L
+576.703 516.943 L
+576.862 516.463 L
+577.021 515.986 L
+577.18 515.514 L
+577.338 515.044 L
+577.497 514.578 L
+577.656 514.116 L
+577.815 513.658 L
+577.974 513.202 L
+578.133 512.751 L
+578.292 512.303 L
+578.451 511.859 L
+578.61 511.419 L
+578.769 510.982 L
+578.928 510.549 L
+579.087 510.12 L
+579.246 509.694 L
+579.405 509.272 L
+579.564 508.854 L
+579.723 508.44 L
+579.882 508.03 L
+580.041 507.623 L
+580.2 507.22 L
+580.359 506.821 L
+580.518 506.426 L
+580.677 506.035 L
+580.836 505.648 L
+580.995 505.265 L
+581.154 504.885 L
+581.313 504.51 L
+581.472 504.138 L
+581.631 503.771 L
+581.79 503.407 L
+581.949 503.048 L
+582.108 502.692 L
+582.267 502.341 L
+582.426 501.994 L
+582.585 501.65 L
+582.744 501.311 L
+582.903 500.976 L
+583.062 500.644 L
+583.221 500.317 L
+583.38 499.994 L
+583.538 499.676 L
+583.697 499.361 L
+583.856 499.05 L
+584.015 498.744 L
+584.174 498.441 L
+584.333 498.143 L
+584.492 497.849 L
+584.651 497.56 L
+584.81 497.274 L
+584.969 496.993 L
+585.128 496.716 L
+585.287 496.443 L
+585.446 496.174 L
+585.605 495.91 L
+585.764 495.649 L
+585.923 495.393 L
+586.082 495.142 L
+586.241 494.894 L
+586.4 494.651 L
+586.559 494.412 L
+586.718 494.177 L
+586.877 493.947 L
+587.036 493.721 L
+587.195 493.499 L
+587.354 493.282 L
+587.513 493.069 L
+587.672 492.86 L
+587.831 492.655 L
+587.99 492.455 L
+588.149 492.259 L
+588.308 492.068 L
+588.467 491.88 L
+588.626 491.698 L
+588.785 491.519 L
+588.944 491.345 L
+589.103 491.175 L
+589.262 491.009 L
+589.421 490.848 L
+589.579 490.691 L
+589.738 490.539 L
+589.897 490.391 L
+590.056 490.247 L
+590.215 490.108 L
+590.374 489.973 L
+590.533 489.842 L
+590.692 489.716 L
+590.851 489.594 L
+591.01 489.476 L
+591.169 489.363 L
+591.328 489.254 L
+591.487 489.149 L
+591.646 489.049 L
+591.805 488.953 L
+591.964 488.862 L
+592.123 488.774 L
+592.282 488.692 L
+592.441 488.613 L
+592.6 488.539 L
+592.759 488.469 L
+592.918 488.404 L
+593.077 488.342 L
+593.236 488.286 L
+593.395 488.233 L
+593.554 488.185 L
+593.713 488.141 L
+593.872 488.101 L
+594.031 488.066 L
+594.19 488.035 L
+594.349 488.009 L
+594.508 487.986 L
+594.667 487.968 L
+594.826 487.954 L
+594.985 487.945 L
+595.144 487.939 L
+595.303 487.938 L
+595.462 487.942 L
+595.62 487.949 L
+595.779 487.961 L
+595.938 487.977 L
+596.097 487.997 L
+596.256 488.021 L
+596.415 488.05 L
+596.574 488.083 L
+596.733 488.12 L
+596.892 488.161 L
+597.051 488.206 L
+597.21 488.256 L
+597.369 488.309 L
+597.528 488.367 L
+597.687 488.429 L
+597.846 488.495 L
+598.005 488.566 L
+598.164 488.64 L
+598.323 488.718 L
+598.482 488.801 L
+598.641 488.887 L
+598.8 488.978 L
+598.959 489.073 L
+599.118 489.171 L
+599.277 489.274 L
+599.436 489.381 L
+599.595 489.492 L
+599.754 489.607 L
+599.913 489.725 L
+600.072 489.848 L
+600.231 489.975 L
+600.39 490.105 L
+600.549 490.24 L
+600.708 490.379 L
+600.867 490.521 L
+601.026 490.667 L
+601.185 490.817 L
+601.344 490.971 L
+601.503 491.129 L
+601.662 491.291 L
+601.82 491.457 L
+601.979 491.626 L
+602.138 491.799 L
+602.297 491.976 L
+602.456 492.157 L
+602.615 492.341 L
+602.774 492.529 L
+602.933 492.721 L
+603.092 492.917 L
+603.251 493.116 L
+603.41 493.319 L
+603.569 493.525 L
+603.728 493.735 L
+603.887 493.949 L
+604.046 494.166 L
+604.205 494.387 L
+604.364 494.612 L
+604.523 494.84 L
+604.682 495.071 L
+604.841 495.307 L
+605 495.545 L
+605.159 495.787 L
+605.318 496.033 L
+605.477 496.281 L
+605.636 496.534 L
+605.795 496.79 L
+605.954 497.049 L
+606.113 497.311 L
+606.272 497.577 L
+606.431 497.846 L
+606.59 498.118 L
+606.749 498.394 L
+606.908 498.673 L
+607.067 498.955 L
+607.226 499.241 L
+607.385 499.529 L
+607.544 499.821 L
+607.703 500.116 L
+607.862 500.414 L
+608.021 500.715 L
+608.18 501.019 L
+608.339 501.327 L
+608.497 501.637 L
+608.656 501.95 L
+608.815 502.267 L
+608.974 502.586 L
+609.133 502.909 L
+609.292 503.234 L
+609.451 503.562 L
+609.61 503.893 L
+609.769 504.227 L
+609.928 504.564 L
+610.087 504.904 L
+610.246 505.246 L
+610.405 505.591 L
+610.564 505.939 L
+610.723 506.29 L
+610.882 506.643 L
+611.041 507 L
+611.2 507.358 L
+611.359 507.72 L
+611.518 508.084 L
+611.677 508.451 L
+611.836 508.82 L
+611.995 509.192 L
+612.154 509.566 L
+612.313 509.943 L
+612.472 510.322 L
+612.631 510.704 L
+612.79 511.088 L
+612.949 511.474 L
+613.108 511.863 L
+613.267 512.254 L
+613.426 512.648 L
+613.585 513.044 L
+613.744 513.442 L
+613.903 513.842 L
+614.062 514.245 L
+614.221 514.65 L
+614.38 515.057 L
+614.538 515.466 L
+614.697 515.877 L
+614.856 516.29 L
+615.015 516.706 L
+615.174 517.123 L
+615.333 517.543 L
+615.492 517.964 L
+615.651 518.388 L
+615.81 518.813 L
+615.969 519.24 L
+616.128 519.669 L
+616.287 520.1 L
+616.446 520.533 L
+616.605 520.968 L
+616.764 521.404 L
+616.923 521.842 L
+617.082 522.282 L
+617.241 522.724 L
+617.4 523.167 L
+617.559 523.612 L
+617.718 524.058 L
+617.877 524.506 L
+618.036 524.956 L
+618.195 525.407 L
+618.354 525.86 L
+618.513 526.314 L
+618.672 526.77 L
+618.831 527.227 L
+618.99 527.685 L
+619.149 528.145 L
+619.308 528.606 L
+619.467 529.069 L
+619.626 529.532 L
+619.785 529.997 L
+619.944 530.464 L
+620.103 530.931 L
+620.262 531.4 L
+620.421 531.87 L
+620.579 532.34 L
+620.738 532.812 L
+620.897 533.285 L
+621.056 533.76 L
+621.215 534.235 L
+621.374 534.711 L
+621.533 535.188 L
+621.692 535.666 L
+621.851 536.145 L
+622.01 536.624 L
+622.169 537.105 L
+622.328 537.586 L
+622.487 538.068 L
+622.646 538.551 L
+622.805 539.035 L
+622.964 539.519 L
+623.123 540.004 L
+623.282 540.49 L
+623.441 540.976 L
+623.6 541.463 L
+623.759 541.95 L
+623.918 542.438 L
+624.077 542.927 L
+624.236 543.416 L
+624.395 543.905 L
+624.554 544.395 L
+624.713 544.885 L
+624.872 545.376 L
+625.031 545.866 L
+625.19 546.358 L
+625.349 546.849 L
+625.508 547.341 L
+625.667 547.833 L
+625.826 548.325 L
+625.985 548.817 L
+626.144 549.31 L
+626.303 549.802 L
+626.462 550.295 L
+626.621 550.787 L
+626.779 551.28 L
+626.938 551.773 L
+627.097 552.266 L
+627.256 552.758 L
+627.415 553.251 L
+627.574 553.743 L
+627.733 554.235 L
+627.892 554.728 L
+628.051 555.219 L
+628.21 555.711 L
+628.369 556.203 L
+628.528 556.694 L
+628.687 557.185 L
+628.846 557.675 L
+629.005 558.165 L
+629.164 558.655 L
+629.323 559.145 L
+629.482 559.634 L
+629.641 560.122 L
+629.8 560.61 L
+629.959 560.903 L
+630.118 560.416 L
+630.277 559.929 L
+630.436 559.444 L
+630.595 558.958 L
+630.754 558.474 L
+630.913 557.99 L
+631.072 557.507 L
+631.231 557.025 L
+631.39 556.543 L
+631.549 556.063 L
+631.708 555.583 L
+631.867 555.103 L
+632.026 554.625 L
+632.185 554.148 L
+632.344 553.671 L
+632.503 553.196 L
+632.662 552.721 L
+632.82 552.248 L
+632.979 551.775 L
+633.138 551.304 L
+633.297 550.833 L
+633.456 550.364 L
+633.615 549.896 L
+633.774 549.429 L
+633.933 548.963 L
+634.092 548.499 L
+634.251 548.035 L
+634.41 547.573 L
+634.569 547.112 L
+634.728 546.652 L
+634.887 546.194 L
+635.046 545.737 L
+635.205 545.282 L
+635.364 544.827 L
+635.523 544.375 L
+635.682 543.923 L
+635.841 543.474 L
+636 543.025 L
+636.159 542.578 L
+636.318 542.133 L
+636.477 541.689 L
+636.636 541.247 L
+636.795 540.807 L
+636.954 540.368 L
+637.113 539.931 L
+637.272 539.495 L
+637.431 539.061 L
+637.59 538.629 L
+637.749 538.199 L
+637.908 537.77 L
+638.067 537.343 L
+638.226 536.918 L
+638.385 536.495 L
+638.544 536.074 L
+638.703 535.654 L
+638.862 535.237 L
+639.021 534.821 L
+639.18 534.407 L
+639.338 533.996 L
+639.497 533.586 L
+639.656 533.178 L
+639.815 532.773 L
+639.974 532.369 L
+640.133 531.967 L
+640.292 531.568 L
+640.451 531.171 L
+640.61 530.775 L
+640.769 530.382 L
+640.928 529.992 L
+641.087 529.603 L
+641.246 529.216 L
+641.405 528.832 L
+641.564 528.45 L
+641.723 528.07 L
+641.882 527.693 L
+642.041 527.318 L
+642.2 526.945 L
+642.359 526.575 L
+642.518 526.207 L
+642.677 525.841 L
+642.836 525.478 L
+642.995 525.117 L
+643.154 524.758 L
+643.313 524.402 L
+643.472 524.049 L
+643.631 523.698 L
+643.79 523.349 L
+643.949 523.003 L
+644.108 522.66 L
+644.267 522.319 L
+644.426 521.981 L
+644.585 521.645 L
+644.744 521.312 L
+644.903 520.982 L
+645.062 520.654 L
+645.221 520.329 L
+645.38 520.006 L
+645.538 519.687 L
+645.697 519.369 L
+645.856 519.055 L
+646.015 518.744 L
+646.174 518.435 L
+646.333 518.129 L
+646.492 517.825 L
+646.651 517.525 L
+646.81 517.227 L
+646.969 516.932 L
+647.128 516.64 L
+647.287 516.351 L
+647.446 516.065 L
+647.605 515.781 L
+647.764 515.501 L
+647.923 515.223 L
+648.082 514.949 L
+648.241 514.677 L
+648.4 514.408 L
+648.559 514.142 L
+648.718 513.879 L
+648.877 513.619 L
+649.036 513.362 L
+649.195 513.109 L
+649.354 512.858 L
+649.513 512.61 L
+649.672 512.365 L
+649.831 512.123 L
+649.99 511.885 L
+650.149 511.649 L
+650.308 511.416 L
+650.467 511.187 L
+650.626 510.961 L
+650.785 510.737 L
+650.944 510.517 L
+651.103 510.3 L
+651.262 510.087 L
+651.421 509.876 L
+651.579 509.668 L
+651.738 509.464 L
+651.897 509.263 L
+652.056 509.065 L
+652.215 508.87 L
+652.374 508.679 L
+652.533 508.49 L
+652.692 508.305 L
+652.851 508.123 L
+653.01 507.945 L
+653.169 507.769 L
+653.328 507.597 L
+653.487 507.428 L
+653.646 507.263 L
+653.805 507.1 L
+653.964 506.941 L
+654.123 506.785 L
+654.282 506.633 L
+654.441 506.484 L
+654.6 506.338 L
+654.759 506.195 L
+654.918 506.056 L
+655.077 505.92 L
+655.236 505.787 L
+655.395 505.658 L
+655.554 505.532 L
+655.713 505.409 L
+655.872 505.29 L
+656.031 505.174 L
+656.19 505.062 L
+656.349 504.952 L
+656.508 504.846 L
+656.667 504.744 L
+656.826 504.645 L
+656.985 504.549 L
+657.144 504.456 L
+657.303 504.367 L
+657.462 504.281 L
+657.621 504.199 L
+657.779 504.12 L
+657.938 504.045 L
+658.097 503.972 L
+658.256 503.903 L
+658.415 503.838 L
+658.574 503.776 L
+658.733 503.717 L
+658.892 503.662 L
+659.051 503.61 L
+659.21 503.561 L
+659.369 503.516 L
+659.528 503.474 L
+659.687 503.436 L
+659.846 503.401 L
+660.005 503.369 L
+660.164 503.341 L
+660.323 503.316 L
+660.482 503.295 L
+660.641 503.277 L
+660.8 503.262 L
+660.959 503.251 L
+661.118 503.243 L
+661.277 503.238 L
+661.436 503.237 L
+661.595 503.239 L
+661.754 503.244 L
+661.913 503.253 L
+662.072 503.265 L
+662.231 503.281 L
+662.39 503.299 L
+662.549 503.322 L
+662.708 503.347 L
+662.867 503.376 L
+663.026 503.408 L
+663.185 503.444 L
+663.344 503.483 L
+663.503 503.525 L
+663.662 503.57 L
+663.82 503.619 L
+663.979 503.671 L
+664.138 503.727 L
+664.297 503.786 L
+664.456 503.848 L
+664.615 503.913 L
+664.774 503.981 L
+664.933 504.053 L
+665.092 504.128 L
+665.251 504.207 L
+665.41 504.288 L
+665.569 504.373 L
+665.728 504.461 L
+665.887 504.552 L
+666.046 504.647 L
+666.205 504.744 L
+666.364 504.845 L
+666.523 504.949 L
+666.682 505.057 L
+666.841 505.167 L
+667 505.281 L
+667.159 505.398 L
+667.318 505.517 L
+667.477 505.641 L
+667.636 505.767 L
+667.795 505.896 L
+667.954 506.029 L
+668.113 506.164 L
+668.272 506.303 L
+668.431 506.444 L
+668.59 506.589 L
+668.749 506.737 L
+668.908 506.888 L
+669.067 507.042 L
+669.226 507.199 L
+669.385 507.359 L
+669.544 507.522 L
+669.703 507.688 L
+669.862 507.857 L
+670.021 508.029 L
+670.18 508.204 L
+670.338 508.382 L
+670.497 508.563 L
+670.656 508.746 L
+670.815 508.933 L
+670.974 509.123 L
+671.133 509.315 L
+671.292 509.51 L
+671.451 509.708 L
+671.61 509.909 L
+671.769 510.113 L
+671.928 510.32 L
+672.087 510.529 L
+672.246 510.742 L
+672.405 510.957 L
+672.564 511.175 L
+672.723 511.395 L
+672.882 511.618 L
+673.041 511.845 L
+673.2 512.073 L
+673.359 512.305 L
+673.518 512.539 L
+673.677 512.776 L
+673.836 513.015 L
+673.995 513.257 L
+674.154 513.502 L
+674.313 513.749 L
+674.472 513.999 L
+674.631 514.251 L
+674.79 514.506 L
+674.949 514.764 L
+675.108 515.024 L
+675.267 515.286 L
+675.426 515.551 L
+675.585 515.819 L
+675.744 516.089 L
+675.903 516.361 L
+676.062 516.636 L
+676.221 516.913 L
+676.38 517.193 L
+676.538 517.474 L
+676.697 517.759 L
+676.856 518.045 L
+677.015 518.334 L
+677.174 518.626 L
+677.333 518.919 L
+677.492 519.215 L
+677.651 519.513 L
+677.81 519.813 L
+677.969 520.116 L
+678.128 520.42 L
+678.287 520.727 L
+678.446 521.036 L
+678.605 521.347 L
+678.764 521.66 L
+678.923 521.975 L
+679.082 522.293 L
+679.241 522.612 L
+679.4 522.934 L
+679.559 523.257 L
+679.718 523.582 L
+679.877 523.91 L
+680.036 524.239 L
+680.195 524.571 L
+680.354 524.904 L
+680.513 525.239 L
+680.672 525.576 L
+680.831 525.915 L
+680.99 526.255 L
+681.149 526.598 L
+681.308 526.942 L
+681.467 527.288 L
+681.626 527.636 L
+681.785 527.986 L
+681.944 528.337 L
+682.103 528.69 L
+682.262 529.044 L
+682.421 529.401 L
+682.579 529.758 L
+682.738 530.118 L
+682.897 530.479 L
+683.056 530.842 L
+683.215 531.206 L
+683.374 531.571 L
+683.533 531.939 L
+683.692 532.307 L
+683.851 532.677 L
+684.01 533.049 L
+684.169 533.422 L
+684.328 533.796 L
+684.487 534.172 L
+684.646 534.549 L
+684.805 534.927 L
+684.964 535.307 L
+685.123 535.688 L
+685.282 536.07 L
+685.441 536.453 L
+685.6 536.838 L
+685.759 537.224 L
+685.918 537.611 L
+686.077 537.999 L
+686.236 538.388 L
+686.395 538.778 L
+686.554 539.17 L
+686.713 539.562 L
+686.872 539.955 L
+687.031 540.35 L
+687.19 540.745 L
+687.349 541.142 L
+687.508 541.539 L
+687.667 541.937 L
+687.826 542.336 L
+687.985 542.736 L
+688.144 543.137 L
+688.303 543.539 L
+688.462 543.941 L
+688.621 544.344 L
+688.779 544.748 L
+688.938 545.153 L
+689.097 545.558 L
+689.256 545.964 L
+689.415 546.371 L
+689.574 546.779 L
+689.733 547.186 L
+689.892 547.595 L
+690.051 548.004 L
+690.21 548.414 L
+690.369 548.824 L
+690.528 549.234 L
+690.687 549.646 L
+690.846 550.057 L
+691.005 550.469 L
+691.164 550.881 L
+691.323 551.294 L
+691.482 551.707 L
+691.641 552.12 L
+691.8 552.534 L
+691.959 552.948 L
+692.118 553.362 L
+692.277 553.777 L
+692.436 554.191 L
+692.595 554.606 L
+692.754 555.021 L
+692.913 555.436 L
+693.072 555.852 L
+693.231 556.267 L
+693.39 556.682 L
+693.549 557.098 L
+693.708 557.513 L
+693.867 557.928 L
+694.026 558.344 L
+694.185 558.759 L
+694.344 559.174 L
+694.503 559.59 L
+694.662 560.005 L
+694.82 560.419 L
+694.979 560.834 L
+695.138 560.751 L
+695.297 560.337 L
+695.456 559.923 L
+695.615 559.509 L
+695.774 559.096 L
+695.933 558.683 L
+696.092 558.27 L
+696.251 557.857 L
+696.41 557.445 L
+696.569 557.034 L
+696.728 556.622 L
+696.887 556.212 L
+697.046 555.801 L
+697.205 555.391 L
+697.364 554.982 L
+697.523 554.573 L
+697.682 554.165 L
+697.841 553.758 L
+698 553.351 L
+698.159 552.944 L
+698.318 552.539 L
+698.477 552.134 L
+698.636 551.729 L
+698.795 551.326 L
+698.954 550.923 L
+699.113 550.521 L
+699.272 550.12 L
+699.431 549.72 L
+699.59 549.32 L
+699.749 548.921 L
+699.908 548.523 L
+700.067 548.127 L
+700.226 547.731 L
+700.385 547.336 L
+700.544 546.942 L
+700.703 546.549 L
+700.862 546.156 L
+701.021 545.766 L
+701.18 545.376 L
+701.338 544.987 L
+701.497 544.599 L
+701.656 544.212 L
+701.815 543.827 L
+701.974 543.443 L
+702.133 543.06 L
+702.292 542.678 L
+702.451 542.297 L
+702.61 541.918 L
+702.769 541.54 L
+702.928 541.163 L
+703.087 540.787 L
+703.246 540.413 L
+703.405 540.04 L
+703.564 539.669 L
+703.723 539.299 L
+703.882 538.93 L
+704.041 538.563 L
+704.2 538.198 L
+704.359 537.833 L
+704.518 537.471 L
+704.677 537.11 L
+704.836 536.75 L
+704.995 536.392 L
+705.154 536.035 L
+705.313 535.681 L
+705.472 535.327 L
+705.631 534.976 L
+705.79 534.626 L
+705.949 534.278 L
+706.108 533.931 L
+706.267 533.586 L
+706.426 533.243 L
+706.585 532.902 L
+706.744 532.562 L
+706.903 532.224 L
+707.062 531.888 L
+707.221 531.554 L
+707.38 531.222 L
+707.538 530.891 L
+707.697 530.563 L
+707.856 530.236 L
+708.015 529.911 L
+708.174 529.589 L
+708.333 529.268 L
+708.492 528.949 L
+708.651 528.632 L
+708.81 528.317 L
+708.969 528.004 L
+709.128 527.694 L
+709.287 527.385 L
+709.446 527.078 L
+709.605 526.774 L
+709.764 526.471 L
+709.923 526.171 L
+710.082 525.873 L
+710.241 525.577 L
+710.4 525.283 L
+710.559 524.991 L
+710.718 524.702 L
+710.877 524.414 L
+711.036 524.129 L
+711.195 523.846 L
+711.354 523.566 L
+711.513 523.288 L
+711.672 523.012 L
+711.831 522.738 L
+711.99 522.467 L
+712.149 522.198 L
+712.308 521.932 L
+712.467 521.667 L
+712.626 521.406 L
+712.785 521.146 L
+712.944 520.889 L
+713.103 520.635 L
+713.262 520.382 L
+713.421 520.133 L
+713.579 519.886 L
+713.738 519.641 L
+713.897 519.399 L
+714.056 519.159 L
+714.215 518.922 L
+714.374 518.687 L
+714.533 518.455 L
+714.692 518.225 L
+714.851 517.998 L
+715.01 517.774 L
+715.169 517.552 L
+715.328 517.333 L
+715.487 517.116 L
+715.646 516.902 L
+715.805 516.691 L
+715.964 516.482 L
+716.123 516.276 L
+716.282 516.073 L
+716.441 515.872 L
+716.6 515.674 L
+716.759 515.479 L
+716.918 515.286 L
+717.077 515.096 L
+717.236 514.909 L
+717.395 514.725 L
+717.554 514.543 L
+717.713 514.365 L
+717.872 514.189 L
+718.031 514.015 L
+718.19 513.845 L
+718.349 513.677 L
+718.508 513.512 L
+718.667 513.35 L
+718.826 513.191 L
+718.985 513.034 L
+719.144 512.881 L
+719.303 512.73 L
+719.462 512.582 L
+719.621 512.437 L
+719.779 512.295 L
+719.938 512.156 L
+720.097 512.02 L
+720.256 511.886 L
+720.415 511.755 L
+720.574 511.628 L
+720.733 511.503 L
+720.892 511.381 L
+721.051 511.262 L
+721.21 511.146 L
+721.369 511.033 L
+721.528 510.923 L
+721.687 510.816 L
+721.846 510.712 L
+722.005 510.611 L
+722.164 510.512 L
+722.323 510.417 L
+722.482 510.325 L
+722.641 510.235 L
+722.8 510.149 L
+722.959 510.066 L
+723.118 509.985 L
+723.277 509.908 L
+723.436 509.833 L
+723.595 509.762 L
+723.754 509.694 L
+723.913 509.628 L
+724.072 509.566 L
+724.231 509.506 L
+724.39 509.45 L
+724.549 509.397 L
+724.708 509.346 L
+724.867 509.299 L
+725.026 509.255 L
+725.185 509.213 L
+725.344 509.175 L
+725.503 509.14 L
+725.662 509.108 L
+725.82 509.079 L
+725.979 509.053 L
+726.138 509.029 L
+726.297 509.009 L
+726.456 508.992 L
+726.615 508.978 L
+726.774 508.967 L
+726.933 508.959 L
+727.092 508.955 L
+727.251 508.953 L
+727.41 508.954 L
+727.569 508.958 L
+727.728 508.965 L
+727.887 508.976 L
+728.046 508.989 L
+728.205 509.005 L
+728.364 509.025 L
+728.523 509.047 L
+728.682 509.072 L
+728.841 509.101 L
+729 509.132 L
+729.159 509.166 L
+729.318 509.204 L
+729.477 509.244 L
+729.636 509.288 L
+729.795 509.334 L
+729.954 509.384 L
+730.113 509.436 L
+730.272 509.492 L
+730.431 509.55 L
+730.59 509.611 L
+730.749 509.676 L
+730.908 509.743 L
+731.067 509.813 L
+731.226 509.887 L
+731.385 509.963 L
+731.544 510.042 L
+731.703 510.124 L
+731.862 510.209 L
+732.021 510.298 L
+732.18 510.388 L
+732.338 510.482 L
+732.497 510.579 L
+732.656 510.679 L
+732.815 510.782 L
+732.974 510.887 L
+733.133 510.996 L
+733.292 511.107 L
+733.451 511.221 L
+733.61 511.338 L
+733.769 511.458 L
+733.928 511.581 L
+734.087 511.707 L
+734.246 511.835 L
+734.405 511.967 L
+734.564 512.101 L
+734.723 512.238 L
+734.882 512.378 L
+735.041 512.52 L
+735.2 512.666 L
+735.359 512.814 L
+735.518 512.965 L
+735.677 513.119 L
+735.836 513.275 L
+735.995 513.435 L
+736.154 513.597 L
+736.313 513.761 L
+736.472 513.929 L
+736.631 514.099 L
+736.79 514.272 L
+736.949 514.448 L
+737.108 514.626 L
+737.267 514.807 L
+737.426 514.99 L
+737.585 515.177 L
+737.744 515.366 L
+737.903 515.557 L
+738.062 515.751 L
+738.221 515.948 L
+738.38 516.147 L
+738.538 516.349 L
+738.697 516.554 L
+738.856 516.761 L
+739.015 516.97 L
+739.174 517.182 L
+739.333 517.397 L
+739.492 517.614 L
+739.651 517.834 L
+739.81 518.056 L
+739.969 518.28 L
+740.128 518.507 L
+740.287 518.737 L
+740.446 518.969 L
+740.605 519.203 L
+740.764 519.44 L
+740.923 519.679 L
+741.082 519.92 L
+741.241 520.164 L
+741.4 520.41 L
+741.559 520.659 L
+741.718 520.909 L
+741.877 521.162 L
+742.036 521.418 L
+742.195 521.676 L
+742.354 521.935 L
+742.513 522.198 L
+742.672 522.462 L
+742.831 522.729 L
+742.99 522.997 L
+743.149 523.268 L
+743.308 523.541 L
+743.467 523.817 L
+743.626 524.094 L
+743.785 524.374 L
+743.944 524.655 L
+744.103 524.939 L
+744.262 525.225 L
+744.421 525.513 L
+744.579 525.802 L
+744.738 526.094 L
+744.897 526.388 L
+745.056 526.684 L
+745.215 526.982 L
+745.374 527.281 L
+745.533 527.583 L
+745.692 527.887 L
+745.851 528.192 L
+746.01 528.5 L
+746.169 528.809 L
+746.328 529.12 L
+746.487 529.433 L
+746.646 529.748 L
+746.805 530.064 L
+746.964 530.382 L
+747.123 530.702 L
+747.282 531.024 L
+747.441 531.348 L
+747.6 531.673 L
+747.759 532 L
+747.918 532.328 L
+748.077 532.658 L
+748.236 532.99 L
+748.395 533.323 L
+748.554 533.658 L
+748.713 533.995 L
+748.872 534.333 L
+749.031 534.673 L
+749.19 535.014 L
+749.349 535.356 L
+749.508 535.7 L
+749.667 536.046 L
+749.826 536.393 L
+749.985 536.741 L
+750.144 537.091 L
+750.303 537.442 L
+750.462 537.794 L
+750.62 538.148 L
+750.779 538.503 L
+750.938 538.859 L
+751.097 539.217 L
+751.256 539.576 L
+751.415 539.936 L
+751.574 540.297 L
+751.733 540.66 L
+751.892 541.023 L
+752.051 541.388 L
+752.21 541.754 L
+752.369 542.121 L
+752.528 542.489 L
+752.687 542.858 L
+752.846 543.228 L
+753.005 543.599 L
+753.164 543.971 L
+753.323 544.345 L
+753.482 544.719 L
+753.641 545.094 L
+753.8 545.47 L
+753.959 545.846 L
+754.118 546.224 L
+754.277 546.603 L
+754.436 546.982 L
+754.595 547.362 L
+754.754 547.743 L
+754.913 548.125 L
+755.072 548.507 L
+755.231 548.89 L
+755.39 549.274 L
+755.549 549.658 L
+755.708 550.044 L
+755.867 550.429 L
+756.026 550.816 L
+756.185 551.203 L
+756.344 551.59 L
+756.503 551.978 L
+756.662 552.367 L
+756.82 552.756 L
+756.979 553.145 L
+757.138 553.535 L
+757.297 553.926 L
+757.456 554.316 L
+757.615 554.708 L
+757.774 555.099 L
+757.933 555.491 L
+758.092 555.883 L
+758.251 556.276 L
+758.41 556.668 L
+758.569 557.061 L
+758.728 557.455 L
+758.887 557.848 L
+759.046 558.242 L
+759.205 558.635 L
+759.364 559.029 L
+759.523 559.423 L
+759.682 559.817 L
+759.841 560.212 L
+760 560.606 L
+S
+GR
+%%Trailer
+%%Pages: 1
+%%EOF
diff --git a/Partie3/Q319.m b/Partie3/Q319.m
new file mode 100644
index 0000000000000000000000000000000000000000..f0f8a8b61bbb57ac865bb68c3502678bbe9b9c7c
--- /dev/null
+++ b/Partie3/Q319.m
@@ -0,0 +1,22 @@
+% Paramètres du filtre
+K = 10;                % Taille du filtre de moyenne glissante
+Fe = 44100;            % Fréquence d'échantillonnage
+Nfft = 4096;           % Taille de la FFT pour la résolution
+
+% Réponse impulsionnelle : moyenne glissante
+h = ones(1, K) / K;
+
+% Réponse en fréquence
+H = fft(h, Nfft);
+H = fftshift(H);                 % Centrer autour de 0
+nu = linspace(-0.5, 0.5, Nfft);  % Axe des fréquences réduites
+
+% Affichage
+figure;
+
+% Module linéaire
+plot(nu, abs(H), 'b', 'LineWidth', 1.5);
+xlabel('Fréquence réduite \nu');
+ylabel('|H_r(\nu)|');
+title('Module linéaire du filtre h_r(k)');
+grid on;
\ No newline at end of file
diff --git a/Partie3/Q33.eps b/Partie3/Q33.eps
new file mode 100644
index 0000000000000000000000000000000000000000..7a3bbe9cff98b5e7e748bea21c28fa646fba12fb
--- /dev/null
+++ b/Partie3/Q33.eps
@@ -0,0 +1,5917 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (MATLAB, The Mathworks, Inc. Version 24.2.0.2923080 \(R2024b\) Update 6. Operating System: Windows 10)
+%%Title: (C:/Users/infos/OneDrive/Bureau/IMT/Electrical Engineering IMT/SAR/synth_add/Q33.eps)
+%%CreationDate: 2025-05-16T14:42:39
+%%Pages: (atend)
+%%BoundingBox:     0     0   420   315
+%%LanguageLevel: 3
+%%EndComments
+%%BeginProlog
+%%BeginResource: procset (Apache XML Graphics Std ProcSet) 1.2 0
+%%Version: 1.2 0
+%%Copyright: (Copyright 2001-2003,2010 The Apache Software Foundation. License terms: http://www.apache.org/licenses/LICENSE-2.0)
+/bd{bind def}bind def
+/ld{load def}bd
+/GR/grestore ld
+/GS/gsave ld
+/RM/rmoveto ld
+/C/curveto ld
+/t/show ld
+/L/lineto ld
+/ML/setmiterlimit ld
+/CT/concat ld
+/f/fill ld
+/N/newpath ld
+/S/stroke ld
+/CC/setcmykcolor ld
+/A/ashow ld
+/cp/closepath ld
+/RC/setrgbcolor ld
+/LJ/setlinejoin ld
+/GC/setgray ld
+/LW/setlinewidth ld
+/M/moveto ld
+/re {4 2 roll M
+1 index 0 rlineto
+0 exch rlineto
+neg 0 rlineto
+cp } bd
+/_ctm matrix def
+/_tm matrix def
+/BT { _ctm currentmatrix pop matrix _tm copy pop 0 0 moveto } bd
+/ET { _ctm setmatrix } bd
+/iTm { _ctm setmatrix _tm concat } bd
+/Tm { _tm astore pop iTm 0 0 moveto } bd
+/ux 0.0 def
+/uy 0.0 def
+/F {
+  /Tp exch def
+  /Tf exch def
+  Tf findfont Tp scalefont setfont
+  /cf Tf def  /cs Tp def
+} bd
+/ULS {currentpoint /uy exch def /ux exch def} bd
+/ULE {
+  /Tcx currentpoint pop def
+  gsave
+  newpath
+  cf findfont cs scalefont dup
+  /FontMatrix get 0 get /Ts exch def /FontInfo get dup
+  /UnderlinePosition get Ts mul /To exch def
+  /UnderlineThickness get Ts mul /Tt exch def
+  ux uy To add moveto  Tcx uy To add lineto
+  Tt setlinewidth stroke
+  grestore
+} bd
+/OLE {
+  /Tcx currentpoint pop def
+  gsave
+  newpath
+  cf findfont cs scalefont dup
+  /FontMatrix get 0 get /Ts exch def /FontInfo get dup
+  /UnderlinePosition get Ts mul /To exch def
+  /UnderlineThickness get Ts mul /Tt exch def
+  ux uy To add cs add moveto Tcx uy To add cs add lineto
+  Tt setlinewidth stroke
+  grestore
+} bd
+/SOE {
+  /Tcx currentpoint pop def
+  gsave
+  newpath
+  cf findfont cs scalefont dup
+  /FontMatrix get 0 get /Ts exch def /FontInfo get dup
+  /UnderlinePosition get Ts mul /To exch def
+  /UnderlineThickness get Ts mul /Tt exch def
+  ux uy To add cs 10 mul 26 idiv add moveto Tcx uy To add cs 10 mul 26 idiv add lineto
+  Tt setlinewidth stroke
+  grestore
+} bd
+/QT {
+/Y22 exch store
+/X22 exch store
+/Y21 exch store
+/X21 exch store
+currentpoint
+/Y21 load 2 mul add 3 div exch
+/X21 load 2 mul add 3 div exch
+/X21 load 2 mul /X22 load add 3 div
+/Y21 load 2 mul /Y22 load add 3 div
+/X22 load /Y22 load curveto
+} bd
+/SSPD {
+dup length /d exch dict def
+{
+/v exch def
+/k exch def
+currentpagedevice k known {
+/cpdv currentpagedevice k get def
+v cpdv ne {
+/upd false def
+/nullv v type /nulltype eq def
+/nullcpdv cpdv type /nulltype eq def
+nullv nullcpdv or
+{
+/upd true def
+} {
+/sametype v type cpdv type eq def
+sametype {
+v type /arraytype eq {
+/vlen v length def
+/cpdvlen cpdv length def
+vlen cpdvlen eq {
+0 1 vlen 1 sub {
+/i exch def
+/obj v i get def
+/cpdobj cpdv i get def
+obj cpdobj ne {
+/upd true def
+exit
+} if
+} for
+} {
+/upd true def
+} ifelse
+} {
+v type /dicttype eq {
+v {
+/dv exch def
+/dk exch def
+/cpddv cpdv dk get def
+dv cpddv ne {
+/upd true def
+exit
+} if
+} forall
+} {
+/upd true def
+} ifelse
+} ifelse
+} if
+} ifelse
+upd true eq {
+d k v put
+} if
+} if
+} if
+} forall
+d length 0 gt {
+d setpagedevice
+} if
+} bd
+/RE { % /NewFontName [NewEncodingArray] /FontName RE -
+  findfont dup length dict begin
+  {
+    1 index /FID ne
+    {def} {pop pop} ifelse
+  } forall
+  /Encoding exch def
+  /FontName 1 index def
+  currentdict definefont pop
+  end
+} bind def
+%%EndResource
+%%BeginResource: procset (Apache XML Graphics EPS ProcSet) 1.0 0
+%%Version: 1.0 0
+%%Copyright: (Copyright 2002-2003 The Apache Software Foundation. License terms: http://www.apache.org/licenses/LICENSE-2.0)
+/BeginEPSF { %def
+/b4_Inc_state save def         % Save state for cleanup
+/dict_count countdictstack def % Count objects on dict stack
+/op_count count 1 sub def      % Count objects on operand stack
+userdict begin                 % Push userdict on dict stack
+/showpage { } def              % Redefine showpage, { } = null proc
+0 setgray 0 setlinecap         % Prepare graphics state
+1 setlinewidth 0 setlinejoin
+10 setmiterlimit [ ] 0 setdash newpath
+/languagelevel where           % If level not equal to 1 then
+{pop languagelevel             % set strokeadjust and
+1 ne                           % overprint to their defaults.
+{false setstrokeadjust false setoverprint
+} if
+} if
+} bd
+/EndEPSF { %def
+count op_count sub {pop} repeat            % Clean up stacks
+countdictstack dict_count sub {end} repeat
+b4_Inc_state restore
+} bd
+%%EndResource
+%FOPBeginFontDict
+%%IncludeResource: font Courier-Oblique
+%%IncludeResource: font Courier-BoldOblique
+%%IncludeResource: font Courier-Bold
+%%IncludeResource: font ZapfDingbats
+%%IncludeResource: font Symbol
+%%IncludeResource: font Helvetica
+%%IncludeResource: font Helvetica-Oblique
+%%IncludeResource: font Helvetica-Bold
+%%IncludeResource: font Helvetica-BoldOblique
+%%IncludeResource: font Times-Roman
+%%IncludeResource: font Times-Italic
+%%IncludeResource: font Times-Bold
+%%IncludeResource: font Times-BoldItalic
+%%IncludeResource: font Courier
+%FOPEndFontDict
+%%BeginResource: encoding WinAnsiEncoding
+/WinAnsiEncoding [
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /space /exclam /quotedbl
+/numbersign /dollar /percent /ampersand /quotesingle
+/parenleft /parenright /asterisk /plus /comma
+/hyphen /period /slash /zero /one
+/two /three /four /five /six
+/seven /eight /nine /colon /semicolon
+/less /equal /greater /question /at
+/A /B /C /D /E
+/F /G /H /I /J
+/K /L /M /N /O
+/P /Q /R /S /T
+/U /V /W /X /Y
+/Z /bracketleft /backslash /bracketright /asciicircum
+/underscore /quoteleft /a /b /c
+/d /e /f /g /h
+/i /j /k /l /m
+/n /o /p /q /r
+/s /t /u /v /w
+/x /y /z /braceleft /bar
+/braceright /asciitilde /bullet /Euro /bullet
+/quotesinglbase /florin /quotedblbase /ellipsis /dagger
+/daggerdbl /circumflex /perthousand /Scaron /guilsinglleft
+/OE /bullet /Zcaron /bullet /bullet
+/quoteleft /quoteright /quotedblleft /quotedblright /bullet
+/endash /emdash /asciitilde /trademark /scaron
+/guilsinglright /oe /bullet /zcaron /Ydieresis
+/space /exclamdown /cent /sterling /currency
+/yen /brokenbar /section /dieresis /copyright
+/ordfeminine /guillemotleft /logicalnot /sfthyphen /registered
+/macron /degree /plusminus /twosuperior /threesuperior
+/acute /mu /paragraph /middot /cedilla
+/onesuperior /ordmasculine /guillemotright /onequarter /onehalf
+/threequarters /questiondown /Agrave /Aacute /Acircumflex
+/Atilde /Adieresis /Aring /AE /Ccedilla
+/Egrave /Eacute /Ecircumflex /Edieresis /Igrave
+/Iacute /Icircumflex /Idieresis /Eth /Ntilde
+/Ograve /Oacute /Ocircumflex /Otilde /Odieresis
+/multiply /Oslash /Ugrave /Uacute /Ucircumflex
+/Udieresis /Yacute /Thorn /germandbls /agrave
+/aacute /acircumflex /atilde /adieresis /aring
+/ae /ccedilla /egrave /eacute /ecircumflex
+/edieresis /igrave /iacute /icircumflex /idieresis
+/eth /ntilde /ograve /oacute /ocircumflex
+/otilde /odieresis /divide /oslash /ugrave
+/uacute /ucircumflex /udieresis /yacute /thorn
+/ydieresis
+] def
+%%EndResource
+%FOPBeginFontReencode
+/Courier-Oblique findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Courier-Oblique exch definefont pop
+/Courier-BoldOblique findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Courier-BoldOblique exch definefont pop
+/Courier-Bold findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Courier-Bold exch definefont pop
+/Helvetica findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Helvetica exch definefont pop
+/Helvetica-Oblique findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Helvetica-Oblique exch definefont pop
+/Helvetica-Bold findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Helvetica-Bold exch definefont pop
+/Helvetica-BoldOblique findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Helvetica-BoldOblique exch definefont pop
+/Times-Roman findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Times-Roman exch definefont pop
+/Times-Italic findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Times-Italic exch definefont pop
+/Times-Bold findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Times-Bold exch definefont pop
+/Times-BoldItalic findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Times-BoldItalic exch definefont pop
+/Courier findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Courier exch definefont pop
+%FOPEndFontReencode
+%%EndProlog
+%%Page: 1 1
+%%PageBoundingBox: 0 0 420 315
+%%BeginPageSetup
+[1 0 0 -1 0 315] CT
+%%EndPageSetup
+GS
+[0.5 0 0 0.5 0 0] CT
+1 GC
+N
+0 0 840 630 re
+f
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+1 GC
+N
+0 0 840 630 re
+f
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+1 GC
+N
+109 261 M
+760 261 L
+760 47 L
+109 47 L
+cp
+f
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+109 261 M
+109 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+174.1 261 M
+174.1 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+239.2 261 M
+239.2 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+304.3 261 M
+304.3 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+369.4 261 M
+369.4 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+434.5 261 M
+434.5 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+499.6 261 M
+499.6 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+564.7 261 M
+564.7 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+629.8 261 M
+629.8 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+694.9 261 M
+694.9 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 261 M
+760 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 243.93 M
+109 243.93 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 204.544 M
+109 204.544 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 165.158 M
+109 165.158 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 125.772 M
+109 125.772 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 86.386 M
+109 86.386 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 47 M
+109 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 261 M
+760 261 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 47 M
+760 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 261 M
+109 254.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+174.1 261 M
+174.1 254.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+239.2 261 M
+239.2 254.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+304.3 261 M
+304.3 254.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+369.4 261 M
+369.4 254.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+434.5 261 M
+434.5 254.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+499.6 261 M
+499.6 254.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+564.7 261 M
+564.7 254.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+629.8 261 M
+629.8 254.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+694.9 261 M
+694.9 254.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 261 M
+760 254.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 47 M
+109 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+174.1 47 M
+174.1 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+239.2 47 M
+239.2 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+304.3 47 M
+304.3 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+369.4 47 M
+369.4 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+434.5 47 M
+434.5 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+499.6 47 M
+499.6 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+564.7 47 M
+564.7 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+629.8 47 M
+629.8 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+694.9 47 M
+694.9 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 47 M
+760 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 54.5 133.3] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-23.5 19 moveto 
+1 -1 scale
+(-1000) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 87.05 133.3] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-18.5 19 moveto 
+1 -1 scale
+(-800) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 119.6 133.3] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-18.5 19 moveto 
+1 -1 scale
+(-600) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 152.14999 133.3] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-18.5 19 moveto 
+1 -1 scale
+(-400) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 184.7 133.3] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-18.5 19 moveto 
+1 -1 scale
+(-200) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 217.25 133.3] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-5.5 19 moveto 
+1 -1 scale
+(0) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 249.8 133.3] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-15.5 19 moveto 
+1 -1 scale
+(200) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 282.35001 133.3] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-15.5 19 moveto 
+1 -1 scale
+(400) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 314.89999 133.3] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-15.5 19 moveto 
+1 -1 scale
+(600) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 347.45001 133.3] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-15.5 19 moveto 
+1 -1 scale
+(800) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 380 133.3] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-20.5 19 moveto 
+1 -1 scale
+(1000) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 217.25015 145.3] CT
+0.149 GC
+/Helvetica 19.8 F
+GS
+[1 0 0 1 0 0] CT
+-30 20 moveto 
+1 -1 scale
+(Retard) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 261 M
+109 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 261 M
+760 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 243.93 M
+115.51 243.93 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 204.544 M
+115.51 204.544 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 165.158 M
+115.51 165.158 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 125.772 M
+115.51 125.772 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 86.386 M
+115.51 86.386 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 47 M
+115.51 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 243.93 M
+753.49 243.93 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 204.544 M
+753.49 204.544 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 165.158 M
+753.49 165.158 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 125.772 M
+753.49 125.772 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 86.386 M
+753.49 86.386 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 47 M
+753.49 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 51.7 121.96489] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-11 7.5 moveto 
+1 -1 scale
+(0) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 51.7 102.27191] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-26 7.5 moveto 
+1 -1 scale
+(0.2) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 51.7 82.57893] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-26 7.5 moveto 
+1 -1 scale
+(0.4) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 51.7 62.88595] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-26 7.5 moveto 
+1 -1 scale
+(0.6) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 51.7 43.19298] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-26 7.5 moveto 
+1 -1 scale
+(0.8) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 51.7 23.5] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-11 7.5 moveto 
+1 -1 scale
+(1) t 
+GR
+GR
+GS
+[0 -0.5 0.5 0 36.69999 76.99995] CT
+0.149 GC
+/Helvetica 19.8 F
+GS
+[1 0 0 1 0 0] CT
+-44 -5 moveto 
+1 -1 scale
+(Amplitude) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 217.25021 22.2625] CT
+/Helvetica-Bold 19.8 F
+GS
+[1 0 0 1 0 0] CT
+-107.5 -5 moveto 
+1 -1 scale
+(Autocorr\351lation de xe1) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+109.326 243.943 M
+109.651 244.106 L
+109.977 244.007 L
+110.302 244.054 L
+110.628 243.836 L
+110.953 244.555 L
+111.279 244.444 L
+111.604 244.048 L
+111.929 243.766 L
+112.255 243.771 L
+112.58 244.793 L
+112.906 243.641 L
+113.231 243.814 L
+113.557 244.053 L
+113.882 243.622 L
+114.208 244.451 L
+114.534 242.785 L
+114.859 244.825 L
+115.185 244.793 L
+115.51 243.599 L
+115.836 243.655 L
+116.161 242.546 L
+116.487 244.402 L
+116.812 242.898 L
+117.137 242.603 L
+117.463 244.541 L
+117.788 244.336 L
+118.114 244.192 L
+118.439 242.234 L
+118.765 243.319 L
+119.09 244.39 L
+119.416 243.071 L
+119.742 243.021 L
+120.067 242.774 L
+120.393 243.964 L
+120.718 243.104 L
+121.044 243.152 L
+121.369 242.855 L
+121.695 243.475 L
+122.02 243.346 L
+122.345 243.409 L
+122.671 243.706 L
+122.996 242.798 L
+123.322 245.042 L
+123.647 243.995 L
+123.973 245.822 L
+124.299 242.822 L
+124.624 242.298 L
+124.95 244.797 L
+125.275 243.555 L
+125.601 244.651 L
+125.926 242.108 L
+126.252 242.304 L
+126.577 245.19 L
+126.902 242.298 L
+127.228 244.05 L
+127.553 241.972 L
+127.879 243.895 L
+128.204 244.871 L
+128.53 241.595 L
+128.855 242.628 L
+129.181 243.611 L
+129.507 246.147 L
+129.832 244.577 L
+130.158 242.465 L
+130.483 244.762 L
+130.809 242.915 L
+131.134 243.665 L
+131.46 245.046 L
+131.785 244.627 L
+132.111 247.128 L
+132.436 242.854 L
+132.762 245.938 L
+133.087 244.027 L
+133.413 245.721 L
+133.738 246.551 L
+134.064 245.509 L
+134.389 245.801 L
+134.714 241.951 L
+135.04 241.982 L
+135.365 242.213 L
+135.691 244.371 L
+136.016 244.109 L
+136.342 244.61 L
+136.667 248.04 L
+136.993 243.86 L
+137.318 244.887 L
+137.644 245.83 L
+137.969 242.598 L
+138.295 246.265 L
+138.62 237.705 L
+138.946 243.618 L
+139.271 243.345 L
+139.597 242.605 L
+139.923 243.056 L
+140.248 242.861 L
+140.574 245.508 L
+140.899 245.946 L
+141.225 241.945 L
+141.55 243.373 L
+141.876 244.147 L
+142.201 243.299 L
+142.527 241.306 L
+142.852 242.125 L
+143.178 243.024 L
+143.503 241.788 L
+143.829 244.203 L
+144.154 243.575 L
+144.48 244.264 L
+144.805 243.225 L
+145.13 244.381 L
+145.456 244.481 L
+145.781 240.897 L
+146.107 242.063 L
+146.432 243.436 L
+146.758 242.118 L
+147.083 244.546 L
+147.409 243.188 L
+147.734 245.529 L
+148.06 243.616 L
+148.385 247.624 L
+148.711 246.835 L
+149.036 245.731 L
+149.362 246.683 L
+149.688 242.967 L
+150.013 248.868 L
+150.339 243.532 L
+150.664 246.53 L
+150.99 251.421 L
+151.315 244.133 L
+151.641 246.868 L
+151.966 245.733 L
+152.292 243.289 L
+152.617 247.611 L
+152.943 244.023 L
+153.268 244.976 L
+153.594 244.929 L
+153.919 241.589 L
+154.245 240.411 L
+154.57 246.708 L
+154.895 245.06 L
+155.221 243.549 L
+155.546 246.319 L
+155.872 242.915 L
+156.197 242.357 L
+156.523 244.329 L
+156.848 242.95 L
+157.174 245.589 L
+157.499 245.856 L
+157.825 243.967 L
+158.15 241.407 L
+158.476 244.979 L
+158.801 245.79 L
+159.127 246.722 L
+159.452 245.465 L
+159.778 243.099 L
+160.104 245.267 L
+160.429 245.683 L
+160.755 242.968 L
+161.08 239.772 L
+161.406 238.869 L
+161.731 247.297 L
+162.057 244.101 L
+162.382 242.466 L
+162.708 247.819 L
+163.033 246.103 L
+163.359 247.707 L
+163.684 241.653 L
+164.01 239.859 L
+164.335 246.153 L
+164.661 243.474 L
+164.986 241.531 L
+165.311 246.986 L
+165.637 245.844 L
+165.962 239.15 L
+166.288 245.133 L
+166.613 246.081 L
+166.939 245.164 L
+167.264 247.329 L
+167.59 248.022 L
+167.915 244.308 L
+168.241 246.518 L
+168.566 244.64 L
+168.892 246.486 L
+169.217 245.56 L
+169.543 243.699 L
+169.868 247.178 L
+170.194 250.961 L
+170.52 245.918 L
+170.845 242.637 L
+171.171 244.63 L
+171.496 241.697 L
+171.822 243.612 L
+172.147 236.36 L
+172.473 239.379 L
+172.798 244.622 L
+173.124 244.571 L
+173.449 243.159 L
+173.775 243.102 L
+174.1 241.693 L
+174.426 245.495 L
+174.751 238.929 L
+175.077 243.333 L
+175.402 241.762 L
+175.727 244.274 L
+176.053 246.75 L
+176.378 239.327 L
+176.704 242.679 L
+177.029 244.393 L
+177.355 242.287 L
+177.68 248.19 L
+178.006 246.728 L
+178.331 243.218 L
+178.657 247.402 L
+178.982 238.766 L
+179.308 236.555 L
+179.633 242.521 L
+179.959 248.061 L
+180.285 243.729 L
+180.61 242.827 L
+180.936 242.58 L
+181.261 246.395 L
+181.587 242.728 L
+181.912 247.084 L
+182.238 245.749 L
+182.563 244.167 L
+182.889 239.024 L
+183.214 240.608 L
+183.54 241.995 L
+183.865 241.28 L
+184.191 245.142 L
+184.516 248.424 L
+184.842 243.647 L
+185.167 240.544 L
+185.492 240.756 L
+185.818 239.303 L
+186.143 244.079 L
+186.469 241.504 L
+186.794 244.629 L
+187.12 243.147 L
+187.445 238.459 L
+187.771 247.182 L
+188.096 247.384 L
+188.422 246.154 L
+188.747 248.43 L
+189.073 239.741 L
+189.398 249.497 L
+189.724 245.078 L
+190.049 242.559 L
+190.375 245.147 L
+190.701 240.901 L
+191.026 239.994 L
+191.352 243.582 L
+191.677 242.737 L
+192.003 239.063 L
+192.328 240.588 L
+192.654 247.714 L
+192.979 241.854 L
+193.305 243.641 L
+193.63 238.981 L
+193.956 245.223 L
+194.281 243.354 L
+194.607 239.977 L
+194.932 240.828 L
+195.258 240.863 L
+195.583 247.006 L
+195.908 241.857 L
+196.234 244.731 L
+196.559 246.101 L
+196.885 244.837 L
+197.21 243.675 L
+197.536 243.632 L
+197.861 236.34 L
+198.187 241.289 L
+198.512 235.854 L
+198.838 240.442 L
+199.163 244.111 L
+199.489 244.122 L
+199.814 239.36 L
+200.14 245.827 L
+200.465 240.34 L
+200.791 245.57 L
+201.117 240.655 L
+201.442 242.073 L
+201.768 241.111 L
+202.093 241.314 L
+202.419 241.866 L
+202.744 241.857 L
+203.07 242.25 L
+203.395 240.163 L
+203.721 245.458 L
+204.046 240.714 L
+204.372 241.956 L
+204.697 241.291 L
+205.023 239.167 L
+205.348 236.518 L
+205.673 240.88 L
+205.999 236.667 L
+206.324 239.928 L
+206.65 247.053 L
+206.975 251.31 L
+207.301 244.959 L
+207.626 248.021 L
+207.952 240.672 L
+208.277 246.959 L
+208.603 247.228 L
+208.928 238.874 L
+209.254 245.302 L
+209.579 245.869 L
+209.905 241.018 L
+210.23 243.95 L
+210.556 244.764 L
+210.882 243.748 L
+211.207 245.551 L
+211.533 240.215 L
+211.858 243.707 L
+212.184 236.827 L
+212.509 241.611 L
+212.835 241.841 L
+213.16 239.248 L
+213.486 239.543 L
+213.811 243.883 L
+214.137 246.454 L
+214.462 248.095 L
+214.788 249.934 L
+215.113 241.398 L
+215.439 249.302 L
+215.764 243.227 L
+216.089 241.849 L
+216.415 241.973 L
+216.74 239.344 L
+217.066 242.929 L
+217.391 243.073 L
+217.717 245.406 L
+218.042 244.143 L
+218.368 245.726 L
+218.693 247.773 L
+219.019 245.805 L
+219.344 246.004 L
+219.67 247.348 L
+219.995 240.749 L
+220.321 239.926 L
+220.646 241.278 L
+220.972 243.021 L
+221.298 242.406 L
+221.623 242.204 L
+221.949 241.394 L
+222.274 252.317 L
+222.6 246.632 L
+222.925 242.514 L
+223.251 241.832 L
+223.576 245.541 L
+223.902 243.837 L
+224.227 237.696 L
+224.553 237.863 L
+224.878 241.6 L
+225.204 247.111 L
+225.529 243.968 L
+225.855 243.436 L
+226.18 245.742 L
+226.505 251.015 L
+226.831 247.177 L
+227.156 247.146 L
+227.482 245.573 L
+227.807 242.064 L
+228.133 247.903 L
+228.458 247.09 L
+228.784 244.919 L
+229.109 246.08 L
+229.435 244.219 L
+229.76 247.081 L
+230.086 244.325 L
+230.411 239.174 L
+230.737 240.467 L
+231.063 237.616 L
+231.388 243.277 L
+231.714 246.038 L
+232.039 239.748 L
+232.365 243.206 L
+232.69 247.675 L
+233.016 243.869 L
+233.341 245.831 L
+233.667 244.467 L
+233.992 240.826 L
+234.318 244.706 L
+234.643 244.999 L
+234.969 244.51 L
+235.294 245.163 L
+235.62 240.024 L
+235.945 237.425 L
+236.27 246.056 L
+236.596 239.246 L
+236.921 236.059 L
+237.247 249.665 L
+237.572 242.003 L
+237.898 245.591 L
+238.223 240.692 L
+238.549 238.396 L
+238.874 239.222 L
+239.2 248.741 L
+239.525 243.407 L
+239.851 246.541 L
+240.176 243.608 L
+240.502 250.151 L
+240.827 246.89 L
+241.153 249.996 L
+241.479 239.058 L
+241.804 251.344 L
+242.13 243.7 L
+242.455 240.267 L
+242.781 240.574 L
+243.106 247.794 L
+243.432 241.119 L
+243.757 243.91 L
+244.083 245.35 L
+244.408 247.912 L
+244.734 246.101 L
+245.059 247.26 L
+245.385 247.935 L
+245.71 247.066 L
+246.036 240.843 L
+246.361 243.937 L
+246.686 241.575 L
+247.012 249.503 L
+247.337 246.9 L
+247.663 250.018 L
+247.988 244.139 L
+248.314 243.707 L
+248.639 241.286 L
+248.965 241.986 L
+249.29 241.149 L
+249.616 236.716 L
+249.941 241.644 L
+250.267 241.286 L
+250.592 234.611 L
+250.918 240.868 L
+251.243 240.797 L
+251.569 246.995 L
+251.895 245.358 L
+252.22 237.483 L
+252.546 241.186 L
+252.871 238.364 L
+253.197 242.069 L
+253.522 239.971 L
+253.848 242.193 L
+254.173 238.623 L
+254.499 245.406 L
+254.824 247.247 L
+255.15 236.669 L
+255.475 244.938 L
+255.801 246.974 L
+256.126 246.62 L
+256.452 251.471 L
+256.777 251.29 L
+257.103 242.902 L
+257.428 245.805 L
+257.754 242.564 L
+258.079 244.422 L
+258.405 242.79 L
+258.73 254.676 L
+259.056 244.711 L
+259.381 251.823 L
+259.707 246.033 L
+260.032 247.131 L
+260.358 246.298 L
+260.683 243.331 L
+261.009 240.3 L
+261.334 245.313 L
+261.659 239.073 L
+261.985 243.682 L
+262.31 245.413 L
+262.636 247.601 L
+262.961 248.357 L
+263.287 244.04 L
+263.612 242.906 L
+263.938 238.846 L
+264.263 245.177 L
+264.589 248.766 L
+264.914 246.57 L
+265.24 245.989 L
+265.565 241.25 L
+265.891 244.279 L
+266.216 246.913 L
+266.542 246.906 L
+266.867 248.737 L
+267.193 247.707 L
+267.518 243.716 L
+267.844 244.002 L
+268.169 243.614 L
+268.495 243.868 L
+268.82 237.298 L
+269.146 250.489 L
+269.471 249.654 L
+269.797 232.514 L
+270.122 248.038 L
+270.448 247.032 L
+270.773 239.371 L
+271.099 238.37 L
+271.424 245.899 L
+271.75 246.939 L
+272.076 246.201 L
+272.401 245.115 L
+272.727 249.723 L
+273.052 251.475 L
+273.378 246.054 L
+273.703 239.143 L
+274.029 246.239 L
+274.354 250.83 L
+274.68 250.167 L
+275.005 245.356 L
+275.331 243.009 L
+275.656 247.889 L
+275.982 247.267 L
+276.307 247.282 L
+276.633 248.675 L
+276.958 250.134 L
+277.284 250.083 L
+277.609 253.028 L
+277.935 242.181 L
+278.26 250.205 L
+278.586 245.364 L
+278.911 254.794 L
+279.237 244.616 L
+279.562 241.859 L
+279.888 247.57 L
+280.213 241.184 L
+280.539 238.281 L
+280.864 250.367 L
+281.19 245.309 L
+281.515 246.561 L
+281.841 243.783 L
+282.166 244.532 L
+282.491 249.248 L
+282.817 249.017 L
+283.142 249.5 L
+283.468 248.09 L
+283.793 245.459 L
+284.119 240.085 L
+284.444 243.382 L
+284.77 245.682 L
+285.095 236.673 L
+285.421 242.643 L
+285.746 243.829 L
+286.072 247.237 L
+286.397 239.893 L
+286.723 236.383 L
+287.048 244.844 L
+287.374 239.217 L
+287.699 234.445 L
+288.025 233.712 L
+288.35 232.383 L
+288.676 244.173 L
+289.001 237.9 L
+289.327 246.481 L
+289.652 237.809 L
+289.978 243.11 L
+290.303 241.056 L
+290.629 240.45 L
+290.954 243.045 L
+291.28 239.297 L
+291.605 243.515 L
+291.931 237.601 L
+292.257 239.166 L
+292.582 244.693 L
+292.908 239.891 L
+293.233 245.112 L
+293.559 244.169 L
+293.884 239.32 L
+294.21 243.421 L
+294.535 243.513 L
+294.861 242.238 L
+295.186 244.48 L
+295.512 245.988 L
+295.837 241.706 L
+296.163 254.723 L
+296.488 241.728 L
+296.814 245.726 L
+297.139 252.933 L
+297.465 247.386 L
+297.79 246.922 L
+298.116 247.026 L
+298.441 244.284 L
+298.767 244.825 L
+299.092 238.644 L
+299.418 240.351 L
+299.743 235.916 L
+300.069 245.078 L
+300.394 242.468 L
+300.72 239.59 L
+301.045 238.418 L
+301.371 235.939 L
+301.696 243.142 L
+302.022 240.217 L
+302.347 240.284 L
+302.672 232.089 L
+302.998 238.985 L
+303.323 236.608 L
+303.649 235.192 L
+303.974 248.741 L
+304.3 241.543 L
+304.625 229.613 L
+304.951 247.819 L
+305.276 238.717 L
+305.602 233.861 L
+305.927 241.154 L
+306.253 239.36 L
+306.578 239.18 L
+306.904 239.588 L
+307.229 238.475 L
+307.555 242.601 L
+307.88 246.653 L
+308.206 235.858 L
+308.531 240.431 L
+308.857 243.663 L
+309.182 248.572 L
+309.508 242.628 L
+309.833 251.672 L
+310.159 244.476 L
+310.484 243.515 L
+310.81 242.25 L
+311.135 244.749 L
+311.461 232.83 L
+311.786 247.382 L
+312.112 240.873 L
+312.438 241.944 L
+312.763 240.125 L
+313.089 247.952 L
+313.414 244.635 L
+313.74 247.661 L
+314.065 242.187 L
+314.391 253.549 L
+314.716 244.25 L
+315.042 242.772 L
+315.367 233.056 L
+315.693 251.118 L
+316.018 247.737 L
+316.344 239.186 L
+316.669 251.362 L
+316.995 241.287 L
+317.32 238.441 L
+317.646 243.239 L
+317.971 244.609 L
+318.297 240.224 L
+318.622 237.45 L
+318.948 234.285 L
+319.273 242.826 L
+319.599 234.455 L
+319.924 240.19 L
+320.25 235.073 L
+320.575 240.787 L
+320.901 234.593 L
+321.226 240.843 L
+321.552 244.356 L
+321.877 241.644 L
+322.203 241.187 L
+322.528 254.217 L
+322.853 245.551 L
+323.179 246.431 L
+323.504 243.871 L
+323.83 255.2 L
+324.155 246.254 L
+324.481 245.054 L
+324.806 236.346 L
+325.132 238.634 L
+325.457 243.706 L
+325.783 242.595 L
+326.108 242.297 L
+326.434 240.127 L
+326.759 236.332 L
+327.085 234.513 L
+327.41 248.541 L
+327.736 239.346 L
+328.061 240.389 L
+328.387 246.915 L
+328.712 235.837 L
+329.038 246.934 L
+329.363 240.45 L
+329.689 236.109 L
+330.014 241.961 L
+330.34 244.514 L
+330.665 241.766 L
+330.991 242.843 L
+331.316 249.197 L
+331.642 244.543 L
+331.967 246.155 L
+332.293 249.711 L
+332.618 238.994 L
+332.944 239.742 L
+333.27 244.881 L
+333.595 252.154 L
+333.921 249.727 L
+334.246 242.139 L
+334.572 242.229 L
+334.897 245.912 L
+335.223 239.816 L
+335.548 240.639 L
+335.874 241.89 L
+336.199 243.49 L
+336.525 246.059 L
+336.85 245.684 L
+337.176 244.164 L
+337.501 240.9 L
+337.827 236.898 L
+338.152 237.09 L
+338.478 235.277 L
+338.803 243.446 L
+339.129 239.171 L
+339.454 249.363 L
+339.78 233.293 L
+340.105 237.762 L
+340.431 234.428 L
+340.756 249.078 L
+341.082 244.935 L
+341.407 237.113 L
+341.733 250.312 L
+342.058 242.806 L
+342.384 234.673 L
+342.709 241.407 L
+343.034 243.016 L
+343.36 238.974 L
+343.685 238.398 L
+344.011 243.027 L
+344.336 235.531 L
+344.662 239.749 L
+344.987 234.065 L
+345.313 232.836 L
+345.638 246.858 L
+345.964 240.487 L
+346.289 243.498 L
+346.615 242.2 L
+346.94 249.264 L
+347.266 242.854 L
+347.591 248.326 L
+347.917 246.35 L
+348.242 235.531 L
+348.568 246.668 L
+348.893 245.426 L
+349.219 242.523 L
+349.544 248.278 L
+349.87 239.991 L
+350.195 245.138 L
+350.521 241.683 L
+350.846 255.775 L
+351.172 244.271 L
+351.497 241.419 L
+351.823 232.661 L
+352.148 253.24 L
+352.474 240.09 L
+352.799 235.024 L
+353.125 243.164 L
+353.451 256.033 L
+353.776 236.883 L
+354.102 245.013 L
+354.427 246.257 L
+354.753 245.62 L
+355.078 250.52 L
+355.404 246.879 L
+355.729 239.539 L
+356.055 236.297 L
+356.38 241.761 L
+356.706 245.527 L
+357.031 235.937 L
+357.357 255.204 L
+357.682 239.86 L
+358.008 245.97 L
+358.333 242.644 L
+358.659 241.542 L
+358.984 246.727 L
+359.31 243.051 L
+359.635 245.323 L
+359.961 238.108 L
+360.286 245.951 L
+360.612 244.313 L
+360.937 250.468 L
+361.263 258.011 L
+361.588 255.896 L
+361.914 243.103 L
+362.239 247.148 L
+362.565 244.379 L
+362.89 246.517 L
+363.216 251.935 L
+363.541 249.862 L
+363.866 244.57 L
+364.192 246.701 L
+364.517 240.112 L
+364.843 251.45 L
+365.168 248.393 L
+365.494 245.243 L
+365.819 245.66 L
+366.145 248.297 L
+366.47 249.096 L
+366.796 247.8 L
+367.121 242.264 L
+367.447 240.005 L
+367.772 243.744 L
+368.098 242.749 L
+368.423 239.254 L
+368.749 252.37 L
+369.074 246.918 L
+369.4 246.279 L
+369.725 236.755 L
+370.051 243.771 L
+370.376 247.257 L
+370.702 251.335 L
+371.027 241.488 L
+371.353 234.017 L
+371.678 237.724 L
+372.004 249.107 L
+372.329 245.537 L
+372.655 251.448 L
+372.98 261 L
+373.306 248.104 L
+373.632 249.549 L
+373.957 251.769 L
+374.283 248.475 L
+374.608 245.278 L
+374.934 244.779 L
+375.259 246.093 L
+375.585 241.996 L
+375.91 248.425 L
+376.236 240.578 L
+376.561 245.375 L
+376.887 247.143 L
+377.212 240.605 L
+377.538 242.605 L
+377.863 245.799 L
+378.189 241.32 L
+378.514 238.84 L
+378.84 241.37 L
+379.165 245.227 L
+379.491 237.177 L
+379.816 242.886 L
+380.142 240.842 L
+380.467 246.384 L
+380.793 239.645 L
+381.118 248.63 L
+381.444 238.325 L
+381.769 248.058 L
+382.095 232.93 L
+382.42 237.016 L
+382.746 239.416 L
+383.071 237.067 L
+383.397 236.303 L
+383.722 238.979 L
+384.047 238.929 L
+384.373 239.051 L
+384.698 240.806 L
+385.024 239.529 L
+385.349 241.547 L
+385.675 252.486 L
+386 233.102 L
+386.326 243.301 L
+386.651 245.817 L
+386.977 242.79 L
+387.302 248.628 L
+387.628 246.381 L
+387.953 250.333 L
+388.279 246.358 L
+388.604 258.822 L
+388.93 244.274 L
+389.255 246.2 L
+389.581 244.588 L
+389.906 241.337 L
+390.232 243.867 L
+390.557 248.205 L
+390.883 250.08 L
+391.208 250.151 L
+391.534 249.86 L
+391.859 249.405 L
+392.185 245.988 L
+392.51 257.718 L
+392.836 237.104 L
+393.161 239.632 L
+393.487 244.527 L
+393.813 240.763 L
+394.138 242.225 L
+394.464 244.753 L
+394.789 239.66 L
+395.115 245.097 L
+395.44 239.705 L
+395.766 237.285 L
+396.091 233.258 L
+396.417 250.452 L
+396.742 233.753 L
+397.068 240.549 L
+397.393 232.029 L
+397.719 232.203 L
+398.044 248.767 L
+398.37 252.252 L
+398.695 247.214 L
+399.021 247.379 L
+399.346 248.469 L
+399.672 247.961 L
+399.997 250.795 L
+400.323 245.716 L
+400.648 243.771 L
+400.974 231.79 L
+401.299 242.715 L
+401.625 231.708 L
+401.95 245.656 L
+402.276 247.29 L
+402.601 246.202 L
+402.927 245.051 L
+403.252 242.307 L
+403.578 241.671 L
+403.903 243.947 L
+404.228 257.235 L
+404.554 238.652 L
+404.879 238.352 L
+405.205 246.977 L
+405.53 245.48 L
+405.856 254.809 L
+406.181 252.943 L
+406.507 256.523 L
+406.832 247.097 L
+407.158 245.877 L
+407.483 241.386 L
+407.809 246.165 L
+408.134 250.983 L
+408.46 237.525 L
+408.785 243.485 L
+409.111 256.044 L
+409.436 233.947 L
+409.762 251.942 L
+410.087 247.425 L
+410.413 246.438 L
+410.738 256.352 L
+411.064 253.776 L
+411.389 243.719 L
+411.715 252.679 L
+412.04 248.071 L
+412.366 249.431 L
+412.691 249.816 L
+413.017 236.044 L
+413.342 247.883 L
+413.668 247.579 L
+413.993 245.198 L
+414.319 242.865 L
+414.645 240.992 L
+414.97 236.482 L
+415.296 242.489 L
+415.621 234.462 L
+415.947 231.031 L
+416.272 235.729 L
+416.598 236.684 L
+416.923 239.76 L
+417.249 241.635 L
+417.574 237.987 L
+417.9 249.874 L
+418.225 240.884 L
+418.551 252.419 L
+418.876 227.862 L
+419.202 239.409 L
+419.527 242.752 L
+419.853 238.45 L
+420.178 237.704 L
+420.504 243.001 L
+420.829 235.789 L
+421.155 248.407 L
+421.48 245.255 L
+421.806 228.772 L
+422.131 244.432 L
+422.457 251.791 L
+422.782 231.39 L
+423.108 240.682 L
+423.433 240.015 L
+423.759 247.224 L
+424.084 247.668 L
+424.409 245.849 L
+424.735 242.652 L
+425.06 247.221 L
+425.386 251.016 L
+425.711 251.577 L
+426.037 243.754 L
+426.362 238.247 L
+426.688 231.888 L
+427.013 248.994 L
+427.339 238.803 L
+427.664 238.472 L
+427.99 252.731 L
+428.315 243.853 L
+428.641 238.882 L
+428.966 249.397 L
+429.292 255.935 L
+429.617 246.323 L
+429.943 235.709 L
+430.268 245.587 L
+430.594 232.209 L
+430.919 244.871 L
+431.245 238.835 L
+431.57 242.385 L
+431.896 235.434 L
+432.221 244.252 L
+432.547 234.488 L
+432.872 237.295 L
+433.198 236.949 L
+433.523 232.194 L
+433.849 229.387 L
+434.174 237.598 L
+434.5 47 L
+434.826 237.598 L
+435.151 229.387 L
+435.477 232.194 L
+435.802 236.949 L
+436.128 237.295 L
+436.453 234.488 L
+436.779 244.252 L
+437.104 235.434 L
+437.43 242.385 L
+437.755 238.835 L
+438.081 244.871 L
+438.406 232.209 L
+438.732 245.587 L
+439.057 235.709 L
+439.383 246.323 L
+439.708 255.935 L
+440.034 249.397 L
+440.359 238.882 L
+440.685 243.853 L
+441.01 252.731 L
+441.336 238.472 L
+441.661 238.803 L
+441.987 248.994 L
+442.312 231.888 L
+442.638 238.247 L
+442.963 243.754 L
+443.289 251.577 L
+443.614 251.016 L
+443.94 247.221 L
+444.265 242.652 L
+444.591 245.849 L
+444.916 247.668 L
+445.241 247.224 L
+445.567 240.015 L
+445.892 240.682 L
+446.218 231.39 L
+446.543 251.791 L
+446.869 244.432 L
+447.194 228.772 L
+447.52 245.255 L
+447.845 248.407 L
+448.171 235.789 L
+448.496 243.001 L
+448.822 237.704 L
+449.147 238.45 L
+449.473 242.752 L
+449.798 239.409 L
+450.124 227.862 L
+450.449 252.419 L
+450.775 240.884 L
+451.1 249.874 L
+451.426 237.987 L
+451.751 241.635 L
+452.077 239.76 L
+452.402 236.684 L
+452.728 235.729 L
+453.053 231.031 L
+453.379 234.462 L
+453.704 242.489 L
+454.03 236.482 L
+454.355 240.992 L
+454.681 242.865 L
+455.007 245.198 L
+455.332 247.579 L
+455.658 247.883 L
+455.983 236.044 L
+456.309 249.816 L
+456.634 249.431 L
+456.96 248.071 L
+457.285 252.679 L
+457.611 243.719 L
+457.936 253.776 L
+458.262 256.352 L
+458.587 246.438 L
+458.913 247.425 L
+459.238 251.942 L
+459.564 233.947 L
+459.889 256.044 L
+460.215 243.485 L
+460.54 237.525 L
+460.866 250.983 L
+461.191 246.165 L
+461.517 241.386 L
+461.842 245.877 L
+462.168 247.097 L
+462.493 256.523 L
+462.819 252.943 L
+463.144 254.809 L
+463.47 245.48 L
+463.795 246.977 L
+464.121 238.352 L
+464.446 238.652 L
+464.772 257.235 L
+465.097 243.947 L
+465.422 241.671 L
+465.748 242.307 L
+466.073 245.051 L
+466.399 246.202 L
+466.724 247.29 L
+467.05 245.656 L
+467.375 231.708 L
+467.701 242.715 L
+468.026 231.79 L
+468.352 243.771 L
+468.677 245.716 L
+469.003 250.795 L
+469.328 247.961 L
+469.654 248.469 L
+469.979 247.379 L
+470.305 247.214 L
+470.63 252.252 L
+470.956 248.767 L
+471.281 232.203 L
+471.607 232.029 L
+471.932 240.549 L
+472.258 233.753 L
+472.583 250.452 L
+472.909 233.258 L
+473.234 237.285 L
+473.56 239.705 L
+473.885 245.097 L
+474.211 239.66 L
+474.536 244.753 L
+474.862 242.225 L
+475.188 240.763 L
+475.513 244.527 L
+475.839 239.632 L
+476.164 237.104 L
+476.49 257.718 L
+476.815 245.988 L
+477.141 249.405 L
+477.466 249.86 L
+477.792 250.151 L
+478.117 250.08 L
+478.443 248.205 L
+478.768 243.867 L
+479.094 241.337 L
+479.419 244.588 L
+479.745 246.2 L
+480.07 244.274 L
+480.396 258.822 L
+480.721 246.358 L
+481.047 250.333 L
+481.372 246.381 L
+481.698 248.628 L
+482.023 242.79 L
+482.349 245.817 L
+482.674 243.301 L
+483 233.102 L
+483.325 252.486 L
+483.651 241.547 L
+483.976 239.529 L
+484.302 240.806 L
+484.627 239.051 L
+484.953 238.929 L
+485.278 238.979 L
+485.603 236.303 L
+485.929 237.067 L
+486.254 239.416 L
+486.58 237.016 L
+486.905 232.93 L
+487.231 248.058 L
+487.556 238.325 L
+487.882 248.63 L
+488.207 239.645 L
+488.533 246.384 L
+488.858 240.842 L
+489.184 242.886 L
+489.509 237.177 L
+489.835 245.227 L
+490.16 241.37 L
+490.486 238.84 L
+490.811 241.32 L
+491.137 245.799 L
+491.462 242.605 L
+491.788 240.605 L
+492.113 247.143 L
+492.439 245.375 L
+492.764 240.578 L
+493.09 248.425 L
+493.415 241.996 L
+493.741 246.093 L
+494.066 244.779 L
+494.392 245.278 L
+494.717 248.475 L
+495.043 251.769 L
+495.368 249.549 L
+495.694 248.104 L
+496.02 261 L
+496.345 251.448 L
+496.671 245.537 L
+496.996 249.107 L
+497.322 237.724 L
+497.647 234.017 L
+497.973 241.488 L
+498.298 251.335 L
+498.624 247.257 L
+498.949 243.771 L
+499.275 236.755 L
+499.6 246.279 L
+499.926 246.918 L
+500.251 252.37 L
+500.577 239.254 L
+500.902 242.749 L
+501.228 243.744 L
+501.553 240.005 L
+501.879 242.264 L
+502.204 247.8 L
+502.53 249.096 L
+502.855 248.297 L
+503.181 245.66 L
+503.506 245.243 L
+503.832 248.393 L
+504.157 251.45 L
+504.483 240.112 L
+504.808 246.701 L
+505.134 244.57 L
+505.459 249.862 L
+505.784 251.935 L
+506.11 246.517 L
+506.435 244.379 L
+506.761 247.148 L
+507.086 243.103 L
+507.412 255.896 L
+507.737 258.011 L
+508.063 250.468 L
+508.388 244.313 L
+508.714 245.951 L
+509.039 238.108 L
+509.365 245.323 L
+509.69 243.051 L
+510.016 246.727 L
+510.341 241.542 L
+510.667 242.644 L
+510.992 245.97 L
+511.318 239.86 L
+511.643 255.204 L
+511.969 235.937 L
+512.294 245.527 L
+512.62 241.761 L
+512.945 236.297 L
+513.271 239.539 L
+513.596 246.879 L
+513.922 250.52 L
+514.247 245.62 L
+514.573 246.257 L
+514.898 245.013 L
+515.224 236.883 L
+515.549 256.033 L
+515.875 243.164 L
+516.201 235.024 L
+516.526 240.09 L
+516.852 253.24 L
+517.177 232.661 L
+517.503 241.419 L
+517.828 244.271 L
+518.154 255.775 L
+518.479 241.683 L
+518.805 245.138 L
+519.13 239.991 L
+519.456 248.278 L
+519.781 242.523 L
+520.107 245.426 L
+520.432 246.668 L
+520.758 235.531 L
+521.083 246.35 L
+521.409 248.326 L
+521.734 242.854 L
+522.06 249.264 L
+522.385 242.2 L
+522.711 243.498 L
+523.036 240.487 L
+523.362 246.858 L
+523.687 232.836 L
+524.013 234.065 L
+524.338 239.749 L
+524.664 235.531 L
+524.989 243.027 L
+525.315 238.398 L
+525.64 238.974 L
+525.966 243.016 L
+526.291 241.407 L
+526.617 234.673 L
+526.942 242.806 L
+527.268 250.312 L
+527.593 237.113 L
+527.919 244.935 L
+528.244 249.078 L
+528.57 234.428 L
+528.895 237.762 L
+529.221 233.293 L
+529.546 249.363 L
+529.872 239.171 L
+530.197 243.446 L
+530.523 235.277 L
+530.848 237.09 L
+531.174 236.898 L
+531.499 240.9 L
+531.825 244.164 L
+532.15 245.684 L
+532.476 246.059 L
+532.801 243.49 L
+533.127 241.89 L
+533.452 240.639 L
+533.778 239.816 L
+534.103 245.912 L
+534.429 242.229 L
+534.754 242.139 L
+535.08 249.727 L
+535.405 252.154 L
+535.731 244.881 L
+536.056 239.742 L
+536.381 238.994 L
+536.707 249.711 L
+537.032 246.155 L
+537.358 244.543 L
+537.683 249.197 L
+538.009 242.843 L
+538.334 241.766 L
+538.66 244.514 L
+538.985 241.961 L
+539.311 236.109 L
+539.636 240.45 L
+539.962 246.934 L
+540.287 235.837 L
+540.613 246.915 L
+540.938 240.389 L
+541.264 239.346 L
+541.589 248.541 L
+541.915 234.513 L
+542.24 236.332 L
+542.566 240.127 L
+542.891 242.297 L
+543.217 242.595 L
+543.542 243.706 L
+543.868 238.634 L
+544.193 236.346 L
+544.519 245.054 L
+544.844 246.254 L
+545.17 255.2 L
+545.495 243.871 L
+545.821 246.431 L
+546.146 245.551 L
+546.472 254.217 L
+546.797 241.187 L
+547.123 241.644 L
+547.448 244.356 L
+547.774 240.843 L
+548.099 234.593 L
+548.425 240.787 L
+548.75 235.073 L
+549.076 240.19 L
+549.401 234.455 L
+549.727 242.826 L
+550.052 234.285 L
+550.378 237.45 L
+550.703 240.224 L
+551.029 244.609 L
+551.354 243.239 L
+551.68 238.441 L
+552.005 241.287 L
+552.331 251.362 L
+552.656 239.186 L
+552.982 247.737 L
+553.307 251.118 L
+553.633 233.056 L
+553.958 242.772 L
+554.284 244.25 L
+554.609 253.549 L
+554.935 242.187 L
+555.26 247.661 L
+555.586 244.635 L
+555.911 247.952 L
+556.237 240.125 L
+556.563 241.944 L
+556.888 240.873 L
+557.214 247.382 L
+557.539 232.83 L
+557.865 244.749 L
+558.19 242.25 L
+558.516 243.515 L
+558.841 244.476 L
+559.167 251.672 L
+559.492 242.628 L
+559.818 248.572 L
+560.143 243.663 L
+560.469 240.431 L
+560.794 235.858 L
+561.12 246.653 L
+561.445 242.601 L
+561.771 238.475 L
+562.096 239.588 L
+562.422 239.18 L
+562.747 239.36 L
+563.073 241.154 L
+563.398 233.861 L
+563.724 238.717 L
+564.049 247.819 L
+564.375 229.613 L
+564.7 241.543 L
+565.026 248.741 L
+565.351 235.192 L
+565.677 236.608 L
+566.002 238.985 L
+566.328 232.089 L
+566.653 240.284 L
+566.979 240.217 L
+567.304 243.142 L
+567.63 235.939 L
+567.955 238.418 L
+568.281 239.59 L
+568.606 242.468 L
+568.932 245.078 L
+569.257 235.916 L
+569.583 240.351 L
+569.908 238.644 L
+570.234 244.825 L
+570.559 244.284 L
+570.885 247.026 L
+571.21 246.922 L
+571.536 247.386 L
+571.861 252.933 L
+572.187 245.726 L
+572.512 241.728 L
+572.838 254.723 L
+573.163 241.706 L
+573.489 245.988 L
+573.814 244.48 L
+574.14 242.238 L
+574.465 243.513 L
+574.791 243.421 L
+575.116 239.32 L
+575.442 244.169 L
+575.767 245.112 L
+576.093 239.891 L
+576.418 244.693 L
+576.744 239.166 L
+577.069 237.601 L
+577.394 243.515 L
+577.72 239.297 L
+578.045 243.045 L
+578.371 240.45 L
+578.696 241.056 L
+579.022 243.11 L
+579.347 237.809 L
+579.673 246.481 L
+579.998 237.9 L
+580.324 244.173 L
+580.649 232.383 L
+580.975 233.712 L
+581.3 234.445 L
+581.626 239.217 L
+581.951 244.844 L
+582.277 236.383 L
+582.602 239.893 L
+582.928 247.237 L
+583.253 243.829 L
+583.579 242.643 L
+583.904 236.673 L
+584.23 245.682 L
+584.555 243.382 L
+584.881 240.085 L
+585.206 245.459 L
+585.532 248.09 L
+585.857 249.5 L
+586.183 249.017 L
+586.508 249.248 L
+586.834 244.532 L
+587.159 243.783 L
+587.485 246.561 L
+587.81 245.309 L
+588.136 250.367 L
+588.461 238.281 L
+588.787 241.184 L
+589.112 247.57 L
+589.438 241.859 L
+589.763 244.616 L
+590.089 254.794 L
+590.414 245.364 L
+590.74 250.205 L
+591.065 242.181 L
+591.391 253.028 L
+591.716 250.083 L
+592.042 250.134 L
+592.367 248.675 L
+592.693 247.282 L
+593.018 247.267 L
+593.344 247.889 L
+593.669 243.009 L
+593.995 245.356 L
+594.32 250.167 L
+594.646 250.83 L
+594.971 246.239 L
+595.297 239.143 L
+595.622 246.054 L
+595.948 251.475 L
+596.273 249.723 L
+596.599 245.115 L
+596.924 246.201 L
+597.25 246.939 L
+597.576 245.899 L
+597.901 238.37 L
+598.227 239.371 L
+598.552 247.032 L
+598.878 248.038 L
+599.203 232.514 L
+599.529 249.654 L
+599.854 250.489 L
+600.18 237.298 L
+600.505 243.868 L
+600.831 243.614 L
+601.156 244.002 L
+601.482 243.716 L
+601.807 247.707 L
+602.133 248.737 L
+602.458 246.906 L
+602.784 246.913 L
+603.109 244.279 L
+603.435 241.25 L
+603.76 245.989 L
+604.086 246.57 L
+604.411 248.766 L
+604.737 245.177 L
+605.062 238.846 L
+605.388 242.906 L
+605.713 244.04 L
+606.039 248.357 L
+606.364 247.601 L
+606.69 245.413 L
+607.015 243.682 L
+607.341 239.073 L
+607.666 245.313 L
+607.992 240.3 L
+608.317 243.331 L
+608.643 246.298 L
+608.968 247.131 L
+609.294 246.033 L
+609.619 251.823 L
+609.945 244.711 L
+610.27 254.676 L
+610.596 242.79 L
+610.921 244.422 L
+611.247 242.564 L
+611.572 245.805 L
+611.898 242.902 L
+612.223 251.29 L
+612.549 251.471 L
+612.874 246.62 L
+613.2 246.974 L
+613.525 244.938 L
+613.851 236.669 L
+614.176 247.247 L
+614.502 245.406 L
+614.827 238.623 L
+615.153 242.193 L
+615.478 239.971 L
+615.804 242.069 L
+616.129 238.364 L
+616.455 241.186 L
+616.78 237.483 L
+617.106 245.358 L
+617.431 246.995 L
+617.756 240.797 L
+618.082 240.868 L
+618.407 234.611 L
+618.733 241.286 L
+619.058 241.644 L
+619.384 236.716 L
+619.709 241.149 L
+620.035 241.986 L
+620.36 241.286 L
+620.686 243.707 L
+621.011 244.139 L
+621.337 250.018 L
+621.662 246.9 L
+621.988 249.503 L
+622.313 241.575 L
+622.639 243.937 L
+622.964 240.843 L
+623.29 247.066 L
+623.615 247.935 L
+623.941 247.26 L
+624.266 246.101 L
+624.592 247.912 L
+624.917 245.35 L
+625.243 243.91 L
+625.568 241.119 L
+625.894 247.794 L
+626.219 240.574 L
+626.545 240.267 L
+626.87 243.7 L
+627.196 251.344 L
+627.521 239.058 L
+627.847 249.996 L
+628.172 246.89 L
+628.498 250.151 L
+628.823 243.608 L
+629.149 246.541 L
+629.474 243.407 L
+629.8 248.741 L
+630.125 239.222 L
+630.451 238.396 L
+630.776 240.692 L
+631.102 245.591 L
+631.427 242.003 L
+631.753 249.665 L
+632.078 236.059 L
+632.404 239.246 L
+632.729 246.056 L
+633.055 237.425 L
+633.38 240.024 L
+633.706 245.163 L
+634.031 244.51 L
+634.357 244.999 L
+634.682 244.706 L
+635.008 240.826 L
+635.333 244.467 L
+635.659 245.831 L
+635.984 243.869 L
+636.31 247.675 L
+636.635 243.206 L
+636.961 239.748 L
+637.286 246.038 L
+637.612 243.277 L
+637.938 237.616 L
+638.263 240.467 L
+638.589 239.174 L
+638.914 244.325 L
+639.24 247.081 L
+639.565 244.219 L
+639.891 246.08 L
+640.216 244.919 L
+640.542 247.09 L
+640.867 247.903 L
+641.193 242.064 L
+641.518 245.573 L
+641.844 247.146 L
+642.169 247.177 L
+642.495 251.015 L
+642.82 245.742 L
+643.146 243.436 L
+643.471 243.968 L
+643.797 247.111 L
+644.122 241.6 L
+644.448 237.863 L
+644.773 237.696 L
+645.099 243.837 L
+645.424 245.541 L
+645.75 241.832 L
+646.075 242.514 L
+646.401 246.632 L
+646.726 252.317 L
+647.052 241.394 L
+647.377 242.204 L
+647.703 242.406 L
+648.028 243.021 L
+648.354 241.278 L
+648.679 239.926 L
+649.005 240.749 L
+649.33 247.348 L
+649.656 246.004 L
+649.981 245.805 L
+650.307 247.773 L
+650.632 245.726 L
+650.958 244.143 L
+651.283 245.406 L
+651.609 243.073 L
+651.934 242.929 L
+652.26 239.344 L
+652.585 241.973 L
+652.911 241.849 L
+653.236 243.227 L
+653.562 249.302 L
+653.887 241.398 L
+654.213 249.934 L
+654.538 248.095 L
+654.864 246.454 L
+655.189 243.883 L
+655.515 239.543 L
+655.84 239.248 L
+656.166 241.841 L
+656.491 241.611 L
+656.817 236.827 L
+657.142 243.707 L
+657.468 240.215 L
+657.793 245.551 L
+658.119 243.748 L
+658.444 244.764 L
+658.769 243.95 L
+659.095 241.018 L
+659.42 245.869 L
+659.746 245.302 L
+660.071 238.874 L
+660.397 247.228 L
+660.722 246.959 L
+661.048 240.672 L
+661.373 248.021 L
+661.699 244.959 L
+662.024 251.31 L
+662.35 247.053 L
+662.675 239.928 L
+663.001 236.667 L
+663.326 240.88 L
+663.652 236.518 L
+663.977 239.167 L
+664.303 241.291 L
+664.628 241.956 L
+664.954 240.714 L
+665.279 245.458 L
+665.605 240.163 L
+665.93 242.25 L
+666.256 241.857 L
+666.581 241.866 L
+666.907 241.314 L
+667.232 241.111 L
+667.558 242.073 L
+667.883 240.655 L
+668.209 245.57 L
+668.534 240.34 L
+668.86 245.827 L
+669.185 239.36 L
+669.511 244.122 L
+669.836 244.111 L
+670.162 240.442 L
+670.487 235.854 L
+670.813 241.289 L
+671.138 236.34 L
+671.464 243.632 L
+671.789 243.675 L
+672.115 244.837 L
+672.44 246.101 L
+672.766 244.731 L
+673.091 241.857 L
+673.417 247.006 L
+673.742 240.863 L
+674.068 240.828 L
+674.393 239.977 L
+674.719 243.354 L
+675.044 245.223 L
+675.37 238.981 L
+675.695 243.641 L
+676.021 241.854 L
+676.346 247.714 L
+676.672 240.588 L
+676.997 239.063 L
+677.323 242.737 L
+677.648 243.582 L
+677.974 239.994 L
+678.299 240.901 L
+678.625 245.147 L
+678.951 242.559 L
+679.276 245.078 L
+679.602 249.497 L
+679.927 239.741 L
+680.253 248.43 L
+680.578 246.154 L
+680.904 247.384 L
+681.229 247.182 L
+681.555 238.459 L
+681.88 243.147 L
+682.206 244.629 L
+682.531 241.504 L
+682.857 244.079 L
+683.182 239.303 L
+683.508 240.756 L
+683.833 240.544 L
+684.159 243.647 L
+684.484 248.424 L
+684.81 245.142 L
+685.135 241.28 L
+685.461 241.995 L
+685.786 240.608 L
+686.112 239.024 L
+686.437 244.167 L
+686.763 245.749 L
+687.088 247.084 L
+687.414 242.728 L
+687.739 246.395 L
+688.065 242.58 L
+688.39 242.827 L
+688.716 243.729 L
+689.041 248.061 L
+689.367 242.521 L
+689.692 236.555 L
+690.018 238.766 L
+690.343 247.402 L
+690.669 243.218 L
+690.994 246.728 L
+691.32 248.19 L
+691.645 242.287 L
+691.971 244.393 L
+692.296 242.679 L
+692.622 239.327 L
+692.947 246.75 L
+693.273 244.274 L
+693.598 241.762 L
+693.924 243.333 L
+694.249 238.929 L
+694.575 245.495 L
+694.9 241.693 L
+695.226 243.102 L
+695.551 243.159 L
+695.877 244.571 L
+696.202 244.622 L
+696.528 239.379 L
+696.853 236.36 L
+697.179 243.612 L
+697.504 241.697 L
+697.83 244.63 L
+698.155 242.637 L
+698.481 245.918 L
+698.806 250.961 L
+699.131 247.178 L
+699.457 243.699 L
+699.782 245.56 L
+700.108 246.486 L
+700.433 244.64 L
+700.759 246.518 L
+701.084 244.308 L
+701.41 248.022 L
+701.735 247.329 L
+702.061 245.164 L
+702.386 246.081 L
+702.712 245.133 L
+703.037 239.15 L
+703.363 245.844 L
+703.688 246.986 L
+704.014 241.531 L
+704.339 243.474 L
+704.665 246.153 L
+704.99 239.859 L
+705.316 241.653 L
+705.641 247.707 L
+705.967 246.103 L
+706.292 247.819 L
+706.618 242.466 L
+706.943 244.101 L
+707.269 247.297 L
+707.594 238.869 L
+707.92 239.772 L
+708.245 242.968 L
+708.571 245.683 L
+708.896 245.267 L
+709.222 243.099 L
+709.547 245.465 L
+709.873 246.722 L
+710.198 245.79 L
+710.524 244.979 L
+710.849 241.407 L
+711.175 243.967 L
+711.5 245.856 L
+711.826 245.589 L
+712.151 242.95 L
+712.477 244.329 L
+712.802 242.357 L
+713.128 242.915 L
+713.453 246.319 L
+713.779 243.549 L
+714.104 245.06 L
+714.43 246.708 L
+714.755 240.411 L
+715.081 241.589 L
+715.406 244.929 L
+715.732 244.976 L
+716.057 244.023 L
+716.383 247.611 L
+716.708 243.289 L
+717.034 245.733 L
+717.359 246.868 L
+717.685 244.133 L
+718.01 251.421 L
+718.336 246.53 L
+718.661 243.532 L
+718.987 248.868 L
+719.313 242.967 L
+719.638 246.683 L
+719.964 245.731 L
+720.289 246.835 L
+720.615 247.624 L
+720.94 243.616 L
+721.266 245.529 L
+721.591 243.188 L
+721.917 244.546 L
+722.242 242.118 L
+722.568 243.436 L
+722.893 242.063 L
+723.219 240.897 L
+723.544 244.481 L
+723.87 244.381 L
+724.195 243.225 L
+724.521 244.264 L
+724.846 243.575 L
+725.172 244.203 L
+725.497 241.788 L
+725.823 243.024 L
+726.148 242.125 L
+726.474 241.306 L
+726.799 243.299 L
+727.125 244.147 L
+727.45 243.373 L
+727.776 241.945 L
+728.101 245.946 L
+728.427 245.508 L
+728.752 242.861 L
+729.078 243.056 L
+729.403 242.605 L
+729.729 243.345 L
+730.054 243.618 L
+730.38 237.705 L
+730.705 246.265 L
+731.031 242.598 L
+731.356 245.83 L
+731.682 244.887 L
+732.007 243.86 L
+732.333 248.04 L
+732.658 244.61 L
+732.984 244.109 L
+733.309 244.371 L
+733.635 242.213 L
+733.96 241.982 L
+734.286 241.951 L
+734.611 245.801 L
+734.937 245.509 L
+735.262 246.551 L
+735.588 245.721 L
+735.913 244.027 L
+736.239 245.938 L
+736.564 242.854 L
+736.89 247.128 L
+737.215 244.627 L
+737.541 245.046 L
+737.866 243.665 L
+738.192 242.915 L
+738.517 244.762 L
+738.843 242.465 L
+739.168 244.577 L
+739.494 246.147 L
+739.819 243.611 L
+740.144 242.628 L
+740.47 241.595 L
+740.795 244.871 L
+741.121 243.895 L
+741.446 241.972 L
+741.772 244.05 L
+742.097 242.298 L
+742.423 245.19 L
+742.748 242.304 L
+743.074 242.108 L
+743.399 244.651 L
+743.725 243.555 L
+744.05 244.797 L
+744.376 242.298 L
+744.701 242.822 L
+745.027 245.822 L
+745.352 243.995 L
+745.678 245.042 L
+746.003 242.798 L
+746.329 243.706 L
+746.654 243.409 L
+746.98 243.346 L
+747.305 243.475 L
+747.631 242.855 L
+747.956 243.152 L
+748.282 243.104 L
+748.607 243.964 L
+748.933 242.774 L
+749.258 243.021 L
+749.584 243.071 L
+749.909 244.39 L
+750.235 243.319 L
+750.56 242.234 L
+750.886 244.192 L
+751.211 244.336 L
+751.537 244.541 L
+751.862 242.603 L
+752.188 242.898 L
+752.513 244.402 L
+752.839 242.546 L
+753.164 243.655 L
+753.49 243.599 L
+753.815 244.793 L
+754.141 244.825 L
+754.466 242.785 L
+754.792 244.451 L
+755.117 243.622 L
+755.443 244.053 L
+755.768 243.814 L
+756.094 243.641 L
+756.419 244.793 L
+756.745 243.771 L
+757.07 243.766 L
+757.396 244.048 L
+757.721 244.444 L
+758.047 244.555 L
+758.372 243.836 L
+758.698 244.054 L
+759.023 244.007 L
+759.349 244.106 L
+759.674 243.943 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+1 GC
+N
+109 560 M
+760 560 L
+760 346 L
+109 346 L
+cp
+f
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+109 560 M
+109 346 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+174.1 560 M
+174.1 346 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+239.2 560 M
+239.2 346 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+304.3 560 M
+304.3 346 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+369.4 560 M
+369.4 346 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+434.5 560 M
+434.5 346 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+499.6 560 M
+499.6 346 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+564.7 560 M
+564.7 346 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+629.8 560 M
+629.8 346 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+694.9 560 M
+694.9 346 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 560 M
+760 346 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 560 M
+109 560 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 517.2 M
+109 517.2 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 474.4 M
+109 474.4 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 431.6 M
+109 431.6 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 388.8 M
+109 388.8 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 346 M
+109 346 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 560 M
+760 560 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 346 M
+760 346 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 560 M
+109 553.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+174.1 560 M
+174.1 553.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+239.2 560 M
+239.2 553.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+304.3 560 M
+304.3 553.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+369.4 560 M
+369.4 553.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+434.5 560 M
+434.5 553.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+499.6 560 M
+499.6 553.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+564.7 560 M
+564.7 553.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+629.8 560 M
+629.8 553.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+694.9 560 M
+694.9 553.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 560 M
+760 553.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 346 M
+109 352.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+174.1 346 M
+174.1 352.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+239.2 346 M
+239.2 352.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+304.3 346 M
+304.3 352.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+369.4 346 M
+369.4 352.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+434.5 346 M
+434.5 352.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+499.6 346 M
+499.6 352.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+564.7 346 M
+564.7 352.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+629.8 346 M
+629.8 352.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+694.9 346 M
+694.9 352.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 346 M
+760 352.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 54.5 282.79999] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-23.5 19 moveto 
+1 -1 scale
+(-1000) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 87.05 282.79999] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-18.5 19 moveto 
+1 -1 scale
+(-800) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 119.6 282.79999] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-18.5 19 moveto 
+1 -1 scale
+(-600) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 152.14999 282.79999] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-18.5 19 moveto 
+1 -1 scale
+(-400) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 184.7 282.79999] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-18.5 19 moveto 
+1 -1 scale
+(-200) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 217.25 282.79999] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-5.5 19 moveto 
+1 -1 scale
+(0) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 249.8 282.79999] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-15.5 19 moveto 
+1 -1 scale
+(200) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 282.35001 282.79999] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-15.5 19 moveto 
+1 -1 scale
+(400) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 314.89999 282.79999] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-15.5 19 moveto 
+1 -1 scale
+(600) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 347.45001 282.79999] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-15.5 19 moveto 
+1 -1 scale
+(800) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 380 282.79999] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-20.5 19 moveto 
+1 -1 scale
+(1000) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 217.25015 294.79999] CT
+0.149 GC
+/Helvetica 19.8 F
+GS
+[1 0 0 1 0 0] CT
+-30 20 moveto 
+1 -1 scale
+(Retard) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 560 M
+109 346 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 560 M
+760 346 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 560 M
+115.51 560 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 517.2 M
+115.51 517.2 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 474.4 M
+115.51 474.4 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 431.6 M
+115.51 431.6 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 388.8 M
+115.51 388.8 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 346 M
+115.51 346 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 560 M
+753.49 560 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 517.2 M
+753.49 517.2 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 474.4 M
+753.49 474.4 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 431.6 M
+753.49 431.6 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 388.8 M
+753.49 388.8 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 346 M
+753.49 346 L
+S
+GR
+GS
+[0.5 0 0 0.5 51.7 280] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-11 7.5 moveto 
+1 -1 scale
+(0) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 51.7 258.60001] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-26 7.5 moveto 
+1 -1 scale
+(0.2) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 51.7 237.2] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-26 7.5 moveto 
+1 -1 scale
+(0.4) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 51.7 215.8] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-26 7.5 moveto 
+1 -1 scale
+(0.6) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 51.7 194.39999] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-26 7.5 moveto 
+1 -1 scale
+(0.8) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 51.7 173] CT
+0.149 GC
+/Helvetica 18 F
+GS
+[1 0 0 1 0 0] CT
+-11 7.5 moveto 
+1 -1 scale
+(1) t 
+GR
+GR
+GS
+[0 -0.5 0.5 0 36.69999 226.49995] CT
+0.149 GC
+/Helvetica 19.8 F
+GS
+[1 0 0 1 0 0] CT
+-44 -5 moveto 
+1 -1 scale
+(Amplitude) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 217.25021 171.7625] CT
+/Helvetica-Bold 19.8 F
+GS
+[1 0 0 1 0 0] CT
+-107.5 -5 moveto 
+1 -1 scale
+(Autocorr\351lation de xe2) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+109.326 559.927 M
+109.651 559.811 L
+109.977 559.79 L
+110.302 559.711 L
+110.628 559.539 L
+110.953 559.319 L
+111.279 559.263 L
+111.604 559.339 L
+111.929 558.936 L
+112.255 558.519 L
+112.58 558.493 L
+112.906 558.689 L
+113.231 558.688 L
+113.557 558.088 L
+113.882 557.892 L
+114.208 557.981 L
+114.534 557.682 L
+114.859 557.609 L
+115.185 557.233 L
+115.51 557.255 L
+115.836 557.087 L
+116.161 556.499 L
+116.487 556.686 L
+116.812 556.316 L
+117.137 556.279 L
+117.463 555.879 L
+117.788 556.04 L
+118.114 555.688 L
+118.439 555.367 L
+118.765 555.279 L
+119.09 555.158 L
+119.416 555.447 L
+119.742 554.338 L
+120.067 554.606 L
+120.393 554.034 L
+120.718 554.187 L
+121.044 553.856 L
+121.369 553.855 L
+121.695 554.148 L
+122.02 552.933 L
+122.345 552.569 L
+122.671 552.515 L
+122.996 552.701 L
+123.322 552.122 L
+123.647 552.019 L
+123.973 551.768 L
+124.299 551.75 L
+124.624 552.128 L
+124.95 551.491 L
+125.275 551.381 L
+125.601 551.033 L
+125.926 550.958 L
+126.252 550.761 L
+126.577 550.551 L
+126.902 549.964 L
+127.228 549.508 L
+127.553 549.385 L
+127.879 550.022 L
+128.204 549.728 L
+128.53 548.822 L
+128.855 549.048 L
+129.181 548.838 L
+129.507 548.881 L
+129.832 548.094 L
+130.158 548.009 L
+130.483 547.81 L
+130.809 547.91 L
+131.134 547.383 L
+131.46 547.059 L
+131.785 546.822 L
+132.111 547.083 L
+132.436 546.151 L
+132.762 547.414 L
+133.087 546.295 L
+133.413 546.662 L
+133.738 545.558 L
+134.064 545.966 L
+134.389 546.807 L
+134.714 545.481 L
+135.04 546.281 L
+135.365 545.393 L
+135.691 546.375 L
+136.016 545.186 L
+136.342 546.097 L
+136.667 545.951 L
+136.993 546.313 L
+137.318 545.455 L
+137.644 545.816 L
+137.969 545.679 L
+138.295 544.552 L
+138.62 545.173 L
+138.946 545.361 L
+139.271 545.047 L
+139.597 544.735 L
+139.923 544.462 L
+140.248 545.393 L
+140.574 545.927 L
+140.899 545.234 L
+141.225 544.712 L
+141.55 544.327 L
+141.876 543.909 L
+142.201 544.043 L
+142.527 543.598 L
+142.852 543.651 L
+143.178 543.818 L
+143.503 543.112 L
+143.829 543.327 L
+144.154 542.583 L
+144.48 542.753 L
+144.805 541.924 L
+145.13 542.141 L
+145.456 542.376 L
+145.781 541.523 L
+146.107 541.277 L
+146.432 541.56 L
+146.758 540.949 L
+147.083 540.397 L
+147.409 541.344 L
+147.734 541.021 L
+148.06 541.154 L
+148.385 540.581 L
+148.711 541.145 L
+149.036 540.615 L
+149.362 538.751 L
+149.688 539.782 L
+150.013 539.548 L
+150.339 539.156 L
+150.664 539.27 L
+150.99 538.242 L
+151.315 538.636 L
+151.641 538.631 L
+151.966 538.897 L
+152.292 538.318 L
+152.617 537.846 L
+152.943 537.182 L
+153.268 538.913 L
+153.594 538.241 L
+153.919 538.08 L
+154.245 536.995 L
+154.57 536.585 L
+154.895 537.449 L
+155.221 536.667 L
+155.546 537.933 L
+155.872 536.674 L
+156.197 535.734 L
+156.523 536.094 L
+156.848 536.971 L
+157.174 535.396 L
+157.499 535.665 L
+157.825 535.902 L
+158.15 536.252 L
+158.476 535.486 L
+158.801 534.865 L
+159.127 533.932 L
+159.452 534.984 L
+159.778 535.347 L
+160.104 535.252 L
+160.429 532.975 L
+160.755 532.694 L
+161.08 533.023 L
+161.406 531.92 L
+161.731 533.927 L
+162.057 531.679 L
+162.382 533.156 L
+162.708 532.516 L
+163.033 532.705 L
+163.359 531.403 L
+163.684 532.441 L
+164.01 532.008 L
+164.335 532.645 L
+164.661 532.077 L
+164.986 531.652 L
+165.311 531.393 L
+165.637 530.08 L
+165.962 532.47 L
+166.288 531.484 L
+166.613 531.302 L
+166.939 530.576 L
+167.264 531.544 L
+167.59 530.862 L
+167.915 531.202 L
+168.241 529.24 L
+168.566 531.313 L
+168.892 530.291 L
+169.217 529.103 L
+169.543 528.902 L
+169.868 530.02 L
+170.194 529.172 L
+170.52 528.868 L
+170.845 528.549 L
+171.171 530.609 L
+171.496 529.944 L
+171.822 530.522 L
+172.147 527.588 L
+172.473 527.388 L
+172.798 528.797 L
+173.124 529.564 L
+173.449 529.054 L
+173.775 527.589 L
+174.1 527.503 L
+174.426 527.793 L
+174.751 528.831 L
+175.077 528.198 L
+175.402 527.228 L
+175.727 526.799 L
+176.053 526.364 L
+176.378 525.376 L
+176.704 525.277 L
+177.029 525.808 L
+177.355 527.023 L
+177.68 526.197 L
+178.006 526.032 L
+178.331 523.865 L
+178.657 525.937 L
+178.982 524.822 L
+179.308 525.034 L
+179.633 524.917 L
+179.959 525.67 L
+180.285 523.049 L
+180.61 525.552 L
+180.936 524.68 L
+181.261 524.478 L
+181.587 524.074 L
+181.912 523.857 L
+182.238 523.955 L
+182.563 523.288 L
+182.889 522.055 L
+183.214 522.674 L
+183.54 523.609 L
+183.865 523.25 L
+184.191 521.272 L
+184.516 522.435 L
+184.842 521.763 L
+185.167 521.359 L
+185.492 521.657 L
+185.818 523.095 L
+186.143 522.171 L
+186.469 521.758 L
+186.794 520.381 L
+187.12 521.229 L
+187.445 521.603 L
+187.771 521.228 L
+188.096 520.979 L
+188.422 518.297 L
+188.747 520.54 L
+189.073 519.099 L
+189.398 520.631 L
+189.724 518.928 L
+190.049 519.54 L
+190.375 519.517 L
+190.701 518.971 L
+191.026 518.655 L
+191.352 518.242 L
+191.677 517.226 L
+192.003 518.004 L
+192.328 517.733 L
+192.654 518.762 L
+192.979 517.4 L
+193.305 517.767 L
+193.63 517.565 L
+193.956 517.244 L
+194.281 516.864 L
+194.607 517.736 L
+194.932 516.744 L
+195.258 516.807 L
+195.583 515.863 L
+195.908 516.406 L
+196.234 515.368 L
+196.559 515.957 L
+196.885 516.543 L
+197.21 515.551 L
+197.536 515.096 L
+197.861 514.176 L
+198.187 514.189 L
+198.512 514.502 L
+198.838 514.46 L
+199.163 513.996 L
+199.489 515.187 L
+199.814 512.455 L
+200.14 513.468 L
+200.465 513.432 L
+200.791 514.596 L
+201.117 512.423 L
+201.442 512.287 L
+201.768 512.79 L
+202.093 511.995 L
+202.419 512.437 L
+202.744 510.952 L
+203.07 511.586 L
+203.395 513.202 L
+203.721 512.018 L
+204.046 511.726 L
+204.372 512.292 L
+204.697 512.021 L
+205.023 510.644 L
+205.348 511.677 L
+205.673 510.572 L
+205.999 509.904 L
+206.324 509.692 L
+206.65 510.429 L
+206.975 508.563 L
+207.301 511.22 L
+207.626 508.494 L
+207.952 508.502 L
+208.277 508.824 L
+208.603 508.486 L
+208.928 508.259 L
+209.254 508.908 L
+209.579 508.685 L
+209.905 508.36 L
+210.23 506.578 L
+210.556 506.461 L
+210.882 507.493 L
+211.207 509.344 L
+211.533 508.66 L
+211.858 506.493 L
+212.184 507.078 L
+212.509 505.267 L
+212.835 506.205 L
+213.16 506.588 L
+213.486 506.075 L
+213.811 504.405 L
+214.137 507.399 L
+214.462 506.08 L
+214.788 505.772 L
+215.113 504.411 L
+215.439 506.026 L
+215.764 504.943 L
+216.089 503.673 L
+216.415 505.7 L
+216.74 505.825 L
+217.066 505.128 L
+217.391 505.383 L
+217.717 504.943 L
+218.042 505.81 L
+218.368 505.759 L
+218.693 505.024 L
+219.019 504.794 L
+219.344 502.88 L
+219.67 503.498 L
+219.995 505.787 L
+220.321 505.929 L
+220.646 503.072 L
+220.972 502.811 L
+221.298 501.995 L
+221.623 502.279 L
+221.949 502.385 L
+222.274 503.747 L
+222.6 503.427 L
+222.925 502.304 L
+223.251 501.249 L
+223.576 501.301 L
+223.902 500.769 L
+224.227 501.969 L
+224.553 501.839 L
+224.878 500.232 L
+225.204 502.004 L
+225.529 501.435 L
+225.855 502.634 L
+226.18 502.176 L
+226.505 502.498 L
+226.831 500.041 L
+227.156 501.862 L
+227.482 502.335 L
+227.807 501.536 L
+228.133 500.61 L
+228.458 501.517 L
+228.784 500.038 L
+229.109 502.195 L
+229.435 500.756 L
+229.76 499.51 L
+230.086 500.699 L
+230.411 501.93 L
+230.737 499.056 L
+231.063 501.916 L
+231.388 497.571 L
+231.714 499.625 L
+232.039 497.854 L
+232.365 498.083 L
+232.69 499.418 L
+233.016 497.581 L
+233.341 498.793 L
+233.667 498.305 L
+233.992 500.778 L
+234.318 499.629 L
+234.643 499.393 L
+234.969 497.378 L
+235.294 497.755 L
+235.62 496.373 L
+235.945 497.69 L
+236.27 498.64 L
+236.596 497.037 L
+236.921 496.622 L
+237.247 498.764 L
+237.572 497.147 L
+237.898 498.183 L
+238.223 496.274 L
+238.549 496.276 L
+238.874 498.262 L
+239.2 495.857 L
+239.525 495.942 L
+239.851 496.2 L
+240.176 497.069 L
+240.502 495.23 L
+240.827 494.38 L
+241.153 494.777 L
+241.479 495.835 L
+241.804 497.667 L
+242.13 494.859 L
+242.455 493.526 L
+242.781 491.909 L
+243.106 491.844 L
+243.432 494.02 L
+243.757 495.337 L
+244.083 493.766 L
+244.408 491.708 L
+244.734 494.012 L
+245.059 493.694 L
+245.385 492.223 L
+245.71 492.565 L
+246.036 492.118 L
+246.361 493.238 L
+246.686 492.209 L
+247.012 490.576 L
+247.337 491.652 L
+247.663 491.845 L
+247.988 492.061 L
+248.314 491.726 L
+248.639 490.927 L
+248.965 491.384 L
+249.29 491.226 L
+249.616 490.13 L
+249.941 489.97 L
+250.267 490.748 L
+250.592 489.493 L
+250.918 488.487 L
+251.243 488.944 L
+251.569 488.94 L
+251.895 488.234 L
+252.22 487.18 L
+252.546 488.217 L
+252.871 489.137 L
+253.197 487.809 L
+253.522 487.414 L
+253.848 487.699 L
+254.173 486.426 L
+254.499 485.48 L
+254.824 487.356 L
+255.15 487.616 L
+255.475 485.953 L
+255.801 486.25 L
+256.126 485.296 L
+256.452 484.853 L
+256.777 486.252 L
+257.103 486.503 L
+257.428 484.238 L
+257.754 486.085 L
+258.079 487.086 L
+258.405 484.2 L
+258.73 485.522 L
+259.056 484.878 L
+259.381 484.849 L
+259.707 484.661 L
+260.032 485.596 L
+260.358 483.5 L
+260.683 486.263 L
+261.009 484.439 L
+261.334 484.722 L
+261.659 481.772 L
+261.985 481.952 L
+262.31 480.503 L
+262.636 482.164 L
+262.961 482.034 L
+263.287 482.155 L
+263.612 483.577 L
+263.938 484.558 L
+264.263 481.11 L
+264.589 482.64 L
+264.914 481.74 L
+265.24 481.244 L
+265.565 482.545 L
+265.891 482.276 L
+266.216 482.379 L
+266.542 480.43 L
+266.867 482.769 L
+267.193 482.444 L
+267.518 482.367 L
+267.844 480.938 L
+268.169 479.36 L
+268.495 480.636 L
+268.82 481.164 L
+269.146 479.437 L
+269.471 480.164 L
+269.797 478.122 L
+270.122 480.976 L
+270.448 480.569 L
+270.773 481.657 L
+271.099 480.684 L
+271.424 478.583 L
+271.75 479.624 L
+272.076 479.968 L
+272.401 481.438 L
+272.727 480.345 L
+273.052 480.364 L
+273.378 478.712 L
+273.703 479.266 L
+274.029 479.732 L
+274.354 479.186 L
+274.68 478.093 L
+275.005 476.134 L
+275.331 480.319 L
+275.656 478.423 L
+275.982 478.42 L
+276.307 477.95 L
+276.633 478.312 L
+276.958 477.024 L
+277.284 479.571 L
+277.609 476.683 L
+277.935 475.898 L
+278.26 476.911 L
+278.586 476.913 L
+278.911 478.317 L
+279.237 476.472 L
+279.562 479.289 L
+279.888 475.893 L
+280.213 473.393 L
+280.539 476.038 L
+280.864 476.394 L
+281.19 477.095 L
+281.515 477.281 L
+281.841 476.465 L
+282.166 475.27 L
+282.491 475.776 L
+282.817 473.608 L
+283.142 476.142 L
+283.468 474.984 L
+283.793 474.86 L
+284.119 475.465 L
+284.444 475.428 L
+284.77 475.056 L
+285.095 472.982 L
+285.421 475.775 L
+285.746 475.529 L
+286.072 471.913 L
+286.397 473.6 L
+286.723 473.096 L
+287.048 472.532 L
+287.374 472.075 L
+287.699 472.03 L
+288.025 472.553 L
+288.35 471.605 L
+288.676 472.523 L
+289.001 470.015 L
+289.327 471.941 L
+289.652 473.159 L
+289.978 470.603 L
+290.303 472.799 L
+290.629 470.534 L
+290.954 472.444 L
+291.28 469.383 L
+291.605 470.4 L
+291.931 469.852 L
+292.257 469.778 L
+292.582 469.937 L
+292.908 468.891 L
+293.233 471.899 L
+293.559 470.639 L
+293.884 469.635 L
+294.21 469.759 L
+294.535 469.938 L
+294.861 467.655 L
+295.186 468.89 L
+295.512 466.515 L
+295.837 467.639 L
+296.163 468.626 L
+296.488 468.449 L
+296.814 469.016 L
+297.139 468.44 L
+297.465 468.244 L
+297.79 464.629 L
+298.116 464.949 L
+298.441 467.753 L
+298.767 466.349 L
+299.092 465.587 L
+299.418 464.75 L
+299.743 464.987 L
+300.069 463.682 L
+300.394 465.214 L
+300.72 466.945 L
+301.045 465.616 L
+301.371 466.153 L
+301.696 465.723 L
+302.022 464.107 L
+302.347 461.444 L
+302.672 463.255 L
+302.998 463.111 L
+303.323 465.341 L
+303.649 461.534 L
+303.974 464.21 L
+304.3 463.975 L
+304.625 461.683 L
+304.951 463.952 L
+305.276 462.36 L
+305.602 463.209 L
+305.927 462.486 L
+306.253 462.259 L
+306.578 460.9 L
+306.904 462.461 L
+307.229 460.938 L
+307.555 461.556 L
+307.88 461.052 L
+308.206 460.221 L
+308.531 462.943 L
+308.857 459.457 L
+309.182 462.064 L
+309.508 461.841 L
+309.833 461.986 L
+310.159 460.678 L
+310.484 461.598 L
+310.81 456.996 L
+311.135 458.113 L
+311.461 462.108 L
+311.786 460.749 L
+312.112 460.248 L
+312.438 459.555 L
+312.763 458.231 L
+313.089 460.794 L
+313.414 459.585 L
+313.74 459.285 L
+314.065 458.837 L
+314.391 459.36 L
+314.716 459.454 L
+315.042 457.439 L
+315.367 457.37 L
+315.693 456.916 L
+316.018 458.226 L
+316.344 458.626 L
+316.669 458.07 L
+316.995 458.167 L
+317.32 457.137 L
+317.646 457.688 L
+317.971 458.835 L
+318.297 458.131 L
+318.622 457.011 L
+318.948 457.511 L
+319.273 458.141 L
+319.599 457.546 L
+319.924 457.496 L
+320.25 458.691 L
+320.575 459.071 L
+320.901 456.83 L
+321.226 456.451 L
+321.552 456.178 L
+321.877 454.332 L
+322.203 454.356 L
+322.528 457.145 L
+322.853 456.042 L
+323.179 457.651 L
+323.504 453.772 L
+323.83 456.398 L
+324.155 456.063 L
+324.481 456.434 L
+324.806 455.354 L
+325.132 453.774 L
+325.457 452.78 L
+325.783 455.458 L
+326.108 455.092 L
+326.434 455.087 L
+326.759 457.259 L
+327.085 453.102 L
+327.41 456.153 L
+327.736 456.273 L
+328.061 452.667 L
+328.387 452.68 L
+328.712 451.879 L
+329.038 455.72 L
+329.363 455.436 L
+329.689 454.502 L
+330.014 451.353 L
+330.34 452.88 L
+330.665 450.052 L
+330.991 454.25 L
+331.316 451.137 L
+331.642 453.233 L
+331.967 452.938 L
+332.293 452.345 L
+332.618 450.2 L
+332.944 450.275 L
+333.27 449.903 L
+333.595 451.272 L
+333.921 450.203 L
+334.246 449.253 L
+334.572 451.677 L
+334.897 449.88 L
+335.223 452.537 L
+335.548 449.951 L
+335.874 449.924 L
+336.199 448.901 L
+336.525 451.912 L
+336.85 448.982 L
+337.176 448.009 L
+337.501 450.219 L
+337.827 449.043 L
+338.152 449.069 L
+338.478 448.965 L
+338.803 448.004 L
+339.129 449.349 L
+339.454 447.674 L
+339.78 449.909 L
+340.105 450.48 L
+340.431 447.522 L
+340.756 448.79 L
+341.082 447.418 L
+341.407 444.908 L
+341.733 445.095 L
+342.058 445.654 L
+342.384 445.465 L
+342.709 442.669 L
+343.034 443.918 L
+343.36 445.413 L
+343.685 445.807 L
+344.011 447.46 L
+344.336 443.118 L
+344.662 444.479 L
+344.987 443.088 L
+345.313 443.938 L
+345.638 443.992 L
+345.964 443.288 L
+346.289 445.943 L
+346.615 444.826 L
+346.94 446.102 L
+347.266 442.796 L
+347.591 442.471 L
+347.917 443.931 L
+348.242 441.691 L
+348.568 440.684 L
+348.893 442.04 L
+349.219 440.859 L
+349.544 442.177 L
+349.87 444.178 L
+350.195 441.269 L
+350.521 440.043 L
+350.846 442.809 L
+351.172 443.149 L
+351.497 440.751 L
+351.823 442.074 L
+352.148 442.014 L
+352.474 440.282 L
+352.799 440.87 L
+353.125 440.582 L
+353.451 438.881 L
+353.776 439.6 L
+354.102 439.131 L
+354.427 437.725 L
+354.753 437.974 L
+355.078 437.773 L
+355.404 439.611 L
+355.729 439.528 L
+356.055 438.53 L
+356.38 439.07 L
+356.706 439.497 L
+357.031 438.241 L
+357.357 437.899 L
+357.682 438.655 L
+358.008 437.91 L
+358.333 436.657 L
+358.659 437.087 L
+358.984 439.3 L
+359.31 437.198 L
+359.635 438.83 L
+359.961 435.892 L
+360.286 435.349 L
+360.612 437.386 L
+360.937 435.665 L
+361.263 436.838 L
+361.588 435.25 L
+361.914 436.678 L
+362.239 434.669 L
+362.565 437.056 L
+362.89 435.36 L
+363.216 435.969 L
+363.541 434.911 L
+363.866 435.295 L
+364.192 433.533 L
+364.517 432.868 L
+364.843 435.048 L
+365.168 435.313 L
+365.494 435.418 L
+365.819 434.439 L
+366.145 434.38 L
+366.47 433.021 L
+366.796 433.902 L
+367.121 436.117 L
+367.447 434.798 L
+367.772 430.589 L
+368.098 431.205 L
+368.423 434.228 L
+368.749 432.27 L
+369.074 432.498 L
+369.4 431.557 L
+369.725 434.634 L
+370.051 431.296 L
+370.376 432.059 L
+370.702 430.563 L
+371.027 432.237 L
+371.353 431.284 L
+371.678 430.196 L
+372.004 429.31 L
+372.329 428.172 L
+372.655 430.807 L
+372.98 429.648 L
+373.306 427.71 L
+373.632 430.576 L
+373.957 431.563 L
+374.283 430.982 L
+374.608 429.469 L
+374.934 429.616 L
+375.259 424.589 L
+375.585 428.592 L
+375.91 429.404 L
+376.236 429.405 L
+376.561 429.251 L
+376.887 430.795 L
+377.212 428.91 L
+377.538 429.153 L
+377.863 427.001 L
+378.189 428.511 L
+378.514 427.915 L
+378.84 426.265 L
+379.165 425.669 L
+379.491 428.684 L
+379.816 425.094 L
+380.142 424.031 L
+380.467 426.081 L
+380.793 423.705 L
+381.118 428.041 L
+381.444 424.917 L
+381.769 426.545 L
+382.095 425.416 L
+382.42 425.002 L
+382.746 427.394 L
+383.071 423.674 L
+383.397 425.12 L
+383.722 424.498 L
+384.047 423.085 L
+384.373 425.563 L
+384.698 425.424 L
+385.024 423.496 L
+385.349 424.528 L
+385.675 425.402 L
+386 423.733 L
+386.326 424.527 L
+386.651 423.659 L
+386.977 425.44 L
+387.302 420.36 L
+387.628 419.944 L
+387.953 420.36 L
+388.279 424.026 L
+388.604 421.894 L
+388.93 422.104 L
+389.255 421.184 L
+389.581 420.731 L
+389.906 420.607 L
+390.232 421.959 L
+390.557 423.276 L
+390.883 420.489 L
+391.208 420.876 L
+391.534 419.4 L
+391.859 420.707 L
+392.185 419.975 L
+392.51 419.418 L
+392.836 418.981 L
+393.161 420.14 L
+393.487 421.32 L
+393.813 418.72 L
+394.138 419.894 L
+394.464 419.747 L
+394.789 419.29 L
+395.115 416.532 L
+395.44 420.514 L
+395.766 422.656 L
+396.091 418.075 L
+396.417 416.689 L
+396.742 417.364 L
+397.068 418.233 L
+397.393 419.504 L
+397.719 417.803 L
+398.044 416.235 L
+398.37 418.944 L
+398.695 418.367 L
+399.021 418.963 L
+399.346 416.928 L
+399.672 414.967 L
+399.997 417.555 L
+400.323 417.42 L
+400.648 417.204 L
+400.974 416.788 L
+401.299 415.23 L
+401.625 413.527 L
+401.95 413.164 L
+402.276 414.176 L
+402.601 416.582 L
+402.927 415.537 L
+403.252 417.322 L
+403.578 414.333 L
+403.903 410.083 L
+404.228 411.14 L
+404.554 415.133 L
+404.879 412.951 L
+405.205 416.251 L
+405.53 412.556 L
+405.856 413.186 L
+406.181 416.909 L
+406.507 415.777 L
+406.832 412.922 L
+407.158 412.882 L
+407.483 414.374 L
+407.809 413.172 L
+408.134 415.716 L
+408.46 410.729 L
+408.785 413.208 L
+409.111 413.482 L
+409.436 413.608 L
+409.762 414.803 L
+410.087 414.864 L
+410.413 413.933 L
+410.738 412.674 L
+411.064 410.996 L
+411.389 412.873 L
+411.715 413.2 L
+412.04 413.404 L
+412.366 411.383 L
+412.691 408.889 L
+413.017 412.127 L
+413.342 414.145 L
+413.668 412.39 L
+413.993 411.678 L
+414.319 412.672 L
+414.645 408.851 L
+414.97 408.928 L
+415.296 408.145 L
+415.621 409.923 L
+415.947 413.484 L
+416.272 412.769 L
+416.598 408.644 L
+416.923 409.101 L
+417.249 407.849 L
+417.574 410.798 L
+417.9 413.116 L
+418.225 407.021 L
+418.551 406.676 L
+418.876 409.509 L
+419.202 407.855 L
+419.527 408.697 L
+419.853 405.345 L
+420.178 408.465 L
+420.504 410.151 L
+420.829 408.596 L
+421.155 407.577 L
+421.48 406.944 L
+421.806 405.712 L
+422.131 406.959 L
+422.457 404.601 L
+422.782 405.354 L
+423.108 403.666 L
+423.433 403.798 L
+423.759 401.995 L
+424.084 406.317 L
+424.409 404.512 L
+424.735 405.922 L
+425.06 404.986 L
+425.386 403.588 L
+425.711 401.87 L
+426.037 404.152 L
+426.362 402.005 L
+426.688 401.997 L
+427.013 402.925 L
+427.339 401.541 L
+427.664 401.124 L
+427.99 403.848 L
+428.315 402.284 L
+428.641 402.139 L
+428.966 403.331 L
+429.292 401.392 L
+429.617 401.774 L
+429.943 400.663 L
+430.268 399.985 L
+430.594 401.768 L
+430.919 401.066 L
+431.245 400.462 L
+431.57 399.451 L
+431.896 398.912 L
+432.221 400.25 L
+432.547 400.351 L
+432.872 398.755 L
+433.198 399.904 L
+433.523 402.321 L
+433.849 399.107 L
+434.174 398.109 L
+434.5 346 L
+434.826 398.109 L
+435.151 399.107 L
+435.477 402.321 L
+435.802 399.904 L
+436.128 398.755 L
+436.453 400.351 L
+436.779 400.25 L
+437.104 398.912 L
+437.43 399.451 L
+437.755 400.462 L
+438.081 401.066 L
+438.406 401.768 L
+438.732 399.985 L
+439.057 400.663 L
+439.383 401.774 L
+439.708 401.392 L
+440.034 403.331 L
+440.359 402.139 L
+440.685 402.284 L
+441.01 403.848 L
+441.336 401.124 L
+441.661 401.541 L
+441.987 402.925 L
+442.312 401.997 L
+442.638 402.005 L
+442.963 404.152 L
+443.289 401.87 L
+443.614 403.588 L
+443.94 404.986 L
+444.265 405.922 L
+444.591 404.512 L
+444.916 406.317 L
+445.241 401.995 L
+445.567 403.798 L
+445.892 403.666 L
+446.218 405.354 L
+446.543 404.601 L
+446.869 406.959 L
+447.194 405.712 L
+447.52 406.944 L
+447.845 407.577 L
+448.171 408.596 L
+448.496 410.151 L
+448.822 408.465 L
+449.147 405.345 L
+449.473 408.697 L
+449.798 407.855 L
+450.124 409.509 L
+450.449 406.676 L
+450.775 407.021 L
+451.1 413.116 L
+451.426 410.798 L
+451.751 407.849 L
+452.077 409.101 L
+452.402 408.644 L
+452.728 412.769 L
+453.053 413.484 L
+453.379 409.923 L
+453.704 408.145 L
+454.03 408.928 L
+454.355 408.851 L
+454.681 412.672 L
+455.007 411.678 L
+455.332 412.39 L
+455.658 414.145 L
+455.983 412.127 L
+456.309 408.889 L
+456.634 411.383 L
+456.96 413.404 L
+457.285 413.2 L
+457.611 412.873 L
+457.936 410.996 L
+458.262 412.674 L
+458.587 413.933 L
+458.913 414.864 L
+459.238 414.803 L
+459.564 413.608 L
+459.889 413.482 L
+460.215 413.208 L
+460.54 410.729 L
+460.866 415.716 L
+461.191 413.172 L
+461.517 414.374 L
+461.842 412.882 L
+462.168 412.922 L
+462.493 415.777 L
+462.819 416.909 L
+463.144 413.186 L
+463.47 412.556 L
+463.795 416.251 L
+464.121 412.951 L
+464.446 415.133 L
+464.772 411.14 L
+465.097 410.083 L
+465.422 414.333 L
+465.748 417.322 L
+466.073 415.537 L
+466.399 416.582 L
+466.724 414.176 L
+467.05 413.164 L
+467.375 413.527 L
+467.701 415.23 L
+468.026 416.788 L
+468.352 417.204 L
+468.677 417.42 L
+469.003 417.555 L
+469.328 414.967 L
+469.654 416.928 L
+469.979 418.963 L
+470.305 418.367 L
+470.63 418.944 L
+470.956 416.235 L
+471.281 417.803 L
+471.607 419.504 L
+471.932 418.233 L
+472.258 417.364 L
+472.583 416.689 L
+472.909 418.075 L
+473.234 422.656 L
+473.56 420.514 L
+473.885 416.532 L
+474.211 419.29 L
+474.536 419.747 L
+474.862 419.894 L
+475.188 418.72 L
+475.513 421.32 L
+475.839 420.14 L
+476.164 418.981 L
+476.49 419.418 L
+476.815 419.975 L
+477.141 420.707 L
+477.466 419.4 L
+477.792 420.876 L
+478.117 420.489 L
+478.443 423.276 L
+478.768 421.959 L
+479.094 420.607 L
+479.419 420.731 L
+479.745 421.184 L
+480.07 422.104 L
+480.396 421.894 L
+480.721 424.026 L
+481.047 420.36 L
+481.372 419.944 L
+481.698 420.36 L
+482.023 425.44 L
+482.349 423.659 L
+482.674 424.527 L
+483 423.733 L
+483.325 425.402 L
+483.651 424.528 L
+483.976 423.496 L
+484.302 425.424 L
+484.627 425.563 L
+484.953 423.085 L
+485.278 424.498 L
+485.603 425.12 L
+485.929 423.674 L
+486.254 427.394 L
+486.58 425.002 L
+486.905 425.416 L
+487.231 426.545 L
+487.556 424.917 L
+487.882 428.041 L
+488.207 423.705 L
+488.533 426.081 L
+488.858 424.031 L
+489.184 425.094 L
+489.509 428.684 L
+489.835 425.669 L
+490.16 426.265 L
+490.486 427.915 L
+490.811 428.511 L
+491.137 427.001 L
+491.462 429.153 L
+491.788 428.91 L
+492.113 430.795 L
+492.439 429.251 L
+492.764 429.405 L
+493.09 429.404 L
+493.415 428.592 L
+493.741 424.589 L
+494.066 429.616 L
+494.392 429.469 L
+494.717 430.982 L
+495.043 431.563 L
+495.368 430.576 L
+495.694 427.71 L
+496.02 429.648 L
+496.345 430.807 L
+496.671 428.172 L
+496.996 429.31 L
+497.322 430.196 L
+497.647 431.284 L
+497.973 432.237 L
+498.298 430.563 L
+498.624 432.059 L
+498.949 431.296 L
+499.275 434.634 L
+499.6 431.557 L
+499.926 432.498 L
+500.251 432.27 L
+500.577 434.228 L
+500.902 431.205 L
+501.228 430.589 L
+501.553 434.798 L
+501.879 436.117 L
+502.204 433.902 L
+502.53 433.021 L
+502.855 434.38 L
+503.181 434.439 L
+503.506 435.418 L
+503.832 435.313 L
+504.157 435.048 L
+504.483 432.868 L
+504.808 433.533 L
+505.134 435.295 L
+505.459 434.911 L
+505.784 435.969 L
+506.11 435.36 L
+506.435 437.056 L
+506.761 434.669 L
+507.086 436.678 L
+507.412 435.25 L
+507.737 436.838 L
+508.063 435.665 L
+508.388 437.386 L
+508.714 435.349 L
+509.039 435.892 L
+509.365 438.83 L
+509.69 437.198 L
+510.016 439.3 L
+510.341 437.087 L
+510.667 436.657 L
+510.992 437.91 L
+511.318 438.655 L
+511.643 437.899 L
+511.969 438.241 L
+512.294 439.497 L
+512.62 439.07 L
+512.945 438.53 L
+513.271 439.528 L
+513.596 439.611 L
+513.922 437.773 L
+514.247 437.974 L
+514.573 437.725 L
+514.898 439.131 L
+515.224 439.6 L
+515.549 438.881 L
+515.875 440.582 L
+516.201 440.87 L
+516.526 440.282 L
+516.852 442.014 L
+517.177 442.074 L
+517.503 440.751 L
+517.828 443.149 L
+518.154 442.809 L
+518.479 440.043 L
+518.805 441.269 L
+519.13 444.178 L
+519.456 442.177 L
+519.781 440.859 L
+520.107 442.04 L
+520.432 440.684 L
+520.758 441.691 L
+521.083 443.931 L
+521.409 442.471 L
+521.734 442.796 L
+522.06 446.102 L
+522.385 444.826 L
+522.711 445.943 L
+523.036 443.288 L
+523.362 443.992 L
+523.687 443.938 L
+524.013 443.088 L
+524.338 444.479 L
+524.664 443.118 L
+524.989 447.46 L
+525.315 445.807 L
+525.64 445.413 L
+525.966 443.918 L
+526.291 442.669 L
+526.617 445.465 L
+526.942 445.654 L
+527.268 445.095 L
+527.593 444.908 L
+527.919 447.418 L
+528.244 448.79 L
+528.57 447.522 L
+528.895 450.48 L
+529.221 449.909 L
+529.546 447.674 L
+529.872 449.349 L
+530.197 448.004 L
+530.523 448.965 L
+530.848 449.069 L
+531.174 449.043 L
+531.499 450.219 L
+531.825 448.009 L
+532.15 448.982 L
+532.476 451.912 L
+532.801 448.901 L
+533.127 449.924 L
+533.452 449.951 L
+533.778 452.537 L
+534.103 449.88 L
+534.429 451.677 L
+534.754 449.253 L
+535.08 450.203 L
+535.405 451.272 L
+535.731 449.903 L
+536.056 450.275 L
+536.381 450.2 L
+536.707 452.345 L
+537.032 452.938 L
+537.358 453.233 L
+537.683 451.137 L
+538.009 454.25 L
+538.334 450.052 L
+538.66 452.88 L
+538.985 451.353 L
+539.311 454.502 L
+539.636 455.436 L
+539.962 455.72 L
+540.287 451.879 L
+540.613 452.68 L
+540.938 452.667 L
+541.264 456.273 L
+541.589 456.153 L
+541.915 453.102 L
+542.24 457.259 L
+542.566 455.087 L
+542.891 455.092 L
+543.217 455.458 L
+543.542 452.78 L
+543.868 453.774 L
+544.193 455.354 L
+544.519 456.434 L
+544.844 456.063 L
+545.17 456.398 L
+545.495 453.772 L
+545.821 457.651 L
+546.146 456.042 L
+546.472 457.145 L
+546.797 454.356 L
+547.123 454.332 L
+547.448 456.178 L
+547.774 456.451 L
+548.099 456.83 L
+548.425 459.071 L
+548.75 458.691 L
+549.076 457.496 L
+549.401 457.546 L
+549.727 458.141 L
+550.052 457.511 L
+550.378 457.011 L
+550.703 458.131 L
+551.029 458.835 L
+551.354 457.688 L
+551.68 457.137 L
+552.005 458.167 L
+552.331 458.07 L
+552.656 458.626 L
+552.982 458.226 L
+553.307 456.916 L
+553.633 457.37 L
+553.958 457.439 L
+554.284 459.454 L
+554.609 459.36 L
+554.935 458.837 L
+555.26 459.285 L
+555.586 459.585 L
+555.911 460.794 L
+556.237 458.231 L
+556.563 459.555 L
+556.888 460.248 L
+557.214 460.749 L
+557.539 462.108 L
+557.865 458.113 L
+558.19 456.996 L
+558.516 461.598 L
+558.841 460.678 L
+559.167 461.986 L
+559.492 461.841 L
+559.818 462.064 L
+560.143 459.457 L
+560.469 462.943 L
+560.794 460.221 L
+561.12 461.052 L
+561.445 461.556 L
+561.771 460.938 L
+562.096 462.461 L
+562.422 460.9 L
+562.747 462.259 L
+563.073 462.486 L
+563.398 463.209 L
+563.724 462.36 L
+564.049 463.952 L
+564.375 461.683 L
+564.7 463.975 L
+565.026 464.21 L
+565.351 461.534 L
+565.677 465.341 L
+566.002 463.111 L
+566.328 463.255 L
+566.653 461.444 L
+566.979 464.107 L
+567.304 465.723 L
+567.63 466.153 L
+567.955 465.616 L
+568.281 466.945 L
+568.606 465.214 L
+568.932 463.682 L
+569.257 464.987 L
+569.583 464.75 L
+569.908 465.587 L
+570.234 466.349 L
+570.559 467.753 L
+570.885 464.949 L
+571.21 464.629 L
+571.536 468.244 L
+571.861 468.44 L
+572.187 469.016 L
+572.512 468.449 L
+572.838 468.626 L
+573.163 467.639 L
+573.489 466.515 L
+573.814 468.89 L
+574.14 467.655 L
+574.465 469.938 L
+574.791 469.759 L
+575.116 469.635 L
+575.442 470.639 L
+575.767 471.899 L
+576.093 468.891 L
+576.418 469.937 L
+576.744 469.778 L
+577.069 469.852 L
+577.394 470.4 L
+577.72 469.383 L
+578.045 472.444 L
+578.371 470.534 L
+578.696 472.799 L
+579.022 470.603 L
+579.347 473.159 L
+579.673 471.941 L
+579.998 470.015 L
+580.324 472.523 L
+580.649 471.605 L
+580.975 472.553 L
+581.3 472.03 L
+581.626 472.075 L
+581.951 472.532 L
+582.277 473.096 L
+582.602 473.6 L
+582.928 471.913 L
+583.253 475.529 L
+583.579 475.775 L
+583.904 472.982 L
+584.23 475.056 L
+584.555 475.428 L
+584.881 475.465 L
+585.206 474.86 L
+585.532 474.984 L
+585.857 476.142 L
+586.183 473.608 L
+586.508 475.776 L
+586.834 475.27 L
+587.159 476.465 L
+587.485 477.281 L
+587.81 477.095 L
+588.136 476.394 L
+588.461 476.038 L
+588.787 473.393 L
+589.112 475.893 L
+589.438 479.289 L
+589.763 476.472 L
+590.089 478.317 L
+590.414 476.913 L
+590.74 476.911 L
+591.065 475.898 L
+591.391 476.683 L
+591.716 479.571 L
+592.042 477.024 L
+592.367 478.312 L
+592.693 477.95 L
+593.018 478.42 L
+593.344 478.423 L
+593.669 480.319 L
+593.995 476.134 L
+594.32 478.093 L
+594.646 479.186 L
+594.971 479.732 L
+595.297 479.266 L
+595.622 478.712 L
+595.948 480.364 L
+596.273 480.345 L
+596.599 481.438 L
+596.924 479.968 L
+597.25 479.624 L
+597.576 478.583 L
+597.901 480.684 L
+598.227 481.657 L
+598.552 480.569 L
+598.878 480.976 L
+599.203 478.122 L
+599.529 480.164 L
+599.854 479.437 L
+600.18 481.164 L
+600.505 480.636 L
+600.831 479.36 L
+601.156 480.938 L
+601.482 482.367 L
+601.807 482.444 L
+602.133 482.769 L
+602.458 480.43 L
+602.784 482.379 L
+603.109 482.276 L
+603.435 482.545 L
+603.76 481.244 L
+604.086 481.74 L
+604.411 482.64 L
+604.737 481.11 L
+605.062 484.558 L
+605.388 483.577 L
+605.713 482.155 L
+606.039 482.034 L
+606.364 482.164 L
+606.69 480.503 L
+607.015 481.952 L
+607.341 481.772 L
+607.666 484.722 L
+607.992 484.439 L
+608.317 486.263 L
+608.643 483.5 L
+608.968 485.596 L
+609.294 484.661 L
+609.619 484.849 L
+609.945 484.878 L
+610.27 485.522 L
+610.596 484.2 L
+610.921 487.086 L
+611.247 486.085 L
+611.572 484.238 L
+611.898 486.503 L
+612.223 486.252 L
+612.549 484.853 L
+612.874 485.296 L
+613.2 486.25 L
+613.525 485.953 L
+613.851 487.616 L
+614.176 487.356 L
+614.502 485.48 L
+614.827 486.426 L
+615.153 487.699 L
+615.478 487.414 L
+615.804 487.809 L
+616.129 489.137 L
+616.455 488.217 L
+616.78 487.18 L
+617.106 488.234 L
+617.431 488.94 L
+617.756 488.944 L
+618.082 488.487 L
+618.407 489.493 L
+618.733 490.748 L
+619.058 489.97 L
+619.384 490.13 L
+619.709 491.226 L
+620.035 491.384 L
+620.36 490.927 L
+620.686 491.726 L
+621.011 492.061 L
+621.337 491.845 L
+621.662 491.652 L
+621.988 490.576 L
+622.313 492.209 L
+622.639 493.238 L
+622.964 492.118 L
+623.29 492.565 L
+623.615 492.223 L
+623.941 493.694 L
+624.266 494.012 L
+624.592 491.708 L
+624.917 493.766 L
+625.243 495.337 L
+625.568 494.02 L
+625.894 491.844 L
+626.219 491.909 L
+626.545 493.526 L
+626.87 494.859 L
+627.196 497.667 L
+627.521 495.835 L
+627.847 494.777 L
+628.172 494.38 L
+628.498 495.23 L
+628.823 497.069 L
+629.149 496.2 L
+629.474 495.942 L
+629.8 495.857 L
+630.125 498.262 L
+630.451 496.276 L
+630.776 496.274 L
+631.102 498.183 L
+631.427 497.147 L
+631.753 498.764 L
+632.078 496.622 L
+632.404 497.037 L
+632.729 498.64 L
+633.055 497.69 L
+633.38 496.373 L
+633.706 497.755 L
+634.031 497.378 L
+634.357 499.393 L
+634.682 499.629 L
+635.008 500.778 L
+635.333 498.305 L
+635.659 498.793 L
+635.984 497.581 L
+636.31 499.418 L
+636.635 498.083 L
+636.961 497.854 L
+637.286 499.625 L
+637.612 497.571 L
+637.938 501.916 L
+638.263 499.056 L
+638.589 501.93 L
+638.914 500.699 L
+639.24 499.51 L
+639.565 500.756 L
+639.891 502.195 L
+640.216 500.038 L
+640.542 501.517 L
+640.867 500.61 L
+641.193 501.536 L
+641.518 502.335 L
+641.844 501.862 L
+642.169 500.041 L
+642.495 502.498 L
+642.82 502.176 L
+643.146 502.634 L
+643.471 501.435 L
+643.797 502.004 L
+644.122 500.232 L
+644.448 501.839 L
+644.773 501.969 L
+645.099 500.769 L
+645.424 501.301 L
+645.75 501.249 L
+646.075 502.304 L
+646.401 503.427 L
+646.726 503.747 L
+647.052 502.385 L
+647.377 502.279 L
+647.703 501.995 L
+648.028 502.811 L
+648.354 503.072 L
+648.679 505.929 L
+649.005 505.787 L
+649.33 503.498 L
+649.656 502.88 L
+649.981 504.794 L
+650.307 505.024 L
+650.632 505.759 L
+650.958 505.81 L
+651.283 504.943 L
+651.609 505.383 L
+651.934 505.128 L
+652.26 505.825 L
+652.585 505.7 L
+652.911 503.673 L
+653.236 504.943 L
+653.562 506.026 L
+653.887 504.411 L
+654.213 505.772 L
+654.538 506.08 L
+654.864 507.399 L
+655.189 504.405 L
+655.515 506.075 L
+655.84 506.588 L
+656.166 506.205 L
+656.491 505.267 L
+656.817 507.078 L
+657.142 506.493 L
+657.468 508.66 L
+657.793 509.344 L
+658.119 507.493 L
+658.444 506.461 L
+658.769 506.578 L
+659.095 508.36 L
+659.42 508.685 L
+659.746 508.908 L
+660.071 508.259 L
+660.397 508.486 L
+660.722 508.824 L
+661.048 508.502 L
+661.373 508.494 L
+661.699 511.22 L
+662.024 508.563 L
+662.35 510.429 L
+662.675 509.692 L
+663.001 509.904 L
+663.326 510.572 L
+663.652 511.677 L
+663.977 510.644 L
+664.303 512.021 L
+664.628 512.292 L
+664.954 511.726 L
+665.279 512.018 L
+665.605 513.202 L
+665.93 511.586 L
+666.256 510.952 L
+666.581 512.437 L
+666.907 511.995 L
+667.232 512.79 L
+667.558 512.287 L
+667.883 512.423 L
+668.209 514.596 L
+668.534 513.432 L
+668.86 513.468 L
+669.185 512.455 L
+669.511 515.187 L
+669.836 513.996 L
+670.162 514.46 L
+670.487 514.502 L
+670.813 514.189 L
+671.138 514.176 L
+671.464 515.096 L
+671.789 515.551 L
+672.115 516.543 L
+672.44 515.957 L
+672.766 515.368 L
+673.091 516.406 L
+673.417 515.863 L
+673.742 516.807 L
+674.068 516.744 L
+674.393 517.736 L
+674.719 516.864 L
+675.044 517.244 L
+675.37 517.565 L
+675.695 517.767 L
+676.021 517.4 L
+676.346 518.762 L
+676.672 517.733 L
+676.997 518.004 L
+677.323 517.226 L
+677.648 518.242 L
+677.974 518.655 L
+678.299 518.971 L
+678.625 519.517 L
+678.951 519.54 L
+679.276 518.928 L
+679.602 520.631 L
+679.927 519.099 L
+680.253 520.54 L
+680.578 518.297 L
+680.904 520.979 L
+681.229 521.228 L
+681.555 521.603 L
+681.88 521.229 L
+682.206 520.381 L
+682.531 521.758 L
+682.857 522.171 L
+683.182 523.095 L
+683.508 521.657 L
+683.833 521.359 L
+684.159 521.763 L
+684.484 522.435 L
+684.81 521.272 L
+685.135 523.25 L
+685.461 523.609 L
+685.786 522.674 L
+686.112 522.055 L
+686.437 523.288 L
+686.763 523.955 L
+687.088 523.857 L
+687.414 524.074 L
+687.739 524.478 L
+688.065 524.68 L
+688.39 525.552 L
+688.716 523.049 L
+689.041 525.67 L
+689.367 524.917 L
+689.692 525.034 L
+690.018 524.822 L
+690.343 525.937 L
+690.669 523.865 L
+690.994 526.032 L
+691.32 526.197 L
+691.645 527.023 L
+691.971 525.808 L
+692.296 525.277 L
+692.622 525.376 L
+692.947 526.364 L
+693.273 526.799 L
+693.598 527.228 L
+693.924 528.198 L
+694.249 528.831 L
+694.575 527.793 L
+694.9 527.503 L
+695.226 527.589 L
+695.551 529.054 L
+695.877 529.564 L
+696.202 528.797 L
+696.528 527.388 L
+696.853 527.588 L
+697.179 530.522 L
+697.504 529.944 L
+697.83 530.609 L
+698.155 528.549 L
+698.481 528.868 L
+698.806 529.172 L
+699.131 530.02 L
+699.457 528.902 L
+699.782 529.103 L
+700.108 530.291 L
+700.433 531.313 L
+700.759 529.24 L
+701.084 531.202 L
+701.41 530.862 L
+701.735 531.544 L
+702.061 530.576 L
+702.386 531.302 L
+702.712 531.484 L
+703.037 532.47 L
+703.363 530.08 L
+703.688 531.393 L
+704.014 531.652 L
+704.339 532.077 L
+704.665 532.645 L
+704.99 532.008 L
+705.316 532.441 L
+705.641 531.403 L
+705.967 532.705 L
+706.292 532.516 L
+706.618 533.156 L
+706.943 531.679 L
+707.269 533.927 L
+707.594 531.92 L
+707.92 533.023 L
+708.245 532.694 L
+708.571 532.975 L
+708.896 535.252 L
+709.222 535.347 L
+709.547 534.984 L
+709.873 533.932 L
+710.198 534.865 L
+710.524 535.486 L
+710.849 536.252 L
+711.175 535.902 L
+711.5 535.665 L
+711.826 535.396 L
+712.151 536.971 L
+712.477 536.094 L
+712.802 535.734 L
+713.128 536.674 L
+713.453 537.933 L
+713.779 536.667 L
+714.104 537.449 L
+714.43 536.585 L
+714.755 536.995 L
+715.081 538.08 L
+715.406 538.241 L
+715.732 538.913 L
+716.057 537.182 L
+716.383 537.846 L
+716.708 538.318 L
+717.034 538.897 L
+717.359 538.631 L
+717.685 538.636 L
+718.01 538.242 L
+718.336 539.27 L
+718.661 539.156 L
+718.987 539.548 L
+719.313 539.782 L
+719.638 538.751 L
+719.964 540.615 L
+720.289 541.145 L
+720.615 540.581 L
+720.94 541.154 L
+721.266 541.021 L
+721.591 541.344 L
+721.917 540.397 L
+722.242 540.949 L
+722.568 541.56 L
+722.893 541.277 L
+723.219 541.523 L
+723.544 542.376 L
+723.87 542.141 L
+724.195 541.924 L
+724.521 542.753 L
+724.846 542.583 L
+725.172 543.327 L
+725.497 543.112 L
+725.823 543.818 L
+726.148 543.651 L
+726.474 543.598 L
+726.799 544.043 L
+727.125 543.909 L
+727.45 544.327 L
+727.776 544.712 L
+728.101 545.234 L
+728.427 545.927 L
+728.752 545.393 L
+729.078 544.462 L
+729.403 544.735 L
+729.729 545.047 L
+730.054 545.361 L
+730.38 545.173 L
+730.705 544.552 L
+731.031 545.679 L
+731.356 545.816 L
+731.682 545.455 L
+732.007 546.313 L
+732.333 545.951 L
+732.658 546.097 L
+732.984 545.186 L
+733.309 546.375 L
+733.635 545.393 L
+733.96 546.281 L
+734.286 545.481 L
+734.611 546.807 L
+734.937 545.966 L
+735.262 545.558 L
+735.588 546.662 L
+735.913 546.295 L
+736.239 547.414 L
+736.564 546.151 L
+736.89 547.083 L
+737.215 546.822 L
+737.541 547.059 L
+737.866 547.383 L
+738.192 547.91 L
+738.517 547.81 L
+738.843 548.009 L
+739.168 548.094 L
+739.494 548.881 L
+739.819 548.838 L
+740.144 549.048 L
+740.47 548.822 L
+740.795 549.728 L
+741.121 550.022 L
+741.446 549.385 L
+741.772 549.508 L
+742.097 549.964 L
+742.423 550.551 L
+742.748 550.761 L
+743.074 550.958 L
+743.399 551.033 L
+743.725 551.381 L
+744.05 551.491 L
+744.376 552.128 L
+744.701 551.75 L
+745.027 551.768 L
+745.352 552.019 L
+745.678 552.122 L
+746.003 552.701 L
+746.329 552.515 L
+746.654 552.569 L
+746.98 552.933 L
+747.305 554.148 L
+747.631 553.855 L
+747.956 553.856 L
+748.282 554.187 L
+748.607 554.034 L
+748.933 554.606 L
+749.258 554.338 L
+749.584 555.447 L
+749.909 555.158 L
+750.235 555.279 L
+750.56 555.367 L
+750.886 555.688 L
+751.211 556.04 L
+751.537 555.879 L
+751.862 556.279 L
+752.188 556.316 L
+752.513 556.686 L
+752.839 556.499 L
+753.164 557.087 L
+753.49 557.255 L
+753.815 557.233 L
+754.141 557.609 L
+754.466 557.682 L
+754.792 557.981 L
+755.117 557.892 L
+755.443 558.088 L
+755.768 558.688 L
+756.094 558.689 L
+756.419 558.493 L
+756.745 558.519 L
+757.07 558.936 L
+757.396 559.339 L
+757.721 559.263 L
+758.047 559.319 L
+758.372 559.539 L
+758.698 559.711 L
+759.023 559.79 L
+759.349 559.811 L
+759.674 559.927 L
+S
+GR
+%%Trailer
+%%Pages: 1
+%%EOF
diff --git a/Partie3/Q34.eps b/Partie3/Q34.eps
new file mode 100644
index 0000000000000000000000000000000000000000..e106cdea9f0250e10a9d213ddf2d101b4331b039
--- /dev/null
+++ b/Partie3/Q34.eps
@@ -0,0 +1,8138 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (MATLAB, The Mathworks, Inc. Version 24.2.0.2923080 \(R2024b\) Update 6. Operating System: Windows 10)
+%%Title: (C:/Users/infos/OneDrive/Bureau/IMT/Electrical Engineering IMT/SAR/synth_add/Q34.eps)
+%%CreationDate: 2025-05-16T14:50:54
+%%Pages: (atend)
+%%BoundingBox:     0     0   420   315
+%%LanguageLevel: 3
+%%EndComments
+%%BeginProlog
+%%BeginResource: procset (Apache XML Graphics Std ProcSet) 1.2 0
+%%Version: 1.2 0
+%%Copyright: (Copyright 2001-2003,2010 The Apache Software Foundation. License terms: http://www.apache.org/licenses/LICENSE-2.0)
+/bd{bind def}bind def
+/ld{load def}bd
+/GR/grestore ld
+/GS/gsave ld
+/RM/rmoveto ld
+/C/curveto ld
+/t/show ld
+/L/lineto ld
+/ML/setmiterlimit ld
+/CT/concat ld
+/f/fill ld
+/N/newpath ld
+/S/stroke ld
+/CC/setcmykcolor ld
+/A/ashow ld
+/cp/closepath ld
+/RC/setrgbcolor ld
+/LJ/setlinejoin ld
+/GC/setgray ld
+/LW/setlinewidth ld
+/M/moveto ld
+/re {4 2 roll M
+1 index 0 rlineto
+0 exch rlineto
+neg 0 rlineto
+cp } bd
+/_ctm matrix def
+/_tm matrix def
+/BT { _ctm currentmatrix pop matrix _tm copy pop 0 0 moveto } bd
+/ET { _ctm setmatrix } bd
+/iTm { _ctm setmatrix _tm concat } bd
+/Tm { _tm astore pop iTm 0 0 moveto } bd
+/ux 0.0 def
+/uy 0.0 def
+/F {
+  /Tp exch def
+  /Tf exch def
+  Tf findfont Tp scalefont setfont
+  /cf Tf def  /cs Tp def
+} bd
+/ULS {currentpoint /uy exch def /ux exch def} bd
+/ULE {
+  /Tcx currentpoint pop def
+  gsave
+  newpath
+  cf findfont cs scalefont dup
+  /FontMatrix get 0 get /Ts exch def /FontInfo get dup
+  /UnderlinePosition get Ts mul /To exch def
+  /UnderlineThickness get Ts mul /Tt exch def
+  ux uy To add moveto  Tcx uy To add lineto
+  Tt setlinewidth stroke
+  grestore
+} bd
+/OLE {
+  /Tcx currentpoint pop def
+  gsave
+  newpath
+  cf findfont cs scalefont dup
+  /FontMatrix get 0 get /Ts exch def /FontInfo get dup
+  /UnderlinePosition get Ts mul /To exch def
+  /UnderlineThickness get Ts mul /Tt exch def
+  ux uy To add cs add moveto Tcx uy To add cs add lineto
+  Tt setlinewidth stroke
+  grestore
+} bd
+/SOE {
+  /Tcx currentpoint pop def
+  gsave
+  newpath
+  cf findfont cs scalefont dup
+  /FontMatrix get 0 get /Ts exch def /FontInfo get dup
+  /UnderlinePosition get Ts mul /To exch def
+  /UnderlineThickness get Ts mul /Tt exch def
+  ux uy To add cs 10 mul 26 idiv add moveto Tcx uy To add cs 10 mul 26 idiv add lineto
+  Tt setlinewidth stroke
+  grestore
+} bd
+/QT {
+/Y22 exch store
+/X22 exch store
+/Y21 exch store
+/X21 exch store
+currentpoint
+/Y21 load 2 mul add 3 div exch
+/X21 load 2 mul add 3 div exch
+/X21 load 2 mul /X22 load add 3 div
+/Y21 load 2 mul /Y22 load add 3 div
+/X22 load /Y22 load curveto
+} bd
+/SSPD {
+dup length /d exch dict def
+{
+/v exch def
+/k exch def
+currentpagedevice k known {
+/cpdv currentpagedevice k get def
+v cpdv ne {
+/upd false def
+/nullv v type /nulltype eq def
+/nullcpdv cpdv type /nulltype eq def
+nullv nullcpdv or
+{
+/upd true def
+} {
+/sametype v type cpdv type eq def
+sametype {
+v type /arraytype eq {
+/vlen v length def
+/cpdvlen cpdv length def
+vlen cpdvlen eq {
+0 1 vlen 1 sub {
+/i exch def
+/obj v i get def
+/cpdobj cpdv i get def
+obj cpdobj ne {
+/upd true def
+exit
+} if
+} for
+} {
+/upd true def
+} ifelse
+} {
+v type /dicttype eq {
+v {
+/dv exch def
+/dk exch def
+/cpddv cpdv dk get def
+dv cpddv ne {
+/upd true def
+exit
+} if
+} forall
+} {
+/upd true def
+} ifelse
+} ifelse
+} if
+} ifelse
+upd true eq {
+d k v put
+} if
+} if
+} if
+} forall
+d length 0 gt {
+d setpagedevice
+} if
+} bd
+/RE { % /NewFontName [NewEncodingArray] /FontName RE -
+  findfont dup length dict begin
+  {
+    1 index /FID ne
+    {def} {pop pop} ifelse
+  } forall
+  /Encoding exch def
+  /FontName 1 index def
+  currentdict definefont pop
+  end
+} bind def
+%%EndResource
+%%BeginResource: procset (Apache XML Graphics EPS ProcSet) 1.0 0
+%%Version: 1.0 0
+%%Copyright: (Copyright 2002-2003 The Apache Software Foundation. License terms: http://www.apache.org/licenses/LICENSE-2.0)
+/BeginEPSF { %def
+/b4_Inc_state save def         % Save state for cleanup
+/dict_count countdictstack def % Count objects on dict stack
+/op_count count 1 sub def      % Count objects on operand stack
+userdict begin                 % Push userdict on dict stack
+/showpage { } def              % Redefine showpage, { } = null proc
+0 setgray 0 setlinecap         % Prepare graphics state
+1 setlinewidth 0 setlinejoin
+10 setmiterlimit [ ] 0 setdash newpath
+/languagelevel where           % If level not equal to 1 then
+{pop languagelevel             % set strokeadjust and
+1 ne                           % overprint to their defaults.
+{false setstrokeadjust false setoverprint
+} if
+} if
+} bd
+/EndEPSF { %def
+count op_count sub {pop} repeat            % Clean up stacks
+countdictstack dict_count sub {end} repeat
+b4_Inc_state restore
+} bd
+%%EndResource
+%FOPBeginFontDict
+%%IncludeResource: font Courier-Oblique
+%%IncludeResource: font Courier-BoldOblique
+%%IncludeResource: font Courier-Bold
+%%IncludeResource: font ZapfDingbats
+%%IncludeResource: font Symbol
+%%IncludeResource: font Helvetica
+%%IncludeResource: font Helvetica-Oblique
+%%IncludeResource: font Helvetica-Bold
+%%IncludeResource: font Helvetica-BoldOblique
+%%IncludeResource: font Times-Roman
+%%IncludeResource: font Times-Italic
+%%IncludeResource: font Times-Bold
+%%IncludeResource: font Times-BoldItalic
+%%IncludeResource: font Courier
+%FOPEndFontDict
+%%BeginResource: encoding WinAnsiEncoding
+/WinAnsiEncoding [
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /space /exclam /quotedbl
+/numbersign /dollar /percent /ampersand /quotesingle
+/parenleft /parenright /asterisk /plus /comma
+/hyphen /period /slash /zero /one
+/two /three /four /five /six
+/seven /eight /nine /colon /semicolon
+/less /equal /greater /question /at
+/A /B /C /D /E
+/F /G /H /I /J
+/K /L /M /N /O
+/P /Q /R /S /T
+/U /V /W /X /Y
+/Z /bracketleft /backslash /bracketright /asciicircum
+/underscore /quoteleft /a /b /c
+/d /e /f /g /h
+/i /j /k /l /m
+/n /o /p /q /r
+/s /t /u /v /w
+/x /y /z /braceleft /bar
+/braceright /asciitilde /bullet /Euro /bullet
+/quotesinglbase /florin /quotedblbase /ellipsis /dagger
+/daggerdbl /circumflex /perthousand /Scaron /guilsinglleft
+/OE /bullet /Zcaron /bullet /bullet
+/quoteleft /quoteright /quotedblleft /quotedblright /bullet
+/endash /emdash /asciitilde /trademark /scaron
+/guilsinglright /oe /bullet /zcaron /Ydieresis
+/space /exclamdown /cent /sterling /currency
+/yen /brokenbar /section /dieresis /copyright
+/ordfeminine /guillemotleft /logicalnot /sfthyphen /registered
+/macron /degree /plusminus /twosuperior /threesuperior
+/acute /mu /paragraph /middot /cedilla
+/onesuperior /ordmasculine /guillemotright /onequarter /onehalf
+/threequarters /questiondown /Agrave /Aacute /Acircumflex
+/Atilde /Adieresis /Aring /AE /Ccedilla
+/Egrave /Eacute /Ecircumflex /Edieresis /Igrave
+/Iacute /Icircumflex /Idieresis /Eth /Ntilde
+/Ograve /Oacute /Ocircumflex /Otilde /Odieresis
+/multiply /Oslash /Ugrave /Uacute /Ucircumflex
+/Udieresis /Yacute /Thorn /germandbls /agrave
+/aacute /acircumflex /atilde /adieresis /aring
+/ae /ccedilla /egrave /eacute /ecircumflex
+/edieresis /igrave /iacute /icircumflex /idieresis
+/eth /ntilde /ograve /oacute /ocircumflex
+/otilde /odieresis /divide /oslash /ugrave
+/uacute /ucircumflex /udieresis /yacute /thorn
+/ydieresis
+] def
+%%EndResource
+%FOPBeginFontReencode
+/Courier-Oblique findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Courier-Oblique exch definefont pop
+/Courier-BoldOblique findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Courier-BoldOblique exch definefont pop
+/Courier-Bold findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Courier-Bold exch definefont pop
+/Helvetica findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Helvetica exch definefont pop
+/Helvetica-Oblique findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Helvetica-Oblique exch definefont pop
+/Helvetica-Bold findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Helvetica-Bold exch definefont pop
+/Helvetica-BoldOblique findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Helvetica-BoldOblique exch definefont pop
+/Times-Roman findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Times-Roman exch definefont pop
+/Times-Italic findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Times-Italic exch definefont pop
+/Times-Bold findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Times-Bold exch definefont pop
+/Times-BoldItalic findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Times-BoldItalic exch definefont pop
+/Courier findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Courier exch definefont pop
+%FOPEndFontReencode
+%%EndProlog
+%%Page: 1 1
+%%PageBoundingBox: 0 0 420 315
+%%BeginPageSetup
+[1 0 0 -1 0 315] CT
+%%EndPageSetup
+GS
+[0.5 0 0 0.5 0 0] CT
+1 GC
+N
+0 0 840 630 re
+f
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+1 GC
+N
+0 0 840 630 re
+f
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+1 GC
+N
+109 561 M
+760 561 L
+760 47 L
+109 47 L
+cp
+f
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+109 561 M
+109 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+190.375 561 M
+190.375 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+271.75 561 M
+271.75 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+353.125 561 M
+353.125 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+434.5 561 M
+434.5 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+515.875 561 M
+515.875 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+597.25 561 M
+597.25 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+678.625 561 M
+678.625 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 561 M
+760 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 561 M
+109 561 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 503.889 M
+109 503.889 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 446.778 M
+109 446.778 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 389.667 M
+109 389.667 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 332.556 M
+109 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 275.444 M
+109 275.444 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 218.333 M
+109 218.333 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 161.222 M
+109 161.222 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 104.111 M
+109 104.111 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 47 M
+109 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 561 M
+760 561 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 47 M
+760 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 561 M
+109 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+190.375 561 M
+190.375 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+271.75 561 M
+271.75 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+353.125 561 M
+353.125 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+434.5 561 M
+434.5 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+515.875 561 M
+515.875 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+597.25 561 M
+597.25 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+678.625 561 M
+678.625 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 561 M
+760 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 47 M
+109 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+190.375 47 M
+190.375 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+271.75 47 M
+271.75 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+353.125 47 M
+353.125 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+434.5 47 M
+434.5 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+515.875 47 M
+515.875 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+597.25 47 M
+597.25 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+678.625 47 M
+678.625 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 47 M
+760 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 54.5 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-9 21 moveto 
+1 -1 scale
+(-2) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 95.1875 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-17.5 21 moveto 
+1 -1 scale
+(-1.5) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 135.875 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-9 21 moveto 
+1 -1 scale
+(-1) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 176.5625 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-17.5 21 moveto 
+1 -1 scale
+(-0.5) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 217.25 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-6 21 moveto 
+1 -1 scale
+(0) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 257.9375 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-14 21 moveto 
+1 -1 scale
+(0.5) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 298.625 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-6 21 moveto 
+1 -1 scale
+(1) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 339.3125 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-14 21 moveto 
+1 -1 scale
+(1.5) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 380 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-6 21 moveto 
+1 -1 scale
+(2) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 217.25015 298.5] CT
+0.149 GC
+/Helvetica 22 F
+GS
+[1 0 0 1 0 0] CT
+-49.5 23 moveto 
+1 -1 scale
+(Temps \(s\)) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 561 M
+109 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 561 M
+760 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 561 M
+115.51 561 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 503.889 M
+115.51 503.889 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 446.778 M
+115.51 446.778 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 389.667 M
+115.51 389.667 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 332.556 M
+115.51 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 275.444 M
+115.51 275.444 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 218.333 M
+115.51 218.333 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 161.222 M
+115.51 161.222 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 104.111 M
+115.51 104.111 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 47 M
+115.51 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 561 M
+753.49 561 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 503.889 M
+753.49 503.889 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 446.778 M
+753.49 446.778 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 389.667 M
+753.49 389.667 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 332.556 M
+753.49 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 275.444 M
+753.49 275.444 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 218.333 M
+753.49 218.333 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 161.222 M
+753.49 161.222 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 104.111 M
+753.49 104.111 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 47 M
+753.49 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 50.49999 280.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-35 8 moveto 
+1 -1 scale
+(-0.8) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.49999 251.94444] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-35 8 moveto 
+1 -1 scale
+(-0.6) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.49999 223.38889] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-35 8 moveto 
+1 -1 scale
+(-0.4) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.49999 194.83333] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-35 8 moveto 
+1 -1 scale
+(-0.2) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.49999 166.27777] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-12 8 moveto 
+1 -1 scale
+(0) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.49999 137.72223] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-28 8 moveto 
+1 -1 scale
+(0.2) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.49999 109.16666] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-28 8 moveto 
+1 -1 scale
+(0.4) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.49999 80.61111] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-28 8 moveto 
+1 -1 scale
+(0.6) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.49999 52.05555] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-28 8 moveto 
+1 -1 scale
+(0.8) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.49999 23.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-12 8 moveto 
+1 -1 scale
+(1) t 
+GR
+GR
+GS
+[0 -0.5 0.5 0 30 151.99988] CT
+0.149 GC
+/Helvetica 22 F
+GS
+[1 0 0 1 0 0] CT
+-90.5 -5 moveto 
+1 -1 scale
+(Amplitude estim\351e) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 217.25021 22.125] CT
+/Helvetica-Bold 22 F
+GS
+[1 0 0 1 0 0] CT
+-230 -5 moveto 
+1 -1 scale
+(R\351ponse impulsionnelle estim\351e de la pi\350ce) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+135.579 332.556 M
+135.749 332.556 L
+135.752 332.556 L
+136 332.556 L
+136.003 332.556 L
+136.247 332.556 L
+136.25 332.556 L
+136.498 332.556 L
+136.501 332.556 L
+136.749 332.556 L
+136.752 332.556 L
+137 332.556 L
+137.003 332.556 L
+137.247 332.556 L
+137.251 332.556 L
+137.498 332.556 L
+137.502 332.556 L
+137.749 332.556 L
+137.752 332.556 L
+138 332.556 L
+138.003 332.556 L
+138.247 332.556 L
+138.251 332.556 L
+138.498 332.556 L
+138.502 332.556 L
+138.749 332.556 L
+138.753 332.556 L
+139 332.556 L
+139.004 332.556 L
+139.247 332.556 L
+139.251 332.556 L
+139.498 332.556 L
+139.502 332.556 L
+139.749 332.556 L
+139.753 332.556 L
+139.996 332.556 L
+140 332.556 L
+140.247 332.556 L
+140.251 332.556 L
+140.498 332.556 L
+140.502 332.556 L
+140.749 332.556 L
+140.753 332.556 L
+140.996 332.556 L
+141 332.556 L
+141.247 332.556 L
+141.251 332.556 L
+141.498 332.556 L
+141.502 332.556 L
+141.749 332.556 L
+141.753 332.556 L
+141.997 332.556 L
+142 332.556 L
+142.247 332.556 L
+142.251 332.556 L
+142.498 332.556 L
+142.502 332.556 L
+142.749 332.556 L
+142.753 332.556 L
+142.997 332.556 L
+143 332.556 L
+143.248 332.556 L
+143.251 332.556 L
+143.499 332.556 L
+143.502 332.556 L
+143.75 332.556 L
+143.753 332.556 L
+143.997 332.556 L
+144 332.556 L
+144.248 332.556 L
+144.251 332.556 L
+144.499 332.556 L
+144.502 332.556 L
+144.75 332.556 L
+144.753 332.556 L
+144.997 332.556 L
+145.001 332.556 L
+145.248 332.556 L
+145.252 332.556 L
+145.499 332.556 L
+145.503 332.556 L
+145.75 332.556 L
+145.753 332.556 L
+145.997 332.556 L
+146.001 332.556 L
+146.248 332.556 L
+146.252 332.556 L
+146.499 332.556 L
+146.503 332.556 L
+146.75 332.556 L
+146.754 332.556 L
+146.997 332.556 L
+147.001 332.556 L
+147.248 332.556 L
+147.252 332.556 L
+147.499 332.556 L
+147.503 332.556 L
+147.746 332.556 L
+147.75 332.556 L
+147.997 332.556 L
+148.001 332.556 L
+148.248 332.556 L
+148.252 332.556 L
+148.499 332.556 L
+148.503 332.556 L
+148.746 332.556 L
+148.75 332.556 L
+148.997 332.556 L
+149.001 332.556 L
+149.248 332.556 L
+149.252 332.556 L
+149.499 332.556 L
+149.503 332.556 L
+149.747 332.556 L
+149.75 332.556 L
+149.997 332.556 L
+150.001 332.556 L
+150.248 332.556 L
+150.252 332.556 L
+150.499 332.556 L
+150.503 332.556 L
+150.747 332.556 L
+150.75 332.556 L
+150.998 332.556 L
+151.001 332.556 L
+151.249 332.556 L
+151.252 332.556 L
+151.5 332.556 L
+151.503 332.556 L
+151.747 332.556 L
+151.75 332.556 L
+151.998 332.556 L
+152.001 332.556 L
+152.249 332.556 L
+152.252 332.556 L
+152.5 332.556 L
+152.503 332.556 L
+152.747 332.556 L
+152.751 332.556 L
+152.998 332.556 L
+153.002 332.556 L
+153.249 332.556 L
+153.252 332.556 L
+153.5 332.556 L
+153.503 332.556 L
+153.747 332.556 L
+153.751 332.556 L
+153.998 332.556 L
+154.002 332.556 L
+154.249 332.556 L
+154.253 332.556 L
+154.5 332.556 L
+154.504 332.556 L
+154.747 332.556 L
+154.751 332.556 L
+154.998 332.556 L
+155.002 332.556 L
+155.249 332.556 L
+155.253 332.556 L
+155.496 332.556 L
+155.5 332.556 L
+155.747 332.556 L
+155.751 332.556 L
+155.998 332.556 L
+156.002 332.556 L
+156.249 332.556 L
+156.253 332.556 L
+156.496 332.556 L
+156.5 332.556 L
+156.747 332.556 L
+156.751 332.556 L
+156.998 332.556 L
+157.002 332.556 L
+157.249 332.556 L
+157.253 332.556 L
+157.497 332.556 L
+157.5 332.556 L
+157.747 332.556 L
+157.751 332.556 L
+157.998 332.556 L
+158.002 332.556 L
+158.249 332.556 L
+158.253 332.556 L
+158.497 332.556 L
+158.5 332.556 L
+158.748 332.556 L
+158.751 332.556 L
+158.999 332.556 L
+159.002 332.556 L
+159.25 332.556 L
+159.253 332.556 L
+159.497 332.556 L
+159.5 332.556 L
+159.748 332.556 L
+159.751 332.556 L
+159.999 332.556 L
+160.002 332.556 L
+160.25 332.556 L
+160.253 332.556 L
+160.497 332.556 L
+160.501 332.556 L
+160.748 332.556 L
+160.752 332.556 L
+160.999 332.556 L
+161.003 332.556 L
+161.25 332.556 L
+161.253 332.556 L
+161.497 332.556 L
+161.501 332.556 L
+161.748 332.556 L
+161.752 332.556 L
+161.999 332.556 L
+162.003 332.556 L
+162.25 332.556 L
+162.254 332.556 L
+162.497 332.556 L
+162.501 332.556 L
+162.748 332.556 L
+162.752 332.556 L
+162.999 332.556 L
+163.003 332.556 L
+163.246 332.556 L
+163.25 332.556 L
+163.497 332.556 L
+163.501 332.556 L
+163.748 332.556 L
+163.752 332.556 L
+163.999 332.556 L
+164.003 332.556 L
+164.246 332.556 L
+164.25 332.556 L
+164.497 332.556 L
+164.501 332.556 L
+164.748 332.556 L
+164.752 332.556 L
+164.999 332.556 L
+165.003 332.556 L
+165.247 332.556 L
+165.25 332.556 L
+165.497 332.556 L
+165.501 332.556 L
+165.748 332.556 L
+165.752 332.556 L
+165.999 332.556 L
+166.003 332.556 L
+166.247 332.556 L
+166.25 332.556 L
+166.498 332.556 L
+166.501 332.556 L
+166.749 332.556 L
+166.752 332.556 L
+167 332.556 L
+167.003 332.556 L
+167.247 332.556 L
+167.25 332.556 L
+167.498 332.556 L
+167.501 332.556 L
+167.749 332.556 L
+167.752 332.556 L
+168 332.556 L
+168.003 332.556 L
+168.247 332.556 L
+168.251 332.556 L
+168.498 332.556 L
+168.502 332.556 L
+168.749 332.556 L
+168.753 332.556 L
+169 332.556 L
+169.003 332.556 L
+169.247 332.556 L
+169.251 332.556 L
+169.498 332.556 L
+169.502 332.556 L
+169.749 332.556 L
+169.753 332.556 L
+170 332.556 L
+170.004 332.556 L
+170.247 332.556 L
+170.251 332.556 L
+170.498 332.556 L
+170.502 332.556 L
+170.749 332.556 L
+170.753 332.556 L
+170.996 332.556 L
+171 332.556 L
+171.247 332.556 L
+171.251 332.556 L
+171.498 332.556 L
+171.502 332.556 L
+171.749 332.556 L
+171.753 332.556 L
+171.996 332.556 L
+172 332.556 L
+172.247 332.556 L
+172.251 332.556 L
+172.498 332.556 L
+172.502 332.556 L
+172.749 332.556 L
+172.753 332.556 L
+172.997 332.556 L
+173 332.556 L
+173.247 332.556 L
+173.251 332.556 L
+173.498 332.556 L
+173.502 332.556 L
+173.749 332.556 L
+173.753 332.556 L
+173.997 332.556 L
+174 332.556 L
+174.248 332.556 L
+174.251 332.556 L
+174.499 332.556 L
+174.502 332.556 L
+174.75 332.556 L
+174.753 332.556 L
+174.997 332.556 L
+175 332.556 L
+175.248 332.556 L
+175.251 332.556 L
+175.499 332.556 L
+175.502 332.556 L
+175.75 332.556 L
+175.753 332.556 L
+175.997 332.556 L
+176.001 332.556 L
+176.248 332.556 L
+176.252 332.556 L
+176.499 332.556 L
+176.503 332.556 L
+176.75 332.556 L
+176.753 332.556 L
+176.997 332.556 L
+177.001 332.556 L
+177.248 332.556 L
+177.252 332.556 L
+177.499 332.556 L
+177.503 332.556 L
+177.75 332.556 L
+177.754 332.556 L
+177.997 332.556 L
+178.001 332.556 L
+178.248 332.556 L
+178.252 332.556 L
+178.499 332.556 L
+178.503 332.556 L
+178.746 332.556 L
+178.75 332.556 L
+178.997 332.556 L
+179.001 332.556 L
+179.248 332.556 L
+179.252 332.556 L
+179.499 332.556 L
+179.503 332.556 L
+179.746 332.556 L
+179.75 332.556 L
+179.997 332.556 L
+180.001 332.556 L
+180.248 332.556 L
+180.252 332.556 L
+180.499 332.556 L
+180.503 332.556 L
+180.747 332.556 L
+180.75 332.556 L
+180.997 332.556 L
+181.001 332.556 L
+181.248 332.556 L
+181.252 332.556 L
+181.499 332.556 L
+181.503 332.556 L
+181.747 332.556 L
+181.75 332.556 L
+181.998 332.556 L
+182.001 332.556 L
+182.249 332.556 L
+182.252 332.556 L
+182.5 332.556 L
+182.503 332.556 L
+182.747 332.556 L
+182.75 332.556 L
+182.998 332.556 L
+183.001 332.556 L
+183.249 332.556 L
+183.252 332.556 L
+183.5 332.556 L
+183.503 332.556 L
+183.747 332.556 L
+183.751 332.556 L
+183.998 332.556 L
+184.002 332.556 L
+184.249 332.556 L
+184.253 332.556 L
+184.5 332.556 L
+184.503 332.556 L
+184.747 332.556 L
+184.751 332.556 L
+184.998 332.556 L
+185.002 332.556 L
+185.249 332.556 L
+185.253 332.556 L
+185.5 332.556 L
+185.504 332.556 L
+185.747 332.556 L
+185.751 332.556 L
+185.998 332.556 L
+186.002 332.556 L
+186.249 332.556 L
+186.253 332.556 L
+186.496 332.556 L
+186.5 332.556 L
+186.747 332.556 L
+186.751 332.556 L
+186.998 332.556 L
+187.002 332.556 L
+187.249 332.556 L
+187.253 332.556 L
+187.496 332.556 L
+187.5 332.556 L
+187.747 332.556 L
+187.751 332.556 L
+187.998 332.556 L
+188.002 332.556 L
+188.249 332.556 L
+188.253 332.556 L
+188.497 332.556 L
+188.5 332.556 L
+188.747 332.556 L
+188.751 332.556 L
+188.998 332.556 L
+189.002 332.556 L
+189.249 332.556 L
+189.253 332.556 L
+189.497 332.556 L
+189.5 332.556 L
+189.748 332.556 L
+189.751 332.556 L
+189.999 332.556 L
+190.002 332.556 L
+190.25 332.556 L
+190.253 332.556 L
+190.497 332.556 L
+190.5 332.556 L
+190.748 332.556 L
+190.751 332.556 L
+190.999 332.556 L
+191.002 332.556 L
+191.25 332.556 L
+191.253 332.556 L
+191.497 332.556 L
+191.501 332.556 L
+191.748 332.556 L
+191.752 332.556 L
+191.999 332.556 L
+192.003 332.556 L
+192.25 332.556 L
+192.253 332.556 L
+192.497 332.556 L
+192.501 332.556 L
+192.748 332.556 L
+192.752 332.556 L
+192.999 332.556 L
+193.003 332.556 L
+193.25 332.556 L
+193.254 332.556 L
+193.497 332.556 L
+193.501 332.556 L
+193.748 332.556 L
+193.752 332.556 L
+193.999 332.556 L
+194.003 332.556 L
+194.246 332.556 L
+194.25 332.556 L
+194.497 332.556 L
+194.501 332.556 L
+194.748 332.556 L
+194.752 332.556 L
+194.999 332.556 L
+195.003 332.556 L
+195.246 332.556 L
+195.25 332.556 L
+195.497 332.556 L
+195.501 332.556 L
+195.748 332.556 L
+195.752 332.556 L
+195.999 332.556 L
+196.003 332.556 L
+196.247 332.556 L
+196.25 332.556 L
+196.497 332.556 L
+196.501 332.556 L
+196.748 332.556 L
+196.752 332.556 L
+196.999 332.556 L
+197.003 332.556 L
+197.247 332.556 L
+197.25 332.556 L
+197.498 332.556 L
+197.501 332.556 L
+197.749 332.556 L
+197.752 332.556 L
+198 332.556 L
+198.003 332.556 L
+198.247 332.556 L
+198.25 332.556 L
+198.498 332.556 L
+198.501 332.556 L
+198.749 332.556 L
+198.752 332.556 L
+199 332.556 L
+199.003 332.556 L
+199.247 332.556 L
+199.251 332.556 L
+199.498 332.556 L
+199.502 332.556 L
+199.749 332.556 L
+199.753 332.556 L
+200 332.556 L
+200.003 332.556 L
+200.247 332.556 L
+200.251 332.556 L
+200.498 332.556 L
+200.502 332.556 L
+200.749 332.556 L
+200.753 332.556 L
+201 332.556 L
+201.004 332.556 L
+201.247 332.556 L
+201.251 332.556 L
+201.498 332.556 L
+201.502 332.556 L
+201.749 332.556 L
+201.753 332.556 L
+201.996 332.556 L
+202 332.556 L
+202.247 332.556 L
+202.251 332.556 L
+202.498 332.556 L
+202.502 332.556 L
+202.749 332.556 L
+202.753 332.556 L
+202.996 332.556 L
+203 332.556 L
+203.247 332.556 L
+203.251 332.556 L
+203.498 332.556 L
+203.502 332.556 L
+203.749 332.556 L
+203.753 332.556 L
+203.997 332.556 L
+204 332.556 L
+204.247 332.556 L
+204.251 332.556 L
+204.498 332.556 L
+204.502 332.556 L
+204.749 332.556 L
+204.753 332.556 L
+204.997 332.556 L
+205 332.556 L
+205.248 332.556 L
+205.251 332.556 L
+205.499 332.556 L
+205.502 332.556 L
+205.75 332.556 L
+205.753 332.556 L
+205.997 332.556 L
+206 332.556 L
+206.248 332.556 L
+206.251 332.556 L
+206.499 332.556 L
+206.502 332.556 L
+206.75 332.556 L
+206.753 332.556 L
+206.997 332.556 L
+207.001 332.556 L
+207.248 332.556 L
+207.252 332.556 L
+207.499 332.556 L
+207.503 332.556 L
+207.75 332.556 L
+207.753 332.556 L
+207.997 332.556 L
+208.001 332.556 L
+208.248 332.556 L
+208.252 332.556 L
+208.499 332.556 L
+208.503 332.556 L
+208.75 332.556 L
+208.754 332.556 L
+208.997 332.556 L
+209.001 332.556 L
+209.248 332.556 L
+209.252 332.556 L
+209.499 332.556 L
+209.503 332.556 L
+209.746 332.556 L
+209.75 332.556 L
+209.997 332.556 L
+210.001 332.556 L
+210.248 332.556 L
+210.252 332.556 L
+210.499 332.556 L
+210.503 332.556 L
+210.746 332.556 L
+210.75 332.556 L
+210.997 332.556 L
+211.001 332.556 L
+211.248 332.556 L
+211.252 332.556 L
+211.499 332.556 L
+211.503 332.556 L
+211.747 332.556 L
+211.75 332.556 L
+211.997 332.556 L
+212.001 332.556 L
+212.248 332.556 L
+212.252 332.556 L
+212.499 332.556 L
+212.503 332.556 L
+212.747 332.556 L
+212.75 332.556 L
+212.998 332.556 L
+213.001 332.556 L
+213.249 332.556 L
+213.252 332.556 L
+213.5 332.556 L
+213.503 332.556 L
+213.747 332.556 L
+213.75 332.556 L
+213.998 332.556 L
+214.001 332.556 L
+214.249 332.556 L
+214.252 332.556 L
+214.5 332.556 L
+214.503 332.556 L
+214.747 332.556 L
+214.751 332.556 L
+214.998 332.556 L
+215.002 332.556 L
+215.249 332.556 L
+215.253 332.556 L
+215.5 332.556 L
+215.503 332.556 L
+215.747 332.556 L
+215.751 332.556 L
+215.998 332.556 L
+216.002 332.556 L
+216.249 332.556 L
+216.253 332.556 L
+216.5 332.556 L
+216.504 332.556 L
+216.747 332.556 L
+216.751 332.556 L
+216.998 332.556 L
+217.002 332.556 L
+217.249 332.556 L
+217.253 332.556 L
+217.496 332.556 L
+217.5 332.556 L
+217.747 332.556 L
+217.751 332.556 L
+217.998 332.556 L
+218.002 332.556 L
+218.249 332.556 L
+218.253 332.556 L
+218.496 332.556 L
+218.5 332.556 L
+218.747 332.556 L
+218.751 332.556 L
+218.998 332.556 L
+219.002 332.556 L
+219.249 332.556 L
+219.253 332.556 L
+219.497 332.556 L
+219.5 332.556 L
+219.747 332.556 L
+219.751 332.556 L
+219.998 332.556 L
+220.002 332.556 L
+220.249 332.556 L
+220.253 332.556 L
+220.497 332.556 L
+220.5 332.556 L
+220.748 332.556 L
+220.751 332.556 L
+220.999 332.556 L
+221.002 332.556 L
+221.25 332.556 L
+221.253 332.556 L
+221.497 332.556 L
+221.5 332.556 L
+221.748 332.556 L
+221.751 332.556 L
+221.999 332.556 L
+222.002 332.556 L
+222.25 332.556 L
+222.253 332.556 L
+222.497 332.556 L
+222.501 332.556 L
+222.748 332.556 L
+222.752 332.556 L
+222.999 332.556 L
+223.003 332.556 L
+223.25 332.556 L
+223.253 332.556 L
+223.497 332.556 L
+223.501 332.556 L
+223.748 332.556 L
+223.752 332.556 L
+223.999 332.556 L
+224.003 332.556 L
+224.25 332.556 L
+224.254 332.556 L
+224.497 332.556 L
+224.501 332.556 L
+224.748 332.556 L
+224.752 332.556 L
+224.999 332.556 L
+225.003 332.556 L
+225.25 332.556 L
+225.254 332.556 L
+225.497 332.556 L
+225.501 332.556 L
+225.748 332.556 L
+225.752 332.556 L
+225.999 332.556 L
+226.003 332.556 L
+226.246 332.556 L
+226.25 332.556 L
+226.497 332.556 L
+226.501 332.556 L
+226.748 332.556 L
+226.752 332.556 L
+226.999 332.556 L
+227.003 332.556 L
+227.247 332.556 L
+227.25 332.556 L
+227.498 332.556 L
+227.501 332.556 L
+227.748 332.556 L
+227.752 332.556 L
+227.999 332.556 L
+228.003 332.556 L
+228.247 332.556 L
+228.25 332.556 L
+228.498 332.556 L
+228.501 332.556 L
+228.749 332.556 L
+228.752 332.556 L
+229 332.556 L
+229.003 332.556 L
+229.247 332.556 L
+229.25 332.556 L
+229.498 332.556 L
+229.501 332.556 L
+229.749 332.556 L
+229.752 332.556 L
+230 332.556 L
+230.003 332.556 L
+230.247 332.556 L
+230.251 332.556 L
+230.498 332.556 L
+230.502 332.556 L
+230.749 332.556 L
+230.753 332.556 L
+231 332.556 L
+231.003 332.556 L
+231.247 332.556 L
+231.251 332.556 L
+231.498 332.556 L
+231.502 332.556 L
+231.749 332.556 L
+231.753 332.556 L
+232 332.556 L
+232.004 332.556 L
+232.247 332.556 L
+232.251 332.556 L
+232.498 332.556 L
+232.502 332.556 L
+232.749 332.556 L
+232.753 332.556 L
+232.996 332.556 L
+233 332.556 L
+233.247 332.556 L
+233.251 332.556 L
+233.498 332.556 L
+233.502 332.556 L
+233.749 332.556 L
+233.753 332.556 L
+233.996 332.556 L
+234 332.556 L
+234.247 332.556 L
+234.251 332.556 L
+234.498 332.556 L
+234.502 332.556 L
+234.749 332.556 L
+234.753 332.556 L
+234.997 332.556 L
+235 332.556 L
+235.247 332.556 L
+235.251 332.556 L
+235.498 332.556 L
+235.502 332.556 L
+235.749 332.556 L
+235.753 332.556 L
+235.997 332.556 L
+236 332.556 L
+236.248 332.556 L
+236.251 332.556 L
+236.499 332.556 L
+236.502 332.556 L
+236.75 332.556 L
+236.753 332.556 L
+236.997 332.556 L
+237 332.556 L
+237.248 332.556 L
+237.251 332.556 L
+237.499 332.556 L
+237.502 332.556 L
+237.75 332.556 L
+237.753 332.556 L
+237.997 332.556 L
+238.001 332.556 L
+238.248 332.556 L
+238.252 332.556 L
+238.499 332.556 L
+238.503 332.556 L
+238.75 332.556 L
+238.753 332.556 L
+238.997 332.556 L
+239.001 332.556 L
+239.248 332.556 L
+239.252 332.556 L
+239.499 332.556 L
+239.503 332.556 L
+239.75 332.556 L
+239.754 332.556 L
+239.997 332.556 L
+240.001 332.556 L
+240.248 332.556 L
+240.252 332.556 L
+240.499 332.556 L
+240.503 332.556 L
+240.746 332.556 L
+240.75 332.556 L
+240.997 332.556 L
+241.001 332.556 L
+241.248 332.556 L
+241.252 332.556 L
+241.499 332.556 L
+241.503 332.556 L
+241.746 332.556 L
+241.75 332.556 L
+241.997 332.556 L
+242.001 332.556 L
+242.248 332.556 L
+242.252 332.556 L
+242.499 332.556 L
+242.503 332.556 L
+242.747 332.556 L
+242.75 332.556 L
+242.998 332.556 L
+243.001 332.556 L
+243.248 332.556 L
+243.252 332.556 L
+243.499 332.556 L
+243.503 332.556 L
+243.747 332.556 L
+243.75 332.556 L
+243.998 332.556 L
+244.001 332.556 L
+244.249 332.556 L
+244.252 332.556 L
+244.5 332.556 L
+244.503 332.556 L
+244.747 332.556 L
+244.75 332.556 L
+244.998 332.556 L
+245.001 332.556 L
+245.249 332.556 L
+245.252 332.556 L
+245.5 332.556 L
+245.503 332.556 L
+245.747 332.556 L
+245.751 332.556 L
+245.998 332.556 L
+246.002 332.556 L
+246.249 332.556 L
+246.253 332.556 L
+246.5 332.556 L
+246.503 332.556 L
+246.747 332.556 L
+246.751 332.556 L
+246.998 332.556 L
+247.002 332.556 L
+247.249 332.556 L
+247.253 332.556 L
+247.5 332.556 L
+247.504 332.556 L
+247.747 332.556 L
+247.751 332.556 L
+247.998 332.556 L
+248.002 332.556 L
+248.249 332.556 L
+248.253 332.556 L
+248.496 332.556 L
+248.5 332.556 L
+248.747 332.556 L
+248.751 332.556 L
+248.998 332.556 L
+249.002 332.556 L
+249.249 332.556 L
+249.253 332.556 L
+249.496 332.556 L
+249.5 332.556 L
+249.747 332.556 L
+249.751 332.556 L
+249.998 332.556 L
+250.002 332.556 L
+250.249 332.556 L
+250.253 332.556 L
+250.497 332.556 L
+250.5 332.556 L
+250.747 332.556 L
+250.751 332.556 L
+250.998 332.556 L
+251.002 332.556 L
+251.249 332.556 L
+251.253 332.556 L
+251.497 332.556 L
+251.5 332.556 L
+251.748 332.556 L
+251.751 332.556 L
+251.999 332.556 L
+252.002 332.556 L
+252.25 332.556 L
+252.253 332.556 L
+252.497 332.556 L
+252.5 332.556 L
+252.748 332.556 L
+252.751 332.556 L
+252.999 332.556 L
+253.002 332.556 L
+253.25 332.556 L
+253.253 332.556 L
+253.497 332.556 L
+253.501 332.556 L
+253.748 332.556 L
+253.752 332.556 L
+253.999 332.556 L
+254.002 332.556 L
+254.25 332.556 L
+254.253 332.556 L
+254.497 332.556 L
+254.501 332.556 L
+254.748 332.556 L
+254.752 332.556 L
+254.999 332.556 L
+255.003 332.556 L
+255.25 332.556 L
+255.254 332.556 L
+255.497 332.556 L
+255.501 332.556 L
+255.748 332.556 L
+255.752 332.556 L
+255.999 332.556 L
+256.003 332.556 L
+256.25 332.556 L
+256.254 332.556 L
+256.497 332.556 L
+256.501 332.556 L
+256.748 332.556 L
+256.752 332.556 L
+256.999 332.556 L
+257.003 332.556 L
+257.246 332.556 L
+257.25 332.556 L
+257.497 332.556 L
+257.501 332.556 L
+257.748 332.556 L
+257.752 332.556 L
+257.999 332.556 L
+258.003 332.556 L
+258.247 332.556 L
+258.25 332.556 L
+258.497 332.556 L
+258.501 332.556 L
+258.748 332.556 L
+258.752 332.556 L
+258.999 332.556 L
+259.003 332.556 L
+259.247 332.556 L
+259.25 332.556 L
+259.498 332.556 L
+259.501 332.556 L
+259.749 332.556 L
+259.752 332.556 L
+260 332.556 L
+260.003 332.556 L
+260.247 332.556 L
+260.25 332.556 L
+260.498 332.556 L
+260.501 332.556 L
+260.749 332.556 L
+260.752 332.556 L
+261 332.556 L
+261.003 332.556 L
+261.247 332.556 L
+261.251 332.556 L
+261.498 332.556 L
+261.502 332.556 L
+261.749 332.556 L
+261.753 332.556 L
+262 332.556 L
+262.003 332.556 L
+262.247 332.556 L
+262.251 332.556 L
+262.498 332.556 L
+262.502 332.556 L
+262.749 332.556 L
+262.753 332.556 L
+263 332.556 L
+263.004 332.556 L
+263.247 332.556 L
+263.251 332.556 L
+263.498 332.556 L
+263.502 332.556 L
+263.749 332.556 L
+263.753 332.556 L
+263.996 332.556 L
+264 332.556 L
+264.247 332.556 L
+264.251 332.556 L
+264.498 332.556 L
+264.502 332.556 L
+264.749 332.556 L
+264.753 332.556 L
+264.996 332.556 L
+265 332.556 L
+265.247 332.556 L
+265.251 332.556 L
+265.498 332.556 L
+265.502 332.556 L
+265.749 332.556 L
+265.753 332.556 L
+265.997 332.556 L
+266 332.556 L
+266.247 332.556 L
+266.251 332.556 L
+266.498 332.556 L
+266.502 332.556 L
+266.749 332.556 L
+266.753 332.556 L
+266.997 332.556 L
+267 332.556 L
+267.248 332.556 L
+267.251 332.556 L
+267.499 332.556 L
+267.502 332.556 L
+267.75 332.556 L
+267.753 332.556 L
+267.997 332.556 L
+268 332.556 L
+268.248 332.556 L
+268.251 332.556 L
+268.499 332.556 L
+268.502 332.556 L
+268.75 332.556 L
+268.753 332.556 L
+268.997 332.556 L
+269.001 332.556 L
+269.248 332.556 L
+269.252 332.556 L
+269.499 332.556 L
+269.503 332.556 L
+269.75 332.556 L
+269.753 332.556 L
+269.997 332.556 L
+270.001 332.556 L
+270.248 332.556 L
+270.252 332.556 L
+270.499 332.556 L
+270.503 332.556 L
+270.75 332.556 L
+270.754 332.556 L
+270.997 332.556 L
+271.001 332.556 L
+271.248 332.556 L
+271.252 332.556 L
+271.499 332.556 L
+271.503 332.556 L
+271.746 332.556 L
+271.75 332.556 L
+271.997 332.556 L
+272.001 332.556 L
+272.248 332.556 L
+272.252 332.556 L
+272.499 332.556 L
+272.503 332.556 L
+272.746 332.556 L
+272.75 332.556 L
+272.997 332.556 L
+273.001 332.556 L
+273.248 332.556 L
+273.252 332.556 L
+273.499 332.556 L
+273.503 332.556 L
+273.747 332.556 L
+273.75 332.556 L
+273.997 332.556 L
+274.001 332.556 L
+274.248 332.556 L
+274.252 332.556 L
+274.499 332.556 L
+274.503 332.556 L
+274.747 332.556 L
+274.75 332.556 L
+274.998 332.556 L
+275.001 332.556 L
+275.249 332.556 L
+275.252 332.556 L
+275.5 332.556 L
+275.503 332.556 L
+275.747 332.556 L
+275.75 332.556 L
+275.998 332.556 L
+276.001 332.556 L
+276.249 332.556 L
+276.252 332.556 L
+276.5 332.556 L
+276.503 332.556 L
+276.747 332.556 L
+276.751 332.556 L
+276.998 332.556 L
+277.002 332.556 L
+277.249 332.556 L
+277.253 332.556 L
+277.5 332.556 L
+277.503 332.556 L
+277.747 332.556 L
+277.751 332.556 L
+277.998 332.556 L
+278.002 332.556 L
+278.249 332.556 L
+278.253 332.556 L
+278.5 332.556 L
+278.504 332.556 L
+278.747 332.556 L
+278.751 332.556 L
+278.998 332.556 L
+279.002 332.556 L
+279.249 332.556 L
+279.253 332.556 L
+279.496 332.556 L
+279.5 332.556 L
+279.747 332.556 L
+279.751 332.556 L
+279.998 332.556 L
+280.002 332.556 L
+280.249 332.556 L
+280.253 332.556 L
+280.496 332.556 L
+280.5 332.556 L
+280.747 332.556 L
+280.751 332.556 L
+280.998 332.556 L
+281.002 332.556 L
+281.249 332.556 L
+281.253 332.556 L
+281.497 332.556 L
+281.5 332.556 L
+281.747 332.556 L
+281.751 332.556 L
+281.998 332.556 L
+282.002 332.556 L
+282.249 332.556 L
+282.253 332.556 L
+282.497 332.556 L
+282.5 332.556 L
+282.748 332.556 L
+282.751 332.556 L
+282.999 332.556 L
+283.002 332.556 L
+283.25 332.556 L
+283.253 332.556 L
+283.497 332.556 L
+283.5 332.556 L
+283.748 332.556 L
+283.751 332.556 L
+283.999 332.556 L
+284.002 332.556 L
+284.25 332.556 L
+284.253 332.556 L
+284.497 332.556 L
+284.501 332.556 L
+284.748 332.556 L
+284.752 332.556 L
+284.999 332.556 L
+285.003 332.556 L
+285.25 332.556 L
+285.253 332.556 L
+285.497 332.556 L
+285.501 332.556 L
+285.748 332.556 L
+285.752 332.556 L
+285.999 332.556 L
+286.003 332.556 L
+286.25 332.556 L
+286.254 332.556 L
+286.497 332.556 L
+286.501 332.556 L
+286.748 332.556 L
+286.752 332.556 L
+286.999 332.556 L
+287.003 332.556 L
+287.246 332.556 L
+287.25 332.556 L
+287.497 332.556 L
+287.501 332.556 L
+287.748 332.556 L
+287.752 332.556 L
+287.999 332.556 L
+288.003 332.556 L
+288.246 332.556 L
+288.25 332.556 L
+288.497 332.556 L
+288.501 332.556 L
+288.748 332.556 L
+288.752 332.556 L
+288.999 332.556 L
+289.003 332.556 L
+289.247 332.556 L
+289.25 332.556 L
+289.497 332.556 L
+289.501 332.556 L
+289.748 332.556 L
+289.752 332.556 L
+289.999 332.556 L
+290.003 332.556 L
+290.247 332.556 L
+290.25 332.556 L
+290.498 332.556 L
+290.501 332.556 L
+290.749 332.556 L
+290.752 332.556 L
+291 332.556 L
+291.003 332.556 L
+291.247 332.556 L
+291.25 332.556 L
+291.498 332.556 L
+291.501 332.556 L
+291.749 332.556 L
+291.752 332.556 L
+292 332.556 L
+292.003 332.556 L
+292.247 332.556 L
+292.251 332.556 L
+292.498 332.556 L
+292.502 332.556 L
+292.749 332.556 L
+292.753 332.556 L
+293 332.556 L
+293.003 332.556 L
+293.247 332.556 L
+293.251 332.556 L
+293.498 332.556 L
+293.502 332.556 L
+293.749 332.556 L
+293.753 332.556 L
+294 332.556 L
+294.004 332.556 L
+294.247 332.556 L
+294.251 332.556 L
+294.498 332.556 L
+294.502 332.556 L
+294.749 332.556 L
+294.753 332.556 L
+294.996 332.556 L
+295 332.556 L
+295.247 332.556 L
+295.251 332.556 L
+295.498 332.556 L
+295.502 332.556 L
+295.749 332.556 L
+295.753 332.556 L
+295.996 332.556 L
+296 332.556 L
+296.247 332.556 L
+296.251 332.556 L
+296.498 332.556 L
+296.502 332.556 L
+296.749 332.556 L
+296.753 332.556 L
+296.997 332.556 L
+297 332.556 L
+297.247 332.556 L
+297.251 332.556 L
+297.498 332.556 L
+297.502 332.556 L
+297.749 332.556 L
+297.753 332.556 L
+297.997 332.556 L
+298 332.556 L
+298.248 332.556 L
+298.251 332.556 L
+298.499 332.556 L
+298.502 332.556 L
+298.75 332.556 L
+298.753 332.556 L
+298.997 332.556 L
+299 332.556 L
+299.248 332.556 L
+299.251 332.556 L
+299.499 332.556 L
+299.502 332.556 L
+299.75 332.556 L
+299.753 332.556 L
+299.997 332.556 L
+300.001 332.556 L
+300.248 332.556 L
+300.252 332.556 L
+300.499 332.556 L
+300.503 332.556 L
+300.75 332.556 L
+300.753 332.556 L
+300.997 332.556 L
+301.001 332.556 L
+301.248 332.556 L
+301.252 332.556 L
+301.499 332.556 L
+301.503 332.556 L
+301.75 332.556 L
+301.754 332.556 L
+301.997 332.556 L
+302.001 332.556 L
+302.248 332.556 L
+302.252 332.556 L
+302.499 332.556 L
+302.503 332.556 L
+302.746 332.556 L
+302.75 332.556 L
+302.997 332.556 L
+303.001 332.556 L
+303.248 332.556 L
+303.252 332.556 L
+303.499 332.556 L
+303.503 332.556 L
+303.746 332.556 L
+303.75 332.556 L
+303.997 332.556 L
+304.001 332.556 L
+304.248 332.556 L
+304.252 332.556 L
+304.499 332.556 L
+304.503 332.556 L
+304.747 332.556 L
+304.75 332.556 L
+304.997 332.556 L
+305.001 332.556 L
+305.248 332.556 L
+305.252 332.556 L
+305.499 332.556 L
+305.503 332.556 L
+305.747 332.556 L
+305.75 332.556 L
+305.998 332.556 L
+306.001 332.556 L
+306.249 332.556 L
+306.252 332.556 L
+306.5 332.556 L
+306.503 332.556 L
+306.747 332.556 L
+306.75 332.556 L
+306.998 332.556 L
+307.001 332.556 L
+307.249 332.556 L
+307.252 332.556 L
+307.5 332.556 L
+307.503 332.556 L
+307.747 332.556 L
+307.751 332.556 L
+307.998 332.556 L
+308.002 332.556 L
+308.249 332.556 L
+308.253 332.556 L
+308.5 332.556 L
+308.503 332.556 L
+308.747 332.556 L
+308.751 332.556 L
+308.998 332.556 L
+309.002 332.556 L
+309.249 332.556 L
+309.253 332.556 L
+309.5 332.556 L
+309.504 332.556 L
+309.747 332.556 L
+309.751 332.556 L
+309.998 332.556 L
+310.002 332.556 L
+310.249 332.556 L
+310.253 332.556 L
+310.496 332.556 L
+310.5 332.556 L
+310.747 332.556 L
+310.751 332.556 L
+310.998 332.556 L
+311.002 332.556 L
+311.249 332.556 L
+311.253 332.556 L
+311.496 332.556 L
+311.5 332.556 L
+311.747 332.556 L
+311.751 332.556 L
+311.998 332.556 L
+312.002 332.556 L
+312.249 332.556 L
+312.253 332.556 L
+312.497 332.556 L
+312.5 332.556 L
+312.747 332.556 L
+312.751 332.556 L
+312.998 332.556 L
+313.002 332.556 L
+313.249 332.556 L
+313.253 332.556 L
+313.497 332.556 L
+313.5 332.556 L
+313.748 332.556 L
+313.751 332.556 L
+313.999 332.556 L
+314.002 332.556 L
+314.25 332.556 L
+314.253 332.556 L
+314.497 332.556 L
+314.5 332.556 L
+314.748 332.556 L
+314.751 332.556 L
+314.999 332.556 L
+315.002 332.556 L
+315.25 332.556 L
+315.253 332.556 L
+315.497 332.556 L
+315.501 332.556 L
+315.748 332.556 L
+315.752 332.556 L
+315.999 332.556 L
+316.003 332.556 L
+316.25 332.556 L
+316.253 332.556 L
+316.497 332.556 L
+316.501 332.556 L
+316.748 332.556 L
+316.752 332.556 L
+316.999 332.556 L
+317.003 332.556 L
+317.25 332.556 L
+317.254 332.556 L
+317.497 332.556 L
+317.501 332.556 L
+317.748 332.556 L
+317.752 332.556 L
+317.999 332.556 L
+318.003 332.556 L
+318.246 332.556 L
+318.25 332.556 L
+318.497 332.556 L
+318.501 332.556 L
+318.748 332.556 L
+318.752 332.556 L
+318.999 332.556 L
+319.003 332.556 L
+319.246 332.556 L
+319.25 332.556 L
+319.497 332.556 L
+319.501 332.556 L
+319.748 332.556 L
+319.752 332.556 L
+319.999 332.556 L
+320.003 332.556 L
+320.247 332.556 L
+320.25 332.556 L
+320.497 332.556 L
+320.501 332.556 L
+320.748 332.556 L
+320.752 332.556 L
+320.999 332.556 L
+321.003 332.556 L
+321.247 332.556 L
+321.25 332.556 L
+321.498 332.556 L
+321.501 332.556 L
+321.749 332.556 L
+321.752 332.556 L
+322 332.556 L
+322.003 332.556 L
+322.247 332.556 L
+322.25 332.556 L
+322.498 332.556 L
+322.501 332.556 L
+322.749 332.556 L
+322.752 332.556 L
+323 332.556 L
+323.003 332.556 L
+323.247 332.556 L
+323.251 332.556 L
+323.498 332.556 L
+323.502 332.556 L
+323.749 332.556 L
+323.753 332.556 L
+324 332.556 L
+324.003 332.556 L
+324.247 332.556 L
+324.251 332.556 L
+324.498 332.556 L
+324.502 332.556 L
+324.749 332.556 L
+324.753 332.556 L
+325 332.556 L
+325.004 332.556 L
+325.247 332.556 L
+325.251 332.556 L
+325.498 332.556 L
+325.502 332.556 L
+325.749 332.556 L
+325.753 332.556 L
+325.996 332.556 L
+326 332.556 L
+326.247 332.556 L
+326.251 332.556 L
+326.498 332.556 L
+326.502 332.556 L
+326.749 332.556 L
+326.753 332.556 L
+326.996 332.556 L
+327 332.556 L
+327.247 332.556 L
+327.251 332.556 L
+327.498 332.556 L
+327.502 332.556 L
+327.749 332.556 L
+327.753 332.556 L
+327.997 332.556 L
+328 332.556 L
+328.247 332.556 L
+328.251 332.556 L
+328.498 332.556 L
+328.502 332.556 L
+328.749 332.556 L
+328.753 332.556 L
+328.997 332.556 L
+329 332.556 L
+329.248 332.556 L
+329.251 332.556 L
+329.499 332.556 L
+329.502 332.556 L
+329.75 332.556 L
+329.753 332.556 L
+329.997 332.556 L
+330 332.556 L
+330.248 332.556 L
+330.251 332.556 L
+330.499 332.556 L
+330.502 332.556 L
+330.75 332.556 L
+330.753 332.556 L
+330.997 332.556 L
+331.001 332.556 L
+331.248 332.556 L
+331.252 332.556 L
+331.499 332.556 L
+331.503 332.556 L
+331.75 332.556 L
+331.753 332.556 L
+331.997 332.556 L
+332.001 332.556 L
+332.248 332.556 L
+332.252 332.556 L
+332.499 332.556 L
+332.503 332.556 L
+332.75 332.556 L
+332.754 332.556 L
+332.997 332.556 L
+333.001 332.556 L
+333.248 332.556 L
+333.252 332.556 L
+333.499 332.556 L
+333.503 332.556 L
+333.746 332.556 L
+333.75 332.556 L
+333.997 332.556 L
+334.001 332.556 L
+334.248 332.556 L
+334.252 332.556 L
+334.499 332.556 L
+334.503 332.556 L
+334.746 332.556 L
+334.75 332.556 L
+334.997 332.556 L
+335.001 332.556 L
+335.248 332.556 L
+335.252 332.556 L
+335.499 332.556 L
+335.503 332.556 L
+335.747 332.556 L
+335.75 332.556 L
+335.997 332.556 L
+336.001 332.556 L
+336.248 332.556 L
+336.252 332.556 L
+336.499 332.556 L
+336.503 332.556 L
+336.747 332.556 L
+336.75 332.556 L
+336.998 332.556 L
+337.001 332.556 L
+337.249 332.556 L
+337.252 332.556 L
+337.5 332.556 L
+337.503 332.556 L
+337.747 332.556 L
+337.75 332.556 L
+337.998 332.556 L
+338.001 332.556 L
+338.249 332.556 L
+338.252 332.556 L
+338.5 332.556 L
+338.503 332.556 L
+338.747 332.556 L
+338.751 332.556 L
+338.998 332.556 L
+339.002 332.556 L
+339.249 332.556 L
+339.253 332.556 L
+339.5 332.556 L
+339.503 332.556 L
+339.747 332.556 L
+339.751 332.556 L
+339.998 332.556 L
+340.002 332.556 L
+340.249 332.556 L
+340.253 332.556 L
+340.5 332.556 L
+340.504 332.556 L
+340.747 332.556 L
+340.751 332.556 L
+340.998 332.556 L
+341.002 332.556 L
+341.249 332.556 L
+341.253 332.556 L
+341.496 332.556 L
+341.5 332.556 L
+341.747 332.556 L
+341.751 332.556 L
+341.998 332.556 L
+342.002 332.556 L
+342.249 332.556 L
+342.253 332.556 L
+342.496 332.556 L
+342.5 332.556 L
+342.747 332.556 L
+342.751 332.556 L
+342.998 332.556 L
+343.002 332.556 L
+343.249 332.556 L
+343.253 332.556 L
+343.497 332.556 L
+343.5 332.556 L
+343.747 332.556 L
+343.751 332.556 L
+343.998 332.556 L
+344.002 332.556 L
+344.249 332.556 L
+344.253 332.556 L
+344.497 332.556 L
+344.5 332.556 L
+344.748 332.556 L
+344.751 332.556 L
+344.999 332.556 L
+345.002 332.556 L
+345.25 332.556 L
+345.253 332.556 L
+345.497 332.556 L
+345.5 332.556 L
+345.748 332.556 L
+345.751 332.556 L
+345.999 332.556 L
+346.002 332.556 L
+346.25 332.556 L
+346.253 332.556 L
+346.497 332.556 L
+346.501 332.556 L
+346.748 332.556 L
+346.752 332.556 L
+346.999 332.556 L
+347.003 332.556 L
+347.25 332.556 L
+347.253 332.556 L
+347.497 332.556 L
+347.501 332.556 L
+347.748 332.556 L
+347.752 332.556 L
+347.999 332.556 L
+348.003 332.556 L
+348.25 332.556 L
+348.254 332.556 L
+348.497 332.556 L
+348.501 332.556 L
+348.748 332.556 L
+348.752 332.556 L
+348.999 332.556 L
+349.003 332.556 L
+349.246 332.556 L
+349.25 332.556 L
+349.497 332.556 L
+349.501 332.556 L
+349.748 332.556 L
+349.752 332.556 L
+349.999 332.556 L
+350.003 332.556 L
+350.246 332.556 L
+350.25 332.556 L
+350.497 332.556 L
+350.501 332.556 L
+350.748 332.556 L
+350.752 332.556 L
+350.999 332.556 L
+351.003 332.556 L
+351.247 332.556 L
+351.25 332.556 L
+351.497 332.556 L
+351.501 332.556 L
+351.748 332.556 L
+351.752 332.556 L
+351.999 332.556 L
+352.003 332.556 L
+352.247 332.556 L
+352.25 332.556 L
+352.498 332.556 L
+352.501 332.556 L
+352.749 332.556 L
+352.752 332.556 L
+353 332.556 L
+353.003 332.556 L
+353.247 332.556 L
+353.25 332.556 L
+353.498 332.556 L
+353.501 332.556 L
+353.749 332.556 L
+353.752 332.556 L
+354 332.556 L
+354.003 332.556 L
+354.247 332.556 L
+354.251 332.556 L
+354.498 332.556 L
+354.502 332.556 L
+354.749 332.556 L
+354.753 332.556 L
+355 332.556 L
+355.003 332.556 L
+355.247 332.556 L
+355.251 332.556 L
+355.498 332.556 L
+355.502 332.556 L
+355.749 332.556 L
+355.753 332.556 L
+356 332.556 L
+356.004 332.556 L
+356.247 332.556 L
+356.251 332.556 L
+356.498 332.556 L
+356.502 332.556 L
+356.749 332.556 L
+356.753 332.556 L
+356.996 332.556 L
+357 332.556 L
+357.247 332.556 L
+357.251 332.556 L
+357.498 332.556 L
+357.502 332.556 L
+357.749 332.556 L
+357.753 332.556 L
+357.996 332.556 L
+358 332.556 L
+358.247 332.556 L
+358.251 332.556 L
+358.498 332.556 L
+358.502 332.556 L
+358.749 332.556 L
+358.753 332.556 L
+358.997 332.556 L
+359 332.556 L
+359.247 332.556 L
+359.251 332.556 L
+359.498 332.556 L
+359.502 332.556 L
+359.749 332.556 L
+359.753 332.556 L
+359.997 332.556 L
+360 332.556 L
+360.248 332.556 L
+360.251 332.556 L
+360.499 332.556 L
+360.502 332.556 L
+360.75 332.556 L
+360.753 332.556 L
+360.997 332.556 L
+361 332.556 L
+361.248 332.556 L
+361.251 332.556 L
+361.499 332.556 L
+361.502 332.556 L
+361.75 332.556 L
+361.753 332.556 L
+361.997 332.556 L
+362.001 332.556 L
+362.248 332.556 L
+362.252 332.556 L
+362.499 332.556 L
+362.503 332.556 L
+362.75 332.556 L
+362.753 332.556 L
+362.997 332.556 L
+363.001 332.556 L
+363.248 332.556 L
+363.252 332.556 L
+363.499 332.556 L
+363.503 332.556 L
+363.75 332.556 L
+363.754 332.556 L
+363.997 332.556 L
+364.001 332.556 L
+364.248 332.556 L
+364.252 332.556 L
+364.499 332.556 L
+364.503 332.556 L
+364.746 332.556 L
+364.75 332.556 L
+364.997 332.556 L
+365.001 332.556 L
+365.248 332.556 L
+365.252 332.556 L
+365.499 332.556 L
+365.503 332.556 L
+365.746 332.556 L
+365.75 332.556 L
+365.997 332.556 L
+366.001 332.556 L
+366.248 332.556 L
+366.252 332.556 L
+366.499 332.556 L
+366.503 332.556 L
+366.747 332.556 L
+366.75 332.556 L
+366.997 332.556 L
+367.001 332.556 L
+367.248 332.556 L
+367.252 332.556 L
+367.499 332.556 L
+367.503 332.556 L
+367.747 332.556 L
+367.75 332.556 L
+367.998 332.556 L
+368.001 332.556 L
+368.249 332.556 L
+368.252 332.556 L
+368.5 332.556 L
+368.503 332.556 L
+368.747 332.556 L
+368.75 332.556 L
+368.998 332.556 L
+369.001 332.556 L
+369.249 332.556 L
+369.252 332.556 L
+369.5 332.556 L
+369.503 332.556 L
+369.747 332.556 L
+369.751 332.556 L
+369.998 332.556 L
+370.002 332.556 L
+370.249 332.556 L
+370.253 332.556 L
+370.5 332.556 L
+370.503 332.556 L
+370.747 332.556 L
+370.751 332.556 L
+370.998 332.556 L
+371.002 332.556 L
+371.249 332.556 L
+371.253 332.556 L
+371.5 332.556 L
+371.504 332.556 L
+371.747 332.556 L
+371.751 332.556 L
+371.998 332.556 L
+372.002 332.556 L
+372.249 332.556 L
+372.253 332.556 L
+372.496 332.556 L
+372.5 332.556 L
+372.747 332.556 L
+372.751 332.556 L
+372.998 332.556 L
+373.002 332.556 L
+373.249 332.556 L
+373.253 332.556 L
+373.496 332.556 L
+373.5 332.556 L
+373.747 332.556 L
+373.751 332.556 L
+373.998 332.556 L
+374.002 332.556 L
+374.249 332.556 L
+374.253 332.556 L
+374.497 332.556 L
+374.5 332.556 L
+374.747 332.556 L
+374.751 332.556 L
+374.998 332.556 L
+375.002 332.556 L
+375.249 332.556 L
+375.253 332.556 L
+375.497 332.556 L
+375.5 332.556 L
+375.748 332.556 L
+375.751 332.556 L
+375.999 332.556 L
+376.002 332.556 L
+376.25 332.556 L
+376.253 332.556 L
+376.497 332.556 L
+376.5 332.556 L
+376.748 332.556 L
+376.751 332.556 L
+376.999 332.556 L
+377.002 332.556 L
+377.25 332.556 L
+377.253 332.556 L
+377.497 332.556 L
+377.501 332.556 L
+377.748 332.556 L
+377.752 332.556 L
+377.999 332.556 L
+378.003 332.556 L
+378.25 332.556 L
+378.253 332.556 L
+378.497 332.556 L
+378.501 332.556 L
+378.748 332.556 L
+378.752 332.556 L
+378.999 332.556 L
+379.003 332.556 L
+379.25 332.556 L
+379.254 332.556 L
+379.497 332.556 L
+379.501 332.556 L
+379.748 332.556 L
+379.752 332.556 L
+379.999 332.556 L
+380.003 332.556 L
+380.246 332.556 L
+380.25 332.556 L
+380.497 332.556 L
+380.501 332.556 L
+380.748 332.556 L
+380.752 332.556 L
+380.999 332.556 L
+381.003 332.556 L
+381.246 332.556 L
+381.25 332.556 L
+381.497 332.556 L
+381.501 332.556 L
+381.748 332.556 L
+381.752 332.556 L
+381.999 332.556 L
+382.003 332.556 L
+382.247 332.556 L
+382.25 332.556 L
+382.497 332.556 L
+382.501 332.556 L
+382.748 332.556 L
+382.752 332.556 L
+382.999 332.556 L
+383.003 332.556 L
+383.247 332.556 L
+383.25 332.556 L
+383.498 332.556 L
+383.501 332.556 L
+383.749 332.556 L
+383.752 332.556 L
+384 332.556 L
+384.003 332.556 L
+384.247 332.556 L
+384.25 332.556 L
+384.498 332.556 L
+384.501 332.556 L
+384.749 332.556 L
+384.752 332.556 L
+385 332.556 L
+385.003 332.556 L
+385.247 332.556 L
+385.251 332.556 L
+385.498 332.556 L
+385.502 332.556 L
+385.749 332.556 L
+385.753 332.556 L
+386 332.556 L
+386.003 332.556 L
+386.247 332.556 L
+386.251 332.556 L
+386.498 332.556 L
+386.502 332.556 L
+386.749 332.556 L
+386.753 332.556 L
+387 332.556 L
+387.004 332.556 L
+387.247 332.556 L
+387.251 332.556 L
+387.498 332.556 L
+387.502 332.556 L
+387.749 332.556 L
+387.753 332.556 L
+387.996 332.556 L
+388 332.556 L
+388.247 332.556 L
+388.251 332.556 L
+388.498 332.556 L
+388.502 332.556 L
+388.749 332.556 L
+388.753 332.556 L
+388.996 332.556 L
+389 332.556 L
+389.247 332.556 L
+389.251 332.556 L
+389.498 332.556 L
+389.502 332.556 L
+389.749 332.556 L
+389.753 332.556 L
+389.997 332.556 L
+390 332.556 L
+390.247 332.556 L
+390.251 332.556 L
+390.498 332.556 L
+390.502 332.556 L
+390.749 332.556 L
+390.753 332.556 L
+390.997 332.556 L
+391 332.556 L
+391.248 332.556 L
+391.251 332.556 L
+391.499 332.556 L
+391.502 332.556 L
+391.75 332.556 L
+391.753 332.556 L
+391.997 332.556 L
+392 332.556 L
+392.248 332.556 L
+392.251 332.556 L
+392.499 332.556 L
+392.502 332.556 L
+392.75 332.556 L
+392.753 332.556 L
+392.997 332.556 L
+393.001 332.556 L
+393.248 332.556 L
+393.252 332.556 L
+393.499 332.556 L
+393.503 332.556 L
+393.75 332.556 L
+393.753 332.556 L
+393.997 332.556 L
+394.001 332.556 L
+394.248 332.556 L
+394.252 332.556 L
+394.499 332.556 L
+394.503 332.556 L
+394.75 332.556 L
+394.754 332.556 L
+394.997 332.556 L
+395.001 332.556 L
+395.248 332.556 L
+395.252 332.556 L
+395.499 332.556 L
+395.503 332.556 L
+395.746 332.556 L
+395.75 332.556 L
+395.997 332.556 L
+396.001 332.556 L
+396.248 332.556 L
+396.252 332.556 L
+396.499 332.556 L
+396.503 332.556 L
+396.746 332.556 L
+396.75 332.556 L
+396.997 332.556 L
+397.001 332.556 L
+397.248 332.556 L
+397.252 332.556 L
+397.499 332.556 L
+397.503 332.556 L
+397.747 332.556 L
+397.75 332.556 L
+397.997 332.556 L
+398.001 332.556 L
+398.248 332.556 L
+398.252 332.556 L
+398.499 332.556 L
+398.503 332.556 L
+398.747 332.556 L
+398.75 332.556 L
+398.998 332.556 L
+399.001 332.556 L
+399.249 332.556 L
+399.252 332.556 L
+399.5 332.556 L
+399.503 332.556 L
+399.747 332.556 L
+399.75 332.556 L
+399.998 332.556 L
+400.001 332.556 L
+400.249 332.556 L
+400.252 332.556 L
+400.5 332.556 L
+400.503 332.556 L
+400.747 332.556 L
+400.751 332.556 L
+400.998 332.556 L
+401.002 332.556 L
+401.249 332.556 L
+401.253 332.556 L
+401.5 332.556 L
+401.503 332.556 L
+401.747 332.556 L
+401.751 332.556 L
+401.998 332.556 L
+402.002 332.556 L
+402.249 332.556 L
+402.253 332.556 L
+402.5 332.556 L
+402.504 332.556 L
+402.747 332.556 L
+402.751 332.556 L
+402.998 332.556 L
+403.002 332.556 L
+403.249 332.556 L
+403.253 332.556 L
+403.496 332.556 L
+403.5 332.556 L
+403.747 332.556 L
+403.751 332.556 L
+403.998 332.556 L
+404.002 332.556 L
+404.249 332.556 L
+404.253 332.556 L
+404.496 332.556 L
+404.5 332.556 L
+404.747 332.556 L
+404.751 332.556 L
+404.998 332.556 L
+405.002 332.556 L
+405.249 332.556 L
+405.253 332.556 L
+405.497 332.556 L
+405.5 332.556 L
+405.747 332.556 L
+405.751 332.556 L
+405.998 332.556 L
+406.002 332.556 L
+406.249 332.556 L
+406.253 332.556 L
+406.497 332.556 L
+406.5 332.556 L
+406.748 332.556 L
+406.751 332.556 L
+406.999 332.556 L
+407.002 332.556 L
+407.25 332.556 L
+407.253 332.556 L
+407.497 332.556 L
+407.5 332.556 L
+407.748 332.556 L
+407.751 332.556 L
+407.999 332.556 L
+408.002 332.556 L
+408.25 332.556 L
+408.253 332.556 L
+408.497 332.556 L
+408.501 332.556 L
+408.748 332.556 L
+408.752 332.556 L
+408.999 332.556 L
+409.003 332.556 L
+409.25 332.556 L
+409.253 332.556 L
+409.497 332.556 L
+409.501 332.556 L
+409.748 332.556 L
+409.752 332.556 L
+409.999 332.556 L
+410.003 332.556 L
+410.25 332.556 L
+410.254 332.556 L
+410.497 332.556 L
+410.501 332.556 L
+410.748 332.556 L
+410.752 332.556 L
+410.999 332.556 L
+411.003 332.556 L
+411.246 332.556 L
+411.25 332.556 L
+411.497 332.556 L
+411.501 332.556 L
+411.748 332.556 L
+411.752 332.556 L
+411.999 332.556 L
+412.003 332.556 L
+412.246 332.556 L
+412.25 332.556 L
+412.497 332.556 L
+412.501 332.556 L
+412.748 332.556 L
+412.752 332.556 L
+412.999 332.556 L
+413.003 332.556 L
+413.247 332.556 L
+413.25 332.556 L
+413.497 332.556 L
+413.501 332.556 L
+413.748 332.556 L
+413.752 332.556 L
+413.999 332.556 L
+414.003 332.556 L
+414.247 332.556 L
+414.25 332.556 L
+414.498 332.556 L
+414.501 332.556 L
+414.749 332.556 L
+414.752 332.556 L
+415 332.556 L
+415.003 332.556 L
+415.247 332.556 L
+415.25 332.556 L
+415.498 332.556 L
+415.501 332.556 L
+415.749 332.556 L
+415.752 332.556 L
+416 332.556 L
+416.003 332.556 L
+416.247 332.556 L
+416.251 332.556 L
+416.498 332.556 L
+416.502 332.556 L
+416.749 332.556 L
+416.753 332.556 L
+417 332.556 L
+417.003 332.556 L
+417.247 332.556 L
+417.251 332.556 L
+417.498 332.556 L
+417.502 332.556 L
+417.749 332.556 L
+417.753 332.556 L
+418 332.556 L
+418.004 332.556 L
+418.247 332.556 L
+418.251 332.556 L
+418.498 332.556 L
+418.502 332.556 L
+418.749 332.556 L
+418.753 332.556 L
+418.996 332.556 L
+419 332.556 L
+419.247 332.556 L
+419.251 332.556 L
+419.498 332.556 L
+419.502 332.556 L
+419.749 332.556 L
+419.753 332.556 L
+419.996 332.556 L
+420 332.556 L
+420.247 332.556 L
+420.251 332.556 L
+420.498 332.556 L
+420.502 332.556 L
+420.749 332.556 L
+420.753 332.556 L
+420.997 332.556 L
+421 332.556 L
+421.247 332.556 L
+421.251 332.556 L
+421.498 332.556 L
+421.502 332.556 L
+421.749 332.556 L
+421.753 332.556 L
+421.997 332.556 L
+422 332.556 L
+422.248 332.556 L
+422.251 332.556 L
+422.499 332.556 L
+422.502 332.556 L
+422.75 332.556 L
+422.753 332.556 L
+422.997 332.556 L
+423 332.556 L
+423.248 332.556 L
+423.251 332.556 L
+423.499 332.556 L
+423.502 332.556 L
+423.75 332.556 L
+423.753 332.556 L
+423.997 332.556 L
+424.001 332.556 L
+424.248 332.556 L
+424.252 332.556 L
+424.499 332.556 L
+424.503 332.556 L
+424.75 332.556 L
+424.753 332.556 L
+424.997 332.556 L
+425.001 332.556 L
+425.248 332.556 L
+425.252 332.556 L
+425.499 332.556 L
+425.503 332.556 L
+425.75 332.556 L
+425.754 332.556 L
+425.997 332.556 L
+426.001 332.556 L
+426.248 332.556 L
+426.252 332.556 L
+426.499 332.556 L
+426.503 332.556 L
+426.746 332.556 L
+426.75 332.556 L
+426.997 332.556 L
+427.001 332.556 L
+427.248 332.556 L
+427.252 332.556 L
+427.499 332.556 L
+427.503 332.556 L
+427.746 332.556 L
+427.75 332.556 L
+427.997 332.556 L
+428.001 332.556 L
+428.248 332.556 L
+428.252 332.556 L
+428.499 332.556 L
+428.503 332.556 L
+428.747 332.556 L
+428.75 332.556 L
+428.997 332.556 L
+429.001 332.556 L
+429.248 332.556 L
+429.252 332.556 L
+429.499 332.556 L
+429.503 332.556 L
+429.747 332.556 L
+429.75 332.556 L
+429.998 332.556 L
+430.001 332.556 L
+430.249 332.556 L
+430.252 332.556 L
+430.5 332.556 L
+430.503 332.556 L
+430.747 332.556 L
+430.75 332.556 L
+430.99 332.652 L
+430.998 332.441 L
+431.001 332.622 L
+431.024 334.309 L
+431.208 324.959 L
+431.249 329.877 L
+431.252 332.253 L
+431.426 321.07 L
+431.452 340.422 L
+431.5 336.238 L
+431.503 334.309 L
+431.577 355.59 L
+431.717 317.464 L
+431.747 341.878 L
+431.751 340.947 L
+431.784 351.743 L
+431.939 306.799 L
+431.998 324.64 L
+432.002 325.133 L
+432.061 287.735 L
+432.249 354.552 L
+432.253 352.009 L
+432.275 301.84 L
+432.337 373.166 L
+432.5 353.672 L
+432.503 351.94 L
+432.544 372.441 L
+432.732 287.91 L
+432.747 344.276 L
+432.751 338.853 L
+432.943 318.743 L
+432.976 386.809 L
+432.998 347.772 L
+433.002 351.7 L
+433.009 369.482 L
+433.238 288.77 L
+433.249 301.41 L
+433.253 302.126 L
+433.301 232.934 L
+433.437 346.75 L
+433.5 296.079 L
+433.504 305.324 L
+433.629 372.149 L
+433.677 275.927 L
+433.747 325.634 L
+433.751 319.861 L
+433.85 294.766 L
+433.998 400.626 L
+434.002 407.258 L
+434.234 288.425 L
+434.249 305.186 L
+434.253 312.664 L
+434.301 360.978 L
+434.315 266.667 L
+434.496 346.318 L
+434.5 375.596 L
+434.507 397.681 L
+434.692 47 L
+434.747 244.943 L
+434.751 272.274 L
+434.795 162.269 L
+434.928 364.403 L
+434.998 277.999 L
+435.002 292.126 L
+435.031 177.138 L
+435.135 482.821 L
+435.249 334.023 L
+435.253 333.112 L
+435.297 392.416 L
+435.338 248.949 L
+435.496 346.05 L
+435.5 336.023 L
+435.541 252.572 L
+435.64 444.67 L
+435.747 342.235 L
+435.751 342.229 L
+435.803 414.255 L
+435.984 209.662 L
+435.998 241.727 L
+436.002 238.449 L
+436.231 369.73 L
+436.249 341.399 L
+436.253 340.182 L
+436.26 366.352 L
+436.294 289.273 L
+436.497 301.893 L
+436.5 315.273 L
+436.541 302.98 L
+436.681 414.332 L
+436.747 347.19 L
+436.751 330.404 L
+436.814 466.484 L
+436.965 255.581 L
+436.998 287.37 L
+437.002 291.754 L
+437.102 402.179 L
+437.209 218.014 L
+437.249 342.774 L
+437.253 302.128 L
+437.279 375.106 L
+437.338 212.54 L
+437.497 234.484 L
+437.5 224.398 L
+437.7 374.377 L
+437.748 362.027 L
+437.751 374.951 L
+437.785 287.037 L
+437.895 463.952 L
+437.999 369.81 L
+438.002 346.879 L
+438.032 412.332 L
+438.25 268.501 L
+438.253 276.306 L
+438.467 359.757 L
+438.497 330.516 L
+438.5 339.882 L
+438.567 373.114 L
+438.622 265.117 L
+438.748 360.365 L
+438.751 357.475 L
+438.833 204.723 L
+438.999 299.284 L
+439.002 291.151 L
+439.006 291.051 L
+439.15 403.855 L
+439.25 356.711 L
+439.253 345.387 L
+439.327 403.19 L
+439.397 292.525 L
+439.497 340.569 L
+439.501 335.383 L
+439.619 366.548 L
+439.718 280.818 L
+439.748 317.859 L
+439.752 321.457 L
+439.888 255.068 L
+439.991 382.275 L
+439.999 340.932 L
+440.003 318.222 L
+440.01 305.367 L
+440.202 428.49 L
+440.25 355.751 L
+440.253 360.594 L
+440.405 399.902 L
+440.467 287.299 L
+440.497 331.082 L
+440.501 343.647 L
+440.552 358.421 L
+440.678 273.496 L
+440.748 319.557 L
+440.752 313.61 L
+440.892 249.537 L
+440.969 371.473 L
+440.999 322.75 L
+441.003 314.938 L
+441.073 252.064 L
+441.235 371.196 L
+441.25 329.134 L
+441.254 337.674 L
+441.397 430.023 L
+441.457 329.673 L
+441.497 352.948 L
+441.501 354.528 L
+441.527 440.719 L
+441.634 316.457 L
+441.748 337.434 L
+441.752 317.381 L
+441.803 256.25 L
+441.818 354.058 L
+441.999 310.1 L
+442.003 314.828 L
+442.209 358.036 L
+442.224 206.103 L
+442.246 291.074 L
+442.25 285.291 L
+442.268 218.597 L
+442.446 376.937 L
+442.497 330.169 L
+442.501 347.065 L
+442.685 317.869 L
+442.73 440.956 L
+442.748 423.45 L
+442.752 466.124 L
+442.984 202.388 L
+442.999 401.517 L
+443.003 436.194 L
+443.007 439.039 L
+443.114 248.799 L
+443.246 257.579 L
+443.25 277.152 L
+443.313 202.073 L
+443.475 368.029 L
+443.497 276.256 L
+443.501 269.445 L
+443.549 239.582 L
+443.656 462.14 L
+443.748 346.133 L
+443.752 316.947 L
+443.83 518.998 L
+443.929 140.837 L
+443.999 283.542 L
+444.003 280.227 L
+444.04 461.357 L
+444.247 428.017 L
+444.25 430.432 L
+444.468 249.197 L
+444.497 320.145 L
+444.501 343.023 L
+444.63 375 L
+444.66 257.493 L
+444.748 275.106 L
+444.752 302.722 L
+444.807 421.197 L
+444.87 265.77 L
+444.999 318.306 L
+445.003 319.433 L
+445.044 278.384 L
+445.106 407.157 L
+445.247 339.468 L
+445.25 341.655 L
+445.365 390.408 L
+445.468 264.438 L
+445.498 317.306 L
+445.501 336.833 L
+445.612 222.194 L
+445.719 391.123 L
+445.749 324.783 L
+445.752 315.938 L
+445.874 377.796 L
+445.985 248.188 L
+446 323.273 L
+446.003 336.302 L
+446.188 251.422 L
+446.247 390.359 L
+446.25 390.352 L
+446.402 284.566 L
+446.457 429.009 L
+446.498 327.98 L
+446.501 367.598 L
+446.505 391.381 L
+446.734 253.446 L
+446.749 290.451 L
+446.752 276.356 L
+446.811 378.283 L
+446.918 257.041 L
+447 332.729 L
+447.003 333.916 L
+447.033 373.375 L
+447.077 274.261 L
+447.247 316.325 L
+447.251 324.783 L
+447.443 413.087 L
+447.494 268.595 L
+447.498 282.044 L
+447.502 326.613 L
+447.516 288.35 L
+447.586 392.78 L
+447.749 364.863 L
+447.753 345.259 L
+447.767 382.99 L
+447.852 269.385 L
+448 347.111 L
+448.003 355.017 L
+448.133 368.233 L
+448.247 257.648 L
+448.251 256.168 L
+448.306 360.848 L
+448.498 335.593 L
+448.502 326.289 L
+448.62 285.208 L
+448.682 398.04 L
+448.749 315.269 L
+448.753 338.047 L
+448.834 314.489 L
+448.897 398.569 L
+449 336.057 L
+449.004 333.183 L
+449.063 401.627 L
+449.247 307.587 L
+449.251 299.249 L
+449.31 370.664 L
+449.457 276.337 L
+449.498 314.168 L
+449.502 315.041 L
+449.539 362.041 L
+449.675 266.514 L
+449.749 293.262 L
+449.753 307.479 L
+449.863 277.601 L
+449.963 367.682 L
+449.996 320.386 L
+450 331.339 L
+450.07 399.142 L
+450.129 298.964 L
+450.247 339.265 L
+450.251 331.98 L
+450.269 397.14 L
+450.343 306.139 L
+450.498 360.292 L
+450.502 352.514 L
+450.513 390.018 L
+450.683 301.454 L
+450.749 304.855 L
+450.753 299.631 L
+450.771 265.698 L
+450.827 345.028 L
+450.996 303.723 L
+451 324.574 L
+451.085 371.573 L
+451.214 276.074 L
+451.247 348.157 L
+451.251 349.096 L
+451.277 382.526 L
+451.343 282.171 L
+451.498 348.632 L
+451.502 337.678 L
+451.517 310.293 L
+451.698 380.543 L
+451.749 341.715 L
+451.753 332.958 L
+451.871 295.522 L
+451.941 415.703 L
+451.997 329.958 L
+452 325.785 L
+452.089 275.237 L
+452.152 411.516 L
+452.247 289.167 L
+452.251 294.075 L
+452.295 369.114 L
+452.439 273.84 L
+452.498 338.022 L
+452.502 332.703 L
+452.517 402.049 L
+452.646 279.534 L
+452.749 341.447 L
+452.753 334.614 L
+452.823 274.213 L
+452.919 367.397 L
+452.997 316.629 L
+453 322.819 L
+453.07 278.803 L
+453.248 367.122 L
+453.251 368.698 L
+453.292 276.601 L
+453.392 404.815 L
+453.499 337.36 L
+453.502 334.604 L
+453.606 404.254 L
+453.746 266.107 L
+453.75 278.467 L
+453.753 305.801 L
+453.786 291.177 L
+453.809 379.782 L
+453.997 360.344 L
+454 367.096 L
+454.015 390.202 L
+454.218 303.465 L
+454.248 311.758 L
+454.251 295.6 L
+454.285 261.666 L
+454.488 322.313 L
+454.499 296.449 L
+454.502 280.736 L
+454.547 382.234 L
+454.75 352.71 L
+454.753 361.818 L
+454.775 382.54 L
+454.812 288.474 L
+454.997 347.738 L
+455.001 337.541 L
+455.108 404.227 L
+455.237 308.985 L
+455.248 336.464 L
+455.252 324.853 L
+455.381 248.893 L
+455.488 361.721 L
+455.499 315.381 L
+455.503 319.488 L
+455.669 364.611 L
+455.75 271.864 L
+455.753 278.654 L
+455.886 255.621 L
+455.982 370.457 L
+455.997 349.095 L
+456.001 348.504 L
+456.097 321.52 L
+456.237 392.704 L
+456.248 353.457 L
+456.252 351.061 L
+456.366 371.863 L
+456.473 292.596 L
+456.499 320.308 L
+456.503 304.046 L
+456.506 299.144 L
+456.576 379.504 L
+456.75 326.583 L
+456.754 320.721 L
+456.787 364.228 L
+456.809 273.059 L
+456.997 343.983 L
+457.001 328.547 L
+457.012 290.517 L
+457.226 366.691 L
+457.248 340.205 L
+457.252 343.511 L
+457.348 290.242 L
+457.473 352.217 L
+457.499 333.458 L
+457.503 327.512 L
+457.647 388.163 L
+457.717 311.696 L
+457.746 334.226 L
+457.75 348.458 L
+457.839 382.788 L
+457.923 260.706 L
+457.997 300.984 L
+458.001 313.751 L
+458.13 272.039 L
+458.2 368.789 L
+458.248 352.219 L
+458.252 351.636 L
+458.407 385.281 L
+458.477 272.17 L
+458.499 314.469 L
+458.503 304.265 L
+458.507 299.593 L
+458.739 379.404 L
+458.746 344.948 L
+458.75 343.274 L
+458.813 278.075 L
+458.876 391.086 L
+458.997 330.178 L
+459.001 334.57 L
+459.093 345.575 L
+459.2 285.505 L
+459.248 341.653 L
+459.252 339.616 L
+459.337 404.255 L
+459.411 298.906 L
+459.499 348.173 L
+459.503 357.763 L
+459.577 272.089 L
+459.747 319.535 L
+459.75 324.451 L
+459.835 312.526 L
+459.894 400.842 L
+459.997 336.146 L
+460.001 349.581 L
+460.145 264.371 L
+460.204 370.671 L
+460.248 363.505 L
+460.252 359.988 L
+460.307 315.466 L
+460.37 384.719 L
+460.499 317.45 L
+460.503 315.601 L
+460.577 368.37 L
+460.64 270.585 L
+460.747 309.861 L
+460.75 314.112 L
+460.861 303.367 L
+460.961 424.047 L
+460.998 405.683 L
+461.001 406.738 L
+461.234 269.543 L
+461.249 279.442 L
+461.252 272.584 L
+461.256 272.243 L
+461.422 405.113 L
+461.5 351.35 L
+461.503 374.317 L
+461.507 382.308 L
+461.739 272.135 L
+461.747 306.601 L
+461.75 312.291 L
+461.762 272.469 L
+461.983 373.206 L
+461.998 348.076 L
+462.001 348.305 L
+462.068 375.247 L
+462.127 288.72 L
+462.249 328.805 L
+462.252 318.39 L
+462.297 294.153 L
+462.407 380.492 L
+462.5 330.036 L
+462.503 323.957 L
+462.621 383.981 L
+462.743 297.504 L
+462.747 305.394 L
+462.751 314.923 L
+462.769 279.706 L
+462.957 353.333 L
+462.998 347.988 L
+463.002 349.868 L
+463.075 372.779 L
+463.212 296.206 L
+463.249 323.859 L
+463.253 321.998 L
+463.363 282.685 L
+463.47 362.55 L
+463.5 351.008 L
+463.503 353.718 L
+463.537 323.386 L
+463.596 383.484 L
+463.747 335.465 L
+463.751 338.707 L
+463.843 358.322 L
+463.961 306.366 L
+463.998 318.142 L
+464.002 314.793 L
+464.02 365.433 L
+464.075 301.456 L
+464.249 324.952 L
+464.253 330.363 L
+464.43 295.082 L
+464.485 392.589 L
+464.5 374.417 L
+464.504 365.359 L
+464.64 293.421 L
+464.747 310.457 L
+464.751 325.823 L
+464.85 307.811 L
+464.913 377.801 L
+464.998 325.369 L
+465.002 331.502 L
+465.02 296.61 L
+465.065 357.331 L
+465.249 322.977 L
+465.253 333.266 L
+465.286 309.413 L
+465.482 360.363 L
+465.496 330.595 L
+465.5 338.39 L
+465.692 343.758 L
+465.714 285.141 L
+465.747 295.395 L
+465.751 290.329 L
+465.983 404.095 L
+465.998 364.349 L
+466.002 362.763 L
+466.172 303.914 L
+466.19 375.17 L
+466.249 305.104 L
+466.253 305.5 L
+466.297 279.424 L
+466.412 375.257 L
+466.496 324.034 L
+466.5 329.935 L
+466.57 364.537 L
+466.714 296.408 L
+466.747 306.96 L
+466.751 303.35 L
+466.77 356.493 L
+466.851 301.884 L
+466.998 328.63 L
+467.002 340.048 L
+467.039 312.432 L
+467.098 373.451 L
+467.249 325.94 L
+467.253 319.784 L
+467.404 298.296 L
+467.434 377.145 L
+467.497 328.482 L
+467.5 325.069 L
+467.592 290.753 L
+467.655 377.487 L
+467.747 307.465 L
+467.751 305.271 L
+467.902 366.806 L
+467.973 286.857 L
+467.998 330.256 L
+468.002 322.677 L
+468.076 381.98 L
+468.179 289.785 L
+468.249 340.668 L
+468.253 342.733 L
+468.382 313.996 L
+468.449 366.215 L
+468.497 349.144 L
+468.5 346.533 L
+468.6 294.246 L
+468.663 373.225 L
+468.748 353.804 L
+468.751 357.315 L
+468.869 365.163 L
+468.906 308.173 L
+468.999 326.292 L
+469.002 323.294 L
+469.047 296.056 L
+469.209 344.191 L
+469.25 325.671 L
+469.253 317.178 L
+469.261 298.244 L
+469.393 360.475 L
+469.497 331.773 L
+469.5 334.62 L
+469.718 307.666 L
+469.737 372.802 L
+469.748 339.976 L
+469.751 338.493 L
+469.914 312.989 L
+469.962 374.092 L
+469.999 351.468 L
+470.002 341.875 L
+470.198 360.851 L
+470.224 305.062 L
+470.25 327.587 L
+470.253 316.269 L
+470.412 354.233 L
+470.478 286.878 L
+470.497 326.54 L
+470.501 317.811 L
+470.659 284.578 L
+470.744 369.166 L
+470.748 365.154 L
+470.752 357.329 L
+470.87 302.89 L
+470.918 362.614 L
+470.999 321.076 L
+471.003 320.344 L
+471.014 310.764 L
+471.176 365.005 L
+471.25 330.761 L
+471.253 332.71 L
+471.268 359.695 L
+471.445 301.53 L
+471.497 326.109 L
+471.501 321.28 L
+471.571 295.863 L
+471.634 348.165 L
+471.748 315.677 L
+471.752 310.641 L
+471.785 280.336 L
+471.84 380.15 L
+471.999 313.204 L
+472.003 310.457 L
+472.242 358.3 L
+472.25 349.231 L
+472.254 343.272 L
+472.364 307.53 L
+472.427 361.645 L
+472.497 330.021 L
+472.501 324.739 L
+472.556 372.334 L
+472.744 305.611 L
+472.748 311.299 L
+472.752 320.493 L
+472.774 345.017 L
+472.951 290.758 L
+472.999 326.974 L
+473.003 323.323 L
+473.077 281.75 L
+473.143 354.879 L
+473.246 305.451 L
+473.25 301.083 L
+473.494 350.325 L
+473.497 348.901 L
+473.501 343.948 L
+473.538 307.542 L
+473.619 376.557 L
+473.748 323.688 L
+473.752 316.443 L
+473.774 376.252 L
+473.966 299.69 L
+473.999 314.631 L
+474.003 312.954 L
+474.132 301.511 L
+474.239 362.626 L
+474.246 358.28 L
+474.25 354.757 L
+474.398 302.99 L
+474.497 330.095 L
+474.501 330.859 L
+474.545 300.231 L
+474.667 370.833 L
+474.748 307.905 L
+474.752 307.294 L
+474.811 388.371 L
+474.962 300.548 L
+474.999 331.149 L
+475.003 332.467 L
+475.125 301.32 L
+475.232 380.187 L
+475.247 369.681 L
+475.25 373.206 L
+475.254 374.399 L
+475.494 291.714 L
+475.497 294.584 L
+475.501 305.306 L
+475.652 349.306 L
+475.748 340.425 L
+475.752 340.983 L
+475.778 320.713 L
+475.885 369.796 L
+475.999 334.208 L
+476.003 332.97 L
+476.077 307.996 L
+476.143 365.596 L
+476.247 332.423 L
+476.25 333.928 L
+476.306 369.708 L
+476.398 298.926 L
+476.498 323.543 L
+476.501 326.766 L
+476.586 286.631 L
+476.749 340.191 L
+476.752 335.697 L
+476.822 307.189 L
+476.907 377.297 L
+477 311.18 L
+477.003 308.245 L
+477.025 304.954 L
+477.217 365.256 L
+477.247 349.059 L
+477.25 351.392 L
+477.328 364.283 L
+477.472 314.743 L
+477.498 329.047 L
+477.501 328.852 L
+477.542 368.193 L
+477.715 294.534 L
+477.749 320.92 L
+477.752 331.871 L
+477.878 313.406 L
+477.963 353.814 L
+478 326.735 L
+478.003 323.363 L
+478.04 304.131 L
+478.14 357.746 L
+478.247 329.529 L
+478.251 332.275 L
+478.395 353.684 L
+478.498 307.544 L
+478.502 303.761 L
+478.564 368.117 L
+478.749 342.412 L
+478.753 334.044 L
+478.819 362.31 L
+478.926 296.566 L
+479 317.069 L
+479.003 320.344 L
+479.088 302.753 L
+479.155 363.323 L
+479.247 340.741 L
+479.251 336.699 L
+479.343 312.47 L
+479.48 359.108 L
+479.498 317.715 L
+479.502 311.947 L
+479.55 302.414 L
+479.612 365.401 L
+479.749 342.463 L
+479.753 348.001 L
+479.786 357.814 L
+479.978 299.449 L
+480 322.312 L
+480.004 321.321 L
+480.155 312.232 L
+480.229 362.014 L
+480.247 356.356 L
+480.251 354.588 L
+480.306 307.14 L
+480.498 330.457 L
+480.502 326.57 L
+480.594 304.474 L
+480.668 371.819 L
+480.749 329.522 L
+480.753 334.037 L
+480.793 364.657 L
+480.93 307.874 L
+480.996 340.849 L
+481 343.431 L
+481.059 296.006 L
+481.125 347.628 L
+481.247 327.527 L
+481.251 322.619 L
+481.332 366.171 L
+481.472 294.238 L
+481.498 311.263 L
+481.502 316.305 L
+481.598 307.879 L
+481.749 362.626 L
+481.753 368.47 L
+481.757 370.003 L
+481.812 308.411 L
+481.996 348.655 L
+482 342.782 L
+482.196 347.001 L
+482.236 315.23 L
+482.247 327.69 L
+482.251 332.703 L
+482.303 353.744 L
+482.384 298.608 L
+482.498 347.804 L
+482.502 347.246 L
+482.557 299.997 L
+482.639 367.37 L
+482.749 323.619 L
+482.753 322.348 L
+482.842 354.69 L
+482.985 317.348 L
+482.997 326.312 L
+483 333.506 L
+483.078 363.124 L
+483.133 309.342 L
+483.247 327.808 L
+483.251 329.853 L
+483.447 317.236 L
+483.498 353.946 L
+483.502 357.78 L
+483.51 361.392 L
+483.609 306.519 L
+483.749 335.994 L
+483.753 336.912 L
+483.779 306.823 L
+483.927 361.556 L
+483.997 329.253 L
+484 330.13 L
+484.056 313.267 L
+484.163 353.653 L
+484.248 323.606 L
+484.251 323.373 L
+484.31 352.969 L
+484.469 320.957 L
+484.499 350.868 L
+484.502 352.899 L
+484.639 308.879 L
+484.75 322.812 L
+484.753 321.197 L
+484.849 314.348 L
+484.956 341.536 L
+484.997 329.613 L
+485 337.825 L
+485.034 350.306 L
+485.192 314.579 L
+485.248 343.412 L
+485.251 343.742 L
+485.277 310.649 L
+485.425 350.148 L
+485.499 331.795 L
+485.502 332.451 L
+485.565 316.38 L
+485.613 353.107 L
+485.75 341.863 L
+485.753 336.791 L
+485.775 343.318 L
+485.953 317.051 L
+485.997 326.838 L
+486.001 324.485 L
+486.019 344.276 L
+486.089 318.125 L
+486.248 342.471 L
+486.252 343.168 L
+486.373 318.281 L
+486.499 339.704 L
+486.503 340.526 L
+486.573 313.25 L
+486.624 364.797 L
+486.75 344.432 L
+486.753 343.723 L
+486.831 353.776 L
+486.894 309.949 L
+486.997 334.548 L
+487.001 338.938 L
+487.078 313.374 L
+487.215 343.56 L
+487.248 331.799 L
+487.252 329.115 L
+487.344 351.405 L
+487.495 305.145 L
+487.499 308.564 L
+487.503 315.774 L
+487.536 312.459 L
+487.72 348.071 L
+487.75 337.406 L
+487.754 337.562 L
+487.776 353.821 L
+487.827 322.368 L
+487.997 335.251 L
+488.001 332.389 L
+488.174 314.54 L
+488.23 351.471 L
+488.248 339.08 L
+488.252 337.392 L
+488.444 351.367 L
+488.481 319.506 L
+488.499 322.083 L
+488.503 318.357 L
+488.551 313.811 L
+488.665 347.86 L
+488.746 320.729 L
+488.75 318.987 L
+488.761 312.701 L
+488.82 350.066 L
+488.997 331.878 L
+489.001 335.528 L
+489.093 362.068 L
+489.189 320.26 L
+489.248 349.972 L
+489.252 354.596 L
+489.499 302.098 L
+489.503 305.783 L
+489.636 351.826 L
+489.746 341.796 L
+489.75 343.518 L
+489.839 350.666 L
+489.92 301.703 L
+489.997 323.621 L
+490.001 322.768 L
+490.023 356.753 L
+490.13 316.186 L
+490.248 325.644 L
+490.252 328.283 L
+490.315 363.988 L
+490.359 313.722 L
+490.499 344.19 L
+490.503 339.514 L
+490.547 310.142 L
+490.617 364.403 L
+490.747 352.754 L
+490.75 354.46 L
+490.887 297.092 L
+490.997 304.175 L
+491.001 307.891 L
+491.016 302.111 L
+491.212 355.874 L
+491.248 341.899 L
+491.252 343.296 L
+491.348 360.824 L
+491.451 300.274 L
+491.499 335.742 L
+491.503 338.508 L
+491.573 310.032 L
+491.691 368.305 L
+491.747 336.995 L
+491.75 332.448 L
+491.868 308.396 L
+491.935 357.518 L
+491.998 317.782 L
+492.001 316.544 L
+492.012 304.007 L
+492.138 351.198 L
+492.249 346.669 L
+492.252 347.104 L
+492.404 351.532 L
+492.463 312.279 L
+492.5 325.572 L
+492.503 323.698 L
+492.64 314.403 L
+492.71 370.909 L
+492.747 337.063 L
+492.75 336.009 L
+492.821 353.578 L
+492.946 304.655 L
+492.998 341.422 L
+493.001 343.723 L
+493.06 307.596 L
+493.123 350.478 L
+493.249 347.031 L
+493.252 348.799 L
+493.444 355.646 L
+493.5 305.267 L
+493.503 299.999 L
+493.511 294.132 L
+493.592 344.115 L
+493.747 334.456 L
+493.751 340.318 L
+493.78 356.063 L
+493.954 307.122 L
+493.998 349.154 L
+494.002 353.266 L
+494.009 357.103 L
+494.09 316.328 L
+494.249 332.13 L
+494.253 328.598 L
+494.334 350.107 L
+494.393 307.933 L
+494.5 337.513 L
+494.503 333.631 L
+494.551 317.125 L
+494.666 340.284 L
+494.747 338.514 L
+494.751 341.814 L
+494.784 355.072 L
+494.976 312.232 L
+494.998 324.165 L
+495.002 327.265 L
+495.157 309.995 L
+495.227 348.195 L
+495.249 328.581 L
+495.253 329.461 L
+495.301 347.042 L
+495.367 319.133 L
+495.5 344.813 L
+495.504 349.424 L
+495.507 350.19 L
+495.588 308.029 L
+495.747 324.744 L
+495.751 327.371 L
+495.832 310.302 L
+495.939 342.563 L
+495.998 331.717 L
+496.002 329.019 L
+496.042 311.371 L
+496.22 348.684 L
+496.249 321.867 L
+496.253 317.051 L
+496.36 350.809 L
+496.459 308.507 L
+496.496 334.823 L
+496.5 335.482 L
+496.533 354.632 L
+496.685 308.43 L
+496.747 351.375 L
+496.751 350.128 L
+496.792 353.191 L
+496.902 312.307 L
+496.998 325.331 L
+497.002 323.534 L
+497.028 295.426 L
+497.146 351.801 L
+497.249 320.14 L
+497.253 326.068 L
+497.349 353.964 L
+497.471 318.258 L
+497.496 328.312 L
+497.5 331.596 L
+497.626 316.096 L
+497.729 361.165 L
+497.747 324.841 L
+497.751 324.608 L
+497.818 344.241 L
+497.973 316.43 L
+497.998 321.404 L
+498.002 321.481 L
+498.209 311.027 L
+498.242 352.993 L
+498.249 347.991 L
+498.253 344.87 L
+498.275 366.436 L
+498.342 302.868 L
+498.497 321.492 L
+498.5 317.884 L
+498.519 292.42 L
+498.663 347.243 L
+498.747 335.54 L
+498.751 330.398 L
+498.829 362.412 L
+498.936 305.198 L
+498.998 340.897 L
+499.002 348.516 L
+499.035 368.843 L
+499.109 304.707 L
+499.249 353.538 L
+499.253 351.574 L
+499.497 304.303 L
+499.5 301.981 L
+499.511 298.152 L
+499.748 337.399 L
+499.751 341.743 L
+499.77 368.188 L
+499.999 318.054 L
+500.002 313.781 L
+500.117 338.199 L
+500.179 308.806 L
+500.25 331.067 L
+500.253 330.848 L
+500.272 325.926 L
+500.323 362.941 L
+500.497 340.95 L
+500.5 342.502 L
+500.541 347.038 L
+500.6 306.225 L
+500.748 329.065 L
+500.751 330.38 L
+500.81 311.489 L
+500.977 346.849 L
+500.999 344.828 L
+501.002 341.301 L
+501.102 341.573 L
+501.176 310.68 L
+501.25 332.695 L
+501.253 332.317 L
+501.442 353.337 L
+501.493 319.704 L
+501.497 322.134 L
+501.501 326.151 L
+501.645 344.899 L
+501.693 315.834 L
+501.748 330.887 L
+501.752 330.705 L
+501.929 320.818 L
+501.984 354.101 L
+501.999 342.5 L
+502.003 340.106 L
+502.017 350.598 L
+502.132 319.25 L
+502.25 325.271 L
+502.253 324.551 L
+502.372 339.711 L
+502.471 319.645 L
+502.497 322.413 L
+502.501 323.731 L
+502.741 351.226 L
+502.748 347.383 L
+502.752 342.248 L
+502.814 319.039 L
+502.999 319.481 L
+503.003 318.844 L
+503.25 343.827 L
+503.254 346.233 L
+503.268 360.837 L
+503.364 320.834 L
+503.497 341.969 L
+503.501 341.657 L
+503.575 305.817 L
+503.689 349.414 L
+503.748 321.908 L
+503.752 323.624 L
+503.789 315.149 L
+503.866 350.352 L
+503.999 328.926 L
+504.003 328.232 L
+504.143 309.139 L
+504.246 358.501 L
+504.25 359.648 L
+504.35 317.45 L
+504.497 318.48 L
+504.501 317.383 L
+504.519 308.787 L
+504.623 357.592 L
+504.748 321.71 L
+504.752 324.908 L
+504.785 351.358 L
+504.892 323.232 L
+504.999 344.146 L
+505.003 341.515 L
+505.058 317.412 L
+505.246 334.2 L
+505.25 335.357 L
+505.339 350.517 L
+505.449 317.324 L
+505.497 341.48 L
+505.501 339.569 L
+505.634 321.533 L
+505.711 355.806 L
+505.748 344.716 L
+505.752 342.272 L
+505.911 349.148 L
+505.985 310.471 L
+505.999 313.361 L
+506.003 310.199 L
+506.01 307.805 L
+506.08 348.985 L
+506.247 347.015 L
+506.25 351.667 L
+506.283 360.257 L
+506.413 319.43 L
+506.497 343.433 L
+506.501 343.263 L
+506.579 317.852 L
+506.748 331.133 L
+506.752 331.311 L
+506.771 326.027 L
+506.841 353.769 L
+506.999 332.627 L
+507.003 333.555 L
+507.088 310.371 L
+507.147 339.352 L
+507.247 328.609 L
+507.25 328.179 L
+507.376 346.317 L
+507.461 321.57 L
+507.498 336.976 L
+507.501 333.675 L
+507.664 313.897 L
+507.715 352.18 L
+507.749 351.933 L
+507.752 352.464 L
+507.981 322.602 L
+508 325.791 L
+508.003 325.044 L
+508.11 315.712 L
+508.132 341.89 L
+508.247 327.774 L
+508.25 330.931 L
+508.343 347.551 L
+508.398 319.358 L
+508.498 344.434 L
+508.501 346.718 L
+508.575 318.443 L
+508.749 324.217 L
+508.752 325.605 L
+508.767 325.492 L
+508.889 353.206 L
+509 327.375 L
+509.003 326.085 L
+509.066 346.273 L
+509.158 320.804 L
+509.247 332.016 L
+509.251 333.017 L
+509.31 318.67 L
+509.376 344.076 L
+509.498 328.868 L
+509.502 328.203 L
+509.535 339.729 L
+509.664 317.097 L
+509.749 329.637 L
+509.753 327.015 L
+509.815 351.873 L
+509.893 325.136 L
+510 348.679 L
+510.003 345.902 L
+510.063 312.84 L
+510.247 336.545 L
+510.251 335.297 L
+510.28 324.053 L
+510.457 353.457 L
+510.498 332.44 L
+510.502 334.263 L
+510.59 337.18 L
+510.738 312.478 L
+510.749 317.575 L
+510.753 319.168 L
+510.782 317.003 L
+510.882 342.716 L
+511 332.558 L
+511.004 336.092 L
+511.033 351.712 L
+511.173 328.076 L
+511.247 333.093 L
+511.251 330.043 L
+511.362 321.938 L
+511.469 344.045 L
+511.498 342.701 L
+511.502 343.379 L
+511.672 344.432 L
+511.727 321.7 L
+511.749 332.043 L
+511.753 331.144 L
+511.793 336.782 L
+511.827 323.485 L
+511.996 327.94 L
+512 327.442 L
+512.026 317.407 L
+512.114 339.197 L
+512.247 327.638 L
+512.251 328.05 L
+512.288 322.593 L
+512.465 345.868 L
+512.498 339.861 L
+512.502 342.648 L
+512.531 353.98 L
+512.605 327.057 L
+512.749 332.309 L
+512.753 332.689 L
+512.838 335.292 L
+512.948 314.366 L
+512.996 327.256 L
+513 327.234 L
+513.177 348.255 L
+513.233 321.005 L
+513.247 331.252 L
+513.251 334.116 L
+513.266 344.141 L
+513.362 318.41 L
+513.498 328.715 L
+513.502 327.232 L
+513.528 317.934 L
+513.749 350.841 L
+513.753 352.116 L
+513.757 352.29 L
+513.952 321.26 L
+513.997 327.57 L
+514 328.99 L
+514.214 340.411 L
+514.247 325.057 L
+514.251 325.476 L
+514.351 345.248 L
+514.454 316.328 L
+514.498 328.457 L
+514.502 329.144 L
+514.62 321.853 L
+514.724 344.115 L
+514.749 340.606 L
+514.753 341.394 L
+514.934 347.787 L
+514.993 318.93 L
+514.997 319.159 L
+515 320.338 L
+515.133 342.765 L
+515.192 317.405 L
+515.248 341.195 L
+515.251 338.706 L
+515.281 348.128 L
+515.469 328.529 L
+515.499 332.314 L
+515.502 332.021 L
+515.521 336.358 L
+515.62 314.544 L
+515.75 324.148 L
+515.753 323.984 L
+515.868 322.104 L
+515.971 348.435 L
+515.997 340.049 L
+516 341.388 L
+516.012 344.891 L
+516.207 321.268 L
+516.248 327.262 L
+516.251 327.77 L
+516.392 343.715 L
+516.499 321.145 L
+516.502 320.806 L
+516.565 344.923 L
+516.75 332.848 L
+516.753 330.489 L
+516.883 320.982 L
+516.997 337.288 L
+517.001 339.073 L
+517.03 351.292 L
+517.089 321.956 L
+517.248 328.863 L
+517.252 325.819 L
+517.296 313.774 L
+517.407 350.013 L
+517.499 329.663 L
+517.503 327.205 L
+517.587 354.692 L
+517.72 322.565 L
+517.75 337.684 L
+517.753 339.713 L
+517.761 342.305 L
+517.927 309.422 L
+517.997 329.402 L
+518.001 328.034 L
+518.008 325.742 L
+518.2 345.388 L
+518.248 341.58 L
+518.252 340.459 L
+518.373 324.35 L
+518.499 333.237 L
+518.503 332.718 L
+518.584 318.859 L
+518.709 351.019 L
+518.75 337.567 L
+518.754 334.511 L
+518.872 350.259 L
+518.99 317.561 L
+518.997 319.454 L
+519.001 320.702 L
+519.071 348.502 L
+519.185 319.675 L
+519.248 341.961 L
+519.252 342.216 L
+519.278 347.511 L
+519.396 315.75 L
+519.499 333.197 L
+519.503 333.151 L
+519.602 324.074 L
+519.687 347.466 L
+519.746 340.685 L
+519.75 340.775 L
+519.787 344.837 L
+519.894 320.875 L
+519.997 336.91 L
+520.001 335.954 L
+520.104 320.778 L
+520.163 346.799 L
+520.248 329.977 L
+520.252 330.02 L
+520.37 354.476 L
+520.484 310.177 L
+520.499 322.535 L
+520.503 323.72 L
+520.58 338.583 L
+520.647 319.724 L
+520.746 337.295 L
+520.75 339.803 L
+520.802 347.481 L
+520.861 320.399 L
+520.997 342.034 L
+521.001 345.613 L
+521.008 349.94 L
+521.075 318.58 L
+521.248 336.904 L
+521.252 336.336 L
+521.348 342.403 L
+521.411 320.434 L
+521.499 321.531 L
+521.503 321.325 L
+521.54 320.729 L
+521.728 347.054 L
+521.747 340.736 L
+521.75 340.057 L
+521.994 319.616 L
+521.997 319.995 L
+522.001 321.384 L
+522.145 320.926 L
+522.23 341.137 L
+522.248 335.315 L
+522.252 335.546 L
+522.466 341.268 L
+522.492 330.174 L
+522.499 331.366 L
+522.503 332.258 L
+522.562 320.978 L
+522.677 347.006 L
+522.747 334.047 L
+522.75 334.938 L
+522.972 339.502 L
+522.998 322.318 L
+523.001 323.261 L
+523.23 339.787 L
+523.249 338.364 L
+523.252 339.356 L
+523.319 345.14 L
+523.463 320.427 L
+523.5 324.784 L
+523.503 324.312 L
+523.533 342.101 L
+523.747 333.388 L
+523.75 333.006 L
+523.928 319.501 L
+523.987 345.067 L
+523.998 339.597 L
+524.001 335.576 L
+524.101 324.212 L
+524.249 342.887 L
+524.252 342.419 L
+524.278 343.759 L
+524.496 322.453 L
+524.5 323.07 L
+524.503 323.7 L
+524.518 319.886 L
+524.625 343.429 L
+524.747 332.681 L
+524.751 334.738 L
+524.943 326.336 L
+524.987 343.913 L
+524.998 340.988 L
+525.002 341.075 L
+525.009 341.55 L
+525.097 318.104 L
+525.249 325.697 L
+525.253 326.749 L
+525.485 339.314 L
+525.5 333.501 L
+525.503 331.79 L
+525.64 340.97 L
+525.71 321.379 L
+525.747 333.112 L
+525.751 331.984 L
+525.909 347.656 L
+525.994 322.577 L
+525.998 322.658 L
+526.002 322.922 L
+526.079 338.008 L
+526.249 335.941 L
+526.253 334.121 L
+526.426 317.423 L
+526.5 346.188 L
+526.504 345.951 L
+526.607 323.439 L
+526.747 326.974 L
+526.751 325.882 L
+526.78 318.486 L
+526.928 347.507 L
+526.998 321.417 L
+527.002 321.271 L
+527.094 336.909 L
+527.249 336.175 L
+527.253 337.399 L
+527.256 337.761 L
+527.334 322.383 L
+527.496 324.5 L
+527.5 325.747 L
+527.6 346.647 L
+527.673 321.631 L
+527.747 331.793 L
+527.751 331.518 L
+527.817 342.326 L
+527.876 317.48 L
+527.998 333.22 L
+528.002 331.966 L
+528.098 320.619 L
+528.161 347.022 L
+528.249 342.049 L
+528.253 342.136 L
+528.478 320.086 L
+528.496 327.384 L
+528.5 327.163 L
+528.515 320.586 L
+528.574 338.309 L
+528.747 331.749 L
+528.751 333.193 L
+528.913 341.836 L
+528.969 327.633 L
+528.998 335.665 L
+529.002 337.2 L
+529.054 323.086 L
+529.227 346.218 L
+529.249 342.606 L
+529.253 342.169 L
+529.342 324.41 L
+529.497 327.735 L
+529.5 327.516 L
+529.552 324.964 L
+529.666 342.713 L
+529.747 331.169 L
+529.751 331.231 L
+529.877 349.193 L
+529.976 317.343 L
+529.998 326.281 L
+530.002 327.466 L
+530.054 323.744 L
+530.249 338.153 L
+530.253 338.272 L
+530.301 348.083 L
+530.36 330.245 L
+530.497 333.008 L
+530.5 334.067 L
+530.622 321.063 L
+530.729 337.509 L
+530.748 334.22 L
+530.751 335.234 L
+530.888 349.004 L
+530.991 324.05 L
+530.999 326.728 L
+531.002 329.576 L
+531.102 338.713 L
+531.216 322.854 L
+531.25 326.345 L
+531.253 327.489 L
+531.434 324.961 L
+531.482 345.549 L
+531.497 337.228 L
+531.5 334.926 L
+531.519 339.344 L
+531.582 326.375 L
+531.748 338.06 L
+531.751 338.781 L
+531.759 339.767 L
+531.947 327.326 L
+531.999 328.807 L
+532.002 328.388 L
+532.12 324.059 L
+532.202 343.456 L
+532.25 328.276 L
+532.253 329.446 L
+532.323 322.866 L
+532.397 346.307 L
+532.497 336.819 L
+532.501 336.076 L
+532.611 336.626 L
+532.674 319.566 L
+532.748 329.257 L
+532.752 329.785 L
+532.811 346.008 L
+532.884 319.636 L
+532.999 335.178 L
+533.003 334.218 L
+533.095 322.894 L
+533.154 340.838 L
+533.25 326.415 L
+533.253 324.23 L
+533.261 322.065 L
+533.486 341.494 L
+533.497 338.996 L
+533.501 338.574 L
+533.519 342.763 L
+533.567 325.024 L
+533.748 325.838 L
+533.752 324.918 L
+533.766 323.248 L
+533.899 341.902 L
+533.999 333.186 L
+534.003 333.062 L
+534.091 343.43 L
+534.18 321.73 L
+534.25 334.995 L
+534.254 335.282 L
+534.383 325.306 L
+534.445 341.981 L
+534.497 333.092 L
+534.501 331.364 L
+534.615 338.646 L
+534.748 326.563 L
+534.752 324.417 L
+534.763 320.793 L
+534.999 339.248 L
+535.003 340.055 L
+535.117 349.527 L
+535.232 319.923 L
+535.246 322.612 L
+535.25 322.817 L
+535.268 315.533 L
+535.328 336.159 L
+535.497 331.706 L
+535.501 332.362 L
+535.667 329.04 L
+535.748 346.608 L
+535.752 346.522 L
+535.881 314.1 L
+535.999 325.224 L
+536.003 325.37 L
+536.162 342.71 L
+536.246 331.467 L
+536.25 330.872 L
+536.431 319.096 L
+536.497 342.095 L
+536.501 341.474 L
+536.564 330.421 L
+536.748 335.009 L
+536.752 334.496 L
+536.782 335.193 L
+536.889 319.425 L
+536.999 328.862 L
+537.003 330.707 L
+537.188 328.631 L
+537.221 342.619 L
+537.247 341.179 L
+537.25 342.992 L
+537.258 344.832 L
+537.35 320.182 L
+537.497 330.585 L
+537.501 331.629 L
+537.549 323.432 L
+537.638 344.407 L
+537.748 330.091 L
+537.752 329.9 L
+537.926 324.533 L
+537.999 339.453 L
+538.003 339.173 L
+538.058 323.914 L
+538.151 340.307 L
+538.247 332.628 L
+538.25 330.454 L
+538.28 320.206 L
+538.357 339.648 L
+538.498 328.448 L
+538.501 329.887 L
+538.571 346.939 L
+538.645 328.159 L
+538.749 339.545 L
+538.752 340.371 L
+538.756 340.44 L
+538.848 317.631 L
+539 332.721 L
+539.003 332.847 L
+539.051 321.857 L
+539.129 343.55 L
+539.247 331.973 L
+539.25 331.941 L
+539.295 337.626 L
+539.487 324.75 L
+539.498 328.629 L
+539.501 330.491 L
+539.516 327.901 L
+539.642 342.08 L
+539.749 336.245 L
+539.752 335.448 L
+539.848 338.702 L
+539.93 317.051 L
+540 333.138 L
+540.003 335.753 L
+540.147 322.492 L
+540.217 349.765 L
+540.247 342.902 L
+540.251 342.351 L
+540.343 317.485 L
+540.498 325.306 L
+540.502 324.99 L
+540.524 315.873 L
+540.627 345.205 L
+540.749 335.119 L
+540.753 335.666 L
+540.793 343.641 L
+540.911 321.753 L
+541 330.488 L
+541.003 330.265 L
+541.114 325.278 L
+541.206 340.117 L
+541.247 337.534 L
+541.251 338.151 L
+541.258 338.919 L
+541.439 326.508 L
+541.498 330.866 L
+541.502 332.238 L
+541.594 327.001 L
+541.705 340.506 L
+541.749 331.153 L
+541.753 330.907 L
+541.867 340.018 L
+542 326.632 L
+542.004 326.358 L
+542.018 324.027 L
+542.247 342.154 L
+542.251 342.429 L
+542.498 329.862 L
+542.502 329.367 L
+542.524 321.282 L
+542.697 339.65 L
+542.749 326.743 L
+542.753 327.223 L
+542.771 323.652 L
+542.838 338.604 L
+542.996 335.101 L
+543 336.891 L
+543.011 339.95 L
+543.092 324.045 L
+543.247 333.684 L
+543.251 334.685 L
+543.317 339.997 L
+543.498 328.376 L
+543.502 328.055 L
+543.686 336.692 L
+543.749 333.091 L
+543.753 333.578 L
+543.889 345.127 L
+543.963 324.369 L
+543.996 327.665 L
+544 326.867 L
+544.1 339.72 L
+544.159 324.02 L
+544.247 334.024 L
+544.251 334.699 L
+544.295 345.239 L
+544.384 322.117 L
+544.498 335.64 L
+544.502 336.541 L
+544.568 323.011 L
+544.642 338.917 L
+544.749 333.8 L
+544.753 334.432 L
+544.827 327.791 L
+544.89 339.65 L
+544.997 332.298 L
+545 331.86 L
+545.085 338.449 L
+545.247 323.966 L
+545.251 324.331 L
+545.347 339.872 L
+545.454 323.652 L
+545.498 333.455 L
+545.502 335.159 L
+545.524 342.013 L
+545.687 324.265 L
+545.749 337.884 L
+545.753 337.523 L
+545.934 344.546 L
+545.997 327.736 L
+546 327.237 L
+546.026 326.331 L
+546.089 334.375 L
+546.248 328.526 L
+546.251 327.554 L
+546.255 327.553 L
+546.369 337.741 L
+546.499 335.133 L
+546.502 336.211 L
+546.517 340.059 L
+546.635 328.75 L
+546.75 332.026 L
+546.753 330.661 L
+546.879 327.278 L
+546.956 338.412 L
+546.997 334.049 L
+547 333.82 L
+547.071 329.111 L
+547.248 338.53 L
+547.251 338.507 L
+547.31 325.698 L
+547.499 326.39 L
+547.502 326.215 L
+547.506 326.184 L
+547.595 341.12 L
+547.75 332.82 L
+547.753 333.88 L
+547.812 341.544 L
+547.919 328.764 L
+547.997 332.157 L
+548.001 332.074 L
+548.085 323.167 L
+548.189 337.013 L
+548.248 334.617 L
+548.252 334.158 L
+548.355 325.261 L
+548.403 338.732 L
+548.499 328.662 L
+548.503 328.64 L
+548.609 340.798 L
+548.72 325.217 L
+548.75 331.688 L
+548.753 331.753 L
+548.875 338.7 L
+548.934 327.049 L
+548.997 334.778 L
+549.001 333.325 L
+549.093 326.947 L
+549.189 337.84 L
+549.248 332.006 L
+549.252 331.999 L
+549.285 328.59 L
+549.337 338.915 L
+549.499 335.749 L
+549.503 334.449 L
+549.635 334.63 L
+549.746 326.734 L
+549.75 327.45 L
+549.754 328.634 L
+549.824 325.826 L
+549.905 341.165 L
+549.997 330.045 L
+550.001 329.741 L
+550.016 328.382 L
+550.067 341.706 L
+550.248 331.477 L
+550.252 331.236 L
+550.447 326.112 L
+550.499 339.009 L
+550.503 340.52 L
+550.514 342.998 L
+550.595 328.03 L
+550.746 335.774 L
+550.75 336.513 L
+550.757 337.119 L
+550.912 328.316 L
+550.997 333.547 L
+551.001 332.951 L
+551.03 325.063 L
+551.226 337.092 L
+551.248 335.964 L
+551.252 335.268 L
+551.422 337.783 L
+551.481 328.739 L
+551.499 332.687 L
+551.503 332.668 L
+551.555 336.05 L
+551.68 325.999 L
+551.746 333.939 L
+551.75 333.541 L
+551.824 340.05 L
+551.894 326.498 L
+551.997 336.229 L
+552.001 337.035 L
+552.104 327.868 L
+552.248 332.739 L
+552.252 331.732 L
+552.326 324.991 L
+552.418 340.294 L
+552.499 330.583 L
+552.503 330.11 L
+552.525 325.16 L
+552.584 336.932 L
+552.747 333.482 L
+552.75 333.118 L
+552.85 340.57 L
+552.972 330.188 L
+552.997 332.613 L
+553.001 333.047 L
+553.156 336.517 L
+553.204 326.587 L
+553.248 327.979 L
+553.252 327.884 L
+553.485 339.485 L
+553.499 337.129 L
+553.503 336.598 L
+553.518 337.161 L
+553.629 324.321 L
+553.747 331.08 L
+553.75 330.408 L
+553.898 342.82 L
+553.964 325.683 L
+553.998 327.46 L
+554.001 327.732 L
+554.075 339.92 L
+554.19 325.24 L
+554.249 333.736 L
+554.252 333.052 L
+554.404 327.047 L
+554.466 342.543 L
+554.5 335.784 L
+554.503 335.551 L
+554.728 325.328 L
+554.747 331.27 L
+554.75 332.193 L
+554.891 337.113 L
+554.95 328.263 L
+554.998 335.145 L
+555.001 335.321 L
+555.186 339.449 L
+555.249 328.921 L
+555.252 328.183 L
+555.275 324.532 L
+555.326 336.965 L
+555.5 331.566 L
+555.503 332.525 L
+555.559 341.551 L
+555.621 326.328 L
+555.747 339.643 L
+555.751 340.531 L
+555.776 343.739 L
+555.85 325.827 L
+555.998 333.291 L
+556.002 331.792 L
+556.024 324.888 L
+556.127 339.144 L
+556.249 330 L
+556.253 329.65 L
+556.26 329.067 L
+556.408 335.017 L
+556.5 334.514 L
+556.503 335.616 L
+556.603 329.651 L
+556.633 338.385 L
+556.747 333.164 L
+556.751 333.341 L
+556.847 338.399 L
+556.913 325.371 L
+556.998 334.666 L
+557.002 334.33 L
+557.046 328.433 L
+557.216 338.476 L
+557.249 333.651 L
+557.253 334.264 L
+557.33 325.719 L
+557.441 338.01 L
+557.5 330.384 L
+557.504 330 L
+557.54 328.044 L
+557.611 337.828 L
+557.747 330.612 L
+557.751 331.045 L
+557.825 339.637 L
+557.895 325.196 L
+557.998 334.478 L
+558.002 334.55 L
+558.109 326.629 L
+558.168 339.353 L
+558.249 330.104 L
+558.253 330.474 L
+558.445 326.34 L
+558.496 337.647 L
+558.5 338.254 L
+558.504 338.571 L
+558.563 328.906 L
+558.747 333.122 L
+558.751 332.181 L
+558.847 339.793 L
+558.983 324.44 L
+558.998 326.806 L
+559.002 327.878 L
+559.065 339.174 L
+559.249 334.019 L
+559.253 333.898 L
+559.338 325.993 L
+559.441 340.579 L
+559.496 334.345 L
+559.5 333.288 L
+559.541 325.443 L
+559.607 336.551 L
+559.747 328.783 L
+559.751 329.418 L
+559.873 336.062 L
+559.969 328.289 L
+559.998 331.997 L
+560.002 332.58 L
+560.068 329.771 L
+560.231 338.584 L
+560.249 332.921 L
+560.253 331.676 L
+560.275 324.112 L
+560.356 338.787 L
+560.497 333.41 L
+560.5 334.754 L
+560.533 338.043 L
+560.7 328.489 L
+560.747 330.676 L
+560.751 330.707 L
+560.943 338.969 L
+560.998 326.02 L
+561.002 325.281 L
+561.102 343.894 L
+561.201 323.906 L
+561.249 333.764 L
+561.253 334.054 L
+561.412 326.23 L
+561.482 339.063 L
+561.497 338.058 L
+561.5 338.08 L
+561.523 341.998 L
+561.748 328.007 L
+561.751 327.971 L
+561.833 341.224 L
+561.91 322.777 L
+561.999 339.145 L
+562.002 338.742 L
+562.15 329.377 L
+562.198 340.832 L
+562.25 335.132 L
+562.253 334.856 L
+562.312 323.217 L
+562.416 338.822 L
+562.497 330.155 L
+562.5 330.217 L
+562.582 343.516 L
+562.685 326.228 L
+562.748 337.696 L
+562.751 337.489 L
+562.892 326.284 L
+562.958 337.834 L
+562.999 331.786 L
+563.002 331.806 L
+563.172 338.96 L
+563.231 328.618 L
+563.25 332.503 L
+563.253 333.653 L
+563.298 341.265 L
+563.405 320.563 L
+563.497 340.709 L
+563.501 340.533 L
+563.622 327.02 L
+563.722 340.891 L
+563.748 332.139 L
+563.752 332.033 L
+563.888 339.858 L
+563.988 324.828 L
+563.999 326.667 L
+564.003 327.274 L
+564.242 336.15 L
+564.25 335.621 L
+564.253 334.989 L
+564.287 329.607 L
+564.386 338.02 L
+564.497 332.361 L
+564.501 331.617 L
+564.604 333.59 L
+564.656 326.503 L
+564.748 331.134 L
+564.752 331.318 L
+564.866 325.801 L
+564.969 339.722 L
+564.999 335.486 L
+565.003 335.848 L
+565.076 321.797 L
+565.176 337.883 L
+565.25 330.682 L
+565.254 330.974 L
+565.29 326.273 L
+565.35 339.374 L
+565.497 331.207 L
+565.501 331.022 L
+565.556 339.842 L
+565.744 325.669 L
+565.748 326.36 L
+565.752 327.608 L
+565.892 335.211 L
+565.955 326.496 L
+565.999 334.562 L
+566.003 334.749 L
+566.058 336.68 L
+566.246 330.794 L
+566.25 329.981 L
+566.298 325.019 L
+566.438 339.1 L
+566.497 333.302 L
+566.501 332.189 L
+566.649 337.007 L
+566.722 328.626 L
+566.748 330.772 L
+566.752 331.093 L
+566.778 340.178 L
+566.833 324.344 L
+566.999 332.714 L
+567.003 332.685 L
+567.114 338.605 L
+567.187 325.319 L
+567.246 332.094 L
+567.25 331.36 L
+567.398 326.835 L
+567.453 336.087 L
+567.497 333.04 L
+567.501 332.812 L
+567.671 341.319 L
+567.748 327.364 L
+567.752 327.146 L
+567.87 338.469 L
+567.955 326.281 L
+567.999 329.56 L
+568.003 329.873 L
+568.088 341.027 L
+568.188 329.133 L
+568.247 336.714 L
+568.25 336.561 L
+568.442 336.641 L
+568.497 324.544 L
+568.501 324.652 L
+568.656 337.028 L
+568.748 333.846 L
+568.752 334.031 L
+568.796 336.39 L
+568.929 328.034 L
+568.999 334.689 L
+569.003 334.92 L
+569.051 328.269 L
+569.169 339.335 L
+569.247 330.455 L
+569.25 330.472 L
+569.309 335.688 L
+569.487 325.748 L
+569.498 327.67 L
+569.501 328.843 L
+569.741 339.025 L
+569.749 338.872 L
+569.752 338.754 L
+569.915 328.528 L
+570 330.974 L
+570.003 330.985 L
+570.125 329.622 L
+570.188 338.788 L
+570.247 331.243 L
+570.25 331.596 L
+570.31 338.374 L
+570.435 327.863 L
+570.498 332.46 L
+570.501 332.629 L
+570.679 326.707 L
+570.749 339.302 L
+570.752 339.627 L
+570.756 339.697 L
+570.856 329.746 L
+571 330.547 L
+571.003 330.211 L
+571.099 328.486 L
+571.177 336.646 L
+571.247 331.249 L
+571.251 331.652 L
+571.443 329.406 L
+571.49 338.091 L
+571.498 337.997 L
+571.502 337.935 L
+571.572 327.037 L
+571.749 331.575 L
+571.753 331.453 L
+571.845 336.684 L
+571.981 328.651 L
+572 329.259 L
+572.003 329.194 L
+572.158 328.142 L
+572.232 339.282 L
+572.247 337.121 L
+572.251 336.476 L
+572.269 338.185 L
+572.339 326.957 L
+572.498 332.381 L
+572.502 331.96 L
+572.664 335.697 L
+572.727 327.255 L
+572.749 330.461 L
+572.753 330.532 L
+572.819 338.318 L
+572.908 328.966 L
+573 335.18 L
+573.004 334.379 L
+573.066 327.686 L
+573.247 337.075 L
+573.251 337.199 L
+573.483 329.722 L
+573.498 329.984 L
+573.502 329.68 L
+573.646 328.228 L
+573.694 335.156 L
+573.749 332.611 L
+573.753 332.69 L
+573.889 339.196 L
+573.948 329.349 L
+573.996 331.096 L
+574 331.195 L
+574.111 333.682 L
+574.203 328.14 L
+574.247 329.813 L
+574.251 330.654 L
+574.388 327.27 L
+574.472 339.137 L
+574.498 333.548 L
+574.502 332.965 L
+574.557 333.55 L
+574.664 327.913 L
+574.749 331.035 L
+574.753 331.038 L
+574.805 330.598 L
+574.919 338.901 L
+574.996 331.491 L
+575 331.577 L
+575.055 335.851 L
+575.107 328.47 L
+575.247 331.059 L
+575.251 332.001 L
+575.295 330.236 L
+575.495 339.073 L
+575.498 339.003 L
+575.502 338.653 L
+575.746 325.846 L
+575.749 326.103 L
+575.753 326.647 L
+575.864 338.212 L
+575.997 334.143 L
+576 333.875 L
+576.067 335.704 L
+576.17 327.497 L
+576.247 331.572 L
+576.251 330.573 L
+576.314 327.139 L
+576.495 336.595 L
+576.498 336.446 L
+576.502 336.248 L
+576.576 336.939 L
+576.749 329.456 L
+576.753 329.078 L
+576.764 328.386 L
+576.912 334.697 L
+576.997 332.381 L
+577 332.555 L
+577.082 336.97 L
+577.177 329.838 L
+577.248 334.002 L
+577.251 334.108 L
+577.388 328.337 L
+577.499 336.015 L
+577.502 336.008 L
+577.75 328.881 L
+577.753 328.858 L
+577.989 334.853 L
+577.997 334.504 L
+578 334.041 L
+578.122 336.333 L
+578.178 329.231 L
+578.248 335.793 L
+578.251 335.117 L
+578.48 328.297 L
+578.499 329.987 L
+578.502 330.09 L
+578.68 328.785 L
+578.716 336.594 L
+578.75 334.598 L
+578.753 334.406 L
+578.897 330.051 L
+578.942 337.15 L
+578.997 335.609 L
+579.001 335.72 L
+579.063 326.027 L
+579.159 337.428 L
+579.248 328.476 L
+579.252 329.467 L
+579.311 339.569 L
+579.418 326.401 L
+579.499 334.019 L
+579.503 334.91 L
+579.613 327.189 L
+579.724 338.944 L
+579.75 333.996 L
+579.753 333.152 L
+579.801 328.806 L
+579.927 336.629 L
+579.997 329.376 L
+580.001 329.67 L
+580.078 334.793 L
+580.145 328.225 L
+580.248 334.096 L
+580.252 333.865 L
+580.296 337.009 L
+580.348 330 L
+580.499 330.078 L
+580.503 329.505 L
+580.514 328.489 L
+580.606 335.87 L
+580.75 333.987 L
+580.754 334.144 L
+580.805 337.999 L
+580.905 330.293 L
+580.997 335.475 L
+581.001 335.804 L
+581.123 324.42 L
+581.219 337.431 L
+581.248 336.564 L
+581.252 336.495 L
+581.392 337.271 L
+581.499 325.647 L
+581.503 325.708 L
+581.595 338.452 L
+581.746 332.032 L
+581.75 332.825 L
+581.853 331.266 L
+581.909 336.7 L
+581.997 333.628 L
+582.001 333.031 L
+582.09 327.996 L
+582.248 333.976 L
+582.252 334.066 L
+582.429 329.435 L
+582.492 337.712 L
+582.499 336.868 L
+582.503 336.088 L
+582.588 329.355 L
+582.746 330.71 L
+582.75 331.075 L
+582.805 327.745 L
+582.905 340.434 L
+582.997 332.089 L
+583.001 331.286 L
+583.119 333.822 L
+583.186 328.524 L
+583.248 332.14 L
+583.252 332.621 L
+583.33 337.165 L
+583.392 328.689 L
+583.499 335.297 L
+583.503 335.572 L
+583.518 336.466 L
+583.643 329.768 L
+583.747 330.954 L
+583.75 330.93 L
+583.809 325.909 L
+583.913 338.004 L
+583.997 331.774 L
+584.001 331.072 L
+584.02 328.499 L
+584.119 335.748 L
+584.248 331.864 L
+584.252 332.042 L
+584.315 330.441 L
+584.496 334.444 L
+584.499 334.269 L
+584.503 333.939 L
+584.643 336.273 L
+584.728 328.373 L
+584.747 329.855 L
+584.75 330.016 L
+584.905 328.208 L
+584.998 335.906 L
+585.001 336.988 L
+585.112 329.45 L
+585.219 338.638 L
+585.249 333.781 L
+585.252 333.188 L
+585.422 339.117 L
+585.492 326.45 L
+585.5 326.606 L
+585.503 326.778 L
+585.595 342.617 L
+585.747 331.281 L
+585.75 331.862 L
+585.787 338.658 L
+585.909 328.016 L
+585.998 336.345 L
+586.001 335.95 L
+586.112 328.9 L
+586.171 337.417 L
+586.249 329.537 L
+586.252 329.889 L
+586.389 328.951 L
+586.5 337.14 L
+586.503 337.634 L
+586.507 337.859 L
+586.592 329.135 L
+586.747 332.395 L
+586.751 332.434 L
+586.828 327.942 L
+586.913 336.73 L
+586.998 329.428 L
+587.002 329.782 L
+587.09 340.019 L
+587.164 328.92 L
+587.249 335.343 L
+587.253 335.788 L
+587.264 336.403 L
+587.411 328.228 L
+587.5 334.411 L
+587.503 334.522 L
+587.647 335.951 L
+587.747 329.687 L
+587.751 329.493 L
+587.836 337.221 L
+587.913 328.382 L
+587.998 333.677 L
+588.002 333.728 L
+588.05 331.284 L
+588.201 335.283 L
+588.249 333.099 L
+588.253 332.957 L
+588.338 326.581 L
+588.404 335.754 L
+588.5 329.434 L
+588.504 330.325 L
+588.585 337.705 L
+588.695 328.417 L
+588.747 336.397 L
+588.751 336.11 L
+588.998 329.017 L
+589.002 328.987 L
+589.175 334.823 L
+589.249 334.021 L
+589.253 334.143 L
+589.419 329.344 L
+589.482 336.243 L
+589.496 334.772 L
+589.5 334.357 L
+589.578 330.704 L
+589.747 334.762 L
+589.751 335.294 L
+589.755 335.47 L
+589.998 330.43 L
+590.002 329.889 L
+590.013 328.63 L
+590.249 336.088 L
+590.253 336.147 L
+590.437 329.796 L
+590.496 334.146 L
+590.5 334.044 L
+590.615 328.805 L
+590.718 335.946 L
+590.747 334.866 L
+590.751 334.464 L
+590.936 335.477 L
+590.998 328.724 L
+591.002 328.631 L
+591.142 334.63 L
+591.249 332.212 L
+591.253 332.74 L
+591.294 334.292 L
+591.467 331.422 L
+591.497 333.81 L
+591.5 333.612 L
+591.585 334.798 L
+591.663 330.233 L
+591.747 334.286 L
+591.751 334.196 L
+591.895 329.682 L
+591.954 335.393 L
+591.998 332.718 L
+592.002 332.388 L
+592.105 327.211 L
+592.176 337.315 L
+592.249 332 L
+592.253 331.994 L
+592.379 337.56 L
+592.478 328.16 L
+592.497 329.531 L
+592.5 329.988 L
+592.596 335.169 L
+592.652 327.787 L
+592.748 331.225 L
+592.751 331.489 L
+592.884 335.915 L
+592.999 331.783 L
+593.002 331.95 L
+593.202 329.002 L
+593.25 334.979 L
+593.253 335.079 L
+593.275 336.301 L
+593.405 329.086 L
+593.497 334.657 L
+593.5 334.245 L
+593.685 334.418 L
+593.744 329.624 L
+593.748 329.651 L
+593.751 329.692 L
+593.766 329.129 L
+593.888 335.846 L
+593.999 332.716 L
+594.002 333.191 L
+594.025 334.918 L
+594.146 329.571 L
+594.25 332.933 L
+594.253 333.275 L
+594.386 335.341 L
+594.445 331.431 L
+594.497 332.719 L
+594.501 332.933 L
+594.563 335.893 L
+594.648 327.189 L
+594.748 334.653 L
+594.752 334.504 L
+594.836 327.057 L
+594.936 340.631 L
+594.999 331.882 L
+595.003 331.381 L
+595.135 337.235 L
+595.217 327.943 L
+595.25 329.096 L
+595.253 329.292 L
+595.423 329.003 L
+595.49 336.772 L
+595.497 336.517 L
+595.501 336.389 L
+595.516 336.535 L
+595.741 330.258 L
+595.748 330.457 L
+595.752 330.741 L
+595.785 329.673 L
+595.984 336.377 L
+595.999 335.047 L
+596.003 334.697 L
+596.088 329.013 L
+596.202 337.623 L
+596.25 331.642 L
+596.254 331.242 L
+596.298 324.849 L
+596.405 336.867 L
+596.497 326.453 L
+596.501 326.487 L
+596.589 339.916 L
+596.748 331.695 L
+596.752 331.897 L
+596.866 328.683 L
+596.992 338.815 L
+596.999 338.517 L
+597.003 338.066 L
+597.095 329.129 L
+597.246 329.636 L
+597.25 329.042 L
+597.272 327.864 L
+597.357 335.576 L
+597.497 331.692 L
+597.501 331.643 L
+597.571 335.269 L
+597.741 329.63 L
+597.748 329.918 L
+597.752 330.207 L
+597.778 329.939 L
+597.866 335.069 L
+597.999 331.323 L
+598.003 331.844 L
+598.051 337.479 L
+598.154 326.271 L
+598.246 335.214 L
+598.25 334.788 L
+598.353 327.831 L
+598.438 336.71 L
+598.497 332.325 L
+598.501 332.236 L
+598.652 336.543 L
+598.73 326.694 L
+598.748 327.724 L
+598.752 328.017 L
+598.977 336.595 L
+598.999 335.498 L
+599.003 335.369 L
+599.232 330.828 L
+599.247 331.534 L
+599.25 331.889 L
+599.365 329.701 L
+599.497 333.933 L
+599.501 334.245 L
+599.723 335.444 L
+599.748 330.414 L
+599.752 329.626 L
+599.778 326.991 L
+599.892 334.087 L
+599.999 331.429 L
+600.003 331.925 L
+600.055 337.373 L
+600.121 330.433 L
+600.247 331.408 L
+600.25 331.474 L
+600.387 328.924 L
+600.487 335.914 L
+600.498 335.711 L
+600.501 335.533 L
+600.542 330.851 L
+600.649 335.97 L
+600.749 331.656 L
+600.752 331.563 L
+600.922 334.318 L
+601 329.724 L
+601.003 329.743 L
+601.081 334.703 L
+601.247 333.741 L
+601.25 333.608 L
+601.383 334.029 L
+601.45 329.81 L
+601.498 333.898 L
+601.501 334.406 L
+601.535 336.198 L
+601.616 329.603 L
+601.749 332.109 L
+601.752 332.132 L
+601.848 334.969 L
+601.918 330.315 L
+602 331.541 L
+602.003 331.52 L
+602.107 334.995 L
+602.203 328.976 L
+602.247 331.567 L
+602.251 331.853 L
+602.317 335.88 L
+602.383 329.786 L
+602.498 331.991 L
+602.502 332.225 L
+602.634 327.848 L
+602.741 336.07 L
+602.749 335.516 L
+602.753 334.85 L
+602.804 330.631 L
+602.878 335.789 L
+603 331.525 L
+603.003 331.367 L
+603.162 335.909 L
+603.221 327.666 L
+603.247 329.738 L
+603.251 330.384 L
+603.468 334.993 L
+603.498 334.875 L
+603.502 335.038 L
+603.531 335.222 L
+603.686 328.892 L
+603.749 333.796 L
+603.753 334.073 L
+603.76 334.297 L
+603.863 329.66 L
+604 333.289 L
+604.004 333.641 L
+604.177 335.061 L
+604.232 331.209 L
+604.247 332.038 L
+604.251 332.248 L
+604.302 327.157 L
+604.376 336.606 L
+604.498 331.252 L
+604.502 330.876 L
+604.524 329.093 L
+604.605 334.932 L
+604.749 333.399 L
+604.753 333.688 L
+604.823 334.552 L
+604.871 327.79 L
+604.996 333.459 L
+605 333.861 L
+605.133 335.143 L
+605.244 330.83 L
+605.247 330.863 L
+605.251 330.915 L
+605.277 330.857 L
+605.472 335.244 L
+605.498 333.973 L
+605.502 334.083 L
+605.542 330.556 L
+605.683 335.778 L
+605.749 332.191 L
+605.753 332.07 L
+605.867 333.458 L
+605.993 329.043 L
+605.996 329.098 L
+606 329.381 L
+606.067 337.563 L
+606.166 328.354 L
+606.247 334.325 L
+606.251 334.221 L
+606.38 330.273 L
+606.48 334.783 L
+606.498 333.548 L
+606.502 333.233 L
+606.661 335.86 L
+606.742 329.302 L
+606.749 329.751 L
+606.753 330.148 L
+606.978 335.487 L
+606.997 333.841 L
+607 333.594 L
+607.188 334.53 L
+607.247 330.496 L
+607.251 330.267 L
+607.351 335.766 L
+607.458 327.407 L
+607.498 329.772 L
+607.502 330.592 L
+607.561 338.397 L
+607.661 329.751 L
+607.749 335.588 L
+607.753 335.479 L
+607.853 327.097 L
+607.997 334.601 L
+608 334.266 L
+608.074 328.573 L
+608.152 336.814 L
+608.248 330.589 L
+608.251 330.72 L
+608.358 333.681 L
+608.469 330.281 L
+608.499 330.679 L
+608.502 330.68 L
+608.513 330.558 L
+608.727 334.15 L
+608.75 332.709 L
+608.753 332.449 L
+608.868 334.366 L
+608.967 329.957 L
+608.997 333.283 L
+609 333.377 L
+609.148 331 L
+609.233 334.7 L
+609.248 333.838 L
+609.251 333.536 L
+609.384 329.862 L
+609.447 335.134 L
+609.499 331.971 L
+609.502 331.793 L
+609.657 335.903 L
+609.731 329.785 L
+609.75 330.546 L
+609.753 330.71 L
+609.857 336.02 L
+609.923 330.129 L
+609.997 332.137 L
+610.001 332.165 L
+610.052 333.982 L
+610.145 330.59 L
+610.248 333.586 L
+610.252 333.418 L
+610.347 331.035 L
+610.443 334.57 L
+610.499 332.334 L
+610.503 332.138 L
+610.617 333.833 L
+610.676 330.525 L
+610.75 332.59 L
+610.753 332.541 L
+610.805 331.377 L
+610.956 334.551 L
+610.997 333.062 L
+611.001 332.394 L
+611.167 336.14 L
+611.248 328.02 L
+611.252 328.087 L
+611.337 334.817 L
+611.499 334.129 L
+611.503 334.34 L
+611.536 336.111 L
+611.643 330.336 L
+611.75 334.505 L
+611.754 334.37 L
+611.861 329.537 L
+611.945 334.385 L
+611.997 332.577 L
+612.001 332.49 L
+612.082 332.044 L
+612.248 334.087 L
+612.252 334.187 L
+612.259 334.284 L
+612.315 329.577 L
+612.499 332.62 L
+612.503 332.589 L
+612.621 334.338 L
+612.746 330.05 L
+612.75 330.095 L
+612.835 336.427 L
+612.997 332.242 L
+613.001 332.699 L
+613.156 331.464 L
+613.248 334.827 L
+613.252 335.005 L
+613.267 335.852 L
+613.366 328.244 L
+613.499 333.646 L
+613.503 333.428 L
+613.54 330.604 L
+613.695 334.615 L
+613.746 331.825 L
+613.75 331.702 L
+613.839 335.044 L
+613.957 329.256 L
+613.997 332.369 L
+614.001 332.592 L
+614.108 331.423 L
+614.241 334.517 L
+614.248 334.307 L
+614.252 334.134 L
+614.344 330.895 L
+614.499 331.616 L
+614.503 331.692 L
+614.525 331.354 L
+614.558 333.997 L
+614.747 333.862 L
+614.75 334.23 L
+614.824 330.84 L
+614.931 335.326 L
+614.997 331.032 L
+615.001 330.746 L
+615.031 328.524 L
+615.141 337.646 L
+615.248 329.74 L
+615.252 330.081 L
+615.311 335.706 L
+615.433 328.625 L
+615.499 333.765 L
+615.503 334.233 L
+615.629 328.741 L
+615.728 336.183 L
+615.747 335.369 L
+615.75 335.021 L
+615.998 328.646 L
+616.001 328.687 L
+616.16 334.344 L
+616.249 333.601 L
+616.252 333.402 L
+616.433 334.775 L
+616.5 330.184 L
+616.503 329.761 L
+616.525 328.374 L
+616.64 335.688 L
+616.747 332.083 L
+616.75 332.102 L
+616.795 335.684 L
+616.961 329.664 L
+616.998 332.553 L
+617.001 332.77 L
+617.116 329.236 L
+617.223 335.341 L
+617.249 333.773 L
+617.252 333.363 L
+617.363 335.072 L
+617.5 330.494 L
+617.503 330.49 L
+617.573 332.849 L
+617.747 332.151 L
+617.751 331.952 L
+617.817 335.245 L
+617.998 330.864 L
+618.002 330.602 L
+618.186 330.198 L
+618.245 334.206 L
+618.249 334.171 L
+618.253 334.046 L
+618.385 331.604 L
+618.452 334.412 L
+618.5 332.525 L
+618.503 332.268 L
+618.533 333.758 L
+618.636 330.914 L
+618.747 332.833 L
+618.751 332.87 L
+618.832 334.023 L
+618.935 330.495 L
+618.998 332.716 L
+619.002 333.046 L
+619.035 334.189 L
+619.083 331.328 L
+619.249 332.878 L
+619.253 332.842 L
+619.338 334.199 L
+619.433 330.873 L
+619.5 333.512 L
+619.504 333.497 L
+619.614 333.551 L
+619.659 330.916 L
+619.747 333.422 L
+619.751 333.512 L
+619.869 329.842 L
+619.928 335.038 L
+619.998 331.936 L
+620.002 331.739 L
+620.09 331.399 L
+620.131 333.259 L
+620.249 332.3 L
+620.253 332.326 L
+620.308 330.281 L
+620.496 334.399 L
+620.5 334.56 L
+620.504 334.596 L
+620.607 330.589 L
+620.747 331.213 L
+620.751 331.159 L
+620.769 330.6 L
+620.854 333.499 L
+620.998 333.343 L
+621.002 333.372 L
+621.12 333.989 L
+621.186 330.261 L
+621.249 333.348 L
+621.253 333.445 L
+621.341 330.262 L
+621.434 334.804 L
+621.496 331.261 L
+621.5 331.522 L
+621.651 334.441 L
+621.747 332.13 L
+621.751 332.163 L
+621.932 331.105 L
+621.998 334.078 L
+622.002 334.29 L
+622.017 334.546 L
+622.068 332.232 L
+622.249 332.963 L
+622.253 332.803 L
+622.367 330.498 L
+622.449 333.031 L
+622.497 331.969 L
+622.5 332.054 L
+622.563 331.798 L
+622.607 334.864 L
+622.747 333.739 L
+622.751 333.677 L
+622.936 330.663 L
+622.998 333.082 L
+623.002 333.052 L
+623.08 332.003 L
+623.183 334.431 L
+623.249 333.131 L
+623.253 333.177 L
+623.349 333.75 L
+623.408 330.686 L
+623.497 332.62 L
+623.5 332.416 L
+623.666 331.666 L
+623.7 333.953 L
+623.748 332.711 L
+623.751 332.305 L
+623.903 333.961 L
+623.999 330.379 L
+624.002 330.189 L
+624.01 330.029 L
+624.205 334.738 L
+624.25 332.576 L
+624.253 332.575 L
+624.279 334.456 L
+624.379 331.93 L
+624.497 333.919 L
+624.5 333.714 L
+624.659 333.855 L
+624.748 330.703 L
+624.751 330.655 L
+624.833 334.744 L
+624.999 332.153 L
+625.002 332.248 L
+625.154 330.912 L
+625.227 333.666 L
+625.25 333.545 L
+625.253 333.588 L
+625.32 330.575 L
+625.394 334.522 L
+625.497 332.144 L
+625.501 332.094 L
+625.589 334.753 L
+625.748 330.605 L
+625.752 330.689 L
+625.811 335.965 L
+625.999 333.614 L
+626.003 333.608 L
+626.095 329.38 L
+626.158 334.754 L
+626.25 331.456 L
+626.253 331.552 L
+626.357 334.177 L
+626.497 333.047 L
+626.501 333.02 L
+626.578 334.217 L
+626.652 330.771 L
+626.748 332.128 L
+626.752 331.879 L
+626.896 334.676 L
+626.973 330.673 L
+626.999 331.698 L
+627.003 331.986 L
+627.073 333.86 L
+627.198 330.982 L
+627.25 333.473 L
+627.254 333.528 L
+627.416 329.304 L
+627.479 336.507 L
+627.497 334.746 L
+627.501 334.254 L
+627.586 328.967 L
+627.66 336.222 L
+627.748 330.638 L
+627.752 330.525 L
+627.755 330.45 L
+627.87 334.729 L
+627.999 331.549 L
+628.003 331.594 L
+628.169 330.196 L
+628.243 334.703 L
+628.246 334.512 L
+628.25 334.167 L
+628.423 331.382 L
+628.497 332.701 L
+628.501 332.543 L
+628.534 334.151 L
+628.619 331.011 L
+628.748 333.494 L
+628.752 333.562 L
+628.881 330.42 L
+628.959 335.159 L
+628.999 333.682 L
+629.003 333.251 L
+629.073 329.517 L
+629.15 335.33 L
+629.246 331.758 L
+629.25 331.725 L
+629.365 334.474 L
+629.497 330.198 L
+629.501 330.127 L
+629.575 334.105 L
+629.748 333.084 L
+629.752 332.965 L
+629.785 333.781 L
+629.937 331.672 L
+629.999 333.019 L
+630.003 332.872 L
+630.099 331.654 L
+630.243 333.858 L
+630.247 333.725 L
+630.25 333.446 L
+630.45 334.823 L
+630.497 331.365 L
+630.501 331.185 L
+630.52 330.323 L
+630.656 334.214 L
+630.748 331.813 L
+630.752 331.988 L
+630.844 333.954 L
+630.944 331.353 L
+630.999 332.698 L
+631.003 332.721 L
+631.088 333.862 L
+631.154 330.468 L
+631.247 331.582 L
+631.25 331.865 L
+631.306 335.45 L
+631.391 330.832 L
+631.498 333.613 L
+631.501 333.676 L
+631.586 330.953 L
+631.66 334.431 L
+631.749 331.357 L
+631.752 331.213 L
+631.881 334.77 L
+632 330.418 L
+632.003 330.398 L
+632.073 334.651 L
+632.247 332.713 L
+632.25 332.805 L
+632.361 330.977 L
+632.498 334.068 L
+632.501 334.15 L
+632.679 331.484 L
+632.749 332.78 L
+632.752 332.83 L
+632.889 331.331 L
+632.989 333.715 L
+633 333.365 L
+633.003 333.042 L
+633.059 333.668 L
+633.24 331.251 L
+633.247 331.34 L
+633.251 331.504 L
+633.45 331.307 L
+633.498 333.477 L
+633.502 333.515 L
+633.568 334.081 L
+633.653 331.143 L
+633.749 332.526 L
+633.753 332.237 L
+633.926 335.013 L
+634 330.659 L
+634.003 330.688 L
+634.129 334.958 L
+634.21 330.332 L
+634.247 333.169 L
+634.251 333.373 L
+634.387 330.077 L
+634.491 334.518 L
+634.498 334.517 L
+634.502 334.515 L
+634.601 330.628 L
+634.749 333.243 L
+634.753 333.345 L
+634.823 331.35 L
+634.878 333.698 L
+635 332.482 L
+635.004 332.648 L
+635.063 331.479 L
+635.133 334.498 L
+635.247 332.333 L
+635.251 332.178 L
+635.28 330.956 L
+635.365 333.532 L
+635.498 331.675 L
+635.502 331.754 L
+635.686 330.885 L
+635.749 334.327 L
+635.753 334.359 L
+635.775 335.132 L
+635.838 330.925 L
+635.996 334.05 L
+636 333.855 L
+636.155 334.531 L
+636.247 330.256 L
+636.251 330.083 L
+636.266 329.497 L
+636.417 334.885 L
+636.498 331.328 L
+636.502 331.655 L
+636.694 330.032 L
+636.749 334.174 L
+636.753 334.294 L
+636.757 334.343 L
+636.819 330.73 L
+636.996 333.28 L
+637 333.395 L
+637.092 333.737 L
+637.126 331.546 L
+637.247 331.88 L
+637.251 331.751 L
+637.351 331.061 L
+637.402 334.165 L
+637.498 332.801 L
+637.502 332.99 L
+637.565 330.139 L
+637.624 334.815 L
+637.749 332.667 L
+637.753 332.28 L
+637.849 334.012 L
+637.912 330.74 L
+637.997 331.491 L
+638 331.542 L
+638.056 335.472 L
+638.133 329.99 L
+638.247 334.328 L
+638.251 334.529 L
+638.255 334.596 L
+638.336 330.645 L
+638.498 332.358 L
+638.502 332.103 L
+638.554 330.833 L
+638.62 334.668 L
+638.749 332.482 L
+638.753 332.296 L
+638.831 334.243 L
+638.875 330.109 L
+638.997 332.698 L
+639 332.867 L
+639.107 330.607 L
+639.17 333.944 L
+639.248 333.721 L
+639.251 333.698 L
+639.303 330.984 L
+639.384 334.85 L
+639.499 331.826 L
+639.502 331.612 L
+639.528 330.895 L
+639.598 333.867 L
+639.75 331.891 L
+639.753 331.986 L
+639.82 333.892 L
+639.997 331.517 L
+640 331.467 L
+640.181 330.679 L
+640.248 333.564 L
+640.251 333.567 L
+640.392 331.479 L
+640.495 333.889 L
+640.499 333.859 L
+640.502 333.746 L
+640.606 330.911 L
+640.702 335.022 L
+640.75 331.132 L
+640.753 330.946 L
+640.879 335.759 L
+640.99 330.085 L
+640.997 330.207 L
+641.001 330.433 L
+641.248 333.848 L
+641.252 334.044 L
+641.259 334.214 L
+641.377 331.801 L
+641.499 331.809 L
+641.503 331.61 L
+641.55 332.641 L
+641.709 331.028 L
+641.75 332.091 L
+641.753 332.271 L
+641.805 334.925 L
+641.883 331.9 L
+641.997 334.297 L
+642.001 334.269 L
+642.078 330.62 L
+642.248 332.068 L
+642.252 331.953 L
+642.292 331.34 L
+642.425 334.147 L
+642.499 331.788 L
+642.503 331.903 L
+642.562 334.443 L
+642.683 330.404 L
+642.75 333.589 L
+642.754 333.897 L
+642.765 334.388 L
+642.864 332.291 L
+642.997 332.408 L
+643.001 332.421 L
+643.141 333.809 L
+643.208 330.764 L
+643.248 331.805 L
+643.252 331.739 L
+643.374 330.863 L
+643.484 335.179 L
+643.499 334.761 L
+643.503 334.61 L
+643.577 329.781 L
+643.746 332.208 L
+643.75 331.835 L
+643.768 330.621 L
+643.868 333.968 L
+643.997 332.337 L
+644.001 332.403 L
+644.086 334.414 L
+644.197 331.638 L
+644.248 333.476 L
+644.252 333.429 L
+644.348 331.792 L
+644.459 333.532 L
+644.499 332.81 L
+644.503 332.966 L
+644.647 331.264 L
+644.724 334.312 L
+644.746 333.939 L
+644.75 333.868 L
+644.857 330.868 L
+644.997 332.467 L
+645.001 332.29 L
+645.134 333.945 L
+645.248 331.531 L
+645.252 331.49 L
+645.366 333.786 L
+645.499 332.07 L
+645.503 331.753 L
+645.518 331.205 L
+645.588 333.506 L
+645.747 332.543 L
+645.75 332.653 L
+645.791 334.037 L
+645.975 330.992 L
+645.997 332.209 L
+646.001 332.334 L
+646.049 333.724 L
+646.175 331.838 L
+646.248 332.964 L
+646.252 332.82 L
+646.378 334.171 L
+646.485 330.805 L
+646.499 331.223 L
+646.503 331.314 L
+646.522 331.122 L
+646.581 333.834 L
+646.747 332.714 L
+646.75 332.918 L
+646.905 331.28 L
+646.975 333.811 L
+646.998 333.236 L
+647.001 333.055 L
+647.09 333.399 L
+647.245 331.19 L
+647.249 331.215 L
+647.252 331.277 L
+647.308 334.3 L
+647.5 331.813 L
+647.503 331.946 L
+647.618 331.498 L
+647.68 333.835 L
+647.747 333.289 L
+647.75 333.159 L
+647.865 333.242 L
+647.994 331.496 L
+647.998 331.51 L
+648.001 331.612 L
+648.06 333.592 L
+648.201 331.6 L
+648.249 333.263 L
+648.252 333.247 L
+648.282 334.103 L
+648.359 331.54 L
+648.5 332.169 L
+648.503 332.289 L
+648.684 334.059 L
+648.747 331.817 L
+648.751 331.718 L
+648.758 331.572 L
+648.895 332.788 L
+648.998 332.689 L
+649.002 332.802 L
+649.157 333.845 L
+649.201 331.286 L
+649.249 333.507 L
+649.253 333.682 L
+649.267 333.881 L
+649.422 331.52 L
+649.5 331.925 L
+649.503 331.807 L
+649.511 331.712 L
+649.703 333.866 L
+649.747 332.992 L
+649.751 332.64 L
+649.769 331.235 L
+649.909 333.565 L
+649.998 331.712 L
+650.002 331.773 L
+650.035 333.637 L
+650.094 331.488 L
+650.249 332.266 L
+650.253 332.382 L
+650.334 333.932 L
+650.433 330.947 L
+650.5 332.38 L
+650.504 332.468 L
+650.673 331.848 L
+650.747 334.645 L
+650.751 334.793 L
+650.758 334.897 L
+650.85 330.789 L
+650.998 332.438 L
+651.002 332.287 L
+651.057 331.53 L
+651.127 333.621 L
+651.249 331.865 L
+651.253 331.853 L
+651.33 333.826 L
+651.467 331.349 L
+651.496 332.406 L
+651.5 332.374 L
+651.566 331.758 L
+651.747 333.049 L
+651.751 333.186 L
+651.792 333.348 L
+651.902 331.886 L
+651.998 333.021 L
+652.002 332.947 L
+652.183 331.434 L
+652.223 334.037 L
+652.249 333.569 L
+652.253 333.593 L
+652.489 331.465 L
+652.496 331.613 L
+652.5 331.715 L
+652.526 330.853 L
+652.603 333.518 L
+652.747 331.969 L
+652.751 332.04 L
+652.832 333.261 L
+652.95 331.762 L
+652.998 333.067 L
+653.002 333.048 L
+653.057 331.77 L
+653.249 332.17 L
+653.253 332.155 L
+653.316 334.153 L
+653.39 331.539 L
+653.497 332.683 L
+653.5 332.734 L
+653.596 331.646 L
+653.707 333.184 L
+653.747 332.705 L
+653.751 332.554 L
+653.862 331.75 L
+653.917 333.36 L
+653.998 332.437 L
+654.002 332.41 L
+654.046 333.251 L
+654.142 331.649 L
+654.249 332.185 L
+654.253 332.255 L
+654.382 333.701 L
+654.482 331.546 L
+654.497 332.017 L
+654.5 332.255 L
+654.541 333.631 L
+654.689 331.698 L
+654.748 333.21 L
+654.751 333.134 L
+654.88 331.116 L
+654.969 333.865 L
+654.999 333.656 L
+655.002 333.712 L
+655.006 333.732 L
+655.076 331.263 L
+655.25 332.509 L
+655.253 332.373 L
+655.331 331.266 L
+655.401 333.579 L
+655.497 331.668 L
+655.5 331.496 L
+655.512 331.24 L
+655.6 333.834 L
+655.748 332.742 L
+655.751 332.658 L
+655.829 333.155 L
+655.888 331.778 L
+655.999 332.09 L
+656.002 332.223 L
+656.05 334.502 L
+656.143 331.698 L
+656.25 333.533 L
+656.253 333.421 L
+656.371 331.415 L
+656.497 331.472 L
+656.501 331.24 L
+656.523 330.609 L
+656.637 334.06 L
+656.748 332.035 L
+656.752 332.246 L
+656.777 333.304 L
+656.995 331.667 L
+656.999 331.689 L
+657.003 331.762 L
+657.139 333.709 L
+657.25 333.607 L
+657.253 333.65 L
+657.335 333.954 L
+657.427 331.458 L
+657.497 332.776 L
+657.501 332.894 L
+657.589 330.683 L
+657.7 334.907 L
+657.748 332.502 L
+657.752 332.271 L
+657.873 333.701 L
+657.962 331.495 L
+657.999 332.272 L
+658.003 332.204 L
+658.187 330.45 L
+658.25 333.481 L
+658.254 333.643 L
+658.283 334.216 L
+658.39 331.844 L
+658.497 331.876 L
+658.501 331.753 L
+658.516 331.488 L
+658.722 333.816 L
+658.748 333.482 L
+658.752 333.416 L
+658.888 331.694 L
+658.999 333.421 L
+659.003 333.377 L
+659.246 331.411 L
+659.25 331.245 L
+659.261 330.905 L
+659.375 334.316 L
+659.497 331.538 L
+659.501 331.664 L
+659.748 333.887 L
+659.752 334.052 L
+659.859 331.444 L
+659.959 334.256 L
+659.999 333.372 L
+660.003 333.333 L
+660.069 331.32 L
+660.246 332.166 L
+660.25 332.104 L
+660.383 333.573 L
+660.486 331.064 L
+660.497 331.212 L
+660.501 331.342 L
+660.604 333.818 L
+660.748 333.561 L
+660.752 333.543 L
+660.937 331.815 L
+660.999 332.324 L
+661.003 332.356 L
+661.121 331.685 L
+661.247 333.424 L
+661.25 333.567 L
+661.269 333.974 L
+661.405 331.692 L
+661.497 332.381 L
+661.501 332.227 L
+661.568 330.902 L
+661.634 333.434 L
+661.748 332.137 L
+661.752 332.296 L
+661.87 331.875 L
+661.918 333.217 L
+661.999 332.948 L
+662.003 332.992 L
+662.158 330.809 L
+662.225 333.885 L
+662.247 333.653 L
+662.25 333.604 L
+662.387 334.035 L
+662.498 330.662 L
+662.501 330.621 L
+662.571 333.948 L
+662.749 332.473 L
+662.752 332.635 L
+662.9 331.201 L
+662.992 335.039 L
+663 334.874 L
+663.003 334.697 L
+663.081 330.047 L
+663.247 331.638 L
+663.25 331.448 L
+663.262 331.134 L
+663.428 334.217 L
+663.498 331.86 L
+663.501 331.952 L
+663.583 332.868 L
+663.62 331.899 L
+663.749 332.097 L
+663.752 332.178 L
+663.878 334.729 L
+663.952 331.23 L
+664 332.811 L
+664.003 332.995 L
+664.062 334.186 L
+664.155 329.99 L
+664.247 333.046 L
+664.251 333.007 L
+664.376 330.859 L
+664.443 334.824 L
+664.498 333.46 L
+664.502 333.32 L
+664.568 330.588 L
+664.646 334.207 L
+664.749 330.805 L
+664.753 330.631 L
+664.76 330.438 L
+664.859 333.933 L
+665 332.771 L
+665.003 332.86 L
+665.04 333.871 L
+665.144 330.981 L
+665.247 332.806 L
+665.251 332.903 L
+665.332 332.018 L
+665.457 333.091 L
+665.498 333.045 L
+665.502 333.073 L
+665.509 333.093 L
+665.568 332.429 L
+665.749 332.691 L
+665.753 332.669 L
+665.801 331.688 L
+665.93 333.765 L
+666 332.019 L
+666.004 332.041 L
+666.107 333.434 L
+666.247 331.006 L
+666.251 331.049 L
+666.328 334.004 L
+666.498 333.157 L
+666.502 333.203 L
+666.528 333.717 L
+666.616 331.516 L
+666.749 332.951 L
+666.753 332.82 L
+666.838 331.287 L
+666.952 333.819 L
+666.996 332.533 L
+667 332.475 L
+667.103 333.415 L
+667.185 331.004 L
+667.247 333.1 L
+667.251 333.06 L
+667.299 333.55 L
+667.391 331.555 L
+667.498 332.397 L
+667.502 332.508 L
+667.613 331.718 L
+667.672 333.898 L
+667.749 332.125 L
+667.753 332.099 L
+667.779 331.674 L
+667.878 333.609 L
+667.996 332.372 L
+668 332.401 L
+668.092 333.532 L
+668.137 331.71 L
+668.247 332.532 L
+668.251 332.61 L
+668.306 334.108 L
+668.498 331.226 L
+668.502 331.231 L
+668.746 334.399 L
+668.749 334.369 L
+668.753 334.278 L
+668.849 331.858 L
+668.997 332.55 L
+669 332.408 L
+669.17 334.24 L
+669.247 330.923 L
+669.251 330.943 L
+669.384 334.341 L
+669.473 330.851 L
+669.498 331.907 L
+669.502 332.102 L
+669.665 330.617 L
+669.749 334.075 L
+669.753 334.227 L
+669.768 334.76 L
+669.86 331.126 L
+669.997 332.679 L
+670 332.499 L
+670.089 330.574 L
+670.181 333.6 L
+670.248 331.842 L
+670.251 331.78 L
+670.388 334.38 L
+670.462 331.044 L
+670.499 332.115 L
+670.502 332.126 L
+670.617 333.498 L
+670.72 331.001 L
+670.75 332.051 L
+670.753 332.161 L
+670.82 334.174 L
+670.934 331.885 L
+670.997 333.577 L
+671 333.664 L
+671.037 334.163 L
+671.152 331.049 L
+671.248 333.859 L
+671.251 333.834 L
+671.318 330.613 L
+671.499 332.288 L
+671.502 332.167 L
+671.628 333.952 L
+671.75 330.943 L
+671.753 330.943 L
+671.838 333.878 L
+671.997 332.958 L
+672.001 333.071 L
+672.052 333.715 L
+672.163 331.333 L
+672.248 333.481 L
+672.252 333.452 L
+672.359 331.291 L
+672.499 333.066 L
+672.503 333.013 L
+672.598 331.948 L
+672.665 333.188 L
+672.75 332.835 L
+672.753 332.813 L
+672.816 331.605 L
+672.872 333.437 L
+672.997 332.662 L
+673.001 332.616 L
+673.03 331.73 L
+673.086 333.057 L
+673.248 332.541 L
+673.252 332.581 L
+673.296 333.021 L
+673.399 331.812 L
+673.499 332.907 L
+673.503 332.967 L
+673.654 331.989 L
+673.72 333.754 L
+673.75 332.693 L
+673.754 332.65 L
+673.89 332.238 L
+673.949 333.358 L
+673.997 332.45 L
+674.001 332.495 L
+674.167 333.499 L
+674.237 331.531 L
+674.248 331.692 L
+674.252 331.855 L
+674.296 333.351 L
+674.499 333.279 L
+674.503 333.284 L
+674.658 331.417 L
+674.728 333.413 L
+674.746 333.267 L
+674.75 333.208 L
+674.923 334.03 L
+674.99 331.647 L
+674.997 331.77 L
+675.001 331.884 L
+675.13 333.051 L
+675.204 331.482 L
+675.248 331.802 L
+675.252 331.85 L
+675.481 333.591 L
+675.499 333.469 L
+675.503 333.438 L
+675.713 331.585 L
+675.746 331.644 L
+675.75 331.672 L
+675.972 333.086 L
+675.997 332.564 L
+676.001 332.523 L
+676.167 331.56 L
+676.234 333.558 L
+676.248 333.247 L
+676.252 333.109 L
+676.3 331.168 L
+676.44 333.322 L
+676.499 331.868 L
+676.503 331.87 L
+676.647 333.497 L
+676.728 330.933 L
+676.747 331.281 L
+676.75 331.393 L
+676.927 331.294 L
+676.994 333.493 L
+676.997 333.483 L
+677.001 333.444 L
+677.153 332.178 L
+677.248 333.168 L
+677.252 333.162 L
+677.263 333.196 L
+677.341 331.645 L
+677.499 332.14 L
+677.503 332.132 L
+677.603 333.27 L
+677.747 333.099 L
+677.75 333.04 L
+677.798 331.963 L
+677.998 332.002 L
+678.001 331.807 L
+678.012 331.55 L
+678.09 333.042 L
+678.249 332.412 L
+678.252 332.469 L
+678.426 330.96 L
+678.5 333.698 L
+678.503 333.712 L
+678.595 331.69 L
+678.714 333.868 L
+678.747 333.306 L
+678.75 333.087 L
+678.802 331.457 L
+678.924 333.185 L
+678.998 331.596 L
+679.001 331.637 L
+679.06 332.915 L
+679.249 332.705 L
+679.252 332.814 L
+679.286 333.119 L
+679.33 332.159 L
+679.5 332.315 L
+679.503 332.23 L
+679.525 331.864 L
+679.588 333.482 L
+679.747 332.778 L
+679.751 332.844 L
+679.88 331.488 L
+679.939 333.386 L
+679.998 332.524 L
+680.002 332.54 L
+680.086 331.45 L
+680.149 333.142 L
+680.249 332.433 L
+680.253 332.331 L
+680.289 331.82 L
+680.367 333.297 L
+680.5 332.236 L
+680.503 332.193 L
+680.658 333.203 L
+680.736 331.854 L
+680.747 331.981 L
+680.751 332.038 L
+680.876 332.944 L
+680.972 331.932 L
+680.998 332.359 L
+681.002 332.408 L
+681.179 331.3 L
+681.245 334.208 L
+681.249 334.19 L
+681.253 334.1 L
+681.312 331.905 L
+681.5 332.041 L
+681.504 332.005 L
+681.515 331.901 L
+681.684 333.142 L
+681.747 332.251 L
+681.751 332.134 L
+681.766 331.942 L
+681.821 333.285 L
+681.998 332.536 L
+682.002 332.519 L
+682.164 333.015 L
+682.22 332.136 L
+682.249 332.341 L
+682.253 332.312 L
+682.327 333.565 L
+682.489 331.412 L
+682.496 331.477 L
+682.5 331.529 L
+682.548 333.219 L
+682.747 333.215 L
+682.751 333.199 L
+682.865 332.107 L
+682.998 332.19 L
+683.002 332.18 L
+683.006 332.178 L
+683.249 332.906 L
+683.253 332.993 L
+683.308 333.179 L
+683.496 332.159 L
+683.5 332.056 L
+683.677 333.239 L
+683.736 331.532 L
+683.747 331.73 L
+683.751 331.846 L
+683.795 333.284 L
+683.943 331.844 L
+683.998 332.695 L
+684.002 332.777 L
+684.157 331.677 L
+684.249 333.598 L
+684.253 333.613 L
+684.364 331.817 L
+684.497 332.222 L
+684.5 332.23 L
+684.618 331.948 L
+684.692 333.424 L
+684.747 332.384 L
+684.751 332.44 L
+684.891 333.982 L
+684.958 331.357 L
+684.998 332.32 L
+685.002 332.322 L
+685.176 331.802 L
+685.249 332.918 L
+685.253 332.991 L
+685.327 333.297 L
+685.393 331.765 L
+685.497 332.592 L
+685.5 332.468 L
+685.604 331.826 L
+685.748 333.326 L
+685.751 333.396 L
+685.833 331.388 L
+685.91 334.039 L
+685.999 332.294 L
+686.002 332.217 L
+686.032 331.545 L
+686.143 332.957 L
+686.25 331.734 L
+686.253 331.718 L
+686.349 334.134 L
+686.497 332.543 L
+686.5 332.636 L
+686.519 333.157 L
+686.596 331.846 L
+686.748 332.933 L
+686.751 333.028 L
+686.881 331.925 L
+686.984 333.583 L
+686.999 333.149 L
+687.002 333.019 L
+687.047 331.607 L
+687.22 333.166 L
+687.25 332.514 L
+687.253 332.445 L
+687.412 333.395 L
+687.493 331.379 L
+687.497 331.401 L
+687.501 331.445 L
+687.563 333.133 L
+687.748 332.338 L
+687.752 332.333 L
+687.836 333.662 L
+687.914 331.343 L
+687.999 333.621 L
+688.003 333.679 L
+688.006 333.686 L
+688.109 331.98 L
+688.25 332.177 L
+688.253 332.163 L
+688.301 333.26 L
+688.357 331.81 L
+688.497 332.165 L
+688.501 332.206 L
+688.538 331.891 L
+688.748 333.296 L
+688.752 333.302 L
+688.995 331.609 L
+688.999 331.614 L
+689.003 331.66 L
+689.22 333.21 L
+689.25 332.748 L
+689.254 332.65 L
+689.327 333.434 L
+689.39 332.078 L
+689.497 333.008 L
+689.501 333.027 L
+689.508 333.055 L
+689.564 331.721 L
+689.748 332.473 L
+689.752 332.503 L
+689.903 333.084 L
+689.999 331.988 L
+690.003 331.901 L
+690.025 331.53 L
+690.246 333.195 L
+690.25 333.224 L
+690.39 332.039 L
+690.497 332.338 L
+690.501 332.484 L
+690.612 331.678 L
+690.693 333.279 L
+690.748 332.409 L
+690.752 332.346 L
+690.948 331.838 L
+690.999 332.95 L
+691.003 333.004 L
+691.073 331.808 L
+691.187 333.581 L
+691.246 332.426 L
+691.25 332.387 L
+691.398 333.424 L
+691.494 331.568 L
+691.497 331.578 L
+691.501 331.59 L
+691.575 333.454 L
+691.689 331.058 L
+691.748 333.368 L
+691.752 333.503 L
+691.767 333.716 L
+691.918 332.173 L
+691.999 332.849 L
+692.003 332.807 L
+692.069 331.892 L
+692.199 333.466 L
+692.247 332.026 L
+692.25 331.923 L
+692.28 331.648 L
+692.483 333.019 L
+692.497 332.992 L
+692.501 332.999 L
+692.582 331.65 L
+692.671 333.035 L
+692.748 332.167 L
+692.752 332.102 L
+692.855 333.779 L
+692.962 331.539 L
+692.999 331.846 L
+693.003 331.871 L
+693.07 333.839 L
+693.14 331.173 L
+693.247 333.73 L
+693.25 333.72 L
+693.343 331.257 L
+693.453 333.78 L
+693.498 332.843 L
+693.501 332.731 L
+693.623 333.356 L
+693.73 331.387 L
+693.749 331.542 L
+693.752 331.578 L
+693.83 334.076 L
+694 333.145 L
+694.003 333.113 L
+694.177 333.216 L
+694.247 331.455 L
+694.25 331.472 L
+694.498 333.467 L
+694.501 333.541 L
+694.535 333.939 L
+694.627 331.103 L
+694.749 333.715 L
+694.752 333.638 L
+694.819 331.018 L
+694.922 334.045 L
+695 331.306 L
+695.003 331.203 L
+695.125 334.418 L
+695.232 330.876 L
+695.247 331.284 L
+695.251 331.435 L
+695.498 333.702 L
+695.502 333.785 L
+695.505 333.811 L
+695.741 332.135 L
+695.749 332.22 L
+695.753 332.264 L
+695.907 332.133 L
+696 332.862 L
+696.003 332.958 L
+696.107 332.046 L
+696.181 333.454 L
+696.247 332.701 L
+696.251 332.593 L
+696.317 331.576 L
+696.391 333.04 L
+696.498 331.716 L
+696.502 331.747 L
+696.601 333.683 L
+696.705 331.655 L
+696.749 332.219 L
+696.753 332.304 L
+696.804 333.761 L
+696.9 331.394 L
+697 332.875 L
+697.004 332.915 L
+697.111 331.84 L
+697.247 333.441 L
+697.251 333.427 L
+697.332 331.578 L
+697.498 332.62 L
+697.502 332.646 L
+697.679 332.807 L
+697.749 332.078 L
+697.753 332.085 L
+697.856 333.318 L
+697.952 331.645 L
+697.996 332.324 L
+698 332.425 L
+698.196 332.055 L
+698.247 333.478 L
+698.251 333.556 L
+698.258 333.642 L
+698.336 331.708 L
+698.498 332.785 L
+698.502 332.65 L
+698.542 332.186 L
+698.698 333.041 L
+698.749 332.571 L
+698.753 332.508 L
+698.904 333.033 L
+698.967 332.218 L
+698.996 332.31 L
+699 332.284 L
+699.059 331.922 L
+699.14 333.13 L
+699.247 332.125 L
+699.251 332.117 L
+699.34 332.995 L
+699.421 332.052 L
+699.498 332.779 L
+699.502 332.767 L
+699.642 331.928 L
+699.749 333.157 L
+699.753 333.184 L
+699.757 333.185 L
+699.819 332.026 L
+699.997 332.362 L
+700 332.337 L
+700.126 333.337 L
+700.247 331.925 L
+700.251 331.88 L
+700.259 331.87 L
+700.336 333.344 L
+700.498 332.417 L
+700.502 332.463 L
+700.635 332.196 L
+700.749 333.12 L
+700.753 333.142 L
+700.768 333.15 L
+700.831 332.068 L
+700.997 332.654 L
+701 332.576 L
+701.026 332.073 L
+701.203 333.245 L
+701.248 332.519 L
+701.251 332.453 L
+701.358 333.265 L
+701.487 331.95 L
+701.499 332.055 L
+701.502 332.116 L
+701.587 332.981 L
+701.69 331.697 L
+701.75 332.81 L
+701.753 332.882 L
+701.809 333.429 L
+701.908 331.451 L
+701.997 332.772 L
+702 332.691 L
+702.126 331.754 L
+702.196 333.242 L
+702.248 332.684 L
+702.251 332.677 L
+702.333 331.845 L
+702.432 333.354 L
+702.499 331.931 L
+702.502 331.799 L
+702.521 331.563 L
+702.609 333.071 L
+702.75 332.548 L
+702.753 332.542 L
+702.831 333.38 L
+702.905 331.932 L
+702.997 332.71 L
+703.001 332.673 L
+703.119 332.11 L
+703.193 332.896 L
+703.248 332.342 L
+703.252 332.331 L
+703.259 332.322 L
+703.333 333.056 L
+703.499 332.714 L
+703.503 332.735 L
+703.621 332.105 L
+703.691 333.234 L
+703.75 332.213 L
+703.753 332.23 L
+703.912 332.978 L
+703.997 331.717 L
+704.001 331.719 L
+704.148 333.075 L
+704.248 332.433 L
+704.252 332.496 L
+704.314 333.119 L
+704.385 332.259 L
+704.499 332.516 L
+704.503 332.52 L
+704.591 331.95 L
+704.687 333.458 L
+704.75 332.31 L
+704.754 332.239 L
+704.901 333.005 L
+704.968 331.505 L
+704.997 331.89 L
+705.001 331.955 L
+705.174 331.843 L
+705.248 333.223 L
+705.252 333.307 L
+705.267 333.54 L
+705.374 332.047 L
+705.499 332.13 L
+705.503 332.103 L
+705.529 331.939 L
+705.643 333.339 L
+705.746 332.773 L
+705.75 332.804 L
+705.813 333.267 L
+705.89 331.982 L
+705.997 332.628 L
+706.001 332.631 L
+706.09 331.814 L
+706.197 333.199 L
+706.248 332.51 L
+706.252 332.471 L
+706.385 333.185 L
+706.47 331.532 L
+706.499 331.837 L
+706.503 331.868 L
+706.746 333.658 L
+706.75 333.634 L
+706.846 332.022 L
+706.997 332.53 L
+707.001 332.511 L
+707.06 331.86 L
+707.152 332.982 L
+707.248 332.92 L
+707.252 332.943 L
+707.304 333.333 L
+707.385 332.094 L
+707.499 333.086 L
+707.503 333.075 L
+707.573 331.762 L
+707.747 332.416 L
+707.75 332.354 L
+707.794 331.872 L
+707.879 333.669 L
+707.997 332.316 L
+708.001 332.372 L
+708.153 331.802 L
+708.245 333.388 L
+708.248 333.367 L
+708.252 333.326 L
+708.455 333.388 L
+708.499 332.271 L
+708.503 332.12 L
+708.629 333.162 L
+708.721 331.825 L
+708.747 332.205 L
+708.75 332.236 L
+708.909 332.978 L
+708.998 332.66 L
+709.001 332.641 L
+709.204 332.957 L
+709.249 332.192 L
+709.252 332.13 L
+709.274 331.789 L
+709.378 333.224 L
+709.5 332.759 L
+709.503 332.779 L
+709.54 332.855 L
+709.706 332.066 L
+709.747 332.531 L
+709.75 332.594 L
+709.894 332.048 L
+709.961 333.154 L
+709.998 332.472 L
+710.001 332.426 L
+710.031 332.172 L
+710.108 332.848 L
+710.249 332.41 L
+710.252 332.364 L
+710.411 332.969 L
+710.474 332.088 L
+710.5 332.359 L
+710.503 332.476 L
+710.537 333.194 L
+710.647 332.033 L
+710.747 332.638 L
+710.751 332.665 L
+710.913 332.116 L
+710.965 333.05 L
+710.998 332.761 L
+711.002 332.703 L
+711.138 333.085 L
+711.205 331.919 L
+711.249 332.367 L
+711.253 332.409 L
+711.341 332.843 L
+711.496 332.264 L
+711.5 332.272 L
+711.503 332.292 L
+711.559 333.026 L
+711.644 332.006 L
+711.747 332.656 L
+711.751 332.658 L
+711.762 332.673 L
+711.95 332.004 L
+711.998 332.573 L
+712.002 332.637 L
+712.053 333.024 L
+712.12 332.158 L
+712.249 332.973 L
+712.253 332.964 L
+712.378 332.058 L
+712.456 333.622 L
+712.5 332.547 L
+712.504 332.439 L
+712.548 331.883 L
+712.64 333.029 L
+712.747 332.21 L
+712.751 332.263 L
+712.806 333.08 L
+712.972 331.882 L
+712.998 332.477 L
+713.002 332.563 L
+713.05 333.163 L
+713.127 332.056 L
+713.249 332.599 L
+713.253 332.61 L
+713.319 332.068 L
+713.441 332.907 L
+713.496 332.622 L
+713.5 332.616 L
+713.566 332.044 L
+713.736 332.762 L
+713.747 332.749 L
+713.751 332.759 L
+713.947 333.129 L
+713.998 332.313 L
+714.002 332.241 L
+714.113 332.91 L
+714.231 332.046 L
+714.249 332.205 L
+714.253 332.244 L
+714.441 332.229 L
+714.496 332.981 L
+714.5 333.014 L
+714.526 333.035 L
+714.607 331.902 L
+714.747 332.782 L
+714.751 332.792 L
+714.921 332.96 L
+714.995 331.876 L
+714.998 331.879 L
+715.002 331.894 L
+715.102 333.243 L
+715.249 332.475 L
+715.253 332.543 L
+715.378 332.47 L
+715.438 332.838 L
+715.497 332.692 L
+715.5 332.694 L
+715.548 333.132 L
+715.611 331.959 L
+715.747 332.335 L
+715.751 332.363 L
+715.781 332.763 L
+715.958 331.902 L
+715.998 332.705 L
+716.002 332.736 L
+716.128 332.979 L
+716.187 332.36 L
+716.249 332.625 L
+716.253 332.654 L
+716.323 331.853 L
+716.419 332.937 L
+716.497 332.351 L
+716.5 332.364 L
+716.504 332.363 L
+716.563 332.921 L
+716.748 332.797 L
+716.751 332.799 L
+716.762 332.925 L
+716.958 332.151 L
+716.999 332.746 L
+717.002 332.846 L
+717.017 333.062 L
+717.08 332.165 L
+717.25 332.212 L
+717.253 332.121 L
+717.261 332.056 L
+717.401 332.799 L
+717.497 332.61 L
+717.5 332.59 L
+717.548 332.191 L
+717.737 333.046 L
+717.748 332.878 L
+717.751 332.793 L
+717.866 332.82 L
+717.973 332.178 L
+717.999 332.318 L
+718.002 332.328 L
+718.08 333.126 L
+718.183 332.223 L
+718.25 332.77 L
+718.253 332.749 L
+718.36 331.963 L
+718.46 333.076 L
+718.497 333.037 L
+718.501 333.072 L
+718.574 331.725 L
+718.696 333.472 L
+718.748 332.37 L
+718.752 332.313 L
+718.884 333.207 L
+718.984 331.928 L
+718.999 332.037 L
+719.003 332.084 L
+719.091 333.058 L
+719.209 331.957 L
+719.25 332.571 L
+719.253 332.637 L
+719.298 333.144 L
+719.364 332.076 L
+719.497 332.675 L
+719.501 332.656 L
+719.567 332.198 L
+719.744 332.87 L
+719.748 332.851 L
+719.752 332.794 L
+719.848 332.431 L
+719.999 333.096 L
+720.003 333.103 L
+720.169 333.162 L
+720.239 331.708 L
+720.25 331.804 L
+720.254 331.83 L
+720.383 332.995 L
+720.497 332.472 L
+720.501 332.518 L
+720.685 331.916 L
+720.748 333.222 L
+720.752 333.271 L
+720.759 333.303 L
+720.822 331.849 L
+720.999 332.69 L
+721.003 332.687 L
+721.143 332.979 L
+721.243 331.851 L
+721.246 331.857 L
+721.25 331.885 L
+721.346 333.18 L
+721.497 332.948 L
+721.501 332.958 L
+721.508 332.977 L
+721.656 332.215 L
+721.748 332.505 L
+721.752 332.557 L
+721.774 332.799 L
+721.87 332.007 L
+721.999 332.744 L
+722.003 332.777 L
+722.051 333.157 L
+722.125 332.099 L
+722.246 332.911 L
+722.25 332.88 L
+722.317 331.964 L
+722.497 332.624 L
+722.501 332.632 L
+722.634 332.922 L
+722.741 332.224 L
+722.748 332.297 L
+722.752 332.356 L
+722.807 332.878 L
+722.918 332.201 L
+722.999 332.824 L
+723.003 332.86 L
+723.114 332.292 L
+723.243 333.254 L
+723.247 333.239 L
+723.25 333.21 L
+723.324 331.81 L
+723.497 332.226 L
+723.501 332.198 L
+723.542 332.139 L
+723.649 332.881 L
+723.748 332.287 L
+723.752 332.232 L
+723.763 332.127 L
+723.885 332.716 L
+723.999 332.244 L
+724.003 332.248 L
+724.154 332.791 L
+724.247 332.461 L
+724.25 332.514 L
+724.284 332.971 L
+724.343 332.299 L
+724.498 332.639 L
+724.501 332.591 L
+724.553 332.301 L
+724.737 332.955 L
+724.749 332.861 L
+724.752 332.796 L
+724.797 331.976 L
+724.9 332.888 L
+725 332.266 L
+725.003 332.268 L
+725.025 332.242 L
+725.103 332.887 L
+725.247 332.297 L
+725.25 332.247 L
+725.332 332.758 L
+725.428 332.068 L
+725.498 332.598 L
+725.501 332.562 L
+725.612 332.948 L
+725.723 332.276 L
+725.749 332.456 L
+725.752 332.499 L
+725.826 333.017 L
+725.893 332.365 L
+726 332.514 L
+726.003 332.494 L
+726.114 332.945 L
+726.166 332.292 L
+726.247 332.753 L
+726.251 332.752 L
+726.332 332.766 L
+726.42 332.167 L
+726.498 332.633 L
+726.502 332.625 L
+726.616 332.099 L
+726.69 332.944 L
+726.749 332.375 L
+726.753 332.398 L
+726.8 332.77 L
+726.904 332.218 L
+727 332.709 L
+727.003 332.724 L
+727.096 332.351 L
+727.147 332.917 L
+727.247 332.882 L
+727.251 332.873 L
+727.476 332.277 L
+727.498 332.406 L
+727.502 332.428 L
+727.564 332.93 L
+727.638 332.088 L
+727.749 332.924 L
+727.753 332.93 L
+727.756 332.935 L
+727.849 332.223 L
+728 332.763 L
+728.004 332.754 L
+728.074 332.153 L
+728.184 332.818 L
+728.247 332.601 L
+728.251 332.612 L
+728.321 332.404 L
+728.461 332.954 L
+728.498 332.556 L
+728.502 332.527 L
+728.579 332.19 L
+728.638 332.774 L
+728.749 332.529 L
+728.753 332.505 L
+728.86 332.958 L
+728.959 332.201 L
+728.996 332.305 L
+729 332.338 L
+729.059 332.878 L
+729.133 332.091 L
+729.247 332.701 L
+729.251 332.671 L
+729.336 332.113 L
+729.406 332.943 L
+729.498 332.711 L
+729.502 332.646 L
+729.55 332.115 L
+729.638 332.734 L
+729.749 332.415 L
+729.753 332.424 L
+729.952 332.72 L
+729.996 332.475 L
+730 332.465 L
+730.126 332.699 L
+730.247 332.41 L
+730.251 332.409 L
+730.266 332.368 L
+730.347 332.695 L
+730.498 332.69 L
+730.502 332.714 L
+730.521 332.809 L
+730.642 332.382 L
+730.749 332.478 L
+730.753 332.466 L
+730.757 332.461 L
+730.904 332.658 L
+730.997 332.502 L
+731 332.496 L
+731.107 332.73 L
+731.214 332.384 L
+731.247 332.473 L
+731.251 332.477 L
+731.414 332.421 L
+731.487 332.616 L
+731.498 332.594 L
+731.502 332.582 L
+731.535 332.643 L
+731.624 332.499 L
+731.749 332.555 L
+731.753 332.551 L
+731.938 332.487 L
+731.997 332.622 L
+732 332.626 L
+732.07 332.517 L
+732.196 332.633 L
+732.248 332.538 L
+732.251 332.525 L
+732.292 332.487 L
+732.358 332.608 L
+732.499 332.546 L
+732.502 332.542 L
+732.569 332.591 L
+732.628 332.495 L
+732.75 332.569 L
+732.753 332.572 L
+732.783 332.591 L
+732.916 332.537 L
+732.997 332.567 L
+733 332.564 L
+733.071 332.573 L
+733.13 332.549 L
+733.248 332.551 L
+733.251 332.552 L
+733.322 332.557 L
+733.421 332.556 L
+S
+GR
+%%Trailer
+%%Pages: 1
+%%EOF
diff --git a/Partie3/analyse_delay.fig b/Partie3/analyse_delay.fig
new file mode 100644
index 0000000000000000000000000000000000000000..6c448c51ddaa51cfa8e66dbdf1d3fdddec5f8985
Binary files /dev/null and b/Partie3/analyse_delay.fig differ
diff --git a/Partie3/analyse_delay.m b/Partie3/analyse_delay.m
new file mode 100644
index 0000000000000000000000000000000000000000..c1ddf4738fcc882ed34c060d7682d4a1fa916358
--- /dev/null
+++ b/Partie3/analyse_delay.m
@@ -0,0 +1,26 @@
+% analyse_delay.m
+% Script pour obtenir et tracer la réponse impulsionnelle h(k) d’un filtre à retard
+
+% Paramètres du filtre
+tau = 5;       % Retard en échantillons
+g = 0.7;       % Coefficient d'atténuation
+N = 10 * tau;  % Durée d'observation suffisante pour voir les réflexions
+
+% Signal d'entrée : une impulsion de Dirac
+x = zeros(1, N);
+x(1) = 1;  % Dirac à k = 0
+
+% Définition des coefficients du filtre
+a = [1, zeros(1, tau - 1), g];
+b = 1;
+
+% Calcul de la réponse impulsionnelle
+h = filter(b, a, x);
+
+% Affichage de la réponse
+k = 0:N-1;
+stem(k, h, 'filled');
+xlabel('k');
+ylabel('h(k)');
+title('Réponse impulsionnelle du filtre à retard');
+grid on;
\ No newline at end of file
diff --git a/Partie3/analyse_freq_delay_filtre.m b/Partie3/analyse_freq_delay_filtre.m
new file mode 100644
index 0000000000000000000000000000000000000000..c4225f2b1bc25195f63e01c96c41abed2f722862
--- /dev/null
+++ b/Partie3/analyse_freq_delay_filtre.m
@@ -0,0 +1,28 @@
+% analyse_freq_delay_filtre.m
+% Analyse de la réponse fréquentielle du système à delay filtré
+
+% Paramètres
+Fe = 44100;        % fréquence d'échantillonnage
+g = 0.9;           % atténuation
+K = 10;            % longueur moyenne
+tau_s = 0.25;      % retard en secondes
+tau = round(tau_s * Fe);
+N = 4096;          % taille FFT
+
+% Impulsion en entrée
+x = zeros(1, N);
+x(1) = 1;  % Dirac
+
+% Réponse du système
+h = effet_delay_filtre(x, tau_s, g, K, Fe);
+
+% Réponse fréquentielle
+H = fft(h, N);
+nu = linspace(0, 1, N);  % fréquence réduite
+
+% Affichage
+plot(nu, abs(H), 'LineWidth', 1.5);
+xlabel('Fréquence réduite \nu');
+ylabel('|h(nu)|');
+title('Réponse fréquentielle du système à delay filtré');
+grid on;
diff --git a/Partie3/effet_delay.m b/Partie3/effet_delay.m
new file mode 100644
index 0000000000000000000000000000000000000000..d8b7672bdcfbfcfe5f761335fab3469a742da94e
--- /dev/null
+++ b/Partie3/effet_delay.m
@@ -0,0 +1,24 @@
+function y = effet_delay(x, delay_s, g, Fe)
+%EFFET_DELAY applique un effet de retard (delay) sur un signal audio.
+%
+%   y = effet_delay(x, delay_s, g, Fe)
+%
+%   Entrées :
+%     - x        : signal d'entrée (vecteur)
+%     - delay_s  : temps de retard en secondes
+%     - g        : coefficient d'atténuation
+%     - Fe       : fréquence d'échantillonnage (Hz)
+%
+%   Sortie :
+%     - y        : signal de sortie filtré avec effet de delay
+
+    % Convertir le temps de delay en nombre d'échantillons
+    tau = round(delay_s * Fe);
+
+    % Définir les coefficients du filtre (forme canonique)
+    a = [1, zeros(1, tau - 1), g];
+    b = 1;
+
+    % Appliquer le filtre
+    y = filter(b, a, x);
+end
diff --git a/Partie3/effet_delay_filtre.m b/Partie3/effet_delay_filtre.m
new file mode 100644
index 0000000000000000000000000000000000000000..0accf8eb3ffdf0de9a3c5522d86b95562f4c0122
--- /dev/null
+++ b/Partie3/effet_delay_filtre.m
@@ -0,0 +1,35 @@
+function y = effet_delay_filtre(x, delay_s, g, K, Fe)
+%EFFET_DELAY_FILTRE applique un effet de delay avec moyenne glissante dans la boucle de retour.
+%
+%   y = effet_delay_filtre(x, delay_s, g, K, Fe)
+%
+%   Entrées :
+%     - x        : signal d'entrée
+%     - delay_s  : durée du retard (en secondes)
+%     - g        : coefficient d'amortissement
+%     - K        : longueur du filtre de moyenne
+%     - Fe       : fréquence d'échantillonnage (Hz)
+%
+%   Sortie :
+%     - y        : signal de sortie avec effet de delay filtré
+
+    % Calcul du retard en échantillons
+    tau = round(delay_s * Fe);
+
+    % Initialisation du vecteur de sortie
+    N = length(x);
+    y = zeros(size(x));
+
+    % Boucle de calcul récursif
+    for k = 1:N
+        % Calcul de la somme de moyenne glissante
+        somme = 0;
+        for n = 0:K-1
+            index = k - tau - n;
+            if index > 0
+                somme = somme + y(index);
+            end
+        end
+        y(k) = x(k) - (g / K) * somme;
+    end
+end
diff --git a/Partie3/effet_reverb.m b/Partie3/effet_reverb.m
new file mode 100644
index 0000000000000000000000000000000000000000..bb0010a54b0cf2b1662118354e32488ae85031bf
--- /dev/null
+++ b/Partie3/effet_reverb.m
@@ -0,0 +1,28 @@
+function y = effet_reverb(x, h)
+% EFFET_REVERB Applique un effet de réverbération à un signal source
+%
+%   y = effet_reverb(x, h)
+%
+%   Entrées :
+%     - x : signal source (vecteur ligne ou colonne)
+%     - h : réponse impulsionnelle estimée (vecteur)
+%
+%   Sortie :
+%     - y : signal x après application de la réverbération (convolué par h)
+
+    % Vérification des entrées
+    if nargin < 2
+        error('Deux arguments sont requis : effet_reverb(x, h)');
+    end
+
+    % Conversion éventuelle en vecteurs colonne
+    if isrow(x)
+        x = x(:);
+    end
+    if isrow(h)
+        h = h(:);
+    end
+
+    % Convolution via un filtre RIF (réponse impulsionnelle finie)
+    y = filter(h, 1, x);
+end
diff --git a/Partie3/effet_reverb_FFT.m b/Partie3/effet_reverb_FFT.m
new file mode 100644
index 0000000000000000000000000000000000000000..40601932fba51b00454448684a06c81383ac57eb
--- /dev/null
+++ b/Partie3/effet_reverb_FFT.m
@@ -0,0 +1,42 @@
+function y = effet_reverb_FFT(x, h)
+%EFFET_REVERB_FFT Applique l'effet de réverbération via convolution rapide (FFT)
+%
+%   y = effet_reverb_FFT(x, h)
+%
+%   Entrées :
+%     - x : signal source
+%     - h : réponse impulsionnelle estimée
+%
+%   Sortie :
+%     - y : signal réverbéré obtenu via convolution rapide dans le domaine fréquentiel
+
+    % Vérification des entrées
+    if nargin < 2
+        error('Deux arguments sont requis : effet_reverb_FFT(x, h)');
+    end
+
+    % Conversion éventuelle en vecteurs colonne
+    if isrow(x)
+        x = x(:);
+    end
+    if isrow(h)
+        h = h(:);
+    end
+
+    % Détermination de la taille optimale pour la FFT
+    NFFT = 2^nextpow2(length(x) + length(h) - 1);
+
+    % FFT des deux signaux (zéro-padding)
+    Xf = fft(x, NFFT);
+    Hf = fft(h, NFFT);
+
+    % Produit dans le domaine fréquentiel
+    Yf = Xf .* Hf;
+
+    % Revenir dans le domaine temporel
+    y_temp = ifft(Yf);
+
+    % Tronquer à la longueur réelle attendue
+    y = real(y_temp(1 : length(x)));
+
+end
diff --git a/Partie3/karplusStrong.m b/Partie3/karplusStrong.m
new file mode 100644
index 0000000000000000000000000000000000000000..0265e285477801cfa0fc342a47d596c049426e05
--- /dev/null
+++ b/Partie3/karplusStrong.m
@@ -0,0 +1,23 @@
+function signal = karplusStrong(freqHz, iterations, fs, g, alpha)
+    % freqHz     : fréquence fondamentale en Hz
+    % iterations : durée en nombre d'échantillons
+    % fs         : fréquence d'échantillonnage
+    % g          : facteur d'amortissement (0 < g < 1)
+    % alpha      : coefficient du filtre de boucle (entre 0 et 1)
+
+    N = floor(fs / freqHz);  % taille de la ligne à retard
+    x = 2 * rand(1, N) - 1;   % bruit blanc centré
+
+    % Initialisation de la ligne à retard
+    y = zeros(1, iterations);
+    y(1:N) = x;               % amorçage avec bruit blanc
+    for k = N+2:iterations
+        y(k) = g * (alpha * y(k - N) + (1 - alpha) * y(k - N - 1));
+    end
+
+    signal = y;
+
+    % Lecture et affichage
+    sound(signal, fs);
+    plot(signal), grid on, title('Karplus-Strong avec perte d’énergie')
+end
diff --git a/Partie3/question314.m b/Partie3/question314.m
new file mode 100644
index 0000000000000000000000000000000000000000..5ce215ca5f1438941517cdcd52f58a2a0ecb4cab
--- /dev/null
+++ b/Partie3/question314.m
@@ -0,0 +1,28 @@
+% Comparaison réponse fréquentielle théorique vs DFT numérique
+
+% Paramètres du filtre
+tau = 5;       % retard en échantillons
+g = 0.7;       % atténuation
+N = 512;       % nombre de points FFT
+
+% --- Réponse théorique ---
+nu = linspace(0, 1, N);  % fréquence réduite (de 0 à 1)
+mod_theo = 1 ./ sqrt(1 + 2*g*cos(2*pi*nu*tau) + g^2);
+
+% --- Réponse impulsionnelle numérique ---
+x = zeros(1, N);
+x(1) = 1;  % Dirac
+a = [1, zeros(1, tau - 1), g];
+b = 1;
+h = filter(b, a, x);
+mod_dft = abs(fft(h, N));  % transformée de Fourier discrète
+
+% --- Tracé comparatif ---
+figure;
+plot(nu, mod_theo, 'b', 'LineWidth', 2); hold on;
+plot(nu, mod_dft(1:N), 'r--', 'LineWidth', 1.5);
+xlabel('Frequence reduite \nu');
+ylabel('|\hat{h}(\nu)|');
+legend('Theorique', 'Numerique (TFD)');
+title('Comparaison du module de la reponse en frequence');
+grid on;
diff --git a/Partie3/question33.m b/Partie3/question33.m
new file mode 100644
index 0000000000000000000000000000000000000000..75a27d7612936529387943034b6668ce28f5fb54
--- /dev/null
+++ b/Partie3/question33.m
@@ -0,0 +1,20 @@
+% Charger les signaux depuis le fichier fourni
+load signal_excitation.mat  % Contient xe1, xe2, fe
+
+% Calcul des autocorrélations pour chaque signal
+[Rxe1, lags1] = xcorr(xe1, 'normalized');
+[Rxe2, lags2] = xcorr(xe2, 'normalized');
+
+% Affichage comparatif des fonctions d’autocorrélation
+figure;
+subplot(2,1,1)
+plot(lags1, Rxe1);
+title('Autocorrélation de xe1');
+xlabel('Retard'); ylabel('Amplitude');
+grid on;
+
+subplot(2,1,2)
+plot(lags2, Rxe2);
+title('Autocorrélation de xe2');
+xlabel('Retard'); ylabel('Amplitude');
+grid on;
\ No newline at end of file
diff --git a/Partie3/question34.m b/Partie3/question34.m
new file mode 100644
index 0000000000000000000000000000000000000000..37d2eef6d5883fd18f24f16da435374d67d51a96
--- /dev/null
+++ b/Partie3/question34.m
@@ -0,0 +1,23 @@
+% Chargement du signal et de la fréquence d’échantillonnage
+load signal_excitation.mat  % Contient xe1, xe2, fe
+x = xe1;                    % Signal d'excitation retenu
+
+% Simulation de la réponse de la pièce
+z = simule_piece(x, fe);    % Appel avec la fréquence en argument
+
+% Corrélation croisée brute (non normalisée)
+[Rzx, lags] = xcorr(z, x, 'none');
+
+% (Optionnel) Normalisation manuelle
+Rzx = Rzx / max(abs(Rzx));
+
+% Axe temporel en secondes
+t = lags / fe;
+
+% Affichage du résultat
+figure;
+plot(t, Rzx);
+xlabel('Temps (s)');
+ylabel('Amplitude estimée');
+title('Réponse impulsionnelle estimée de la pièce');
+grid on;
diff --git a/Partie3/question35.m b/Partie3/question35.m
new file mode 100644
index 0000000000000000000000000000000000000000..d1d678bf2261448497ec4a7dc4c0789094e14dfe
--- /dev/null
+++ b/Partie3/question35.m
@@ -0,0 +1,24 @@
+function y = effet_reverb(x, h)
+%EFFET_REVERB Applique un effet de réverbération à un signal
+%
+%   y = effet_reverb(x, h)
+%
+%   Entrées :
+%     - x : signal source (vecteur ligne ou colonne)
+%     - h : réponse impulsionnelle estimée (réverbération)
+%
+%   Sortie :
+%     - y : signal x après application de la réverbération (convolué par h)
+
+    % Vérification : colonne -> colonne
+    if isrow(x)
+        x = x(:);
+    end
+    if isrow(h)
+        h = h(:);
+    end
+
+    % Application de la convolution (par filtrage)
+    y = filter(h, 1, x);  % RIF : pas de partie récursive
+
+end
diff --git a/wav/Thank%20you%20for%20contac.wav b/wav/Thank%20you%20for%20contac.wav
new file mode 100644
index 0000000000000000000000000000000000000000..6db1490ca5ed432e3d69cb1d340b1634add8be36
Binary files /dev/null and b/wav/Thank%20you%20for%20contac.wav differ
diff --git a/wav/analyse_delay.eps b/wav/analyse_delay.eps
new file mode 100644
index 0000000000000000000000000000000000000000..41d988d205a439b677e2153bc4139c9b06590860
--- /dev/null
+++ b/wav/analyse_delay.eps
@@ -0,0 +1,2459 @@
+%!PS-Adobe-3.0 EPSF-3.0
+%%Creator: (MATLAB, The Mathworks, Inc. Version 24.2.0.2923080 \(R2024b\) Update 6. Operating System: Windows 10)
+%%Title: (C:/Users/infos/OneDrive/Bureau/IMT/Electrical Engineering IMT/SAR/synth_add/student_pack/src/wav/analyse_delay.eps)
+%%CreationDate: 2025-05-19T15:01:26
+%%Pages: (atend)
+%%BoundingBox:     0     0   420   315
+%%LanguageLevel: 3
+%%EndComments
+%%BeginProlog
+%%BeginResource: procset (Apache XML Graphics Std ProcSet) 1.2 0
+%%Version: 1.2 0
+%%Copyright: (Copyright 2001-2003,2010 The Apache Software Foundation. License terms: http://www.apache.org/licenses/LICENSE-2.0)
+/bd{bind def}bind def
+/ld{load def}bd
+/GR/grestore ld
+/GS/gsave ld
+/RM/rmoveto ld
+/C/curveto ld
+/t/show ld
+/L/lineto ld
+/ML/setmiterlimit ld
+/CT/concat ld
+/f/fill ld
+/N/newpath ld
+/S/stroke ld
+/CC/setcmykcolor ld
+/A/ashow ld
+/cp/closepath ld
+/RC/setrgbcolor ld
+/LJ/setlinejoin ld
+/GC/setgray ld
+/LW/setlinewidth ld
+/M/moveto ld
+/re {4 2 roll M
+1 index 0 rlineto
+0 exch rlineto
+neg 0 rlineto
+cp } bd
+/_ctm matrix def
+/_tm matrix def
+/BT { _ctm currentmatrix pop matrix _tm copy pop 0 0 moveto } bd
+/ET { _ctm setmatrix } bd
+/iTm { _ctm setmatrix _tm concat } bd
+/Tm { _tm astore pop iTm 0 0 moveto } bd
+/ux 0.0 def
+/uy 0.0 def
+/F {
+  /Tp exch def
+  /Tf exch def
+  Tf findfont Tp scalefont setfont
+  /cf Tf def  /cs Tp def
+} bd
+/ULS {currentpoint /uy exch def /ux exch def} bd
+/ULE {
+  /Tcx currentpoint pop def
+  gsave
+  newpath
+  cf findfont cs scalefont dup
+  /FontMatrix get 0 get /Ts exch def /FontInfo get dup
+  /UnderlinePosition get Ts mul /To exch def
+  /UnderlineThickness get Ts mul /Tt exch def
+  ux uy To add moveto  Tcx uy To add lineto
+  Tt setlinewidth stroke
+  grestore
+} bd
+/OLE {
+  /Tcx currentpoint pop def
+  gsave
+  newpath
+  cf findfont cs scalefont dup
+  /FontMatrix get 0 get /Ts exch def /FontInfo get dup
+  /UnderlinePosition get Ts mul /To exch def
+  /UnderlineThickness get Ts mul /Tt exch def
+  ux uy To add cs add moveto Tcx uy To add cs add lineto
+  Tt setlinewidth stroke
+  grestore
+} bd
+/SOE {
+  /Tcx currentpoint pop def
+  gsave
+  newpath
+  cf findfont cs scalefont dup
+  /FontMatrix get 0 get /Ts exch def /FontInfo get dup
+  /UnderlinePosition get Ts mul /To exch def
+  /UnderlineThickness get Ts mul /Tt exch def
+  ux uy To add cs 10 mul 26 idiv add moveto Tcx uy To add cs 10 mul 26 idiv add lineto
+  Tt setlinewidth stroke
+  grestore
+} bd
+/QT {
+/Y22 exch store
+/X22 exch store
+/Y21 exch store
+/X21 exch store
+currentpoint
+/Y21 load 2 mul add 3 div exch
+/X21 load 2 mul add 3 div exch
+/X21 load 2 mul /X22 load add 3 div
+/Y21 load 2 mul /Y22 load add 3 div
+/X22 load /Y22 load curveto
+} bd
+/SSPD {
+dup length /d exch dict def
+{
+/v exch def
+/k exch def
+currentpagedevice k known {
+/cpdv currentpagedevice k get def
+v cpdv ne {
+/upd false def
+/nullv v type /nulltype eq def
+/nullcpdv cpdv type /nulltype eq def
+nullv nullcpdv or
+{
+/upd true def
+} {
+/sametype v type cpdv type eq def
+sametype {
+v type /arraytype eq {
+/vlen v length def
+/cpdvlen cpdv length def
+vlen cpdvlen eq {
+0 1 vlen 1 sub {
+/i exch def
+/obj v i get def
+/cpdobj cpdv i get def
+obj cpdobj ne {
+/upd true def
+exit
+} if
+} for
+} {
+/upd true def
+} ifelse
+} {
+v type /dicttype eq {
+v {
+/dv exch def
+/dk exch def
+/cpddv cpdv dk get def
+dv cpddv ne {
+/upd true def
+exit
+} if
+} forall
+} {
+/upd true def
+} ifelse
+} ifelse
+} if
+} ifelse
+upd true eq {
+d k v put
+} if
+} if
+} if
+} forall
+d length 0 gt {
+d setpagedevice
+} if
+} bd
+/RE { % /NewFontName [NewEncodingArray] /FontName RE -
+  findfont dup length dict begin
+  {
+    1 index /FID ne
+    {def} {pop pop} ifelse
+  } forall
+  /Encoding exch def
+  /FontName 1 index def
+  currentdict definefont pop
+  end
+} bind def
+%%EndResource
+%%BeginResource: procset (Apache XML Graphics EPS ProcSet) 1.0 0
+%%Version: 1.0 0
+%%Copyright: (Copyright 2002-2003 The Apache Software Foundation. License terms: http://www.apache.org/licenses/LICENSE-2.0)
+/BeginEPSF { %def
+/b4_Inc_state save def         % Save state for cleanup
+/dict_count countdictstack def % Count objects on dict stack
+/op_count count 1 sub def      % Count objects on operand stack
+userdict begin                 % Push userdict on dict stack
+/showpage { } def              % Redefine showpage, { } = null proc
+0 setgray 0 setlinecap         % Prepare graphics state
+1 setlinewidth 0 setlinejoin
+10 setmiterlimit [ ] 0 setdash newpath
+/languagelevel where           % If level not equal to 1 then
+{pop languagelevel             % set strokeadjust and
+1 ne                           % overprint to their defaults.
+{false setstrokeadjust false setoverprint
+} if
+} if
+} bd
+/EndEPSF { %def
+count op_count sub {pop} repeat            % Clean up stacks
+countdictstack dict_count sub {end} repeat
+b4_Inc_state restore
+} bd
+%%EndResource
+%FOPBeginFontDict
+%%IncludeResource: font Courier-Oblique
+%%IncludeResource: font Courier-BoldOblique
+%%IncludeResource: font Courier-Bold
+%%IncludeResource: font ZapfDingbats
+%%IncludeResource: font Symbol
+%%IncludeResource: font Helvetica
+%%IncludeResource: font Helvetica-Oblique
+%%IncludeResource: font Helvetica-Bold
+%%IncludeResource: font Helvetica-BoldOblique
+%%IncludeResource: font Times-Roman
+%%IncludeResource: font Times-Italic
+%%IncludeResource: font Times-Bold
+%%IncludeResource: font Times-BoldItalic
+%%IncludeResource: font Courier
+%FOPEndFontDict
+%%BeginResource: encoding WinAnsiEncoding
+/WinAnsiEncoding [
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /.notdef /.notdef /.notdef
+/.notdef /.notdef /space /exclam /quotedbl
+/numbersign /dollar /percent /ampersand /quotesingle
+/parenleft /parenright /asterisk /plus /comma
+/hyphen /period /slash /zero /one
+/two /three /four /five /six
+/seven /eight /nine /colon /semicolon
+/less /equal /greater /question /at
+/A /B /C /D /E
+/F /G /H /I /J
+/K /L /M /N /O
+/P /Q /R /S /T
+/U /V /W /X /Y
+/Z /bracketleft /backslash /bracketright /asciicircum
+/underscore /quoteleft /a /b /c
+/d /e /f /g /h
+/i /j /k /l /m
+/n /o /p /q /r
+/s /t /u /v /w
+/x /y /z /braceleft /bar
+/braceright /asciitilde /bullet /Euro /bullet
+/quotesinglbase /florin /quotedblbase /ellipsis /dagger
+/daggerdbl /circumflex /perthousand /Scaron /guilsinglleft
+/OE /bullet /Zcaron /bullet /bullet
+/quoteleft /quoteright /quotedblleft /quotedblright /bullet
+/endash /emdash /asciitilde /trademark /scaron
+/guilsinglright /oe /bullet /zcaron /Ydieresis
+/space /exclamdown /cent /sterling /currency
+/yen /brokenbar /section /dieresis /copyright
+/ordfeminine /guillemotleft /logicalnot /sfthyphen /registered
+/macron /degree /plusminus /twosuperior /threesuperior
+/acute /mu /paragraph /middot /cedilla
+/onesuperior /ordmasculine /guillemotright /onequarter /onehalf
+/threequarters /questiondown /Agrave /Aacute /Acircumflex
+/Atilde /Adieresis /Aring /AE /Ccedilla
+/Egrave /Eacute /Ecircumflex /Edieresis /Igrave
+/Iacute /Icircumflex /Idieresis /Eth /Ntilde
+/Ograve /Oacute /Ocircumflex /Otilde /Odieresis
+/multiply /Oslash /Ugrave /Uacute /Ucircumflex
+/Udieresis /Yacute /Thorn /germandbls /agrave
+/aacute /acircumflex /atilde /adieresis /aring
+/ae /ccedilla /egrave /eacute /ecircumflex
+/edieresis /igrave /iacute /icircumflex /idieresis
+/eth /ntilde /ograve /oacute /ocircumflex
+/otilde /odieresis /divide /oslash /ugrave
+/uacute /ucircumflex /udieresis /yacute /thorn
+/ydieresis
+] def
+%%EndResource
+%FOPBeginFontReencode
+/Courier-Oblique findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Courier-Oblique exch definefont pop
+/Courier-BoldOblique findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Courier-BoldOblique exch definefont pop
+/Courier-Bold findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Courier-Bold exch definefont pop
+/Helvetica findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Helvetica exch definefont pop
+/Helvetica-Oblique findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Helvetica-Oblique exch definefont pop
+/Helvetica-Bold findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Helvetica-Bold exch definefont pop
+/Helvetica-BoldOblique findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Helvetica-BoldOblique exch definefont pop
+/Times-Roman findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Times-Roman exch definefont pop
+/Times-Italic findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Times-Italic exch definefont pop
+/Times-Bold findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Times-Bold exch definefont pop
+/Times-BoldItalic findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Times-BoldItalic exch definefont pop
+/Courier findfont
+dup length dict begin
+  {1 index /FID ne {def} {pop pop} ifelse} forall
+  /Encoding WinAnsiEncoding def
+  currentdict
+end
+/Courier exch definefont pop
+%FOPEndFontReencode
+%%EndProlog
+%%Page: 1 1
+%%PageBoundingBox: 0 0 420 315
+%%BeginPageSetup
+[1 0 0 -1 0 315] CT
+%%EndPageSetup
+GS
+[0.5 0 0 0.5 0 0] CT
+1 GC
+N
+0 0 840 630 re
+f
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+1 GC
+N
+0 0 840 630 re
+f
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+1 GC
+N
+109 561 M
+760 561 L
+760 47 L
+109 47 L
+cp
+f
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+121.519 561 M
+121.519 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+185.393 561 M
+185.393 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+249.266 561 M
+249.266 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+313.14 561 M
+313.14 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+377.014 561 M
+377.014 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+440.887 561 M
+440.887 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+504.761 561 M
+504.761 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+568.635 561 M
+568.635 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+632.508 561 M
+632.508 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+696.382 561 M
+696.382 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 561 M
+109 561 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 503.889 M
+109 503.889 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 446.778 M
+109 446.778 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 389.667 M
+109 389.667 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 332.556 M
+109 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 275.444 M
+109 275.444 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 218.333 M
+109 218.333 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 161.222 M
+109 161.222 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 104.111 M
+109 104.111 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.873 GC
+1 LJ
+N
+760 47 M
+109 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 561 M
+109 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 561 M
+760 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 561 M
+115.51 561 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 503.889 M
+115.51 503.889 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 446.778 M
+115.51 446.778 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 389.667 M
+115.51 389.667 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 332.556 M
+115.51 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 275.444 M
+115.51 275.444 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 218.333 M
+115.51 218.333 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 161.222 M
+115.51 161.222 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 104.111 M
+115.51 104.111 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 47 M
+115.51 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 561 M
+753.49 561 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 503.889 M
+753.49 503.889 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 446.778 M
+753.49 446.778 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 389.667 M
+753.49 389.667 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 332.556 M
+753.49 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 275.444 M
+753.49 275.444 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 218.333 M
+753.49 218.333 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 161.222 M
+753.49 161.222 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 104.111 M
+753.49 104.111 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+760 47 M
+753.49 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 50.5 280.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-35 8 moveto 
+1 -1 scale
+(-0.8) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.5 251.94444] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-35 8 moveto 
+1 -1 scale
+(-0.6) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.5 223.38889] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-35 8 moveto 
+1 -1 scale
+(-0.4) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.5 194.83333] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-35 8 moveto 
+1 -1 scale
+(-0.2) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.5 166.27777] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-12 8 moveto 
+1 -1 scale
+(0) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.5 137.72223] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-28 8 moveto 
+1 -1 scale
+(0.2) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.5 109.16666] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-28 8 moveto 
+1 -1 scale
+(0.4) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.5 80.61111] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-28 8 moveto 
+1 -1 scale
+(0.6) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.5 52.05555] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-28 8 moveto 
+1 -1 scale
+(0.8) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 50.5 23.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-12 8 moveto 
+1 -1 scale
+(1) t 
+GR
+GR
+GS
+[0 -0.5 0.5 0 30 151.99988] CT
+0.149 GC
+/Helvetica 22 F
+GS
+[1 0 0 1 0 0] CT
+-19 -5 moveto 
+1 -1 scale
+(h\(k\)) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 217.25021 22.125] CT
+/Helvetica-Bold 22 F
+GS
+[1 0 0 1 0 0] CT
+-213.5 -5 moveto 
+1 -1 scale
+(R\351ponse impulsionnelle du filtre \340 retard) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+1 LJ
+N
+109 332.556 M
+760 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+121.519 332.556 M
+121.519 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+134.294 332.556 M
+134.294 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+147.069 332.556 M
+147.069 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+159.843 332.556 M
+159.843 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+172.618 332.556 M
+172.618 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+185.393 332.556 M
+185.393 532.444 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+198.168 332.556 M
+198.168 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+210.942 332.556 M
+210.942 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+223.717 332.556 M
+223.717 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+236.492 332.556 M
+236.492 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+249.266 332.556 M
+249.266 192.633 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+262.041 332.556 M
+262.041 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+274.816 332.556 M
+274.816 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+287.591 332.556 M
+287.591 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+300.365 332.556 M
+300.365 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+313.14 332.556 M
+313.14 430.501 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+325.915 332.556 M
+325.915 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+338.69 332.556 M
+338.69 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+351.464 332.556 M
+351.464 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+364.239 332.556 M
+364.239 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+377.014 332.556 M
+377.014 263.994 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+389.788 332.556 M
+389.788 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+402.563 332.556 M
+402.563 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+415.338 332.556 M
+415.338 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+428.113 332.556 M
+428.113 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+440.887 332.556 M
+440.887 380.549 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+453.662 332.556 M
+453.662 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+466.437 332.556 M
+466.437 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+479.212 332.556 M
+479.212 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+491.986 332.556 M
+491.986 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+504.761 332.556 M
+504.761 298.96 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+517.536 332.556 M
+517.536 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+530.31 332.556 M
+530.31 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+543.085 332.556 M
+543.085 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+555.86 332.556 M
+555.86 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+568.635 332.556 M
+568.635 356.072 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+581.409 332.556 M
+581.409 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+594.184 332.556 M
+594.184 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+606.959 332.556 M
+606.959 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+619.734 332.556 M
+619.734 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+632.508 332.556 M
+632.508 316.094 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+645.283 332.556 M
+645.283 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+658.058 332.556 M
+658.058 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+670.832 332.556 M
+670.832 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+683.607 332.556 M
+683.607 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+696.382 332.556 M
+696.382 344.079 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+709.157 332.556 M
+709.157 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+721.931 332.556 M
+721.931 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+734.706 332.556 M
+734.706 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0 0.447 0.741 RC
+1 LJ
+N
+747.481 332.556 M
+747.481 332.556 L
+S
+GR
+GS
+[0.5 0 0 0.5 60.75962 23.5] CT
+0 0.447 0.741 RC
+N
+6 0 M
+6 -3.314 3.314 -6 0 -6 C
+-3.314 -6 -6 -3.314 -6 0 C
+-6 3.314 -3.314 6 0 6 C
+3.314 6 6 3.314 6 0 C
+cp
+f
+GR
+GS
+[0.5 0 0 0.5 60.75962 23.5] CT
+0 0.447 0.741 RC
+N
+0 -5.5 M
+3.038 -5.5 5.5 -3.038 5.5 0 C
+5.5 0 L
+5.5 3.038 3.038 5.5 0 5.5 C
+-3.038 5.5 -5.5 3.038 -5.5 0 C
+-5.5 -3.038 -3.038 -5.5 0 -5.5 C
+cp
+0 -6.5 M
+-3.59 -6.5 -6.5 -3.59 -6.5 0 C
+-6.5 3.59 -3.59 6.5 0 6.5 C
+3.59 6.5 6.5 3.59 6.5 0 C
+6.5 0 L
+6.5 -3.59 3.59 -6.5 0 -6.5 C
+cp
+f
+GR
+GS
+[0.5 0 0 0.5 67.14698 166.27777] CT
+0 0.447 0.741 RC
+N
+/f161857582{6 0 M
+6 -3.314 3.314 -6 0 -6 C
+-3.314 -6 -6 -3.314 -6 0 C
+-6 3.314 -3.314 6 0 6 C
+3.314 6 6 3.314 6 0 C
+cp}def
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 67.14698 166.27777] CT
+0 0.447 0.741 RC
+N
+/f-1521356186{0 -5.5 M
+3.038 -5.5 5.5 -3.038 5.5 0 C
+5.5 0 L
+5.5 3.038 3.038 5.5 0 5.5 C
+-3.038 5.5 -5.5 3.038 -5.5 0 C
+-5.5 -3.038 -3.038 -5.5 0 -5.5 C
+cp
+0 -6.5 M
+-3.59 -6.5 -6.5 -3.59 -6.5 0 C
+-6.5 3.59 -3.59 6.5 0 6.5 C
+3.59 6.5 6.5 3.59 6.5 0 C
+6.5 0 L
+6.5 -3.59 3.59 -6.5 0 -6.5 C
+cp}def
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 73.53434 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 73.53434 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 79.9217 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 79.9217 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 86.30907 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 86.30907 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 92.69643 266.22223] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 92.69643 266.22223] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 99.08379 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 99.08379 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 105.47115 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 105.47115 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 111.85851 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 111.85851 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 118.24588 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 118.24588 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 124.63324 96.31667] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 124.63324 96.31667] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 131.0206 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 131.0206 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 137.40797 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 137.40797 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 143.79533 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 143.79533 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 150.18269 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 150.18269 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 156.57005 215.25055] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 156.57005 215.25055] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 162.95741 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 162.95741 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 169.34479 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 169.34479 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 175.73215 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 175.73215 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 182.11951 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 182.11951 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 188.50687 131.99684] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 188.50687 131.99684] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 194.89423 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 194.89423 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 201.2816 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 201.2816 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 207.66896 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 207.66896 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 214.05632 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 214.05632 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 220.44368 190.27444] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 220.44368 190.27444] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 226.83104 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 226.83104 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 233.2184 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 233.2184 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 239.60577 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 239.60577 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 245.99313 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 245.99313 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 252.38049 149.48012] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 252.38049 149.48012] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 258.76785 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 258.76785 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 265.15521 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 265.15521 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 271.54257 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 271.54257 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 277.92993 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 277.92993 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 284.31732 178.03615] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 284.31732 178.03615] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 290.70468 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 290.70468 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 297.09204 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 297.09204 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 303.4794 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 303.4794 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 309.86676 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 309.86676 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 316.25412 158.04692] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 316.25412 158.04692] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 322.64148 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 322.64148 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 329.02884 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 329.02884 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 335.4162 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 335.4162 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 341.80356 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 341.80356 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 348.19095 172.03938] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 348.19095 172.03938] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 354.57831 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 354.57831 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 360.96567 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 360.96567 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 367.35303 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 367.35303 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 373.74039 166.27777] CT
+0 0.447 0.741 RC
+N
+f161857582
+f
+GR
+GS
+[0.5 0 0 0.5 373.74039 166.27777] CT
+0 0.447 0.741 RC
+N
+f-1521356186
+f
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 561 M
+760 561 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+109 47 M
+760 47 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+121.519 561 M
+121.519 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+185.393 561 M
+185.393 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+249.266 561 M
+249.266 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+313.14 561 M
+313.14 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+377.014 561 M
+377.014 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+440.887 561 M
+440.887 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+504.761 561 M
+504.761 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+568.635 561 M
+568.635 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+632.508 561 M
+632.508 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+696.382 561 M
+696.382 554.49 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+121.519 47 M
+121.519 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+185.393 47 M
+185.393 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+249.266 47 M
+249.266 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+313.14 47 M
+313.14 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+377.014 47 M
+377.014 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+440.887 47 M
+440.887 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+504.761 47 M
+504.761 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+568.635 47 M
+568.635 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+632.508 47 M
+632.508 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 0 0] CT
+0.149 GC
+2 setlinecap
+1 LJ
+N
+696.382 47 M
+696.382 53.51 L
+S
+GR
+GS
+[0.5 0 0 0.5 60.75962 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-6 21 moveto 
+1 -1 scale
+(0) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 92.69643 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-6 21 moveto 
+1 -1 scale
+(5) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 124.63324 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-11.5 21 moveto 
+1 -1 scale
+(10) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 156.57005 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-11.5 21 moveto 
+1 -1 scale
+(15) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 188.50687 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-11.5 21 moveto 
+1 -1 scale
+(20) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 220.44368 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-11.5 21 moveto 
+1 -1 scale
+(25) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 252.38049 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-11.5 21 moveto 
+1 -1 scale
+(30) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 284.31732 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-11.5 21 moveto 
+1 -1 scale
+(35) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 316.25412 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-11.5 21 moveto 
+1 -1 scale
+(40) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 348.19095 284.5] CT
+0.149 GC
+/Helvetica 20 F
+GS
+[1 0 0 1 0 0] CT
+-11.5 21 moveto 
+1 -1 scale
+(45) t 
+GR
+GR
+GS
+[0.5 0 0 0.5 217.25015 298.5] CT
+0.149 GC
+/Helvetica 22 F
+GS
+[1 0 0 1 0 0] CT
+-5.5 23 moveto 
+1 -1 scale
+(k) t 
+GR
+GR
+%%Trailer
+%%Pages: 1
+%%EOF
diff --git a/wav/nylon-guitar-reverbe.wav b/wav/nylon-guitar-reverbe.wav
new file mode 100644
index 0000000000000000000000000000000000000000..7fc14aaa147c70ae6fb28ff9fc0c720ffd212100
Binary files /dev/null and b/wav/nylon-guitar-reverbe.wav differ
diff --git a/wav/nylon-guitar.wav b/wav/nylon-guitar.wav
new file mode 100644
index 0000000000000000000000000000000000000000..8117eded181478b4c718922cbb1e41a6f5f357a8
Binary files /dev/null and b/wav/nylon-guitar.wav differ
diff --git a/wav/piano_chord.wav b/wav/piano_chord.wav
new file mode 100644
index 0000000000000000000000000000000000000000..f03ef76ef46ca2036b76e5e62f34e7b8ebc67477
Binary files /dev/null and b/wav/piano_chord.wav differ
diff --git a/wav/piano_delay_filtre.wav b/wav/piano_delay_filtre.wav
new file mode 100644
index 0000000000000000000000000000000000000000..62cf0256eb09fc8336f818c4ba473e3baf94b735
Binary files /dev/null and b/wav/piano_delay_filtre.wav differ
diff --git a/wav/piano_synthetise.wav b/wav/piano_synthetise.wav
new file mode 100644
index 0000000000000000000000000000000000000000..f4678653aa1481ffdf2d0e709064a9c19f2325ea
Binary files /dev/null and b/wav/piano_synthetise.wav differ
diff --git a/wav/piano_synthetise_adsr.wav b/wav/piano_synthetise_adsr.wav
new file mode 100644
index 0000000000000000000000000000000000000000..2da0f3c518506f2d28bbccd9d7b1cf8787f086cb
Binary files /dev/null and b/wav/piano_synthetise_adsr.wav differ
diff --git a/wav/piano_synthetise_idft.wav b/wav/piano_synthetise_idft.wav
new file mode 100644
index 0000000000000000000000000000000000000000..bc05d6d120a5693db61e672cbe8bdb3e1cfd2045
Binary files /dev/null and b/wav/piano_synthetise_idft.wav differ
diff --git a/wav/question1.m b/wav/question1.m
new file mode 100644
index 0000000000000000000000000000000000000000..1f8790edbc555057863144fc1b1ba156edaf0824
--- /dev/null
+++ b/wav/question1.m
@@ -0,0 +1,72 @@
+% --- Paramètres ---
+clear; close all; clc
+
+% Charger les sons d'instruments
+[instru1, Fs1] = audioread('single_tone_guitar_nylon_string_a2.wav');   % Exemple instrument à cordes
+[instru2, Fs2] = audioread('single_tone_violin-a3.wav');    % Exemple instrument à cordes
+[instru3, Fs3] = audioread('single_tone_cello-a3.wav');     % Exemple instrument à vent
+
+% Assurer que ce sont des signaux mono
+if size(instru1,2) > 1, instru1 = mean(instru1,2); end
+if size(instru2,2) > 1, instru2 = mean(instru2,2); end
+if size(instru3,2) > 1, instru3 = mean(instru3,2); end
+
+% Découper pour avoir la même durée
+N = 2^14; % Nombre d'échantillons (choisi ici pour avoir une puissance de 2)
+instru1 = instru1(1:N);
+instru2 = instru2(1:N);
+instru3 = instru3(1:N);
+
+% --- Calcul FFT ---
+f1 = (-N/2:N/2-1)*(Fs1/N); % Axe fréquentiel
+f2 = (-N/2:N/2-1)*(Fs2/N);
+f3 = (-N/2:N/2-1)*(Fs3/N);
+
+FFT1 = fftshift(fft(instru1));
+FFT2 = fftshift(fft(instru2));
+FFT3 = fftshift(fft(instru3));
+
+% --- Calcul de l'amplitude en dB ---
+Amp1 = 20*log10(abs(FFT1));
+Amp2 = 20*log10(abs(FFT2));
+Amp3 = 20*log10(abs(FFT3));
+
+% --- Affichage ---
+figure;
+subplot(3,1,1)
+plot(f1, Amp1);
+xlim([0 5000]); % Limiter entre 0 et 5000 Hz (à adapter si besoin)
+xlabel('Fréquence (Hz)');
+ylabel('Amplitude (dB)');
+title('Spectre de la Guitare');
+grid on
+
+subplot(3,1,2)
+plot(f2, Amp2);
+xlim([0 5000]);
+xlabel('Fréquence (Hz)');
+ylabel('Amplitude (dB)');
+title('Spectre du Violon');
+grid on
+
+subplot(3,1,3)
+plot(f3, Amp3);
+xlim([0 5000]);
+xlabel('Fréquence (Hz)');
+ylabel('Amplitude (dB)');
+title('Spectre de la contrebasse');
+grid on
+
+% --- Détermination de la fréquence fondamentale ---
+% Chercher le maximum dans la partie positive
+[~, idx1] = max(Amp1(N/2:end));
+[~, idx2] = max(Amp2(N/2:end));
+[~, idx3] = max(Amp3(N/2:end));
+
+f_fondamentale1 = f1(N/2 + idx1 - 1);
+f_fondamentale2 = f2(N/2 + idx2 - 1);
+f_fondamentale3 = f3(N/2 + idx3 - 1);
+
+fprintf('Fréquence fondamentale guitare : %.2f Hz\n', f_fondamentale1);
+fprintf('Fréquence fondamentale violon  : %.2f Hz\n', f_fondamentale2);
+fprintf('Fréquence fondamentale flûte   : %.2f Hz\n', f_fondamentale3);
\ No newline at end of file
diff --git a/wav/question2.m b/wav/question2.m
new file mode 100644
index 0000000000000000000000000000000000000000..4334df60e470002b064d458fdda89de226d5b1e6
--- /dev/null
+++ b/wav/question2.m
@@ -0,0 +1,66 @@
+% analyse_inharmonicite.m
+% Analyse spectrale et inharmonicité de deux sons de piano
+
+clear; close all;
+
+%% --- Paramètres ---
+N_harmo = 7;  % nombre d'harmoniques à extraire
+Nfft = 2^15;  % résolution spectrale suffisante
+
+%% --- Fonction pour analyser un fichier ---
+function [f1, f_th, f_mes, xi] = analyse_piano(filename, N_harmo, Nfft)
+    [x, Fe] = audioread(filename);
+    x = x(:, 1);                     % mono
+    x = x .* hann(length(x));       % fenêtrage
+    X = abs(fft(x, Nfft));
+    X = X(1:Nfft/2);
+    f = (0:Nfft/2-1)*(Fe/Nfft);
+
+    % Détection de la fondamentale
+    [~, idx_f1] = max(X);
+    f1 = f(idx_f1);
+
+    % Recherche des harmoniques
+    f_th = (1:N_harmo) * f1;
+    f_mes = zeros(1, N_harmo);
+
+    for n = 1:N_harmo
+        % Chercher le pic dans ±30 Hz autour de nf1
+        fmin = f_th(n) - 30;
+        fmax = f_th(n) + 30;
+        idx_range = find(f >= fmin & f <= fmax);
+        [~, local_idx] = max(X(idx_range));
+        f_mes(n) = f(idx_range(local_idx));
+    end
+
+    % Calcul de l’inharmonicité
+    xi = 1200 * (log2(f_mes) - log2(f_th));
+end
+
+%% --- Piano 1 ---
+[f1_1, fth_1, fmes_1, xi_1] = analyse_piano("single_tone_piano1.wav", N_harmo, Nfft);
+
+%% --- Piano 2 ---
+[f1_2, fth_2, fmes_2, xi_2] = analyse_piano("single_tone_piano2.wav", N_harmo, Nfft);
+
+%% --- Affichage des résultats ---
+fprintf("Fréquence fondamentale Piano 1 : %.2f Hz\n", f1_1);
+fprintf("Fréquence fondamentale Piano 2 : %.2f Hz\n\n", f1_2);
+
+fprintf("=== Résultats Piano 1 ===\n");
+disp(table((2:N_harmo)', fth_1(2:end)', fmes_1(2:end)', xi_1(2:end)', ...
+    'VariableNames', {'n', 'f_theorique', 'f_mesuree', 'inharmonicite'}));
+
+fprintf("=== Résultats Piano 2 ===\n");
+disp(table((2:N_harmo)', fth_2(2:end)', fmes_2(2:end)', xi_2(2:end)', ...
+    'VariableNames', {'n', 'f_theorique', 'f_mesuree', 'inharmonicite'}));
+
+%% --- Tracé comparatif ---
+figure;
+plot(2:N_harmo, xi_1(2:end), 'bo-', 'LineWidth', 1.5); hold on;
+plot(2:N_harmo, xi_2(2:end), 'r*-', 'LineWidth', 1.5);
+xlabel('Harmonique n');
+ylabel('\xi (cents)');
+title('Inharmonicité comparée des deux pianos');
+legend('Piano 1', 'Piano 2');
+grid on;
diff --git a/wav/question3.m b/wav/question3.m
new file mode 100644
index 0000000000000000000000000000000000000000..78a7a178203ddf54073017ee3360c6747373f540
--- /dev/null
+++ b/wav/question3.m
@@ -0,0 +1,42 @@
+% Charger le son
+[y, Fs] = audioread('single_tone_piano1.wav');
+
+% FFT
+N = 2^nextpow2(length(y));
+Y = fft(y, N);
+P = abs(Y(1:N/2+1));
+f = Fs*(0:(N/2))/N;
+
+% Trouver la fondamentale (plus fort pic sous 500 Hz)
+[~, loc_f1] = max(P(f < 500)); % Suppose que f1 est sous 500Hz
+f1 = f(loc_f1);
+
+% Initialiser
+freq_harm = zeros(1,8);
+amp_harm = zeros(1,8);
+
+% Chercher 8 harmoniques autour de nf1
+for n = 1:8
+    [~, idx] = min(abs(f - n*f1)); % Trouver l'index proche de n*f1
+    freq_harm(n) = f(idx);
+    amp_harm(n) = P(idx);
+end
+
+% Durée du son
+duration = 2; % secondes
+t = 0:1/Fs:duration;
+
+% Signal synthétisé
+synth = zeros(size(t));
+for k = 1:8
+    synth = synth + amp_harm(k) * cos(2*pi*freq_harm(k)*t);
+end
+
+% Normaliser
+synth = synth / max(abs(synth));
+
+% Jouer le son
+sound(synth, Fs);
+
+% Sauvegarder si besoin
+audiowrite('piano_synthetise.wav', synth, Fs);
\ No newline at end of file
diff --git a/wav/question5.m b/wav/question5.m
new file mode 100644
index 0000000000000000000000000000000000000000..b55c6b4fc5a9393ec07b0fade8b3fd0b1f0fc4ef
--- /dev/null
+++ b/wav/question5.m
@@ -0,0 +1,23 @@
+% Créer un spectre vide
+X = zeros(1, N/2+1);
+
+% Placer les amplitudes aux bonnes fréquences
+for k = 1:8
+    [~, idx] = min(abs(f - freq_harm(k)));
+    X(idx) = amp_harm(k); % Spectre à moitié (positif uniquement)
+end
+
+% Remplir la partie négative (symétrie conjugée)
+X_full = [X, conj(flip(X(2:end-1)))];
+
+% Signal synthétisé par IDFT
+synth_idft = real(ifft(X_full));
+
+% Normaliser
+synth_idft = synth_idft / max(abs(synth_idft));
+
+% Jouer le son
+sound(synth_idft, Fs);
+
+% Sauvegarder
+audiowrite('piano_synthetise_idft.wav', synth_idft, Fs);
\ No newline at end of file
diff --git a/wav/single_tone_cello-a3.wav b/wav/single_tone_cello-a3.wav
new file mode 100644
index 0000000000000000000000000000000000000000..da7e2c29e47cbcb83d49123cf09b7f94bb15c148
Binary files /dev/null and b/wav/single_tone_cello-a3.wav differ
diff --git a/wav/single_tone_celtic-harp-a3.wav b/wav/single_tone_celtic-harp-a3.wav
new file mode 100644
index 0000000000000000000000000000000000000000..f701655e2ec2d60258722df3b9a09b07d432e911
Binary files /dev/null and b/wav/single_tone_celtic-harp-a3.wav differ
diff --git a/wav/single_tone_clarinet-a3.wav b/wav/single_tone_clarinet-a3.wav
new file mode 100644
index 0000000000000000000000000000000000000000..356fd406688bf5159e2e3b2a47025346a9f2f40c
Binary files /dev/null and b/wav/single_tone_clarinet-a3.wav differ
diff --git a/wav/single_tone_cymbal-14-hard-hit-a.wav b/wav/single_tone_cymbal-14-hard-hit-a.wav
new file mode 100644
index 0000000000000000000000000000000000000000..04539738167542f1963145f30f3b5fb9f12d798d
Binary files /dev/null and b/wav/single_tone_cymbal-14-hard-hit-a.wav differ
diff --git a/wav/single_tone_double-bass-a3.wav b/wav/single_tone_double-bass-a3.wav
new file mode 100644
index 0000000000000000000000000000000000000000..5631cf4ca4b8b7bedf8c33e25e4779b2a6a30283
Binary files /dev/null and b/wav/single_tone_double-bass-a3.wav differ
diff --git a/wav/single_tone_guitar-pitch-pipe-a3.wav b/wav/single_tone_guitar-pitch-pipe-a3.wav
new file mode 100644
index 0000000000000000000000000000000000000000..a032702b2482e32810a6c2d02c9a9ea05100205b
Binary files /dev/null and b/wav/single_tone_guitar-pitch-pipe-a3.wav differ
diff --git a/wav/single_tone_guitar_nylon_string_a2.wav b/wav/single_tone_guitar_nylon_string_a2.wav
new file mode 100644
index 0000000000000000000000000000000000000000..b36d25495e30cebbaac2cb248e629bddf8bdb2bc
Binary files /dev/null and b/wav/single_tone_guitar_nylon_string_a2.wav differ
diff --git a/wav/single_tone_guitar_nylon_string_a3.wav b/wav/single_tone_guitar_nylon_string_a3.wav
new file mode 100644
index 0000000000000000000000000000000000000000..85760d87b927eb817337d14256722b9144a65943
Binary files /dev/null and b/wav/single_tone_guitar_nylon_string_a3.wav differ
diff --git a/wav/single_tone_organ-c3.wav b/wav/single_tone_organ-c3.wav
new file mode 100644
index 0000000000000000000000000000000000000000..4705c20423f5425858fcb3bdd33479153d469c78
Binary files /dev/null and b/wav/single_tone_organ-c3.wav differ
diff --git a/wav/single_tone_piano1.wav b/wav/single_tone_piano1.wav
new file mode 100644
index 0000000000000000000000000000000000000000..af184b832ca44b0a28441e62e7ade80f617c00e5
Binary files /dev/null and b/wav/single_tone_piano1.wav differ
diff --git a/wav/single_tone_piano2.wav b/wav/single_tone_piano2.wav
new file mode 100644
index 0000000000000000000000000000000000000000..9e5acb3d5b0fbca6a66214152c40ded4e9285829
Binary files /dev/null and b/wav/single_tone_piano2.wav differ
diff --git a/wav/single_tone_sax-alto-a3.wav b/wav/single_tone_sax-alto-a3.wav
new file mode 100644
index 0000000000000000000000000000000000000000..c00dcdd8ec59b481a7a32529a23047e4443d3af3
Binary files /dev/null and b/wav/single_tone_sax-alto-a3.wav differ
diff --git a/wav/single_tone_sax-baritone-a3.wav b/wav/single_tone_sax-baritone-a3.wav
new file mode 100644
index 0000000000000000000000000000000000000000..69f6badd155ff779c6f7edbe2784dae058b3557f
Binary files /dev/null and b/wav/single_tone_sax-baritone-a3.wav differ
diff --git a/wav/single_tone_sax-soprano-a3.wav b/wav/single_tone_sax-soprano-a3.wav
new file mode 100644
index 0000000000000000000000000000000000000000..ea5889ce78adb92383ee7769c7b721806d786fd1
Binary files /dev/null and b/wav/single_tone_sax-soprano-a3.wav differ
diff --git a/wav/single_tone_sax-tenor-a3.wav b/wav/single_tone_sax-tenor-a3.wav
new file mode 100644
index 0000000000000000000000000000000000000000..e9ffc88e5b701fb57f2e1dbdd5477b83e29d6229
Binary files /dev/null and b/wav/single_tone_sax-tenor-a3.wav differ
diff --git a/wav/single_tone_toy_glockenspiel_a3.wav b/wav/single_tone_toy_glockenspiel_a3.wav
new file mode 100644
index 0000000000000000000000000000000000000000..80ae7f4fed9cf58e67d7b3ecfcc5336543c7ab0c
Binary files /dev/null and b/wav/single_tone_toy_glockenspiel_a3.wav differ
diff --git a/wav/single_tone_toy_glockenspiel_a3_other.wav b/wav/single_tone_toy_glockenspiel_a3_other.wav
new file mode 100644
index 0000000000000000000000000000000000000000..cc8062860e64f5c2a1d953e53045b76f132ca680
Binary files /dev/null and b/wav/single_tone_toy_glockenspiel_a3_other.wav differ
diff --git a/wav/single_tone_trumpet-a3.wav b/wav/single_tone_trumpet-a3.wav
new file mode 100644
index 0000000000000000000000000000000000000000..a903064a78692325bcf5394957ecf89da06aafb0
Binary files /dev/null and b/wav/single_tone_trumpet-a3.wav differ
diff --git a/wav/single_tone_violin-a3.wav b/wav/single_tone_violin-a3.wav
new file mode 100644
index 0000000000000000000000000000000000000000..c99a0cdded6ea34ca21bad31f72633014e7bb863
Binary files /dev/null and b/wav/single_tone_violin-a3.wav differ
diff --git a/wav/spectre_pianos.png b/wav/spectre_pianos.png
new file mode 100644
index 0000000000000000000000000000000000000000..63e0616bf90e8354d49d9dc70ff8885eee8952b5
Binary files /dev/null and b/wav/spectre_pianos.png differ
diff --git a/wav/toy_glock-06.wav b/wav/toy_glock-06.wav
new file mode 100644
index 0000000000000000000000000000000000000000..41abfd02945c8e42fe42ec6404028a9b0fdc5bf5
Binary files /dev/null and b/wav/toy_glock-06.wav differ